@charset "UTF-8";
/* ================================================

- Base

================================================ */
[v-cloak] {
  display: none;
}

_:-ms-lang(x)::-ms-backdrop, [v-cloak] {
  display: block;
}

body {
  background-color: var(--cc-blue) !important;
}

body {
  overflow-x: hidden;
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
}

body.-bodyScrollStop {
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

:root {
  --cc-blue: #0e1b3c;
  --cc-lblue: #1e2570;
  --cc-hblue: #09122a;
  --w1280: 1280px;
  --space: 30px;
  --rem: 1rem /16;
}

/* ================================================

- 表示アニメーション

================================================ */
/* ================================================

- フォント

================================================ */
/* ================================================

- フォントサイズ

================================================ */
/* ================================================

- RWD表示切り替え

================================================ */
@media all and (min-width: 569px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 568px) {
  .nosp {
    display: none !important;
  }
}
/* ================================================

- flex

================================================ */
/* ================================================

- margin

================================================ */
/* magrin-topを5px刻みで50pxまで */
.mTop0 {
  margin-top: 0px;
}

.mTop5 {
  margin-top: 5px;
}

.mTop10 {
  margin-top: 10px;
}

.mTop15 {
  margin-top: 15px;
}

.mTop20 {
  margin-top: 20px;
}

.mTop25 {
  margin-top: 25px;
}

.mTop30 {
  margin-top: 30px;
}

.mTop35 {
  margin-top: 35px;
}

.mTop40 {
  margin-top: 40px;
}

.mTop45 {
  margin-top: 45px;
}

.mTop50 {
  margin-top: 50px;
}

.mTop55 {
  margin-top: 55px;
}

.mTop60 {
  margin-top: 60px;
}

.mTop65 {
  margin-top: 65px;
}

.mTop70 {
  margin-top: 70px;
}

.mTop75 {
  margin-top: 75px;
}

.mTop80 {
  margin-top: 80px;
}

.mTop85 {
  margin-top: 85px;
}

.mTop90 {
  margin-top: 90px;
}

.mTop95 {
  margin-top: 95px;
}

.mTop100 {
  margin-top: 100px;
}

/* magrin-bottomを5px刻みで50pxまで */
.mBtm0 {
  margin-bottom: 0px;
}

.mBtm5 {
  margin-bottom: 5px;
}

.mBtm10 {
  margin-bottom: 10px;
}

.mBtm15 {
  margin-bottom: 15px;
}

.mBtm20 {
  margin-bottom: 20px;
}

.mBtm25 {
  margin-bottom: 25px;
}

.mBtm30 {
  margin-bottom: 30px;
}

.mBtm35 {
  margin-bottom: 35px;
}

.mBtm40 {
  margin-bottom: 40px;
}

.mBtm45 {
  margin-bottom: 45px;
}

.mBtm50 {
  margin-bottom: 50px;
}

.mBtm55 {
  margin-bottom: 55px;
}

.mBtm60 {
  margin-bottom: 60px;
}

.mBtm65 {
  margin-bottom: 65px;
}

.mBtm70 {
  margin-bottom: 70px;
}

.mBtm75 {
  margin-bottom: 75px;
}

.mBtm80 {
  margin-bottom: 80px;
}

.mBtm85 {
  margin-bottom: 85px;
}

.mBtm90 {
  margin-bottom: 90px;
}

.mBtm95 {
  margin-bottom: 95px;
}

.mBtm100 {
  margin-bottom: 100px;
}

/* ================================================

- z-index

================================================ */
/* ================================================

-

================================================ */
.lozad {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.lozad[data-loaded=true] {
  opacity: 1;
}

/* ================================================

- イージング

================================================ */
/* ================================================

- ページ共通

================================================ */
.membership-sc {
  background-color: #0e1b3c;
  position: relative;
  z-index: 1;
}

/*--- media screen ---*/
/* ================================================

- MV

================================================ */
.membership-mv {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 4s cubic-bezier(0.33, 1, 0.68, 1);
}

.membership-mv.-active {
  opacity: 1;
}

.membership-mv__scrolldown {
  position: absolute;
  right: 42px;
  bottom: 197px;
  width: 10px;
}

.membership-mv__scrolldown__txt {
  position: relative;
}
.membership-mv__scrolldown__txt::after {
  content: "";
  position: absolute;
  bottom: -118px;
  left: 50%;
  translate: -50% 0;
  width: 1px;
  height: 100px;
  background-color: #FFFFFF;
  /* 起点を上部に設定 */
  -webkit-transform-origin: top;
          transform-origin: top;
  /* アニメーションの設定: 2秒かけて伸縮し、無限に繰り返す */
  -webkit-animation: stretchLine 2.5s ease-in-out infinite;
          animation: stretchLine 2.5s ease-in-out infinite;
}

@-webkit-keyframes stretchLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0); /* 最初は長さ0 */
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); /* 中間で最大に伸びる */
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.1% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom; /* 起点を下に切り替える */
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0); /* 下に向かって消える */
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes stretchLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0); /* 最初は長さ0 */
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); /* 中間で最大に伸びる */
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.1% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom; /* 起点を下に切り替える */
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0); /* 下に向かって消える */
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .membership-mv__scrolldown {
    right: 2.933vw;
    bottom: 20.533vw;
    width: 1.867vw;
  }
  .membership-mv__scrolldown__txt::after {
    bottom: -16vw;
    height: 13.333vw;
  }
}
/* ================================================

- showcase

================================================ */
.membership-sc.-showcase {
  min-height: 100vh;
  padding: 190px 0 10.156vw;
  background-image: url(/files/user/static/asset/images/fanclub/membership/2627/showcase_bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.membership-showcase {
  color: #FFFFFF;
  text-align: center;
}

.membership-showcase__ttl {
  font-size: 3.125rem;
  line-height: 1.425;
  letter-spacing: 0.28em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.membership-showcase__summary {
  margin-top: 72px;
}
.membership-showcase__summary p {
  font-size: 1.125rem;
  line-height: 2.389;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.membership-showcase__summary p:not(:first-of-type) {
  margin-top: 1em;
}

.membership-showcase__photo {
  margin-top: 14.453vw;
  position: relative;
}

.membership-showcase__photo__main {
  max-width: 56.25vw;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.membership-showcase__photo__sub {
  position: absolute;
}

.membership-showcase__photo__sub.-sub1 {
  left: 0;
  top: 14.844vw;
  width: 14.063vw;
}

.membership-showcase__photo__sub.-sub2 {
  right: 14.063vw;
  top: 19.531vw;
  width: 19.531vw;
}

.membership-showcase__photo__sub.-sub3 {
  right: 0;
  top: -8.594vw;
  width: 14.063vw;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .membership-sc.-showcase {
    min-height: 100vh;
    padding: 26.667vw 0 64vw;
    background-image: url(/files/user/static/asset/images/fanclub/membership/2627/showcase_bg_sp.jpg);
  }
  .membership-showcase__ttl {
    font-size: 9.3333333333vw;
  }
  .membership-showcase__summary {
    margin-top: 13.333vw;
    padding: 0 5.333vw;
  }
  .membership-showcase__summary p {
    font-size: 4.2666666667vw;
    line-height: 2;
  }
  .membership-showcase__summary p:not(:first-of-type) {
    margin-top: 1em;
  }
  .membership-showcase__photo {
    margin-top: 26.667vw;
  }
  .membership-showcase__photo__main {
    max-width: 100%;
    width: 74.667vw;
  }
  .membership-showcase__photo__sub.-sub1 {
    left: 0;
    top: 29.333vw;
    width: 26.667vw;
  }
  .membership-showcase__photo__sub.-sub2 {
    right: 5.333vw;
    top: 40vw;
    width: 32vw;
  }
  .membership-showcase__photo__sub.-sub3 {
    right: 0;
    top: -24vw;
    width: 34.667vw;
  }
}
/* ================================================

- 2026-27シーズンの変更点

================================================ */
.membership-sc.-changePoint {
  padding-top: 96px;
}

.membership-changePoint {
  margin-top: 50px;
}

.membership-changePoint__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  border: solid 1px #3c4c76;
}

.membership-changePoint__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  padding: 43px 29px 56px;
  background-color: #0a142d;
}

.membership-changePoint__item:not(:first-of-type) {
  border-left: solid 1px #3c4c76;
}

.membership-changePoint__item__icon {
  width: 97px;
  margin-left: auto;
  margin-right: auto;
}

.membership-changePoint__item__ttl {
  margin-top: 28px;
  font-size: 1.375rem;
  line-height: 1.475;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: #FFFFFF;
}
.membership-changePoint__item__ttl span.-number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.membership-changePoint__item__summary {
  margin-top: 33px;
}
.membership-changePoint__item__summary p {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
}
.membership-changePoint__item__summary p a {
  color: #62a1ff;
  text-decoration: underline;
}
.membership-changePoint__item__summary .m-indent--kome p {
  font-size: 0.875rem;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .membership-sc.-changePoint {
    padding-top: 18.667vw;
  }
  .membership-sc.-changePoint .membership-sc__inner {
    padding: 0 5.333vw;
  }
  .membership-changePoint {
    margin-top: 13.333vw;
  }
  .membership-changePoint__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    border: solid 1px #3c4c76;
  }
  .membership-changePoint__item {
    padding: 8vw 3.733vw 10.667vw;
  }
  .membership-changePoint__item:not(:first-of-type) {
    border-left: solid 1px #3c4c76;
  }
  .membership-changePoint__item:nth-last-of-type(-n+2) {
    border-top: solid 1px #3c4c76;
  }
  .membership-changePoint__item__icon {
    width: 14.933vw;
  }
  .membership-changePoint__item__ttl {
    margin-top: 5.333vw;
    font-size: 4.8vw;
  }
  .membership-changePoint__item__summary {
    margin-top: 6.667vw;
  }
  .membership-changePoint__item__summary p {
    font-size: 3.7333333333vw;
  }
  .membership-changePoint__item__summary .m-indent--kome p {
    font-size: 3.2vw;
  }
}
/* ================================================

- 選べる8つのプラン！

================================================ */
.membership-sc.-plan {
  padding: 152px 0 160px;
}

.membership-plan {
  margin-top: 52px;
}

.membership-plan__list {
  display: grid;
  gap: 20px 20px;
}

.membership-plan__list:not(:first-of-type) {
  margin-top: 20px;
}

.membership-plan__list.-column2 {
  grid-template-columns: repeat(2, 1fr);
}

.membership-plan__list.-column3 {
  grid-template-columns: repeat(3, 1fr);
}
.membership-plan__list.-column3 .membership-plan__item {
  padding: 25px 29px 42px;
}
.membership-plan__list.-column3.-single {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  position: relative;
}
.membership-plan__list.-column3.-single::before {
  content: "＋";
  position: absolute;
  top: -52px;
  left: 50%;
  translate: -50% 0;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
}
.membership-plan__list.-column3.-single .membership-plan__item {
  grid-column-start: 2; /* 2番目のカラムから配置を開始 */
}

.membership-plan__item {
  display: grid;
  grid-template-rows: auto 70px auto 1fr;
  grid-row: span 4;
  padding: 25px 29px;
  background-color: #0a142d;
  border: solid 1px #3c4c76;
  color: #FFFFFF;
}

.membership-plan__item.-platinum .membership-plan__item__price,
.membership-plan__item.-platinum .membership-plan__item__ttl.-en {
  background: linear-gradient(260deg, rgb(119, 121, 129) 1%, rgb(180, 182, 192) 50%, rgb(119, 121, 129) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.membership-plan__item.-gold .membership-plan__item__price,
.membership-plan__item.-gold .membership-plan__item__ttl.-en {
  background: linear-gradient(260deg, rgb(196, 144, 32) 1%, rgb(234, 197, 48) 50%, rgb(196, 144, 32) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.membership-plan__item.-silver .membership-plan__item__price,
.membership-plan__item.-silver .membership-plan__item__ttl.-en {
  color: #bbbbbb;
}

.membership-plan__item.-light .membership-plan__item__price,
.membership-plan__item.-light .membership-plan__item__ttl.-en {
  color: #00b9ba;
}

.membership-plan__item.-family .membership-plan__item__price,
.membership-plan__item.-family .membership-plan__item__ttl.-en {
  color: #2c92e5;
}

.membership-plan__item.-youth .membership-plan__item__price,
.membership-plan__item.-youth .membership-plan__item__ttl.-en {
  color: #e4801f;
}

.membership-plan__item.-kids .membership-plan__item__price,
.membership-plan__item.-kids .membership-plan__item__ttl.-en {
  color: #ffed9a;
}

.membership-plan__item.-ticket .membership-plan__item__price,
.membership-plan__item.-ticket .membership-plan__item__ttl.-en {
  color: #506ebc;
}

.membership-plan__item.-end {
  position: relative;
}
.membership-plan__item.-end::after {
  content: "SOLD OUT";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-size: 3.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: #FFFFFF;
  white-space: nowrap;
  rotate: -15deg;
  padding: 10px 15px;
  background-color: #bc0101;
}

.membership-plan__item__ttl.-en {
  font-size: 3rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.membership-plan__item__ttl.-jp {
  margin-top: 2px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.membership-plan__item__ttl.-jp small {
  display: block;
  margin-top: 10px;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.membership-plan__item__price {
  margin-top: 27px;
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.membership-plan__item__price small {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.membership-plan__item__summary {
  margin-top: 21px;
  padding-top: 17px;
  border-top: solid 1px #3c4c76;
}
.membership-plan__item__summary p {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .membership-sc.-plan {
    padding: 18.667vw 0 26.667vw;
  }
  .membership-sc.-plan .membership-sc__inner {
    padding: 0 5.333vw;
  }
  .membership-plan {
    margin-top: 8vw;
  }
  .membership-plan__list {
    display: grid;
    gap: 4vw;
  }
  .membership-plan__list:not(:first-of-type) {
    margin-top: 5.333vw;
  }
  .membership-plan__list.-column2 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .membership-plan__list.-column3 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .membership-plan__list.-column3 .membership-plan__item {
    padding: 5.333vw 6.4vw 8vw;
  }
  .membership-plan__list.-column3.-single {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    margin-top: 13.333vw;
  }
  .membership-plan__list.-column3.-single::before {
    top: -11.2vw;
    font-size: 7.2vw;
  }
  .membership-plan__item {
    grid-template-rows: auto auto auto 1fr;
    padding: 5.333vw 6.4vw 6.933vw;
  }
  .membership-plan__item.-end::after {
    font-size: 10.6666666667vw;
    padding: 10px 15px;
  }
  .membership-plan__item__ttl.-en {
    font-size: 10.1333333333vw;
  }
  .membership-plan__item__ttl.-jp {
    margin-top: 0.533vw;
    font-size: 4.2666666667vw;
  }
  .membership-plan__item__ttl.-jp small {
    margin-top: 2.667vw;
    font-size: 3.4666666667vw;
  }
  .membership-plan__item__price {
    margin-top: 8vw;
    font-size: 6.6666666667vw;
  }
  .membership-plan__item__price small {
    font-size: 2.9333333333vw;
  }
  .membership-plan__item__summary {
    margin-top: 3.467vw;
    padding-top: 3.2vw;
  }
  .membership-plan__item__summary p {
    font-size: 3.4666666667vw;
  }
}
/* ================================================

- セパレート画像

================================================ */
.membership-sc.-separateImg {
  width: 100%;
  min-height: 480px;
  position: sticky;
  top: 0;
  z-index: -1;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .membership-sc.-separateImg {
    width: 100%;
    min-height: 0;
    position: sticky;
    top: 0;
    z-index: -1;
  }
  .membership-sc.-separateImg img {
    height: 66.667vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
/* ================================================

- スライドテキスト

================================================ */
.m-slide__txt {
  margin-top: 100px;
  overflow-y: clip;
  overflow-x: clip;
}

.m-slide__txt.-slide2 {
  margin-top: 138px;
}

.m-slide__txt__clone {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}

.m-slide__txt__list {
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.m-slide__txt__list.-list1 {
  -webkit-animation: loop-slide-top-1 50s -25s infinite linear none;
          animation: loop-slide-top-1 50s -25s infinite linear none;
}

.m-slide__txt__list.-list2 {
  -webkit-animation: loop-slide-top-2 50s infinite linear none;
          animation: loop-slide-top-2 50s infinite linear none;
}
.m-slide__txt__list.-list2 .m-slide__txt__item {
  margin-left: 40px;
}

.m-slide__txt__list.-list1.-reverse {
  -webkit-animation: loop-slide-btm-1 50s -25s infinite linear none;
          animation: loop-slide-btm-1 50s -25s infinite linear none;
}

.m-slide__txt__list.-list2.-reverse {
  -webkit-animation: loop-slide-btm-2 50s infinite linear none;
          animation: loop-slide-btm-2 50s infinite linear none;
}

.m-slide__txt__item {
  width: 3618px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

@-webkit-keyframes loop-slide-top-1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  99.9%, to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop-slide-top-1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  99.9%, to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop-slide-top-2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  99.9%, to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop-slide-top-2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  99.9%, to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@-webkit-keyframes loop-slide-btm-1 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  99.9%, to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop-slide-btm-1 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  99.9%, to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes loop-slide-btm-2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  99.9%, to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loop-slide-btm-2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  99.9%, to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .m-slide__txt {
    margin-top: 80px;
  }
  .m-slide__txt.-slide2 {
    margin-top: 118px;
  }
  .m-slide__txt__item {
    width: 3618px;
  }
}
/* ================================================

- 会員特典一覧

================================================ */
.membership-sc.-benefits {
  padding-top: 155px;
}

.membership-benefits {
  margin-top: 44px;
}

.membership-benefits__summary p {
  font-size: 1rem;
  line-height: 1.667;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
}

.membership-benefits__table {
  margin-top: 20px;
}

.membership-overflow-container {
  overflow: visible;
}

.membership-table {
  width: 100%;
  border-top: solid 1px var(--cc-blue);
  border-collapse: collapse;
  border-spacing: 0;
}
.membership-table th,
.membership-table td {
  font-size: 0.9375rem;
  line-height: 1.25;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  vertical-align: middle;
  text-align: center;
}
.membership-table tbody tr {
  background-color: #FFFFFF;
}
.membership-table tbody tr.-bg1 {
  background-color: #dee9fb;
}
.membership-table tbody tr.-bg2 {
  background-color: #dceff2;
}
.membership-table tbody tr.-bg3 {
  background-color: #fbe7dc;
}
.membership-table tbody th {
  padding: 9px 13px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  vertical-align: middle;
  border-top: solid 1px var(--cc-blue);
  border-right: solid 1px var(--cc-blue);
}
.membership-table tbody th[rowspan="1"] + td .membership-accordion__list .membership-accordion__item dd {
  min-height: 81px;
}

.membership-accordion__summary {
  /* display: list-item; */ /* 外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.membership-accordion__summary:hover {
  opacity: 0.7;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary.membership-accordion__summary::-webkit-details-marker {
  display: none;
}

.membership-table__tbody {
  background-color: #FFFFFF;
}

.membership-table__tbody + .membership-table__tbody {
  border-top: solid 1px var(--cc-blue);
}

.membership-accordion__item {
  display: grid;
  grid-template-columns: auto repeat(9, 100px);
  gap: 0;
  border-bottom: solid 1px var(--cc-blue);
  background-color: transparent;
}
.membership-accordion__item dt {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px 10px;
  font-size: 0.875rem;
  line-height: 1.25;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  background-color: transparent;
  border-right: solid 1px var(--cc-blue);
  position: relative;
}
.membership-accordion__item dt::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 15px;
  translate: 0 -50%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--cc-blue);
  width: 10px;
  height: 10px;
}
.membership-accordion__item dt small {
  display: block;
  margin-top: 5px;
  font-size: 0.6875rem;
  line-height: 1.333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.membership-accordion__item dt.-dl1::after {
  display: none;
}
.membership-accordion__item dd {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 59px;
  padding: 10px 0 10px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.267;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: transparent;
}
.membership-accordion__item dd small {
  font-size: 0.8125rem;
  line-height: 1.333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.membership-accordion__item dd.-area3 {
  grid-column: span 3;
}
.membership-accordion__item dd.-area5 {
  grid-column: span 5;
}
.membership-accordion__item dd.-area7 {
  grid-column: span 7;
}
.membership-accordion__item dd:not(:first-of-type) {
  border-left: solid 1px var(--cc-blue);
}
.membership-accordion__item dd.-dl2 {
  background: -webkit-gradient(linear, left top, right top, from(rgb(110, 112, 117)), color-stop(50%, rgb(165, 167, 174)), to(rgb(110, 112, 117)));
  background: linear-gradient(90deg, rgb(110, 112, 117) 0%, rgb(165, 167, 174) 50%, rgb(110, 112, 117) 100%);
}
.membership-accordion__item dd.-dl3 {
  background: -webkit-gradient(linear, left top, right top, from(rgb(181, 135, 35)), color-stop(50%, rgb(224, 190, 55)), to(rgb(181, 135, 35)));
  background: linear-gradient(90deg, rgb(181, 135, 35) 0%, rgb(224, 190, 55) 50%, rgb(181, 135, 35) 100%);
}
.membership-accordion__item dd.-dl4 {
  background-color: #c6c6c6;
}
.membership-accordion__item dd.-dl5 {
  background-color: #00b9ba;
}
.membership-accordion__item dd.-dl6 {
  background-color: #2c92e5;
}
.membership-accordion__item dd.-dl7 {
  background-color: #e4801f;
}
.membership-accordion__item dd.-dl8 {
  background-color: #ffed9a;
}
.membership-accordion__item dd.-dl9 {
  background-color: #506ebc;
}
.membership-accordion__item dd.-dl10 {
  background-color: #7493e1;
}

.membership-accordion__item.-price dt::after {
  display: none;
}

.membership-table__thead {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.membership-table__thead .membership-accordion__item dt {
  padding: 0;
  background-color: #1b316a;
}
.membership-table__thead .membership-accordion__item dd {
  min-height: 0;
  padding: 16px 0 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.membership-table__thead .membership-accordion__item dd.-dl8,
.membership-table__thead .membership-accordion__item dd.-dl4 {
  color: #1f2770;
}

.membership-table__tbody .membership-accordion__item {
  border-bottom: none;
}
.membership-table__tbody .membership-accordion__item dd {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.membership-accordion__content {
  background-color: #FFFFFF;
  border-bottom: solid 1px var(--cc-blue);
}

.membership-arena__block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 60px;
  padding: 23px 60px;
}

.membership-arena__block__image {
  width: 120px;
}
.membership-arena__block__image img {
  display: block;
}
.membership-arena__block__image figcaption {
  margin-top: 5px;
  font-size: 0.6875rem;
  line-height: 1.333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.membership-arena__block__summary p {
  font-size: 0.875rem;
  line-height: 1.475;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: left;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .membership-sc.-benefits {
    padding-top: 18.667vw;
  }
  .membership-sc.-benefits .membership-sc__inner {
    padding: 0 5.333vw;
  }
  .membership-benefits {
    margin-top: 8vw;
  }
  .membership-benefits__summary p {
    font-size: 3.2vw;
  }
  .membership-benefits__table {
    margin-top: 4vw;
  }
  .membership-overflow-container {
    overflow-x: scroll;
  }
  .membership-table {
    width: 770px;
  }
  .membership-table th,
  .membership-table td {
    font-size: 0.75rem;
    line-height: 1.25;
  }
  .membership-table tbody th {
    padding: 0 5px;
  }
  .membership-table th[rowspan="1"] + td .membership-accordion__list .membership-accordion__item dd {
    min-height: 63px;
  }
  .membership-table__tbody,
  .membership-table__thead {
    width: 770px;
  }
  .membership-accordion__item {
    width: 100%;
    grid-template-columns: auto repeat(9, 68px);
  }
  .membership-accordion__item dt {
    padding: 16px 1px 16px;
    font-size: 0.6875rem;
    text-align: center;
  }
  .membership-accordion__item dt::after {
    content: "";
    position: absolute;
    top: auto;
    right: 50%;
    bottom: 6px;
    translate: 50% 0;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background-color: var(--cc-blue);
    width: 6px;
    height: 6px;
  }
  .membership-accordion__item dt small {
    font-size: 0.625rem;
    text-align: left;
  }
  .membership-accordion__item dd {
    min-height: 0;
    padding: 16px 2px 16px;
    font-size: 0.6875rem;
  }
  .membership-accordion__item dd small {
    font-size: 0.625rem;
    text-align: left;
  }
  .membership-arena__block {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    gap: 20px;
    padding: 15px 20px;
  }
  .membership-arena__block:has(> .-size2) {
    padding-left: 15px;
  }
  .membership-arena__block__image {
    max-width: 120px;
    width: 80px;
  }
  .membership-arena__block__image figcaption {
    margin-top: 5px;
    font-size: 0.625rem;
  }
  .membership-arena__block__summary p {
    font-size: 0.6875rem;
  }
}
/* ================================================

- 特典に関する注意事項

================================================ */
.membership-sc.-attn {
  padding-top: 55px;
}

.membership-attn__item {
  letter-spacing: 0.02em;
  color: #FFFFFF;
}
.membership-attn__item dt {
  font-size: 1.125rem;
  line-height: 1.334;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.membership-attn__item dd {
  margin-top: 13px;
}

.membership-attn__item:not(:first-of-type) {
  margin-top: 40px;
}

.membership-attn__summary p {
  font-size: 0.9375rem;
  line-height: 1.733;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.membership-attn__summary p font {
  color: #ff4444;
}

.membership-attn__btn {
  margin-top: 95px;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .membership-sc.-attn {
    padding-top: 13.333vw;
  }
  .membership-sc.-attn .membership-sc__inner {
    padding: 0 5.333vw;
  }
  .membership-attn__item dt {
    font-size: 4vw;
  }
  .membership-attn__item dd {
    margin-top: 2.667vw;
  }
  .membership-attn__item:not(:first-of-type) {
    margin-top: 8vw;
  }
  .membership-attn__summary p {
    font-size: 3.4666666667vw;
  }
  .membership-attn__btn {
    margin-top: 16vw;
  }
}
/* ================================================

- 来場ポイントサービス

================================================ */
.membership-sc.-other {
  padding-top: 160px;
}

.membership-other__block {
  width: calc(100vw - (100vw - 100%) / 2);
  background-color: #1b316a;
  position: relative;
}

.membership-other__block:nth-of-type(2n) {
  background-color: #132655;
}

.membership-other__block__layout {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}

.membership-other__block__content {
  max-width: 525px;
  width: 100%;
  padding: 65px 40px 30px 80px;
}

.membership-other__block__summarys {
  color: #FFFFFF;
}
.membership-other__block__summarys dt {
  font-size: 1.625rem;
  line-height: 1.465;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.membership-other__block__summary {
  margin-top: 33px;
}
.membership-other__block__summary p {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.membership-other__block__summary .m-indent--kome {
  margin-top: 30px;
}
.membership-other__block__summary .m-indent--kome p {
  line-height: 1.567;
}

.membership-other__photo {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 640px;
  width: 50vw;
}
.membership-other__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 25%;
     object-position: 50% 25%;
  height: 430px;
}

.membership-other__btm {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  padding: 43px 85px 78px;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .membership-sc.-other {
    padding-top: 18.667vw;
  }
  .membership-other__block {
    width: 100%;
  }
  .membership-other__block__layout {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .membership-other__block__content {
    max-width: 100%;
    width: 100%;
    padding: 6.667vw 5.333vw 5.333vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .membership-other__block__summarys dt {
    font-size: 6.1333333333vw;
    line-height: 1.465;
  }
  .membership-other__block__summary {
    margin-top: 4vw;
  }
  .membership-other__block__summary p {
    font-size: 3.7333333333vw;
    line-height: 1.75;
  }
  .membership-other__block__summary .m-indent--kome {
    margin-top: 5.333vw;
  }
  .membership-other__photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .membership-other__photo img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 25%;
       object-position: 50% 25%;
    height: 64vw;
  }
  .membership-other__btm {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
            justify-content: flex-end;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    padding: 0 5.333vw 12vw;
  }
}
/* ================================================

- swiper

================================================ */
.p-swiper.swiper {
  width: 100%;
}

.p-swiper__list.swiper-wrapper {
  padding-bottom: 45px;
}

.swiper-slide.p-swiper__slide {
  width: 100%;
  height: auto;
  cursor: -webkit-grab;
  cursor: grab;
}

/* swiper
**********************/
.swiper-button-prev.p-swiper__prev,
.swiper-button-next.p-swiper__next {
  position: absolute;
  top: -17px;
  cursor: pointer;
  z-index: 11;
  -webkit-transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.swiper-button-prev.p-swiper__prev::after,
.swiper-button-next.p-swiper__next::after {
  content: "";
  width: 13px;
  height: 13px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.swiper-button-prev.p-swiper__prev:hover,
.swiper-button-next.p-swiper__next:hover {
  opacity: 0.8;
}

.swiper-button-prev.p-swiper__prev.swiper-button-disabled,
.swiper-button-next.p-swiper__next.swiper-button-disabled {
  opacity: 0;
}

/* 前ページボタンのスタイル */
.swiper-button-prev.p-swiper__prev {
  left: 30px;
}
.swiper-button-prev.p-swiper__prev::after {
  left: 0;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
}

/* 次ページボタンのスタイル */
.swiper-button-next.p-swiper__next {
  right: 30px;
}
.swiper-button-next.p-swiper__next::after {
  right: 0;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}

.swiper-button__arrow.p-swiper__arrow {
  position: relative;
}

.swiper-pagination.p-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.swiper-pagination.p-pagination .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination.p-pagination .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}
.swiper-pagination.p-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .p-swiper__list.swiper-wrapper {
    padding-bottom: 45px;
  }
  /* swiper
  **********************/
  .swiper-button-prev.p-swiper__prev,
  .swiper-button-next.p-swiper__next {
    top: -4.533vw;
  }
  .swiper-button-prev.p-swiper__prev::after,
  .swiper-button-next.p-swiper__next::after {
    width: 3.467vw;
    height: 3.467vw;
  }
  /* 前ページボタンのスタイル */
  .swiper-button-prev.p-swiper__prev {
    left: 8vw;
  }
  /* 次ページボタンのスタイル */
  .swiper-button-next.p-swiper__next {
    right: 8vw;
  }
  .swiper-pagination.p-pagination .swiper-pagination-bullet {
    width: 3.2vw;
    height: 3.2vw;
  }
  .swiper-pagination.p-pagination .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination.p-pagination .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1.6vw;
  }
}