@charset "UTF-8";
/*-------------------------------------------
CSS Variables
-------------------------------------------*/
:root {
  /* Colors */
  --richBlack: #000;
  --black: #272727;
  --gray: #9F9F9F; /* テキストグレー */
  --lightGray: #DCDCDC;
  --slightGray: #f7f7f7; /* 背景グレー */
  --white: #fff;
  --mediumGray: #6A6A6A;
  --overlay: rgba(0, 0, 0, 0.8);
  /* Typography */
  --font-family-primary: "Inter", sans-serif;
}

body {
  letter-spacing: 0.07em;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
  background-color: var(--black);
}

main {
  max-width: 1320px;
  margin-inline: auto;
}
@media (max-width: 1440px) {
  main {
    padding-inline: 60px;
    padding-inline: clamp(22px, 4.1666666667vw, 60px);
  }
}
@media (max-width: 768px) {
  main {
    padding-inline: 22px;
  }
}

main > section,
.lineup-top-container {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 120px;
  margin-inline: calc(50% - 50vw);
  max-width: 100vw;
  padding-inline: calc(50vw - 50%);
}
@media (max-width: 768px) {
  main > section,
  .lineup-top-container {
    padding-top: 96px;
    padding-bottom: 96px;
    padding-inline: 0;
    padding-inline: 22px;
  }
}
main > section.bgBlack,
.lineup-top-container.bgBlack {
  background-color: var(--black);
  color: var(--white);
}
main > section.bgBlack .section-title-top,
.lineup-top-container.bgBlack .section-title-top {
  color: var(--white);
}
main > section.bgBlack .section-title-sub-top,
.lineup-top-container.bgBlack .section-title-sub-top {
  color: var(--gray);
}

main > section:not(.bgBlack) + section:not(.bgBlack),
main > section:not(.bgBlack) + .lineup-top-container,
.lineup-top-container + section:not(.bgBlack),
main > section:not(.bgBlack) + .modal + section:not(.bgBlack),
main > section:not(.bgBlack) + .modal + .lineup-top-container {
  padding-top: 40px;
}
@media (max-width: 768px) {
  main > section:not(.bgBlack) + section:not(.bgBlack),
  main > section:not(.bgBlack) + .lineup-top-container,
  .lineup-top-container + section:not(.bgBlack),
  main > section:not(.bgBlack) + .modal + section:not(.bgBlack),
  main > section:not(.bgBlack) + .modal + .lineup-top-container {
    padding-top: 0;
  }
}

.section-title-top {
  font-size: 88px;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-title-top {
    font-size: 44px;
    font-weight: 900;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
  }
}
.benefit__btn + .section-title-top {
  margin-top: 160px;
}
@media (max-width: 768px) {
  .benefit__btn + .section-title-top {
    margin-top: 96px;
  }
}

.section-title-sub-top {
  margin-top: 40px;
  font-size: 18px;
  font-weight: bold;
  color: var(--gray);
  line-height: 1;
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .section-title-sub-top {
    margin-top: 24px;
    font-size: 16px;
    margin-bottom: 40px;
  }
}

/*-------------------------------------------
HEADER STYLES
-------------------------------------------*/
.top-header {
  background-color: transparent;
  border: none;
}
.top-header .header__inner .site-title {
  display: none;
}
.top-header .header__inner .site-title-logo {
  /* display: none; */
}

.openbtn1 {
  right: 20px;
  animation: topBtnFadeIn 2s ease 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(-30px);
}
@media (max-width: 768px) {
  .openbtn1 {
    right: 16px;
  }
}

/*-------------------------------------------
TOP MV STYLES
-------------------------------------------*/
.top-mv {
  width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.top-mv__mv {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  animation: mvFadeIn 2s ease 0.7s;
  animation-fill-mode: forwards;
}
.top-mv__mv img {
  width: 100%;
  height: 100%;
}

@keyframes mvFadeIn {
  0% {
    opacity: 0;
    scale: 1.07;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.top-mv__img {
  width: 111px;
  height: 45px;
  position: fixed;
  top: 20px;
  left: 92px;
  z-index: 9997;
  transform: translateX(0%);
}
@media (max-width: 768px) {
  .top-mv__img {
    width: 82px;
    height: 32px;
    left: 16px;
    transform: translateX(0%);
  }
}

/*-------------------------------------------
BUTTON STYLES
-------------------------------------------*/
.top-mv__btn {
  position: fixed;
  top: 20px;
  right: 92px;
  z-index: 9997;
  animation: topBtnFadeIn 2s ease 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(-30px);
}
@media (max-width: 768px) {
  .top-mv__btn {
    top: 8px;
    right: 72px;
  }
}
.top-mv__btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  font-size: 14px;
  font-weight: bold;
  color: var(--richBlack);
  border-radius: 30px;
  padding: 18px 48px 18px 24px;
  height: 48px;
  width: 212px;
  outline: 1px solid var(--richBlack);
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top-mv__btn a {
    width: 148px;
    font-size: 12px;
    padding: 10px 40px 10px 20px;
    line-height: 1.6;
  }
}
.top-mv__btn a:hover {
  background-color: var(--richBlack);
  color: var(--white);
  opacity: 1;
}
.top-mv__btn a:hover::after {
  background-color: var(--white);
}
.top-mv__btn a::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 14px;
  width: 25px;
  height: 25px;
  margin: auto;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url("/ticket/season2026/img/icon_megaphone.svg");
  background-color: var(--richBlack);
  transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .top-mv__btn a::after {
    right: 11px;
    width: 23px;
    height: 23px;
  }
}

@keyframes topBtnFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-------------------------------------------
FOOTER BUTTON STYLES
-------------------------------------------*/
.footer-btn-list {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  gap: 24px;
  z-index: 900;
  animation: footerBtnFadeIn 2s ease 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .footer-btn-list {
    bottom: 0;
    right: 0;
    gap: 0;
    width: 100%;
    border-top: 1px solid var(--gray);
  }
}
@media (max-width: 768px) {
  .footer-btn-list li {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .footer-btn-list li:nth-of-type(3) {
    display: none;
  }
}
.footer-btn-list .btn {
  margin-top: 0;
}
.footer-btn-list .btn a {
  width: 240px;
  height: 80px;
  background-color: var(--white);
  border-radius: 4px;
  padding: 0;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, transparent 66.666666%, var(--richBlack) 66.666666%);
}
@media (max-width: 768px) {
  .footer-btn-list .btn a {
    width: 100%;
    height: 56px;
    border-radius: 0;
    border: none;
    background-image: none;
  }
}
@media (max-width: 768px) {
  .footer-btn-list .btn a:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 56px;
    height: 100%;
    background-color: var(--richBlack);
    border-radius: 0;
    z-index: -1;
  }
}
.footer-btn-list .btn a span {
  font-size: 14px;
  font-weight: bold;
  color: var(--richBlack);
  padding: 0 98px 0 18px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-btn-list .btn a span {
    font-size: 12px;
    padding: 0 64px 0 8px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-btn-list .btn a span i {
    margin-top: 0;
    font-size: 10px;
    line-height: 1.4;
  }
}
.footer-btn-list .btn a span:before {
  right: 20px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer-btn-list .btn a span:before {
    right: 12px;
    width: 32px;
    height: 32px;
  }
}
.footer-btn-list .btn a span:after {
  right: 28px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer-btn-list .btn a span:after {
    right: 15px;
  }
}
.footer-btn-list .btn a::before {
  display: none;
}
.footer-btn-list .btn a:hover {
  background-color: var(--richBlack);
}
.footer-btn-list .btn a:hover span {
  color: var(--white);
}
.footer-btn-list .btn a:hover span:before {
  background-color: var(--white);
  transform: scale(1.2);
}
.footer-btn-list .btn a:hover span:after {
  background-color: var(--richBlack);
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .footer-btn-list.only-personal li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-btn-list.only-personal li a {
    max-width: 100%;
  }
}

@keyframes footerBtnFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-------------------------------------------
TITLE & MESSAGE STYLES
-------------------------------------------*/
.top-mv__title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}
@media (max-width: 768px) {
  .top-mv__title-box > div {
    margin-top: -10%;
  }
}

.top-mv__title-up {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 1440px;
  animation: mvTitleFadeIn 2s ease 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  scale: 1.1;
}
@media (max-width: 768px) {
  .top-mv__title-up {
    justify-content: flex-start;
    gap: 140px;
    width: 100%;
  }
}

.top-mv__title-up__year {
  font-size: clamp(40px, 5.5555555556vw, 80px);
  font-weight: bold;
  font-family: "Inter", sans-serif;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.top-mv__title-up__for {
  font-size: clamp(24px, 2.9166666667vw, 42px);
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.top-mv__title-up__for span {
  font-weight: bold;
}

.top-mv__title {
  text-align: center;
  font-size: clamp(72px, 12.7083333333vw, 183px);
  font-weight: 900;
  font-family: "Inter", sans-serif;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
  animation: mvTitleFadeIn 2s ease 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  scale: 1.1;
}
@media (max-width: 768px) {
  .top-mv__title {
    white-space: wrap;
    text-align: left;
  }
}

@keyframes mvTitleFadeIn {
  0% {
    opacity: 0;
    scale: 1.1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.top-mv__message {
  margin-top: 44px;
  text-align: center;
  font-size: clamp(24px, 2.3611111111vw, 34px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  animation: footerBtnFadeIn 2s ease 3.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .top-mv__message {
    margin-top: 32px;
    text-align: left;
    line-height: 1.2;
  }
}
@media (max-width: 450px) {
  .top-mv__message {
    white-space: nowrap;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*-------------------------------------------
SCROLL DOWN STYLES
-------------------------------------------*/
.scrolldown-box {
  display: block;
  border: 1px solid var(--white);
  width: 32px;
  height: 56px;
  border-radius: 30px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -16px;
  animation: footerBtnFadeIn 2s ease 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .scrolldown-box {
    bottom: 110px;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

/* 丸の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 20px;
  }
  100% {
    bottom: -4px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -1px;
  left: -0.5px;
  /*線の形状*/
  width: 1px;
  height: 24px;
  background: var(--white);
}

/*-------------------------------------------
MESSAGE SECTION STYLES
-------------------------------------------*/
#message {
  margin-top: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1100px) {
  #message {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.message__title {
  margin: 0 auto;
  max-width: 486px;
}
@media (max-width: 768px) {
  .message__title {
    max-width: 350px;
  }
}

.message__message {
  margin-top: 64px;
  text-align: center;
  line-height: 1.8;
}
@media (max-width: 1100px) {
  .message__message {
    margin-top: 32px;
  }
}

.message__list {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  gap: clamp(10px, 2.5vw, 36px);
}
@media (max-width: 768px) {
  .message__list {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
.message__list li {
  display: flex;
  flex-direction: column;
  height: auto;
}
@media (max-width: 768px) {
  .message__list li {
    width: calc((100% - clamp(10px, 2.5vw, 36px) * 1) / 2);
  }
}

.message__list__img {
  border-radius: 8px;
  overflow: hidden;
}

.message__list__title {
  margin-top: 24px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .message__list__title {
    margin-top: 16px;
    font-size: 16px;
  }
}

.message__list__text {
  margin-top: 18px;
  font-size: 14px;
  color: var(--mediumGray);
  line-height: 1.8;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .message__list__text {
    margin-top: 12px;
    line-height: 1.6;
  }
}
.message__list__text span {
  font-size: 12px;
}

.message__list__link {
  position: relative;
  margin-left: auto;
  margin-top: 18px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
}
.message__list__link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transition: 0.3s;
}
.message__list__link:hover::before {
  bottom: -6px;
  height: 5px;
}

/*-------------------------------------------
ETICKET SECTION STYLES
-------------------------------------------*/
.modal + #eticket {
  padding-top: 20px;
}
@media (max-width: 768px) {
  .modal + #eticket {
    padding-top: 0;
  }
}
#eticket .eticket__container {
  margin: 0 auto;
  padding: 40px 38px 40px 38px;
  background-color: var(--slightGray);
  border-radius: 16px;
  max-width: 1094px;
  display: flex;
  justify-content: flex-start;
  gap: clamp(24px, 5.1388888889vw, 74px);
  gap: clamp(24px, 3.4722222222vw, 50px);
  overflow: hidden;
}
@media (max-width: 768px) {
  #eticket .eticket__container {
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
  }
}
#eticket .eticket__container .eticket__container-left .eticket-title {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  #eticket .eticket__container .eticket__container-left .eticket-title {
    font-size: 32px;
    text-align: center;
  }
}
#eticket .eticket__container .eticket__container-left figure {
  position: relative;
  z-index: 1;
  width: 170px;
  min-width: 170px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  #eticket .eticket__container .eticket__container-left figure {
    min-width: 140px;
  }
}
@media (max-width: 768px) {
  #eticket .eticket__container .eticket__container-left figure {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--gray);
  }
}
#eticket .eticket__container .eticket__container-left figure img {
  position: absolute;
}
@media (max-width: 768px) {
  #eticket .eticket__container .eticket__container-left figure img {
    position: relative;
    max-width: 170px;
    margin-inline: auto;
  }
}
#eticket .eticket__container .eticket__container-right {
  border-left: 2px solid var(--black);
  padding-left: 50px;
}
@media (max-width: 768px) {
  #eticket .eticket__container .eticket__container-right {
    border-left: none;
    padding-left: 0;
  }
}
#eticket .eticket__container .eticket__container-right .eticket-title-sub {
  font-size: 32px;
  font-weight: 900;
  margin-top: 2px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #eticket .eticket__container .eticket__container-right .eticket-title-sub {
    font-size: 18px;
    margin-top: 18px;
    text-align: center;
  }
}
#eticket .eticket__container .eticket__container-right .check-list {
  margin-top: 12px;
}
@media (max-width: 768px) {
  #eticket .eticket__container .eticket__container-right .check-list {
    margin-top: 18px;
  }
}
#eticket .eticket__container .eticket__container-right .check-list li {
  position: relative;
  font-size: 20px;
  padding-left: 40px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 768px) {
  #eticket .eticket__container .eticket__container-right .check-list li {
    font-size: 13px;
    padding-left: 32px;
  }
}
#eticket .eticket__container .eticket__container-right .check-list li + li {
  margin-top: 4px;
}
#eticket .eticket__container .eticket__container-right .check-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url("/ticket/season2026/img/icon-check.png") no-repeat center center/contain;
}
@media (max-width: 768px) {
  #eticket .eticket__container .eticket__container-right .check-list li::before {
    width: 16px;
    height: 16px;
  }
}
#eticket .eticket__container .eticket__container-right .indent {
  margin-top: 12px;
}
#eticket .eticket__container .eticket__container-right .indent li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 12px;
}

.btn-list {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 37px;
}
@media (max-width: 768px) {
  .btn-list {
    margin-top: 64px;
    flex-direction: column;
    gap: 16px;
  }
}
.btn-list li {
  width: 416px;
}
@media (max-width: 768px) {
  .btn-list li {
    width: 100%;
  }
}
.btn-list li .btn {
  margin: 0 auto;
}

/*-------------------------------------------
WAITING & SWIPER STYLES
-------------------------------------------*/
.waitingSwiper {
  height: 395px;
  position: relative;
  padding-inline: clamp(22px, 4.1666666667vw, 60px) !important;
}
@media (max-width: 768px) {
  .waitingSwiper {
    height: auto;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .waitingSwiper .swiper-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.waitingSwiper .swiper-slide {
  height: fit-content;
  width: 303px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .waitingSwiper .swiper-slide {
    width: calc((100% - 10px) / 2);
    min-height: 262px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .waitingSwiper .swiper-slide.waiting__swiper__hidden {
    display: none;
  }
}
.waitingSwiper .swiper-slide:hover {
  background-color: var(--richBlack);
}
.waitingSwiper .swiper-slide:hover .waiting__swiper__img {
  filter: brightness(70%) contrast(100%) grayscale(0%);
}
.waitingSwiper .swiper-slide:hover .waiting__swiper__img span {
  opacity: 1;
}
.waitingSwiper .swiper-slide:hover .waiting__swiper__title,
.waitingSwiper .swiper-slide:hover .waiting__swiper__price,
.waitingSwiper .swiper-slide:hover .waiting__swiper__link {
  color: var(--white);
}
.waitingSwiper .swiper-slide:hover .waiting__swiper__link:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media (max-width: 768px) {
  .waitingSwiper .swiper-pagination {
    display: none;
  }
}
@media (max-width: 768px) {
  .waitingSwiper .custom-button-prev,
  .waitingSwiper .custom-button-next {
    display: none;
  }
}

.waiting__swiper__img {
  width: 100%;
  height: 202px;
  position: relative;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .waiting__swiper__img {
    height: 114px;
  }
}
.waiting__swiper__img img {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .waiting__swiper__img img {
    border-radius: 8px 8px 0 0;
  }
}
.waiting__swiper__img span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: normal;
  opacity: 0;
  transition: 0.3s;
}

.waiting__swiper__kind {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  background-color: var(--richBlack);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  padding: 4px 0;
  width: 64px;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
  margin: 16px 16px 8px 16px;
}
@media (max-width: 768px) {
  .waiting__swiper__kind {
    margin: 16px 8px 8px 8px;
    width: 64px;
  }
}

.waiting__swiper__title {
  margin: 1px 16px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .waiting__swiper__title {
    font-size: 12px;
    flex-shrink: 0;
    margin: 1px 8px;
  }
}

.waiting__swiper__price {
  margin: 24px 16px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  line-height: 1;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .waiting__swiper__price {
    font-size: 12px;
    margin: 12px 8px;
  }
}

.waiting__swiper__link {
  display: block;
  background-color: var(--richBlack);
  color: var(--white);
  width: 100%;
  border-radius: 0 0 16px 16px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  padding-block: 23px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .waiting__swiper__link {
    font-size: 12px;
    margin-top: auto;
    border-radius: 0 0 8px 8px;
    padding-block: 14px;
  }
}
.waiting__swiper__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--black);
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.waiting__swiper__link span {
  position: relative;
  z-index: 3;
  color: #fff;
}

.swiper {
  overflow: unset !important;
  margin-bottom: 50px;
}

.custom-button-prev,
.custom-button-next {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #DCDCDC;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .custom-button-prev,
  .custom-button-next {
    width: 24px;
    height: 24px;
  }
}
.custom-button-prev:hover,
.custom-button-next:hover {
  background-color: var(--richBlack);
  border-color: var(--richBlack);
}
.custom-button-prev:hover::after,
.custom-button-next:hover::after {
  border-color: var(--white);
}

.swiper-pagination {
  color: var(--black);
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  position: absolute !important;
  left: clamp(0px, 4.1666666667vw, 60px) !important;
  bottom: -60px !important;
  width: 104px !important;
  display: flex;
  justify-content: space-between;
  padding-left: 0px;
}
@media (max-width: 768px) {
  .swiper-pagination {
    left: 0px !important;
    bottom: -45px !important;
  }
}

.custom-button-prev, .custom-button-next {
  bottom: -70px;
}
@media (max-width: 768px) {
  .custom-button-prev, .custom-button-next {
    bottom: -48px;
  }
}

.custom-button-prev {
  left: 188px;
  left: calc(4.1666666667vw + 128px);
}
@media (max-width: 768px) {
  .custom-button-prev {
    left: auto;
  }
}

.custom-button-next {
  left: 256px;
  left: calc(4.1666666667vw + 196px);
}
@media (max-width: 768px) {
  .custom-button-next {
    left: auto;
  }
}

.swiper-pagination-current {
  position: relative;
  letter-spacing: 0.05em;
}

.swiper-pagination-total {
  position: relative;
  letter-spacing: 0.05em;
}
.swiper-pagination-total:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 21px;
  width: 60px;
  height: 1px;
  background-color: var(--richBlack);
}

.page-title-en-top {
  margin-top: 0;
}
@media (max-width: 768px) {
  .page-title-en-top {
    margin-top: 0 !important;
  }
}

.lineup-top-container {
  overflow: unset;
}

.lineup-top {
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .lineup-top {
    padding-inline: 0;
  }
}

/*-------------------------------------------
WAITING SECTION STYLES
-------------------------------------------*/
#waiting {
  padding-inline: 0;
  padding-bottom: 180px;
}
@media (max-width: 768px) {
  #waiting {
    padding-bottom: 96px;
  }
}

.waiting__list {
  display: none;
}
@media (max-width: 768px) {
  .waiting__list {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .waiting__list li {
    width: 48%;
    transition: opacity 0.5s ease-in-out;
  }
}

@media (max-width: 768px) {
  .waiting__list__hidden {
    display: none;
  }
}

@media (max-width: 768px) {
  .waiting__list__img {
    width: 100%;
    height: 114px;
  }
}
@media (max-width: 768px) {
  .waiting__list__img img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}

@media (max-width: 768px) {
  .waiting__list__kind {
    margin-top: 16px;
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 18px;
    height: 17px;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    margin-right: 8px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .waiting__list__name {
    margin-top: 8px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    padding-left: 8px;
    padding-right: 8px;
    height: 26px;
  }
}

@media (max-width: 768px) {
  .waiting__list__price {
    margin-top: 16px;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 768px) {
  .waiting__list__link {
    margin-top: 16px;
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    width: 100%;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

.waiting__list-btn {
  display: none;
}
@media (max-width: 768px) {
  .waiting__list-btn {
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray);
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    border-radius: 30px;
    height: 56px;
    width: 254px;
    padding-top: 23px;
    padding-bottom: 23px;
    padding-left: 24px;
    padding-right: 48px;
    position: relative;
  }
}
@media (max-width: 768px) {
  .waiting__list-btn::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(135deg);
  }
}

/*-------------------------------------------
EVENT SECTION STYLES
-------------------------------------------*/
#event {
  padding-inline: 0;
}

.eventSwiper {
  padding-inline: clamp(22px, 4.1666666667vw, 60px) !important;
  height: 693px;
}
@media (max-width: 768px) {
  .eventSwiper {
    height: 671px;
  }
}
.eventSwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  width: 303px;
}
@media (max-width: 768px) {
  .eventSwiper .swiper-slide {
    width: 230px;
  }
}
.eventSwiper .swiper-slide .event__text {
  flex-grow: 1;
  letter-spacing: 0.06em;
}
.eventSwiper .swiper-slide.swiper-slide-giveaway {
  width: 666px !important;
}
@media (max-width: 768px) {
  .eventSwiper .swiper-slide.swiper-slide-giveaway {
    width: 335px !important;
  }
}
@media (max-width: 768px) {
  .eventSwiper .swiper-slide.swiper-slide-fireworks .event__month, .eventSwiper .swiper-slide.swiper-slide-giveaway .event__month {
    font-size: 36px;
    line-height: 1.6;
  }
}

.event__month {
  font-size: 56px;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  border-bottom: 4px solid var(--black);
  line-height: 1;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .event__month {
    font-size: 48px;
    padding-bottom: 16px;
    height: 48px;
  }
}
.event__month span {
  margin-left: 16px;
  font-size: 24px;
  font-weight: 400;
  color: var(--gray);
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .event__month span {
    margin-left: 8px;
    font-size: 18px;
  }
}

.event__list4 {
  display: flex;
  gap: 36px;
}
.event__list4 li {
  width: 30%;
}

.event__title {
  margin-top: 32px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  border-bottom: 1px solid var(--lightGray);
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
@media (max-width: 768px) {
  .event__title {
    margin-top: 24px;
    font-size: 16px;
    padding-bottom: 8px;
  }
}

.event__logo {
  width: 48px;
  height: 48px;
}

.event__img {
  margin: 0 auto;
  margin-top: 24px;
  width: 100%;
  height: 303px;
}
@media (max-width: 768px) {
  .event__img {
    height: 230px;
  }
}
.event__img img {
  width: 100%;
  height: 100%;
}

.event__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .event__text {
    text-align: justify;
  }
}

.event__period {
  margin-top: 18px;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .event__period {
    margin-top: 24px;
  }
}

/*-------------------------------------------
BENEFIT SECTION STYLES
-------------------------------------------*/
@media (max-width: 768px) {
  #benefits {
    padding-inline: 0;
  }
}
#benefits .benefitSwiper {
  color: var(--black);
}
@media (max-width: 768px) {
  #benefits .benefitSwiper {
    padding-inline: clamp(22px, 4.1666666667vw, 60px) !important;
  }
}
@media (min-width: 769px) {
  #benefits .benefitSwiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
    align-items: stretch;
  }
}
#benefits .benefitSwiper .swiper-slide {
  width: calc((100% - 72px) / 3);
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}
@media (max-width: 768px) {
  #benefits .benefitSwiper .swiper-slide {
    width: 290px;
  }
}
#benefits .benefitSwiper .swiper-pagination {
  color: var(--white);
  border-color: var(--white);
}
@media (min-width: 769px) {
  #benefits .benefitSwiper .swiper-pagination {
    display: none;
  }
}
#benefits .benefitSwiper .custom-button-prev,
#benefits .benefitSwiper .custom-button-next {
  color: var(--white);
  border-color: var(--white);
  background-color: var(--black);
}
@media (min-width: 769px) {
  #benefits .benefitSwiper .custom-button-prev,
  #benefits .benefitSwiper .custom-button-next {
    display: none;
  }
}
#benefits .benefitSwiper .custom-button-prev:hover,
#benefits .benefitSwiper .custom-button-next:hover {
  background-color: var(--white);
}
#benefits .benefitSwiper .custom-button-prev:hover::before, #benefits .benefitSwiper .custom-button-prev:hover::after,
#benefits .benefitSwiper .custom-button-next:hover::before,
#benefits .benefitSwiper .custom-button-next:hover::after {
  border-color: var(--black);
}
#benefits .benefitSwiper .custom-button-prev::before,
#benefits .benefitSwiper .custom-button-next::before {
  border-color: var(--white);
}
#benefits .benefitSwiper .custom-button-prev:after {
  background-color: var(--white);
}
#benefits .benefitSwiper .swiper-pagination-total::before {
  background-color: var(--white);
}
#benefits .benefit__img {
  flex-shrink: 0;
  height: 200px;
  overflow: hidden;
}
#benefits .benefit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#benefits .benefit__text-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 16px 32px 16px;
  flex-grow: 1;
}
#benefits .benefit__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  flex-grow: 1;
}
#benefits .benefit__text {
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
  letter-spacing: 0.06em;
}
#benefits .benefit__btn {
  margin-top: 64px;
  text-align: center;
}
@media (max-width: 768px) {
  #benefits .benefit__btn {
    margin-top: 40px;
  }
}
#benefits .lineup__btn {
  background-color: var(--richBlack);
  border-color: var(--white);
  color: var(--white);
  margin-inline: auto;
  width: 416px;
  text-align: left;
}
@media (max-width: 768px) {
  #benefits .lineup__btn {
    width: 240px;
    margin-top: 32px;
  }
}
#benefits .lineup__btn:hover {
  background-color: var(--white);
  color: var(--richBlack);
}
#benefits .lineup__btn::after {
  border-color: var(--white);
}
#benefits .lineup__btn:hover::after {
  border-color: var(--richBlack);
}

.owners-voice {
  margin-top: 64px;
  display: flex;
  gap: 36px;
  color: var(--white);
  max-width: 1320px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .owners-voice {
    margin-top: 40px;
    flex-direction: column;
    gap: 32px;
    padding-inline: 20px;
  }
}
.owners-voice li {
  width: calc((100% - 72px) / 3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .owners-voice li {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.owners-voice li .owners-voice__title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 44px;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .owners-voice li .owners-voice__title {
    font-size: 16px;
    padding-left: 40px;
    display: inline-block;
    margin-bottom: 24px;
  }
}
.owners-voice li .owners-voice__title::before {
  content: "Q";
  display: inline-block;
  position: absolute;
  top: -12px;
  left: 0;
  width: 1em;
  height: 1em;
  color: var(--white);
  font-size: 40px;
  font-weight: 900;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .owners-voice li .owners-voice__title::before {
    font-size: 32px;
    top: -10px;
  }
}
.owners-voice li .owners-voice__img {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .owners-voice li .owners-voice__img img {
    width: 88%;
    margin-top: -16%;
    margin-bottom: -32px;
  }
}
.owners-voice li:nth-of-type(3) .owners-voice__img {
  margin-left: -21px;
}
@media (max-width: 768px) {
  .owners-voice li:nth-of-type(3) .owners-voice__img img {
    margin: 0;
  }
}

.owners-voice__extra {
  margin-top: 40px;
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lightGray);
}
@media (max-width: 768px) {
  .owners-voice__extra {
    margin-top: 32px;
    text-align: left;
    padding-inline: 20px;
  }
}

/*-------------------------------------------
VOICE SECTION STYLES
-------------------------------------------*/
.voice__players {
  margin-top: 64px;
}
@media (max-width: 768px) {
  .voice__players {
    margin-top: 40px;
  }
}

.voice__players__box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
}
@media (max-width: 768px) {
  .voice__players__box {
    flex-direction: column;
    gap: 40px;
  }
}
.voice__players__box .voice__players__img {
  max-width: 755px;
  width: 52.4305555556vw;
  min-width: 416px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .voice__players__box .voice__players__img {
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 768px) {
  .voice__players__box .voice__players__text {
    display: block;
    width: 100%;
  }
}
.voice__players__box .voice__players__text dl dt {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .voice__players__box .voice__players__text dl dt {
    font-size: 18px;
  }
}
.voice__players__box .voice__players__text dl dd {
  position: relative;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .voice__players__box .voice__players__text dl dd {
    font-size: 14px;
    margin-top: 12px;
  }
}
.voice__players__box .voice__players__text dl dd + dt {
  margin-top: 40px;
}

.voice__players__list {
  display: flex;
  gap: 6px;
  margin-top: 40px;
}
.voice__players__list li {
  position: relative;
  display: flex;
  gap: 6px;
  align-items: center;
}
.voice__players__list li + li {
  padding-left: 25px;
}
.voice__players__list li + li::before {
  content: "×";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 1px;
  height: 28px;
  font-size: 26px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1;
}
.voice__players__list li span {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .voice__players__list li span {
    font-size: 24px;
  }
}
.voice__players__list li b {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 768px) {
  .voice__players__list li b {
    font-size: 16px;
  }
}

.modal[id^=modal-players] .modal-wrapper .modal-content .subHead {
  font-size: 24px;
  line-height: 1.6;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content .subHead {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.modal[id^=modal-players] .modal-wrapper .modal-content .subHead span {
  display: block;
}
.modal[id^=modal-players] .modal-wrapper .modal-content .subHead span i {
  font-style: normal;
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content .subHead span i {
    display: block;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content .subHead span + span {
    margin-top: 18px;
  }
}
.modal[id^=modal-players] .modal-wrapper .modal-content .voice__players__list {
  margin-top: 24px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 18px;
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content .voice__players__list {
    padding-bottom: 12px;
  }
}
.modal[id^=modal-players] .modal-wrapper .modal-content .ttl {
  position: relative;
  font-size: 24px;
  background: none;
  padding: 0;
  padding-left: 32px;
  margin-top: 54px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content .ttl {
    margin-top: 36px;
    margin-bottom: 12px;
    font-size: 16px;
    padding-left: 24px;
  }
}
.modal[id^=modal-players] .modal-wrapper .modal-content .ttl::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--black);
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content .ttl::before {
    width: 16px;
  }
}
.modal[id^=modal-players] .modal-wrapper .modal-content dl {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content dl {
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
  }
}
.modal[id^=modal-players] .modal-wrapper .modal-content dl dt {
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content dl dt {
    font-size: 14px;
  }
}
.modal[id^=modal-players] .modal-wrapper .modal-content dl dd {
  font-size: 16px;
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content dl dd {
    font-size: 14px;
  }
}
.modal[id^=modal-players] .modal-wrapper .modal-content figure {
  margin-top: 36px;
  margin-bottom: 54px;
}
@media (max-width: 768px) {
  .modal[id^=modal-players] .modal-wrapper .modal-content figure {
    margin-top: 28px;
  }
}

.voice__players__link {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  border: 1px solid var(--richBlack);
  font-size: 14px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  line-height: 1;
  padding: 19px 48px 19px 24px;
  height: 48px;
  margin-top: 48px;
  border-radius: 30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  max-width: 156px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .voice__players__link {
    margin: 0 0 0 auto;
    margin-top: 64px;
  }
}
.voice__players__link:after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--richBlack);
  border-right: 2px solid var(--richBlack);
  transform: rotate(45deg);
  transition: 0.3s;
}
.voice__players__link:hover {
  color: var(--white);
  background-color: var(--richBlack);
  opacity: 1;
}
.voice__players__link:hover::after {
  border-top-color: var(--white);
  border-right-color: var(--white);
  right: 18px;
}

/*-------------------------------------------
MODAL SYSTEM STYLES
-------------------------------------------*/
/* CSS-only Modal System using :target pseudo-class */
.modal-open-button {
  text-decoration: none;
  color: inherit;
  display: block;
}

/*-------------------------------------------
Campaign SECTION STYLES
-------------------------------------------*/
#campaign .campaign__list {
  max-width: 1320px;
  margin-inline: auto;
  display: flex;
  gap: 38px;
}
@media (max-width: 768px) {
  #campaign .campaign__list {
    flex-direction: column;
    gap: 40px;
  }
}
#campaign .campaign__list li {
  width: calc((100% - 38px) / 2);
}
@media (max-width: 768px) {
  #campaign .campaign__list li {
    width: 100%;
  }
}
#campaign .campaign__title {
  background-color: var(--white);
  color: var(--black);
  border-radius: 2px;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  #campaign .campaign__title {
    font-size: 16px;
    margin-bottom: 18px;
  }
}
#campaign p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
#campaign span {
  margin-top: 10px;
  display: block;
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #campaign span {
    font-size: 12px;
  }
}
#campaign dl {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.6;
}
#campaign dl dt {
  font-weight: 700;
}

body.personal #waiting {
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  body.personal #waiting {
    padding-bottom: 96px;
  }
}
body.personal #waiting .waiting__list-btn {
  display: none;
}
body.personal #waiting .waitingSwiper .swiper-wrapper {
  justify-content: center;
}
body.personal #waiting .waitingSwiper .swiper-wrapper .swiper-slide {
  margin-left: 36px;
}
@media (max-width: 768px) {
  body.personal #waiting .waitingSwiper .swiper-wrapper .swiper-slide {
    margin-left: 0;
  }
}
body.personal details#renewal {
  display: none;
}

/*# sourceMappingURL=top.css.map */