@charset "UTF-8";
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------

リセット

----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 62.5%;
}

@media screen and (min-width: 901px) and (max-width: 1440px) {
  html {
    font-size: 0.625vw;
  }
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

/*-----------------------------------------

全体指定

----------------------------------------*/
.inner {
  max-width: 1080px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .inner {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

body {
  line-height: 1.6;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: #fff;
  color: #000000;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

.main-bg {
  position: relative;
}
.main-bg:before {
  content: "";
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/purplegra-new.png) no-repeat top center/cover;
  z-index: -1;
}
@media (max-width: 900px) {
  .main-bg:before {
    background: url(../images/purplegra-new_sp.png) no-repeat top center/cover;
  }
}

.header {
  width: 100%;
  max-width: 1800px;
  height: 73px;
  background: #5F1984;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  padding: 0 2rem;
  top: 0;
  z-index: 100;
}
@media (max-width: 900px) {
  .header {
    height: 0;
    width: 100%;
    background: transparent;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav {
  margin-left: clamp(2rem, 1.6vw, 4rem);
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
}

.header-nav {
  display: flex;
  align-items: center;
}
.header-nav li {
  font-size: clamp(12px, 1.3vw, 18px);
  font-weight: 700;
  position: relative;
  line-height: 1.2;
}
.header-nav li:first-child {
  padding-right: 2rem;
}
.header-nav li:not(:first-child) {
  padding: 2rem;
}
.header-nav li span {
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 300;
}
.header-nav a {
  color: #fff;
  display: inline-block;
  transition: opacity 0.3s ease 0s;
}
.header-nav a:hover {
  opacity: 0.6;
}

.header__sns {
  margin-left: clamp(1rem, 1.6vw, 7rem);
  display: flex;
}
@media (max-width: 900px) {
  .header__sns {
    display: none;
  }
}
.header__sns li:not(:first-child) {
  margin-left: 3rem;
}
.header__sns a {
  display: block;
  width: clamp(26px, 2vw, 32px);
  transition: opacity 0.3s ease 0s;
}
.header__sns a:hover {
  opacity: 0.6;
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 1.7rem;
  right: 1rem;
  z-index: 101;
  width: 4rem;
  height: 4rem;
  background: #5F1984;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  display: none;
}
@media (max-width: 900px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active span:nth-child(1) {
  transform: rotate(45deg);
  left: -0.5rem;
  top: 1rem;
}
.drawer__icon.is-active span:nth-child(2) {
  display: none;
}
.drawer__icon.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  left: -0.5rem;
  top: 1rem;
}

.drawer__bars {
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.9rem;
  position: relative;
  cursor: pointer;
}
.drawer__bars span {
  width: 100%;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__bars span:nth-child(1) {
  top: 0;
}
.drawer__bars span:nth-child(2) {
  top: 1rem;
}
.drawer__bars span:nth-child(3) {
  top: 2rem;
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #5F1984;
  display: flex;
  justify-content: center;
  display: none;
  overflow-y: scroll;
}

.drawer__content--inner {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  z-index: 99;
}

.drawer-nav li {
  font-size: clamp(16px, 2vw, 20px);
  border-bottom: 1px solid #fff;
}
.drawer-nav li span {
  display: block;
  font-size: clamp(12px, 2vw, 16px);
}
.drawer-nav a {
  padding: 2rem 0;
  display: block;
  color: #fff;
}

.drawer__content--sns {
  margin-top: 6rem;
  text-align: center;
}

.drawer__content--sns-title {
  color: #fff;
}

.drawer__sns {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.drawer__sns li:not(:first-child) {
  margin-left: 2rem;
}
.drawer__sns a {
  width: 40px;
}
.drawer__sns a img {
  width: 40px;
}

/*-----------------------------------------
mv
-----------------------------------------*/
.mv-content {
  vertical-align: bottom;
  line-height: 1em;
}
.mv-content img {
  vertical-align: bottom;
  line-height: 1em;
}

.pc-only {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}
.pc-only2 {
  display: block;
}

@media screen and (max-width: 900px) {
  .pc-only2 {
    display: none;
  }
}
.sp-only {
  display: none;
}
@media (max-width: 900px) {
  .sp-only {
    display: block;
  }
}

.sp-only2 {
  display: none;
}

@media screen and (max-width: 550px) {
  .sp-only2 {
    display: block;
  }
}
.to-top {
  position: fixed;
  right: 2rem;
  bottom: 10rem;
  z-index: 20;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
@media (max-width: 900px) {
  .to-top {
    right: 0.5rem;
    bottom: 5rem;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top .to-top__icon img {
  width: 5.2em;
  transition: all 0.3s ease 0s;
}
.to-top .to-top__icon img:hover {
  opacity: 0.7;
}
@media (max-width: 900px) {
  .to-top .to-top__icon img {
    width: 4.2em;
  }
}

.footer {
  width: 100%;
  height: 80px;
  background: #D87708;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: -290%;
  left: 6%;
  width: clamp(3.5rem, 6vw, 11rem);
  height: clamp(3.5rem, 6vw, 11rem);
  background: url(../images/starfooter-left.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .footer::before {
    top: -94%;
  }
}
@media (max-width: 900px) {
  .footer {
    height: 51px;
  }
}

.footer__copy {
  text-align: center;
  font-size: clamp(14px, 1.3vw, 16px);
  color: #fff;
}

/*-----------------------------------------
    event-summary
-----------------------------------------*/
.event-summary {
  padding-top: 5rem;
  position: relative;
}
.event-summary::before {
  content: "";
  position: absolute;
  top: 71%;
  left: 1%;
  width: clamp(13rem, 26vw, 34rem);
  height: clamp(24rem, 26vw, 45rem);
  background: url(../images/starsummary-left.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .event-summary::before {
    top: 0%;
    left: -3%;
  }
}
.event-summary::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -1%;
  width: clamp(13rem, 23vw, 42rem);
  height: clamp(24rem, 24vw, 57rem);
  background: url(../images/starsummary-right.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .event-summary::after {
    top: -25%;
    right: 5%;
  }
}

.event-summaryInner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .event-summaryInner {
    max-width: 85%;
  }
}

.summary-title {
  width: clamp(200px, 33vw, 334px);
  margin-left: auto;
  margin-right: auto;
}

.event-summaryContent {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-summaryContent p {
  color: #fff;
  font-size: clamp(13px, 1.6vw, 19px);
  font-weight: 700;
}
@media (max-width: 900px) {
  .event-summaryContent p {
    letter-spacing: -0.08rem;
    line-height: 1.8;
  }
}
@media (max-width: 900px) {
  .event-summaryContent {
    margin-top: 1rem;
  }
}

/*----------------- event-schedule -------------------*/
.event-schedule {
  padding-top: 8rem;
  position: relative;
}
.event-schedule::after {
  content: "";
  position: absolute;
  bottom: -16%;
  right: 3.5%;
  width: clamp(10rem, 21vw, 20rem);
  height: clamp(10rem, 19vw, 18rem);
  background: url(../images/star-schedule.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .event-schedule::after {
    bottom: -13%;
  }
}
@media (max-width: 900px) {
  .event-schedule {
    padding-top: 4rem;
  }
}

.event-schedule-inner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .event-schedule-inner {
    max-width: 500px;
    width: 95%;
  }
}

.schedule-title {
  width: clamp(200px, 33vw, 334px);
  margin-left: auto;
  margin-right: auto;
}

.event-schedule-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 4rem;
  margin-top: 2.6rem;
}
@media (max-width: 900px) {
  .event-schedule-content {
    grid-template-columns: 1fr;
    row-gap: 2rem;
    margin-top: 1.6rem;
  }
}
.event-schedule-content__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5.5rem 0;
  -o-border-image: url(../images/choco.png) 100 fill/100px/0px round;
     border-image: url(../images/choco.png) 100 fill/100px/0px round;
}
@media (max-width: 900px) {
  .event-schedule-content__item {
    padding: 3.5rem 0;
    border-image-width: 47px;
  }
}
.event-schedule-content__iteminner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .event-schedule-content__iteminner {
    display: block;
  }
}
.event-schedule-content__itemleft {
  margin-left: -1.6rem;
  font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: -0.05rem;
  line-height: 1.7;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 900px) {
  .event-schedule-content__itemleft {
    text-align: center;
    margin-left: 0;
    font-size: clamp(15px, 2vw, 19px);
  }
}
.event-schedule-content__itemright {
  margin-left: 4rem;
}
@media (max-width: 900px) {
  .event-schedule-content__itemright {
    margin-left: 0;
    margin-top: 2rem;
  }
}
.event-schedule-content__itemright--dl {
  margin: 0;
  color: #fff;
}
.event-schedule-content__itemright--row {
  display: flex;
  align-items: flex-start;
}
.event-schedule-content__itemright--row:not(:first-child) {
  margin-top: 0.2rem;
}
.event-schedule-content__itemright--dt {
  width: 110px;
  font-size: clamp(12px, 1.3vw, 16px);
}
@media (max-width: 900px) {
  .event-schedule-content__itemright--dt {
    width: 90px;
    font-size: clamp(12px, 1.8vw, 16px);
  }
}
.event-schedule-content__itemright--dd {
  margin: 0;
  width: calc(100% - 110px);
  font-size: clamp(12px, 1.3vw, 16px);
}
@media (max-width: 900px) {
  .event-schedule-content__itemright--dd {
    width: calc(100% - 90px);
    font-size: clamp(12px, 1.8vw, 16px);
  }
}
.event-schedule-content__itemright--dd a {
  color: #F0E847;
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.event-schedule-content__itemright--dd a:hover {
  opacity: 0.6;
}

/*-----------------------------------------
online
-----------------------------------------*/
.online {
  padding-top: 15rem;
  position: relative;
}
@media (max-width: 900px) {
  .online {
    padding-top: clamp(9rem, 14vw, 15rem);
  }
}
.online::before {
  content: "";
  position: absolute;
  top: 46%;
  left: -2.5%;
  width: clamp(12rem, 21vw, 37rem);
  height: clamp(35rem, 23vw, 41rem);
  background: url(../images/staronline-left.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .online::before {
    top: 45%;
  }
}
.online::after {
  content: "";
  position: absolute;
  bottom: 11%;
  right: 2.5%;
  width: clamp(6rem, 6vw, 10rem);
  height: clamp(6rem, 6vw, 10rem);
  background: url(../images/staronline-right.png) no-repeat center center/contain;
  z-index: -1;
}

.online-inner {
  max-width: 1200px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.online-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .online-content {
    display: block;
  }
}
.online-content__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .online-content__left {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.online-content__left-item:last-child {
  padding-top: 10rem;
}
@media (max-width: 900px) {
  .online-content__left-item:last-child {
    padding-top: clamp(7rem, 10vw, 15rem);
  }
}
.online-content__left-itemInner {
  padding: 2.8rem 2rem 3rem 7rem;
  position: relative;
  -o-border-image: url(../images/giht.png) 100 fill/32px/0 round;
     border-image: url(../images/giht.png) 100 fill/32px/0 round;
  color: #fff;
}
@media (max-width: 900px) {
  .online-content__left-itemInner {
    padding: 2.8rem 0rem 3rem 3rem;
  }
}
.online-content__left-itemInner:last-child {
  padding: 2.8rem;
  -o-border-image: url(../images/gihtx.png) 100 fill/300px/0 round;
     border-image: url(../images/gihtx.png) 100 fill/300px/0 round;
}
@media (max-width: 900px) {
  .online-content__left-itemInner:last-child {
    border-image-slice: 111 fill;
    border-image-width: 300px;
  }
}
@media (max-width: 900px) {
  .online-content__left-itemContent {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.online-content__left-itemContent--inner {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .online-content__left-itemContent--inner {
    display: block;
  }
}
.online-content__left-itemContent--left {
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
}
@media (max-width: 900px) {
  .online-content__left-itemContent--left {
    font-size: clamp(14px, 4vw, 21px);
  }
}
.online-content__left-itemContent--right {
  margin-left: 2rem;
}
@media (max-width: 900px) {
  .online-content__left-itemContent--right {
    margin-top: 2rem;
    margin-left: 0;
  }
}
.online-content__left-itemContent--dl {
  margin: 0;
  font-weight: 700;
}
.online-content__left-itemContent--row {
  display: flex;
  align-items: flex-start;
}
.online-content__left-itemContent--row:not(:first-child) {
  margin-top: 0.2rem;
}
.online-content__left-itemContent--dt {
  margin: 0;
  font-size: clamp(12px, 1.3vw, 16px);
  width: 110px;
}
@media (max-width: 900px) {
  .online-content__left-itemContent--dt {
    width: 80px;
    font-size: clamp(12px, 3vw, 16px);
  }
}
.online-content__left-itemContent--dd {
  margin: 0;
  font-size: clamp(12px, 1.3vw, 16px);
  width: calc(100% - 110px);
}
@media (max-width: 900px) {
  .online-content__left-itemContent--dd {
    width: calc(100% - 80px);
    font-size: clamp(12px, 3vw, 16px);
  }
}
.online-content__left-itemContent--dd a {
  color: #F0E847;
  text-decoration: underline;
}
.online-content__left-itemContentMedia {
  display: flex;
  align-items: center;
  justify-content: center;
}
.online-content__left-itemContentMedia--p {
  text-align: center;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .online-content__left-itemContentMedia--p {
    font-size: clamp(14px, 4vw, 21px);
  }
}
.online-content__left-itemContentMedia--bottom {
  margin-top: 2.3rem;
  text-align: center;
  font-size: clamp(14px, 1.3vw, 18px);
}
@media (max-width: 900px) {
  .online-content__left-itemContentMedia--bottom {
    margin-top: 1.3rem;
  }
}
.online-content__left-itemContentMedia--bottom a {
  color: #F0E847;
  text-decoration: underline;
}
.online-content__right {
  width: 50%;
  margin-left: 4rem;
  padding: 4.5rem 4rem;
  -o-border-image: url(../images/orange_bg.png) 100 fill/300px/0 round;
     border-image: url(../images/orange_bg.png) 100 fill/300px/0 round;
  position: relative;
}
@media (max-width: 900px) {
  .online-content__right {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(8rem, 2vw, 9rem);
    padding: 3.5rem 1rem;
  }
}
.online-content__right::before {
  content: "";
  position: absolute;
  top: -13%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(100px, 18vw, 170px);
  height: 46px;
  background: url(../images/ribbon.png) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .online-content__right::before {
    margin-left: 0;
    top: -5rem;
  }
}
.online-content__right--caption {
  font-size: clamp(14px, 1.5vw, 23px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -0.08rem;
}
@media (max-width: 900px) {
  .online-content__right--caption {
    font-size: clamp(14px, 2.2vw, 23px);
  }
}
.online-content__right--caption span {
  letter-spacing: -0.01rem;
}
.online-content__right--ul {
  margin-top: 2rem;
  margin-left: 2rem;
}
@media (max-width: 900px) {
  .online-content__right--ul {
    margin-left: 1.5rem;
  }
}
.online-content__right--ul li {
  list-style: "※";
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: -0.1rem;
  color: #fff;
  font-weight: 500;
}
.online-content__right--ul li:not(:first-child) {
  margin-top: 0.2rem;
}
.online-content__right--ul li a {
  color: #F0E847;
  letter-spacing: 0.01rem;
  text-decoration: underline;
}
.online-content__right--banner {
  margin-top: 2rem;
  width: 93%;
  margin-left: 0;
  margin-right: auto;
}
.online-content__right--bannerAttention {
  margin-top: 1rem;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: -0.1rem;
  color: #fff;
  font-weight: 500;
}

.online-title {
  position: absolute;
  top: -31%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(165px, 23vw, 265px);
}
@media (max-width: 900px) {
  .online-title {
    top: -20%;
  }
}
.online-title__media {
  top: -28%;
}
@media (max-width: 900px) {
  .online-title__media {
    top: -22%;
  }
}

@media screen and (max-width: 400px) {
  .online-content__left-itemInner {
    border-image-slice: 97 fill;
    border-image-width: 48px;
  }
  .online-content__left-itemInner:last-child {
    border-image-slice: 97 fill;
    border-image-width: 48px;
  }
}
/*-----------------------------------------
special-offer
-----------------------------------------*/
.special-offer {
  padding-top: 10rem;
  position: relative;
}
@media (max-width: 900px) {
  .special-offer {
    padding-top: 5rem;
  }
}
.special-offer::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  width: clamp(5rem, 22vw, 30rem);
  height: clamp(26rem, 94vw, 128rem);
  background: url(../images/starspecial-left.png) no-repeat center center/contain;
  z-index: -1;
}
.special-offer::after {
  content: "";
  position: absolute;
  top: 28%;
  right: 2.5%;
  width: clamp(18rem, 13vw, 23rem);
  height: clamp(55rem, 65vw, 114rem);
  background: url(../images/starspecial-right.png) no-repeat center center/contain;
  z-index: -1;
}

.special-offer-inner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .special-offer-inner {
    width: 100%;
  }
}

.offer-title {
  width: clamp(200px, 28vw, 300px);
  margin-left: auto;
  margin-right: auto;
}

.special-offer-content {
  margin-top: 3rem;
  position: relative;
}
@media (max-width: 900px) {
  .special-offer-content {
    margin-top: 1.5rem;
  }
}
.special-offer-content__text {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  color: #000000;
}
@media (max-width: 900px) {
  .special-offer-content__text {
    top: clamp(4rem, 7vw, 10rem);
    width: 100%;
  }
}
.special-offer-content__text--lead {
  text-align: center;
  font-weight: 700;
  font-size: clamp(13px, 1.8vw, 23px);
  letter-spacing: -0.09rem;
}
@media (max-width: 900px) {
  .special-offer-content__text--lead {
    font-weight: 600;
    font-size: clamp(12px, 2.8vw, 23px);
  }
}
.special-offer-content__text--attention {
  margin-top: 4rem;
  text-align: center;
}
@media (max-width: 900px) {
  .special-offer-content__text--attention {
    margin-top: 2rem;
  }
}
.special-offer-content__text--attention p {
  font-size: clamp(12px, 1.8vw, 22px);
  font-weight: 700;
}
@media (max-width: 900px) {
  .special-offer-content__text--attention p {
    font-weight: 600;
    font-size: clamp(12px, 2.8vw, 22px);
  }
}

@media screen and (max-width: 500px) {
  .special-offer-content__text--attention {
    margin-top: 1rem;
  }
}
/*-----------------------------------------
item
-----------------------------------------*/
.item {
  padding-top: 7rem;
  position: relative;
}
.item::before {
  content: "";
  position: absolute;
  top: 27.5%;
  left: 0;
  width: clamp(11rem, 15vw, 27rem);
  height: clamp(60rem, 77vw, 139rem);
  background: url(../images/staritem-left.png) no-repeat center center/contain;
  z-index: -1;
}
.item::after {
  content: "";
  position: absolute;
  top: 15.5%;
  right: 0;
  width: clamp(10rem, 20vw, 27rem);
  height: clamp(63rem, 101vw, 164rem);
  background: url(../images/staritem-right.png) no-repeat center center/contain;
  z-index: -1;
}

.item-inner {
  width: 1240px;
  margin-left: auto;
  margin-right: auto;
  max-width: 95%;
}

.item-title {
  width: clamp(64px, 6vw, 98px);
  margin-left: auto;
  margin-right: auto;
}

.item__content {
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .item__content {
    margin-top: 1rem;
  }
}

.item-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-row-end: 2;
}

.item-list {
  width: clamp(142px, 40vw, 290px);
  margin-bottom: 3rem;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 72px 2rem 4rem;
  position: relative;
  -o-border-image: url(../images/beigebg.png) 100 fill/95px/0px round;
     border-image: url(../images/beigebg.png) 100 fill/95px/0px round;
}
@media (max-width: 900px) {
  .item-list {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.item-list::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 99%;
  height: clamp(3rem, 9vw, 14rem);
  background: url(../images/red_ribbon.png) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .item-list::before {
    height: clamp(3rem, 9vw, 14rem);
  }
}
.item-list a {
  transition: opacity 0.3s ease 0s;
}
.item-list a:hover {
  opacity: 0.6;
}
.item-list img {
  width: 84%;
  justify-content: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.item-list__attention {
  margin-top: 1.6rem;
  padding: 1.7rem 0 0.7rem;
  border-top: 1px solid #E7734A;
  border-bottom: 1px solid #E7734A;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.item-list__attention::after {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(21px, 3vw, 32px);
  height: clamp(16px, 2vw, 28px);
  background: url(../images/heart-deco.png) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .item-list__attention::after {
    height: clamp(25px, 3.5vw, 28px);
  }
}
.item-list__attention p {
  text-align: center;
  font-size: clamp(14px, 1.3vw, 16px);
}

.item-list__body {
  margin-top: 1.2rem;
  text-align: center;
}

.item-list__body--item-name {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: -0.1rem;
}
@media (max-width: 900px) {
  .item-list__body--item-name {
    font-size: clamp(12.8px, 2.3vw, 18px);
  }
}

.item-list__body--price {
  margin-top: 0.5rem;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.08rem;
}

@media screen and (max-width: 540px) {
  .item-list {
    padding: 45px 2rem 2rem;
  }
}
/*-----------------------------------------
notes
-----------------------------------------*/
.notes {
  padding-top: 4.5rem;
  padding-bottom: 7rem;
  position: relative;
}
.notes::before {
  content: "";
  position: absolute;
  top: -120%;
  left: 3%;
  width: clamp(30rem, 32vw, 58rem);
  height: clamp(17rem, 21vw, 38rem);
  background: url(../images/starnote-left.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .notes::before {
    top: -45%;
    left: -4%;
  }
}
.notes::after {
  content: "";
  position: absolute;
  top: -86%;
  right: 18%;
  width: clamp(2rem, 7vw, 11.5rem);
  height: clamp(2.5rem, 7vw, 12.8rem);
  background: url(../images/starnote-right.png) no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 900px) {
  .notes::after {
    top: -54%;
    right: 2%;
  }
}

.notes-inner {
  width: 1200px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.notes-title {
  width: clamp(95px, 8vw, 138px);
  margin-left: auto;
  margin-right: auto;
}

.notes-content {
  padding: 64px 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -o-border-image: url(../images/notes_bg.png) 100 fill/100px/0px round;
     border-image: url(../images/notes_bg.png) 100 fill/100px/0px round;
}
@media (max-width: 900px) {
  .notes-content {
    border-image-width: 50px;
    padding: 40px 0 2rem;
  }
}
.notes-content p {
  margin-top: 0.5rem;
  margin-left: -1rem;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.85;
  letter-spacing: -0.05rem;
}
@media (max-width: 900px) {
  .notes-content p {
    margin-left: 0;
    padding-left: 5rem;
    padding-right: 2rem;
  }
}/*# sourceMappingURL=style.css.map */