@charset "UTF-8";
/* CSS Document */
/*---------------------------------------------------------------------
	ベース
---------------------------------------------------------------------*/
*:focus {
  outline: none;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
:root {
  --noto: "Noto Sans JP", sans-serif;
  --en: "Besley", serif;
  --orange: #FA9443;
  --green: #62CC59;
  --red: #FF0000;
  --black: #2F1B0E;
  --blue: #3F82F3;
  --all: all 0.4s;
  --cubic: 0.4s cubic-bezier(0.3, 0, 0.1, 1);
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--noto);
  color: #2F1B0E;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  padding-bottom: 10.41vw;
  overflow-x: clip;
}
section {
  position: relative;
}
img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: inline-block;
}
a.link {
  text-decoration: underline;
  transition: opacity 0.4s;
  display: inline-block;
  word-break: break-all;
}
a.link:hover {
  opacity: 0.7;
}
ul li {
  list-style: none;
}
p {
  line-height: 1.7;
  font-weight: 500;
}
.section-ttl {
  height: 73px;
  width: auto;
  text-align: center;
  margin-bottom: 40px;
}
.section-ttl img {
  height: 100%;
  width: auto;
}
.inner {
  max-width: 1040px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.w-900 {
  max-width: 940px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.w-800 {
  max-width: 840px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.w-470 {
  max-width: 470px;
  width: 100%;
}
.auto {
  margin: 0 auto;
}
.flex {
  display: flex;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.jc-center {
  justify-content: center;
}
.jc-space {
  justify-content: space-between;
}
.ai-center {
  align-items: center;
}
.wrap {
  flex-wrap: wrap;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.small {
  font-size: 1.2rem;
}
.size16 {
  font-size: 1.6rem;
}
.size18 {
  font-size: 1.8rem;
}
.big {
  font-size: 2.0rem;
}
.block {
  display: block;
}
.white {
  white-space: nowrap;
}
.regu {
  font-weight: 400;
}
.medi {
  font-weight: 500;
}
.semi {
  font-weight: 600;
}
.bold {
  font-weight: 700 !important;
}
.red {
  color: var(--red);
}
.orange {
  color: var(--orange);
}
.green {
  color: var(--green);
}
.en {
  font-family: var(--en);
}
.noto {
  font-family: var(--noto);
}
.dot_ul, .line_ul, .note_ul {
  display: flex;
  flex-direction: column;
  grid-row-gap: 16px;
}
.line_ul {
  margin-top: 12px;
}
.note_ul > li, .dot_ul > li {
  position: relative;
  padding-left: 18px;
  font-weight: 500;
}
.narrow {
  grid-row-gap: 10px;
}
.narrow-0 {
  grid-row-gap: 0;
}
.line_ul > li {
  position: relative;
  padding-left: 14px;
  font-weight: 500;
}
.note_ul > li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.dot_ul > li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.line_ul > li::before {
  content: "－";
  position: absolute;
  left: 0;
}
.note_ul li > .dot_ul, .note_ul li > .line_ul {
  margin-top: 18px;
}
.button {
  background: linear-gradient(120deg, rgba(93, 196, 84, 1) 0%, rgba(93, 196, 84, 1) 70%, rgba(146, 213, 98, 1) 100%);
  position: relative;
  border-radius: 100px;
  max-width: 450px;
  width: 100%;
  padding: 16px 20px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
}
.button span {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.0rem;
  position: relative;
  z-index: 2;
}
.button::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(146, 213, 98, 1) 0%, rgba(93, 196, 84, 1) 30%, rgba(93, 196, 84, 1) 100%);
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  transition: var(--all);
}
.button .arrow {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  max-width: 44px;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border-radius: 100px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.button .arrow::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 26px;
  height: auto;
  aspect-ratio: 26 / 20;
  clip-path: polygon(0 30%, 60% 30%, 60% 0%, 100% 50%, 60% 100%, 60% 70%, 0 70%);
  background-color: var(--green);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover::before {
    opacity: 1;
  }
}
.pc-none {
  display: none !important;
}
.sp-none {
  display: block !important;
}
@media screen and (min-width: 641px) {
  .pc-mb5 {
    margin-bottom: 5px !important;
  }
  .pc-mb10 {
    margin-bottom: 10px !important;
  }
  .pc-mb20 {
    margin-bottom: 20px !important;
  }
  .pc-mb30 {
    margin-bottom: 30px !important;
  }
  .pc-mb40 {
    margin-bottom: 40px !important;
  }
  .pc-mb50 {
    margin-bottom: 50px !important;
  }
  .pc-mb60 {
    margin-bottom: 60px !important;
  }
  .pc-mb70 {
    margin-bottom: 70px !important;
  }
  .pc-mb80 {
    margin-bottom: 80px !important;
  }
}
/*---------------------------------------------------------------------
	アコーディオン
---------------------------------------------------------------------*/
.accordion-area {
  width: 100%;
  margin: 0 auto;
  grid-row-gap: 10px;
}
.accordion_box {
  position: relative;
}
.accordion_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  background-image: linear-gradient(300deg, #f88960, #f8b479);
  border-radius: 40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s;
}
.news .accordion_box::before {
  z-index: -2;
}
.accordion_box.hide-before::before {
  opacity: 1;
}
.accordion_box::after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  border-radius: 38px;
  pointer-events: none;
}
.news .accordion_box::after {
  z-index: -1;
}
/*　見出し */
.title {
  cursor: pointer;
  width: 100%;
  padding: 18px 24px 18px 50px;
  position: relative;
  transition: var(--all);
  border-radius: 100px;
  background: linear-gradient(120deg, rgba(248, 137, 96, 1) 0%, rgba(248, 137, 96, 1) 55%, rgba(248, 180, 121, 1) 100%);
  color: #ffffff;
}
.title > .flex {
  column-gap: 24px;
}
.attention .title {
  z-index: 2;
}
.title.close {
  border-radius: 100px;
  background: linear-gradient(120deg, rgba(248, 180, 121, 1) 0%, rgba(248, 137, 96, 1) 45%, rgba(248, 137, 96, 1) 100%);
}
.title::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(248, 180, 121, 1) 0%, rgba(248, 137, 96, 1) 45%, rgba(248, 137, 96, 1) 100%);
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  transition: var(--all);
}
.news .title::after {
  content: "";
  display: block;
  width: calc(100% + 4px);
  height: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .title:hover::before {
    opacity: 1;
  }
}
.title time {
  font-size: 2.0rem;
  font-family: var(--en);
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.title-h3 {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.title .plus {
  display: flex;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: var(--all);
}
.title .plus::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 20px;
  height: auto;
  aspect-ratio: 1 / 1;
  clip-path: polygon(40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%);
  background-color: #F8B479;
}
.title.close .plus {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.title.close .plus::after {
  background-color: #F88960;
}
@media (hover: hover) and (pointer: fine) {
  .title:hover .plus {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .title:hover .plus::after {
    background-color: #F88960;
  }
}
/*　中身 */
.box {
  display: none;
  z-index: 2;
  position: relative;
}
.box.block {
  display: block !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.box .box-inner {
  display: flex;
  flex-direction: column;
  grid-row-gap: 50px;
}
.box-h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 8px;
  padding-bottom: 10px;
  color: var(--blue);
  position: relative;
}
.box-h4::before {
  content: "";
  display: block;
  width: 18px;
  height: 17px;
  background-image: url("../img/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.box-h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-image: url("../img/border.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.accordion_box .box .dl-column {
  grid-row-gap: 20px;
}
/*---------------------------------------------------------------------
	MV
---------------------------------------------------------------------*/
.main_img {
  width: 100%;
  position: relative;
  z-index: 3;
}
.main_img .img_wrap, .main_img .img_wrap img {
  width: 100%;
  height: 100%;
  max-height: inherit;
}
.main_img .img_wrap img {
  object-fit: cover;
  object-position: center;
}
h1 {
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  top: 23.6vw;
  right: 6.25vw;
  max-width: 578px;
  width: 40vw;
  height: auto;
  aspect-ratio: 578 / 313;
  background-image: url(../img/logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
/*---------------------------------------------------------------------
	ヘッダー
---------------------------------------------------------------------*/
@media screen and (min-width: 767px) {
  #header {
    height: 90px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
  }
  #header #g-nav {
    display: block;
    margin: 0 auto;
    height: inherit;
  }
  #header #g-nav ul.g-nav-ul {
    column-gap: 24px;
    height: inherit;
  }
  #header #g-nav ul.g-nav-ul li {
    position: relative;
  }
  #header #g-nav ul.g-nav-ul li a {
    padding: 5px;
    position: relative;
    font-family: var(--en);
    font-size: 1.8rem;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2px;
    font-weight: 700;
  }
  #header #g-nav ul.g-nav-ul li a::before {
    content: "";
    display: block;
    background-image: url("../img/nav_before.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    transition: var(--all);
  }
  #header #g-nav ul.g-nav-ul li a:hover::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
#header #g-nav ul.g-nav-ul li.new::before {
  content: "";
  display: block;
  width: 45px;
  height: 11px;
  background-image: url("../img/new.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -6px;
  left: calc(50% + 10px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/*---------------------------------------------------------------------
	
NEWS

---------------------------------------------------------------------*/
.news {
  padding: 130px 0 160px;
}
.news .box {
  padding: 40px 50px;
}
.accordion_box.new .title-h3::after {
  content: "NEW!";
  display: inline-block;
  font-size: 1.4rem;
  font-family: var(--en);
  color: #F88960;
  letter-spacing: normal;
  margin-left: 10px;
  vertical-align: 1px;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 0 8px;
}
/*---------------------------------------------------------------------
	
EVENT INFO

---------------------------------------------------------------------*/
.event-info {
  padding: 160px 0 180px;
}
.event-info::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 1185px;
  height: auto;
  aspect-ratio: 1185 / 1106;
  background-image: url("../img/eventinfo_mask.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.event-info .inner {
  max-width: 1200px;
  color: var(--blue);
}
.event-info .w-700 {
  max-width: 710px;
  margin: 0 auto;
  width: 100%;
}
.event-detail-wrap .event-detail {
  margin-bottom: 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.event-detail-wrap .event-detail .event-detail__ttl {
  font-size: 4.0rem;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.event-detail-wrap .event-detail__place {
  font-size: 2.8rem;
  padding: 6px;
  border-top: solid 2px var(--blue);
  border-bottom: solid 2px var(--blue);
  margin-bottom: 24px;
}
.event-detail-wrap .event-detail__place span {
  column-gap: 16px;
}
.event-detail-wrap .event-detail__place span::before, .event-detail-wrap .event-detail__place span::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.event-detail-wrap .event-detail__date {
  line-height: 1;
}
.event-detail-wrap .event-detail__date span {
  letter-spacing: normal;
  display: inline-block;
  font-family: var(--en);
  font-weight: 500;
}
.event-detail-wrap .event-detail__date > span:first-of-type {
  font-size: 7.4rem;
  margin-right: 16px;
  letter-spacing: 0.05em;
}
.event-detail-wrap .event-detail__date > span:nth-of-type(2) {
  font-size: 15rem;
}
.event-detail-wrap .event-detail__date > span:nth-of-type(2) span {
  font-size: 7.4rem;
  margin: 0 10px;
}
.event-detail-wrap .event-detail__date > span:last-of-type {
  font-size: 5.4rem;
  margin-left: 16px;
  letter-spacing: 0.05em;
}
.event-detail-t-wrap {
  gap: 20px;
  margin: 0 auto;
}
.event-detail-t-item, .event-detail-ticket {
  background-color: #ffffff;
  border: solid 2px var(--blue);
  border-radius: 20px;
}
.event-detail-time {
  width: calc(100%/2 - 10px);
  text-align: center;
  position: relative;
}
.event-detail-time dt, .event-detail-ticket dt {
  font-size: 1.8rem;
  background-color: #ffffff;
  padding: 8px 0 9px;
  line-height: 1;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  font-weight: 500;
  border-bottom: solid 2px var(--blue);
}
.event-detail-time dd {
  font-size: 1.8rem;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
}
.event-detail-time dd span {
  font-weight: 500;
}
.event-detail-time dd img {
  width: 20px;
}
.event-detail-ticket {
  text-align: center;
}
.event-detail-ticket dt {
  background-color: var(--blue);
  color: #ffffff;
}
.event-detail-ticket dd {
  font-size: 2.0rem;
  padding: 16px 0;
}
.event-detail-ticket dd > span {
  font-size: 1.5rem;
  display: inline-block;
  margin-left: -6px;
}
.event-detail-ticket {
  width: 100%;
  position: relative;
}
/* sold */
.event-detail-time.sold::after {
  content: "";
  display: block;
  max-width: 246px;
  width: 100%;
  height: auto;
  aspect-ratio: 246 / 53;
  background-image: url("../img/sold.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(-3deg);
  transform: translateY(-50%) translateX(-50%) rotate(-3deg);
}
/*---------------------------------------------------------------------
	
ATTENTION

---------------------------------------------------------------------*/
.attention {
  background: linear-gradient(120deg, #FFE89B, #FFFAC1);
  padding: 50px 0;
  margin: calc(9vw + 100px) 0;
}
.attention::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 9vw);
  position: absolute;
  top: calc(-9vw + 1px);
  left: 0;
  background: linear-gradient(120deg, #FFE89B, #FFFAC1);
  -webkit-mask-image: url(../img/attention_top.png);
  mask-image: url(../img/attention_top.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top;
  -webkit-mask-size: 100% 9vw;
  mask-repeat: no-repeat;
  mask-position: top;
  mask-size: 100% 9vw;
  pointer-events: none;
}
.attention::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 9vw);
  position: absolute;
  bottom: calc(-9vw + 1px);
  left: 0;
  background: linear-gradient(120deg, #FFE89B, #FFFAC1);
  -webkit-mask-image: url("../img/attention_bottom.png");
  mask-image: url("../img/attention_bottom.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  -webkit-mask-size: 100% 9vw;
  mask-repeat: no-repeat;
  mask-position: bottom;
  mask-size: 100% 9vw;
  pointer-events: none;
  z-index: -1;
}
.attention-ttl {
  background-color: #ffffff;
  text-align: center;
  color: var(--orange);
  font-weight: 700;
  padding: 8px 0;
  font-size: 1.8rem;
}
.attention .title {
  background: linear-gradient(120deg, rgba(250, 148, 67, 1) 0%, rgba(250, 148, 67, 1) 75%, rgba(252, 194, 95, 1) 100%);
}
.attention .title.close, .attention .title::before {
  background: linear-gradient(120deg, rgba(252, 194, 95, 1) 0%, rgba(250, 148, 67, 1) 25%, rgba(250, 148, 67, 1) 100%);
}
.attention .box, .goods-info .box {
  padding: 50px 100px;
}
.orange-box {
  background-color: #FAF8DC;
  color: var(--orange);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 40px;
}
.orange-box ul li {
  font-weight: 700;
  font-size: 1.8rem;
}
.orange-box ul {
  grid-row-gap: 8px;
}
.acc-ttl {
  font-weight: 800;
  font-size: 2.0rem;
  display: flex;
  align-items: center;
  column-gap: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.acc-ttl .en {
  font-size: 3.2rem;
  font-weight: 600;
}
.box-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 6px;
  margin-bottom: 16px;
  line-height: 1.3
}
.box-ttl::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon_orange.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/*---------------------------------------------------------------------
	
GOODS INFO

---------------------------------------------------------------------*/
.goods-info {
  padding: 140px 0 160px;
}
.tab {
  align-items: flex-end;
}
.tab li {
  position: relative;
  text-align: center;
  width: 100%;
  height: 70px;
  border: solid 2px var(--green);
  border-bottom: none;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: #ffffff;
}
.tab li:not(:last-child) {
  margin-right: 8px;
}
.tab li button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  text-decoration: none;
  color: var(--green);
  font-weight: 800;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  font-size: 2.0rem;
  letter-spacing: 0.05rem;
  cursor: pointer;
  transition: var(--all);
}
.tab li:nth-of-type(3) button {
  line-height: 1.25;
}
.tab li button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, rgba(93, 196, 84, 1) 0%, rgba(97, 197, 85, 1) 80%, rgba(146, 213, 98, 1) 100%);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  transition: var(--all);
  z-index: -1;
}
.tab li.active, .tab li.active button, .tab li button:hover {
  color: #ffffff;
}
.tab li.active, .tab li.active button {
  height: 80px;
}
.tab li.active button::before, .tab li button:hover::before {
  opacity: 1;
}
.area {
  display: none;
  opacity: 0;
  background: #fff;
  width: 100%;
  border: solid 2px var(--green);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.goods-info .box-ttl {
  border-bottom: 1px solid var(--green);
}
/*---------------------------------------------------------------------
	
GOODS LINEUP

---------------------------------------------------------------------*/
.goods-lineup {
  background: linear-gradient(120deg, #4A95F4, #83D4FF);
  padding: 90px 0 30px;
  margin: 9vw 0px;
}
.goods-lineup::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 9vw);
  position: absolute;
  top: calc(-9vw + 1px);
  left: 0;
  background: linear-gradient(120deg, #4A95F4, #83D4FF);
  -webkit-mask-image: url(../img/attention_top.png);
  mask-image: url(../img/attention_top.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top;
  -webkit-mask-size: 100% 9vw;
  mask-repeat: no-repeat;
  mask-position: top;
  mask-size: 100% 9vw;
  pointer-events: none;
}
.goods-lineup::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 9vw);
  position: absolute;
  bottom: calc(-9vw + 1px);
  left: 0;
  background: linear-gradient(120deg, #4A95F4, #83D4FF);
  -webkit-mask-image: url(../img/attention_bottom.png);
  mask-image: url("../img/attention_bottom.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
  -webkit-mask-size: 100% 9vw;
  mask-repeat: no-repeat;
  mask-position: bottom;
  mask-size: 100% 9vw;
  pointer-events: none;
}
.goods-lineup .bg {
  position: absolute;
  top: -100px;
  right: 0;
  max-width: 850px;
}
.goods-lineup .section-ttl {
  height: 90px;
}
/* SIZE LIST */
.size-ttl {
  color: #ffffff;
  font-family: var(--en);
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  margin-bottom: 20px;
}
.size-ttl::before, .size-ttl::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("../img/icon_white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.size-list .table-container caption {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}
.size-list .table-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.size-list .table-container table {
  text-align: center;
  border-collapse: collapse;
}
.size-list .table-container table td {
  border: solid 1px var(--blue);
  background-color: #ffffff;
}
.size-list .table-container table thead th {
  background-color: var(--blue);
  font-weight: 700;
  padding: 12px 0;
  vertical-align: middle;
  color: #ffffff;
}
.size-list .table-container table thead th:not(:last-of-type) {
  border-right: solid 1px #ffffff;
}
.size-list .table-container table td {
  vertical-align: middle;
}
.size-list .table-container tbody tr:nth-child(odd) td {
  background-color: #EFF7FF;
}
.size-list .table-container table {
  width: 100%;
}
.size-list .table-container table th {
  width: calc(100%/5);
}
.size-list .table-container table td {
  padding: 12px 0;
}
/*---------------------------------------------------------------------
	
footer

---------------------------------------------------------------------*/
.footer {
  background: linear-gradient(120deg, rgba(255, 192, 168, 1) 0%, rgba(253, 229, 190, 1) 100%);
  padding: 20px 0 70px;
  position: relative;
  margin-top: 5.76vw;
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 5.76vw);
  position: absolute;
  top: calc(-5.76vw + 1px);
  left: 0;
  background: linear-gradient(120deg, rgba(255, 192, 168, 1) 0%, rgba(253, 229, 190, 1) 100%);
  -webkit-mask-image: url("../img/footer_top.png");
  mask-image: url(../img/footer_top.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top;
  -webkit-mask-size: 100% 5.76vw;
  mask-repeat: no-repeat;
  mask-position: top;
  mask-size: 100% 5.76vw;
  pointer-events: none;
}
.sns-wrap-ttl {
  color: var(--blue);
  font-family: var(--en);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-bottom: 20px;
}
.sns-wrap-ttl::before, .sns-wrap-ttl::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../img/icon_blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.sns-icon {
  justify-content: center;
  align-items: center;
  column-gap: 16px;
}
.sns-icon a {
  width: 65px;
  height: 65px;
  background-color: #ffffff;
  border-radius: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns-icon a.x img {
  width: 28px;
}
.sns-icon a.line img {
  width: 36px;
}
.footer .button {
  background: linear-gradient(120deg, rgba(74, 149, 244, 1) 0%, rgba(76, 152, 244, 1) 70%, rgba(131, 212, 255, 1) 100%);
  padding: 10px 30px;
  padding-right: 40px;
}
.footer .button span {
  font-weight: 500;
  font-size: 1.8rem;
  font-family: var(--en);
}
.footer .button::before {
  background: linear-gradient(120deg, rgba(131, 212, 255, 1) 0%, rgba(76, 152, 244, 1) 30%, rgba(74, 149, 244, 1) 100%);
}
.footer .button .arrow {
  max-width: 36px;
  right: 14px;
}
.footer .button .arrow::after {
  max-width: 21px;
  aspect-ratio: 21 / 16;
  background-color: var(--blue);
}
/*  page-top  */
.page_top {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 20px;
  max-width: 74px;
  width: 100%;
  height: auto;
  z-index: 998;
  cursor: pointer;
}
.page_top img {
  object-fit: contain;
  transition: var(--all);
}
@media (hover: hover) and (pointer: fine) {
  .page_top:hover img {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
/* 見出し動き */
.fade {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
.fade.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@keyframes fadeUpAnimation {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* 装飾 */
.deco {
  position: absolute;
}
.deco.img01 {
  aspect-ratio: 428 / 338;
  max-width: 428px;
  min-width: 280px;
  width: 29.7vw;
  top: -130px;
  left: clamp(-400px, -27.8vw, -27.8vw);
}
@media screen and (max-width: 1100px) {
  .deco.img01 {
    left: -100px;
  }
}
.deco.img02 {
  aspect-ratio: 275 / 335;
  max-width: 275px;
  min-width: 200px;
  width: 19vw;
  top: -230px;
  right: 0;
}
.deco.img03 {
  aspect-ratio: 308 / 246;
  max-width: 308px;
  min-width: 250px;
  width: 21.4vw;
  bottom: -210px;
  left: 0;
}
.deco.img04 {
  aspect-ratio: 392 / 328;
  max-width: 392px;
  min-width: 250px;
  width: 27.2vw;
  top: -210px;
  right: clamp(-250px, -17.36vw, -17.36vw);
}
@media screen and (max-width: 1100px) {
  .deco.img04 {
    right: -100px;
  }
}
.deco.img05 {
  aspect-ratio: 534 / 441;
  max-width: 534px;
  min-width: 350px;
  width: 37vw;
  bottom: -400px;
  right: clamp(-310px, -21.5vw, -21.5vw);
}
@media screen and (max-width: 1100px) {
  .deco.img05 {
    right: -100px;
  }
}
.deco.img06 {
  aspect-ratio: 498 / 409;
  max-width: 498px;
  min-width: 250px;
  width: 34.6vw;
  top: -80px;
  left: -100px;
}
.deco.img07 {
  aspect-ratio: 261 / 287;
  max-width: 261px;
  min-width: 180px;
  width: 18.125vw;
  top: 50vw;
  right: -60px;
}
.deco.img08 {
  aspect-ratio: 538 / 455;
  max-width: 538px;
  min-width: 300px;
  width: 37.4vw;
  top: -200px;
  left: -140px;
}
/* カミングスーン */
.coming {
  font-family: var(--en);
  font-weight: 400;
  letter-spacing: 0.075em;
  font-size: 4.0rem;
  text-align: center;
  color: #ffffff;
  padding-bottom: 80px;
}
.coming1 {
  font-family: var(--en);
  font-weight: 400;
  letter-spacing: 0.075em;
  font-size: 4.0rem;
  text-align: center;
  color: #ffffff;
  padding-bottom: 80px;
}
.coming2 {
  font-family: var(--en);
  font-weight: 400;
  letter-spacing: 0.075em;
  font-size: 4.0rem;
  text-align: center;
  color: #62CC59;
  padding-bottom: 80px;
}
.coming::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url("../img/icon_orange.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto 16px;
}
/* ↓↓ goods info タブが2つ以上になったらコメントアウトで非表示にする ↓↓ */
/*.tab li {
  pointer-events: none;
}
 /* ↑↑ ここまで ↑↑ */


/* ↓↓ goods公開時 コメントアウトで非表示にする ↓↓ */
.goods-lineup::before {
  background: linear-gradient(120deg, rgba(74, 149, 244, 1) 5%, rgba(131, 212, 255, 1) 100%);
}
.goods-lineup::after {
  background: linear-gradient(120deg, rgba(74, 149, 244, 1) 0%, rgba(131, 212, 255, 1) 95%);
}
 /* ↑↑ ここまで ↑↑ */