@charset "UTF-8";

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

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  color: #222;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

p {
  margin: 0;
}

.pc-none {
  display: none;
}

.fv {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  aspect-ratio: 1920 / 1080;
  background-color: #fff;
}

/* 背景 */
/* 背景 */
.fv::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image: url(../img/pre-fv.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  opacity: 1;

  z-index: 0;
}

/* 初回だけアニメ */
.is-first-visit .fv::before {
  opacity: 0;

  animation: fvFadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

/* 中身を前面へ */
.fv > * {
  position: relative;
  z-index: 1;
}

.fv__title {
  margin: 0 auto;
  width: 27%;
  cursor: pointer;

  opacity: 1;
}

/* 初回だけアニメ */
.is-first-visit .fv__title {
  opacity: 0;

  animation: copyFadeIn 1.5s ease forwards;
  animation-delay: 1s;
}

@keyframes fvFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes copyFadeIn {
  to {
    opacity: 1;
  }
}

.scroll_down{
  position:absolute;
  bottom: 0px;
  right: 40px;
  opacity: 0;

  animation: copyFadeIn 1.5s ease forwards;
  animation-delay: 1s;
}

.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 45px;
  color: #fff;
  font-size: 10px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:#fff;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:100px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:1px;
  height: 100px;
  background:#fff;
}

.info {
  background-image: linear-gradient(0deg, #000000, #070c17);
  justify-content: center;
  display: flex;
  padding: 0 30px;
}

.info .section__inner {
  width: 100%;
}

.info-wrap {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  max-width: 1000px;
  margin: 80px auto 20px;
}

.info-head {
  display: flex;
  align-items: center;
  background: #bfa673;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  padding: 0 30px;
  font-size: 21px;
}

.info-day {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #999;
  font-size: 1rem;
  letter-spacing: 2px;
}

.info-detail {
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 100%;
  gap: 0;
  padding: 30px;
}

.info-title {
  font-size: 24px;
  margin: 0;
}

.day {
  background: #0d0d1d;
  border-top: solid 2px #bfa673;
  border-bottom: solid 2px #bfa673;
}

.day-wrap {
  gap: 60px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 60px auto;
  padding: 0 40px;
  max-width: 1280px;
}

.top-ticket-faq {
  padding: 120px 48px;
  background: linear-gradient(0deg, #000000, #070c17);
  color: #fff;
}

.top-ticket-faq__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.top-ticket-faq__head {
  margin-bottom: 56px;
}

.top-section-en {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-family: "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.32em;
}

.top-section-title {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.14em;
}

.top-section-lead {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.top-ticket-faq__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.top-ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 48px;
  border: 1px solid rgba(200, 170, 106, 0.7);
  color: #fff;
  text-decoration: none;
  background:rgba(255, 255, 255, .025);
}

.top-ticket-card__label {
  color: var(--color-gold);
  font-family: "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.28em;
}

.top-ticket-card__title {
  margin-top: 22px;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.top-ticket-card__text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.top-faq-pickup {
  padding: 40px;
  border: 1px solid rgba(200, 170, 106, 0.5);
  background: rgba(255,255,255,.025);
}

.top-faq-pickup__title {
  margin: 0 0 24px;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.top-faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-faq-list li {
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.top-faq-list a {
  position: relative;
  display: block;
  padding: 18px 34px 18px 0;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.top-faq-list a::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--color-gold);
  font-size: 28px;
  transform: translateY(-50%);
}

.top-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  min-width: 260px;
  min-height: 56px;
  padding: 12px 28px;
  border: 1px solid rgba(200, 170, 106, 0.75);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.top-ticket-card__button {
  width: fit-content;
  margin-top: 32px;
  padding: 14px 34px;
  border: 1px solid rgba(200, 170, 106, 0.8);
  color: #222;
  font-size: 15px;
  letter-spacing: 0.08em;
  background: rgba(200, 170, 106, 0.8);
  font-weight: 700;
}

.top-ticket-card__button::after {
  content: "　›";
  color: var(--color-gold);
  font-size: 24px;
}

.top-faq-item .faq-item__question {
  padding: 22px 0;
  grid-template-columns: 34px 1fr 24px;
  gap: 16px;
}

.top-faq-item .faq-item__mark {
  width: 28px;
  height: 28px;
  font-size: 15px;
}

.top-faq-item .faq-item__question-text {
  font-size: 15px;
}

.top-faq-item .faq-item__answer-inner {
  gap: 16px;
  padding-bottom: 28px;
}

.top-faq-item .faq-item__content {
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .top-ticket-faq {
    padding: 80px 24px;
  }

  .top-section-title {
    font-size: 30px;
  }

  .top-ticket-faq__grid {
    grid-template-columns: 1fr;
  }

  .top-ticket-card {
    min-height: 280px;
    padding: 32px 24px;
  }

  .top-ticket-card__title {
    font-size: 24px;
  }

  .top-faq-pickup {
    padding: 28px 22px;
  }

  .top-more-button {
    width: 100%;
  }
}



.site-footer {
  background: #000;
  color: #fff;
}

.company {
  color: #fff;
  max-width: 1200px;
  display: flex;
  gap: 80px;
  margin: 0 auto;
}

.company-ticket .company {
    color: #fff;
    max-width: 1200px;
    display: flex;
    gap: 50px;
    margin: 0;
}

.shoulder {
    font-size: 12px;
}

.company-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-ticket {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-bottom: 30px;
}

.ticket-info {
    border: solid 1px #fff;
    padding: 15px 25px;
}

.ticket-info-ttl {
    color: var(--color-gold);
    margin-bottom: 5px;
}

.ticket-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info {
  background: #fff;
  padding: 3px 15px;
  color: #070c17;
  font-size: 12px;
  margin: 5px 0;
  font-weight: 600;
  display: inline-block;
}

.ticket-att {
    font-size: 12px;
}

.copyright {
    margin: 0;
    text-align: right;
    font-size: 12px;
}

.company-wrap {
    padding: 30px 30px 10px;
}

/* ==============================
  Fixed Notice
============================== */

.fixed-notice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1500;
  width: min(980px, calc(100% - 48px));
  transform: translateX(-50%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-notice.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fixed-notice__link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 86px;
  align-items: stretch;
  min-height: 72px;
  border: 1px solid var(--color-gold);
  background: #fff;
  color: #090918;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.fixed-notice__body {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 32px;
  min-width: 0;
}

.fixed-notice__date {
  flex: 0 0 auto;
  color: var(--color-gold);
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.fixed-notice__text {
  color: #090918;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.fixed-notice__arrow {
  display: grid;
  place-items: center;
  background: var(--color-gold);
  color: #fff;
  font-size: 46px;
  line-height: 1;
}

.fixed-notice__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  background: #090918;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* SP */
@media (max-width: 768px) {
  .fixed-notice {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    transform: none;
  }

  .fixed-notice__link {
    grid-template-columns: 1fr 54px;
    min-height: 68px;
  }

  .fixed-notice__body {
    display: block;
    padding: 13px 16px;
  }

  .fixed-notice__date {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
  }

  .fixed-notice__text {
    display: block;
    font-size: 14px;
    line-height: 1.55;
  }

  .fixed-notice__arrow {
    font-size: 34px;
  }

  .fixed-notice__close {
    top: -12px;
    right: -10px;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }
}

@media screen and (max-width: 768px) {
 .fv {
    min-height: 100vh;
    width: auto;
    aspect-ratio: initial;
  }

  .fv::before {
    background-image: url(../img/pre-fv_sp.webp);
    background-size: cover;
    background-position: center;
  }

.fv__title {
    margin: 0 auto;
    width: 290px;
    margin-bottom: 40px;
}

.day-wrap {
  flex-direction: column;
  gap: 35px;
  margin: 40px 30px;
  padding: 0;
}

.pc-none {
  display: inline-block;
}

.info-head {
  font-size: 12px;
  padding: 0 15px;
}

.info-title {
  font-size: 15px;
}

.info-detail {
  padding: 30px 15px;
}

.info-wrap {
  width: 100%;
  margin: 40px auto 20px;
}

.info-day {
  font-size: 0.8rem;
}

.company {
  gap: 20px;
  flex-direction: column;
}

.company-ticket .company {
  gap: 20px;
}

.company-ticket {
    gap: 30px;
    flex-direction: column;
}

.ticket-info {
    padding: 20px 25px;
}

.company-list {
    font-size: 12px;
}

}

/* ==============================
  Header / Hamburger / Drawer Menu
============================== */


/* トップページだけ初期非表示 */
.page-id-14 .site-header {
  opacity: 0;
}

/* 表示 */
.page-id-14 .site-header.is-show {
  opacity: 1;
}

body.is-menu-open {
  overflow: hidden;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #ffffffbd;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.site-header__inner {
  height: 80px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: block;
  line-height: 1;
}

.site-logo img {
  display: block;
  width: 180px;
  height: auto;
}

/* Hamburger */
.hamburger {
  position: relative;
  z-index: 1200;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 13px;
  width: 30px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition:
    top 0.35s ease,
    transform 0.35s ease,
    opacity 0.25s ease,
    background-color 0.35s ease;
}

.hamburger span:nth-child(1) {
  top: 18px;
}

.hamburger span:nth-child(2) {
  top: 27px;
}

.hamburger span:nth-child(3) {
  top: 36px;
}

body.is-menu-open .hamburger span {
  background: #111;
}

body.is-menu-open .hamburger span:nth-child(1) {
  top: 27px;
  transform: rotate(45deg);
}

body.is-menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .hamburger span:nth-child(3) {
  top: 27px;
  transform: rotate(-45deg);
}



/* Overlay */
.menu-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

body.is-menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}


/* Drawer Menu */
.drawer-menu {
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 950;
  width: min(520px, 88vw);
  height: calc(100dvh - 80px);
  padding-top: 48px;
  background: rgba(34, 34, 34, 0.4);
  color: #fff;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    visibility 0.35s ease;
    overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

body.is-menu-open .drawer-menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.drawer-menu__inner {
  padding: 0 48px 56px;
}

.drawer-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-menu__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.drawer-menu__list li:last-child {
  border-bottom: none;
}

.drawer-menu__list a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 22px;
  padding: 26px 0;
  color: #fff;
  text-decoration: none;
}

.drawer-menu__list a::after {
  content: "›";
  font-size: 40px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.drawer-menu__en {
  color: #c8aa6a;
  /*font-family: "Times New Roman", "Shippori Mincho", serif;*/
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.drawer-menu__ja {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

/* Hover */
@media (hover: hover) {
  .drawer-menu__list a {
    transition: opacity 0.25s ease;
  }

  .drawer-menu__list a:hover {
    opacity: 0.72;
  }
}

.header-btn-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cv {
  background: #C41336;
  color: #fff;
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 14px;
}

/* SP */
@media (max-width: 768px) {
  .site-header__inner {
    height: 64px;
    padding: 0 20px;
  }

  .site-logo img {
    width: 140px;
  }

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

  .hamburger span {
    left: 10px;
    width: 28px;
  }

  .hamburger span:nth-child(1) {
    top: 15px;
  }

  .hamburger span:nth-child(2) {
    top: 23px;
  }

  .hamburger span:nth-child(3) {
    top: 31px;
  }

  body.is-menu-open .hamburger span:nth-child(1),
  body.is-menu-open .hamburger span:nth-child(3) {
    top: 23px;
  }

  .menu-overlay {
    top: 64px;
  }

  .drawer-menu {
    top: 64px;
    width: 100%;
    height: calc(100dvh - 64px);
    padding-top: 40px;
    transform: translateY(-100%);
    box-shadow: none;
  }

  body.is-menu-open .drawer-menu {
    transform: translateY(0);
  }

  .drawer-menu__inner {
    padding: 0 28px 48px;
  }

  .drawer-menu__list a {
    column-gap: 16px;
    padding: 22px 0;
  }

  .drawer-menu__en {
    font-size: 24px;
  }

  .drawer-menu__ja {
    font-size: 12px;
  }

  .drawer-menu__list a::after {
    font-size: 24px;
  }
}

/* ==============================
  Drawer Menu Buttons
============================== */

.drawer-menu__buttons {
  margin-top: 56px;
  display: grid;
  gap: 24px;
}

.drawer-menu__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.drawer-menu__button--instagram {
  background: #000;
}

.drawer-menu__button--sponsor {
  background: #7c6b3f;
}

.drawer-menu__button-icon {
  display: flex;
  margin-right: 16px;
  font-size: 30px;
  line-height: 1;
}

.drawer-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  margin: 64px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.drawer-menu__close-icon {
  font-size: 38px;
  line-height: 1;
  font-weight: 200;
}

@media (max-width: 768px) {
  .drawer-menu__buttons {
    margin-top: 44px;
    gap: 20px;
  }

  .drawer-menu__button {
    min-height: 66px;
    font-size: 22px;
  }

  .drawer-menu__close {
    margin-top: 56px;
    font-size: 20px;
  }
}
  

  


/* ==============================
  Lower Page Common
============================== */

:root {
  --color-bg-dark: #090918;
  --color-white: #fff;
  --color-gold: #c8aa6a;
  --content-width: 1280px;
  --content-narrow: 1040px;
  --side-padding: 48px;
}

.lower-page {
  background: var(--color-bg-dark);
  color: var(--color-white);
  min-height: 100vh;
}

/* パンくず */
.breadcrumb {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 120px var(--side-padding) 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb__item {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb__item:not(:last-child)::after {
  content: "|";
  margin-left: 8px;
}

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

/* 下層FV */
.lower-fv {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 30px var(--side-padding) 60px;
}

.lower-fv__inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 80px;
}

.lower-fv__text {
  padding-left: 8px;
}

.lower-fv__en {
  margin: 0 0 28px;
  color: var(--color-gold);
  font-family: "Times New Roman", "Shippori Mincho", serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.35em;
}

.lower-fv__title {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.18em;
}

.lower-fv__image {
  margin: 0;
}

.lower-fv__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* コンテンツ共通 */
.lower-section {
  padding: 100px var(--side-padding);
}

.lower-section__inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.lower-section__title {
  margin: 0 0 48px;
  font-family: "Shippori Mincho", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.lower-section__text {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.grad {
    height: 100px;
    background: linear-gradient(0deg, rgb(0, 0, 0), rgb(9, 9, 24));
}

/* SP */
@media (max-width: 768px) {
  :root {
    --side-padding: 24px;
  }

  .breadcrumb {
    padding-top: 96px;
  }

  .breadcrumb__item {
    font-size: 14px;
  }

  .lower-fv {
    padding: 30px var(--side-padding) 30px;
  }

  .lower-fv__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .lower-fv__text {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .lower-fv__en {
    margin-bottom: 10px;
    font-size: 18px;
    letter-spacing: 0.35em;
  }

  .lower-fv__title {
    font-size: 36px;
    line-height: 1.65;
    letter-spacing: 0.2em;
  }

  .lower-fv__image {
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .lower-section {
    padding: 72px var(--side-padding);
  }

  .lower-section__title {
    font-size: 28px;
  }

  .lower-section__text {
    font-size: 15px;
    line-height: 2;
  }
}

/* ==============================
  FAQ
============================== */

.faq-section {
  padding-top: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.faq-item__question {
  width: 100%;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  align-items: center;
  gap: 24px;
  border: 0;
  background: transparent;
  color: #c8aa6a;
  text-align: left;
  cursor: pointer;
}

.faq-item__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #c8aa6a;
  color: #090918;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
}

.faq-item__mark--answer {
  background: #fff;
  color: #090918;
  flex: 0 0 auto;
}

.faq-item__question-text {
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.faq-item__answer-inner {
  display: flex;
  gap: 24px;
  padding: 0 0 52px;
}

.faq-item__content {
  color: #fff;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.faq-item__content p {
  margin: 0 0 28px;
}

.faq-item__content strong {
  font-weight: 700;
  color: #090918;
  background: #c8aa6a;
  padding: 3px;
}

.faq-item__content a {
  color: #fff;
  text-decoration: underline;
}

.text-gold {
  color: #c8aa6a;
}

.attention {
  color: #c8aa6a;
  padding-left: 1em;
  text-indent: -1em;
}

.faq-item__answer-inner {
  min-width: 0;
}

.faq-item__content {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-item__content a {
  overflow-wrap: anywhere;
  word-break: break-all;
}

/* SP */
@media (max-width: 768px) {

  .lower-page--faq .lower-fv__image {
    width: 240px;
  }

  .faq-section {
    padding: 10px var(--side-padding) 10px;
  }

  .faq-item__question {
    grid-template-columns: 34px 1fr 24px;
    gap: 14px;
    padding: 30px 0;
  }

  .faq-item__mark {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .faq-item__question-text {
    font-size: 17px;
  }

  .faq-item__answer-inner {
    gap: 14px;
    padding-bottom: 36px;
  }

  .faq-item__content {
    font-size: 15px;
    line-height: 2;
  }

  .faq-item__answer-inner {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
  }

  .faq-item__content {
    width: 100%;
  }
}

/* ==============================
  Access Page
============================== */

.section-heading {
  position: relative;
  margin: 0 0 48px;
  padding-left: 28px;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1px;
  height: calc(100% - 0.4em);
  background: linear-gradient(to bottom, rgba(200, 170, 106, 1), rgba(200, 170, 106, 0));
}

.section-heading__sub {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-family: "Times New Roman", serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.28em;
}

.section-heading__main {
  display: block;
  color: var(--color-gold);
  font-family: "Shippori Mincho", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.14em;
}

/* SP */
@media (max-width: 768px) {
  .section-heading {
    margin-bottom: 34px;
    padding-left: 18px;
  }

  .section-heading__sub {
    margin-bottom: 0;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .section-heading__main {
    font-size: 20px;
    line-height: 1.8;
  }
}

.lower-page--access {
  background: var(--color-bg-dark);
}

/* 見出し */
.access-heading {
  margin: 0 0 32px;
  color: var(--color-gold);
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.access-text {
  max-width: 1040px;
  color: #fff;
  font-size: 17px;
  line-height: 2.3;
  letter-spacing: 0.08em;
}

.access-text p {
  margin: 0;
}

.access-text p + p {
  margin-top: 10px;
}

/* Intro */
.access-intro {
  padding-top: 40px;
  padding-bottom: 64px;
}

/* Route */
.access-route {
  padding-top: 48px;
}

.access-route-block + .access-route-block {
  margin-top: 88px;
}

/* 共通ルートBOX */
.route-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 14px 32px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

.route-box--white {
  background: #fff;
  color: #090918;
}

.route-box--gold {
  background: var(--color-gold);
  color: #090918;
}

/* 電車ルート */
.route-train {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  align-items: center;
  max-width: 1040px;
}

.route-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

.route-line {
  isolation: isolate;
}

.route-line::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  width: calc(100% - 48px);
  height: 34px;
  background: var(--color-bg-dark);
  transform: translate(-50%, -50%);
  border: solid 1px #fff;
}

/* 車ルート */
.route-car {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: stretch;
  gap: 0;
  max-width: 1040px;
}

.route-car__left {
  display: grid;
  gap: 24px;
}

.route-car-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
}

.route-car__goal {
  min-height: 100%;
  align-self: stretch;
}

/* 番号丸 */
.route-car-item .route-box--white {
  gap: 12px;
}

.route-car-item .route-box--white::first-letter {
  font-weight: 700;
}

/* IC説明 */
.access-route-notes {
  margin-top: 56px;
  display: grid;
  gap: 42px;
}

.access-route-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  color: #fff;
}

.access-route-note__title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.access-route-note__num {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  color: #090918;
  font-size: 15px;
  line-height: 1;
}

.access-route-note__text {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.08em;
}

/* Map */
.access-map {
  padding-top: 72px;
}

.access-map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.access-map-title {
  width: fit-content;
  min-width: 280px;
  margin: 0 auto 24px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}

.access-map-embed {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #d9d9d9;
  color: #090918;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.access-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Attention */
.access-attention {
  padding-top: 40px;
}

.attention-box {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 900px;
  background: #fff;
  margin: 0 auto;
}

.attention-box__head {
  min-height: 120px;
  display: grid;
  place-items: center;
  align-content: center;
  background: #a90000;
  color: #fff;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
}

.attention-box__head span {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.attention-box__body {
  display: flex;
  align-items: center;
  padding: 28px 48px;
  color: #7c1111;
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

/* ==============================
  Access Page SP
============================== */

@media (max-width: 768px) {

  .lower-page--access .lower-fv__image {
        width: 240px;
    }


  .access-heading {
    margin-bottom: 24px;
    font-size: 23px;
    line-height: 1.7;
  }

  .access-text {
    font-size: 15px;
    line-height: 2.1;
  }

  .access-intro {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .access-route {
    padding-top: 32px;
  }

  .access-route-block + .access-route-block {
    margin-top: 64px;
  }

  .route-box {
    min-height: 56px;
    padding: 12px 18px;
    font-size: 17px;
  }

  .route-train {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-line {
    min-height: 68px;
    font-size: 14px;
  }

  .route-line::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
  }

  .route-line::after {
    width: 75%;
    height: 30px;
  }

  .route-car {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-car__left {
    gap: 18px;
    grid-auto-flow: column;
  }

  .route-car-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-car__goal {
    min-height: 80px;
  }

  .access-route-notes {
    margin-top: 44px;
    gap: 32px;
  }

  .access-route-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .access-route-note__title {
    font-size: 17px;
  }

  .access-route-note__text {
    padding-left: 18px;
    font-size: 13px;
    line-height: 2;
  }

  .access-map {
    padding-top: 56px;
  }

  .access-map-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .access-map-title {
    min-width: 0;
    width: 100%;
    max-width: 240px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .access-map-embed {
    font-size: 22px;
  }

  .access-attention {
    padding-top: 24px;
  }

  .attention-box {
    grid-template-columns: 1fr;
  }

  .attention-box__head {
    min-height: 96px;
    font-size: 44px;
  }

  .attention-box__head span {
    font-size: 21px;
  }

  .attention-box__body {
    padding: 26px 24px;
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ==============================
  Ticket Page
============================== */

.ticket-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.ticket-lead {
  padding-top: 40px;
}

.ticket-text {
  color: #fff;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.08em;
}

.ticket-text p {
  margin: 0 0 16px;
}

.ticket-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.ticket-link-button {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 54px 14px 24px;
  border: 1px solid rgba(200, 170, 106, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, color 0.25s ease;
}

.ticket-cv {
  background: #C41336;
}

.ticket-link-button::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--color-gold);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
}

.ticket-link-button:hover {
  background: rgba(200, 170, 106, 0.14);
}

.ticket-link-button--wide {
  width: 100%;
}

.ticket-sales-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  margin-bottom: 72px;
}

.ticket-sales-card p {
  margin: 18px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.ticket-sub-heading {
  margin: 0 0 28px;
  color: #fff;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.ticket-sub-heading::before {
  content: "●";
  margin-right: 4px;
  color: #fff;
}

.ticket-area-title {
  margin: 32px 0 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.ticket-price-table {
  max-width: 1040px;
  border-top: 1px solid rgba(200, 170, 106, 0.7);
}

.ticket-price-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.ticket-price-row > div {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(200, 170, 106, 0.7);
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.ticket-price-row > div:first-child {
  color: var(--color-gold);
  font-weight: 700;
  background: rgba(200, 170, 106, 0.16);
}

.ticket-note {
  max-width: 760px;
  margin-top: 32px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.ticket-note p {
  margin: 0;
}

.ticket-bus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ticket-bus-card {
  padding: 32px;
  border: 1px solid rgba(200, 170, 106, 0.65);
  background: rgba(255, 255, 255, 0.025);
}

.ticket-bus-card h3 {
  margin: 0 0 16px;
  color: var(--color-gold);
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.ticket-bus-card p {
  margin: 0 0 28px;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.ticket-bus-fee {
  margin: 0;
}

.ticket-bus-fee div {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border-top: 1px solid rgba(255,255,255,.25);
}

.ticket-bus-fee div:last-child {
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.ticket-bus-fee dt,
.ticket-bus-fee dd {
  margin: 0;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.ticket-bus-fee dt {
  background: rgba(200, 170, 106, 0.16);
  color: var(--color-gold);
  font-weight: 700;
}

.ticket-map-image {
  max-width: 1040px;
  margin: 30px auto 0;
}

.ticket-map-image img {
  display: block;
  width: 100%;
  height: auto;
}

.ticket-agency {
  padding-bottom: 120px;
}

.lower-page--ticket .lower-fv__image {
    width: 400px;
  }

/* SP */
@media (max-width: 768px) {

  .lower-page--ticket .lower-fv__image {
    width: 200px;
  }

  .ticket-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ticket-link-grid,
  .ticket-sales-grid,
  .ticket-bus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ticket-link-button {
    min-height: 58px;
    padding: 13px 48px 13px 18px;
    font-size: 14px;
  }

  .ticket-sales-grid {
    margin-bottom: 52px;
  }

  .ticket-price-table {
    border-left: 0;
  }

  .ticket-price-row {
    grid-template-columns: 1fr;
  }

  .ticket-price-row + .ticket-price-row {
    margin-top: 0;
  }

  .ticket-price-row > div {
    padding: 12px 14px;
    font-size: 14px;
  }

  .ticket-bus-card {
    padding: 24px 18px;
  }

  .ticket-bus-fee div {
    grid-template-columns: 1fr;
  }

  .ticket-bus-fee dt,
  .ticket-bus-fee dd {
    padding: 12px 14px;
    font-size: 13px;
  }

  .ticket-agency {
    padding-bottom: 88px;
  }
}

/* ticket note / contact */

.ticket-contact {
  margin-top: 40px;
  color: #fff;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.ticket-contact__title {
  margin: 0 0 8px;
}

.ticket-contact__title::before {
  content: "●";
  margin-right: 2px;
}

.ticket-contact__block {
  margin-top: 20px;
}

.ticket-contact p {
  margin: 0;
}

/* bus lead */
.ticket-bus-lead {
  margin-bottom: 40px;
  color: #fff;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.ticket-bus-lead__title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
}

.ticket-bus-lead__title::before {
  content: "●";
  margin-right: 2px;
}

.ticket-link-button--bus {
  max-width: 520px;
  margin-bottom: 20px;
}

/* SP */
@media (max-width: 768px) {
  .ticket-info-note,
  .ticket-contact,
  .ticket-bus-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .ticket-contact {
    margin-top: 32px;
  }

  .ticket-bus-lead {
    margin-bottom: 32px;
  }

  .ticket-link-button--bus {
    max-width: none;
  }
}

/* ==============================
  Sponsor Page
============================== */

.sponsor-request {
  padding-top: 56px;
  padding-bottom: 72px;
}

.sponsor-letter {
  color: #fff;
  font-size: 16px;
  line-height: 2.35;
  letter-spacing: 0.08em;
}

.sponsor-letter p {
  margin: 0;
}

.sponsor-letter p + p {
  margin-top: 24px;
}

.sponsor-letter__closing {
  margin-top: 10px !important;
  text-align: right;
}

.sponsor-letter__signature {
  margin-top: 48px;
  text-align: right;
}

.sponsor-letter__signature p + p {
  margin-top: 8px;
}

/* Info cards */
.sponsor-info {
  padding-top: 32px;
  padding-bottom: 120px;
}

.sponsor-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.sponsor-card {
  position: relative;
  padding: 56px 48px;
  border: 1px solid rgba(200, 170, 106, 0.72);
  background:
    linear-gradient(
      135deg,
      rgba(200, 170, 106, 0.07),
      rgba(255, 255, 255, 0.015)
    );
}

.sponsor-card__title,
.sponsor-deadline__title,
.sponsor-payment__title {
  margin: 0 0 28px;
  color: var(--color-gold);
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-align: center;
}

.sponsor-card p,
.sponsor-deadline p,
.sponsor-payment p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.sponsor-card__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  min-height: 64px;
  margin: 56px auto 0;
  padding: 14px 58px 14px 32px;
  border: 1px solid rgba(200, 170, 106, 0.85);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.12em;
  transition: background 0.25s ease;
}

.sponsor-card__button::after {
  content: "›";
  position: absolute;
  top: 45%;
  right: 28px;
  color: var(--color-gold);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.sponsor-card__button:hover {
  background: rgba(200, 170, 106, 0.14);
}

.sponsor-card--notice {
  display: grid;
  align-content: center;
  gap: 42px;
}

.sponsor-deadline {
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.sponsor-deadline__date {
  font-size: 20px !important;
  line-height: 1.7 !important;
}

.sponsor-deadline__note {
  margin-top: 20px !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 13px !important;
}

.sponsor-payment__title {
  font-size: 22px;
}

/* CTA */
.sponsor-cta {
  margin-top: 96px;
  display: flex;
  justify-content: center;
}

.sponsor-cta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 860px);
  min-height: 88px;
  padding: 18px 72px 18px 40px;
  background: var(--color-gold);
  color: #090918;
  text-decoration: none;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.12em;
  transition: opacity 0.25s ease;
}

.sponsor-cta__button::after {
  content: "›";
  position: absolute;
  top: 45%;
  right: 44px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.sponsor-cta__button:hover {
  opacity: 0.82;
}

.sponsor-letter .sponsor-letter__name {
  margin-top: 0;
  font-size: 18px;
}

/* SP */
@media (max-width: 768px) {

  .lower-page--sponsorship .lower-fv__image {
    width: 250px;
  }

  .sponsor-request {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .sponsor-letter {
    font-size: 15px;
    line-height: 2.15;
    letter-spacing: 0.06em;
  }

  .sponsor-letter p + p {
    margin-top: 22px;
  }

  .sponsor-letter__signature {
    margin-top: 36px;
  }

  .sponsor-info {
    padding-top: 24px;
    padding-bottom: 88px;
  }

  .sponsor-info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sponsor-card {
    padding: 40px 24px;
  }

  .sponsor-card::before {
    inset: 8px;
  }

  .sponsor-card__title,
  .sponsor-deadline__title {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .sponsor-card p,
  .sponsor-deadline p,
  .sponsor-payment p {
    font-size: 14px;
    text-align: left;
  }

  .sponsor-card__button {
    max-width: none;
    margin-top: 36px;
    font-size: 16px;
  }

  .sponsor-deadline {
    padding-bottom: 32px;
  }

  .sponsor-deadline__date {
    font-size: 17px !important;
    text-align: center !important;
  }

  .sponsor-deadline__note {
    font-size: 12px !important;
  }

  .sponsor-payment__title {
    font-size: 20px;
  }

  .sponsor-cta {
    margin-top: 56px;
  }

  .sponsor-cta__button {
    min-height: 72px;
    padding: 16px 24px 16px 24px;
    font-size: 19px;
  }

  .sponsor-cta__button::after {
    right: 24px;
    font-size: 34px;
  }
}