@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap");

@font-face {
  font-family: "SUNROCKERS BOLD";
  src: url("./fonts/SUNROCKERSFONTBOLD-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gothic MB101 Web";
  src: url("./fonts/A-OTF-GothicMB101Pro-Bold.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gothic MB101 Web";
  src: url("./fonts/A-OTF-GothicMB101Pro-DeBold.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --violet: #3c1f78;
  --violet-deep: #26104f;
  --yellow: #f7cf11;
  --black: #070707;
  --white: #fff;
  --line: rgba(255, 209, 0, 0.9);
  --text: #f7f4ff;
  --text-dark: #25183c;
  --font-base: "Gothic MB101 Web", "A-OTF Gothic MB101 Pro", "A-OTF ゴシックMB101 Pro", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-display: "SUNROCKERS BOLD", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #22104a;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-base);
  background:
    linear-gradient(rgba(24, 4, 53, 0.2), rgba(24, 4, 53, 0.45)),
    radial-gradient(circle at 50% 0%, rgba(159, 99, 255, 0.35), transparent 28%),
    url("/files/user/26-27_SEASON/lp/seasonseat/img/bg.jpg") center top / cover fixed no-repeat;
}

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

button {
  font: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.reveal-up {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.page-frame {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.side-rail {
  position: fixed;
  top: 0;
  height: 100vh;
  background: #020202;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.side-rail--left {
  left: 0;
  width: 138px;
  border-right: 3px solid var(--yellow);
}

.side-rail__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.side-rail__title-path,
.side-rail__season-path {
  position: absolute;
  left: 50%;
  display: block;
  transform-origin: center;
}

.side-rail__title-path {
  width: 500px;
  top: 96px;
  transform: translateX(-50%) rotate(90deg);
}

.side-rail__season-path {
  width: 360px;
  top: 250px;
  transform: translateX(-50%) rotate(90deg);
}

.side-rail__page-title {
  width: 360px;
  margin: 0 auto;
  display: block;
}

.side-rail__page-logo {
  width: 150px;
  margin: 12px 0 0 auto;
  display: block;
}

.side-rail__brand {
  text-align: center;
  font-family: var(--font-display);
}

.side-rail__brand strong,
.side-rail__brand span {
  display: block;
}

.side-rail__brand strong {
  font-size: 25px;
  line-height: 1.05;
}

.side-rail__brand span {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.34em;
}

.season-lp {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(56, 29, 115, 0.36) 0%, rgba(56, 29, 115, 0.76) 18%, rgba(27, 10, 54, 0.96) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.global-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: #05040c;
  overflow: visible;
}

.global-nav__bg-title {
  position: absolute;
  inset: 0px 220px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.global-nav__season {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  margin: 0;
  transform: translate(-50%, -50%);
  width: min(690px, calc(100% - 310px));
  display: grid;
  place-items: center;
  pointer-events: none;
}

.global-nav__bg-title img,
.global-nav__season img {
  display: block;
  width: 100%;
  height: auto;
}

.global-nav__bg-title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.global-nav__brand {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.global-nav__logo {
  width: 74px;
  height: 74px;
}

.global-nav__toggle {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 36px;
  display: block;
  background: transparent;
  border: 0;
  padding: 0;
  flex: 0 0 auto;
}

.global-nav__toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 30px;
  height: 3px;
  margin-left: -15px;
  border-radius: 999px;
  background: var(--yellow);
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.global-nav__toggle span:nth-child(1) { top: 6px; }
.global-nav__toggle span:nth-child(2) { top: 16px; }
.global-nav__toggle span:nth-child(3) { top: 26px; }

.global-nav.is-open .global-nav__toggle span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
}

.global-nav.is-open .global-nav__toggle span:nth-child(2) {
  opacity: 0;
}

.global-nav.is-open .global-nav__toggle span:nth-child(3) {
  top: 16px;
  transform: rotate(-45deg);
}

.global-nav__menu {
  position: absolute;
  top: 100%;
  right: 16px;
  z-index: 120;
  width: min(320px, calc(100vw - 24px));
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  background: rgba(34, 15, 72, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.global-nav__menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.global-nav__menu a:first-child {
  border-top: 0;
}

.global-nav.is-open .global-nav__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
}

.hero__eyebrow,
.hero__caption,
.hero__sub,
.quick-nav p,
.benefit-note,
.purchase-button__meta {
  text-transform: uppercase;
}

.hero__eyebrow {
  margin: 0 0 18px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.34em;
}

.hero__panel {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.hero h1,
.section-heading h2,
.contact-button {
  font-family: var(--font-display);
}

.hero__kv-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero__seal {
  width: 132px;
  margin: -34px 0 0 auto;
}

.hero__seal img {
  width: 100%;
  display: block;
}

.violet-stage {
  background: url("/files/user/26-27_SEASON/lp/seasonseat/img/bg-purple.jpg") center top / cover no-repeat;
}

.quick-nav {
  position: relative;
  padding: 18px 34px 30px;
  text-align: center;
  background: transparent;
}

.quick-nav p {
  font-size: 11px;
  letter-spacing: 0.18em;
}

.quick-nav p img {
  display: block;
  width: min(150px, 100%);
  height: auto;
  margin: 44px auto 0;
}

.quick-nav__links {
  position: relative;
  width: min(600px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 30px;
}

.quick-nav__links a {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 60px;
  align-content: start;
  justify-items: center;
  padding: 12px 10px 0;
  color: #fff;
  border-right: 2px solid #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.quick-nav__links a:first-child {
  border-left: 2px solid #fff;
}

.quick-nav__links a:last-child {
  border-right: 2px solid #fff;
}

.quick-nav__links a::after {
  content: "";
  width: 30px;
  height: 11px;
  background: url("/files/user/26-27_SEASON/lp/seasonseat/img/link.svg") center / contain no-repeat;
}

.section {
  padding: 100px 32px 120px;
}

.section--violet {
  background: transparent;
}

#seatmap.section--violet {
  margin-top: -2px;
  padding: 70px 0px 170px;
}

.section--dark {
  background: rgba(5, 5, 5, 0.92);
}

.section--with-line {
  border-top: 10px solid var(--line);
}

#purchase {
  position: relative;
}

#purchase::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 12px;
  background: #4b2f8e;
}

#benefits {
  background: url("/files/user/26-27_SEASON/lp/seasonseat/img/bg-purple02.jpg") center top / cover no-repeat;
  position: relative;
}

#faq {
  background: url("/files/user/26-27_SEASON/lp/seasonseat/img/bg-purple02.jpg") center top / cover no-repeat;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 8vw, 64px);
  line-height: 0.9;
}

.section-heading h2 img {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin: 0 auto;
}

#faq .section-heading h2 img {
  width: min(95px, 100%);
}

.section-heading p {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 700;
}

.seatmap-lead {
  margin: 54px 0 74px;
  text-align: center;
  color: var(--white);
}

.seatmap-lead p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.seatmap-lead__pc {
  display: block !important;
}

.seatmap-lead__sp {
  display: none !important;
}

.seatmap-floors {
  width: min(100%, 700px);
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.seatmap-floor {
  min-width: 88px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #4b2f8e;
  color: #bdbdbd;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.seatmap-floor.is-active,
.seatmap-floor:hover {
  background: var(--yellow);
  color: #3f2b84;
}

#seatmap .section-heading h2 img {
  width: min(270px, 100%);
}

.seatmap-numbers {
  width: min(100%, 1000px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.seat-chip {
  flex: 0 0 56px;
  min-height: 45px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bdbdbd;
  color: #1e1e1e;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.seat-chip[hidden] {
  display: none;
}

.seat-chip.is-active,
.seat-chip:hover {
  background: var(--yellow);
}

.seat-detail {
  width: min(100%, 900px);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  padding: 17px;
  background: #4b2f8e;
  color: #fff;
}

.seat-detail__visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.seat-detail__map-button {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.seat-detail__map-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 0 0 3px rgba(75, 47, 142, 0.5);
}

.seat-detail__map-button::after {
  content: "";
  position: absolute;
  left: calc(50% + 22px);
  top: calc(50% + 22px);
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  transform: translate(-50%, -50%) rotate(45deg) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 0 0 2px rgba(75, 47, 142, 0.5);
}

.seat-detail__map-button:hover::before,
.seat-detail__map-button:hover::after,
.seat-detail__map-button:focus-visible::before,
.seat-detail__map-button:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.seat-detail__map-button:hover::after,
.seat-detail__map-button:focus-visible::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.seat-detail__map-image {
  display: block;
  width: 100%;
  background: #fff;
}

.seat-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
}

.seat-detail__thumb-button {
  padding: 0;
  border: 0;
  background: transparent;
}

.seat-detail__thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.seat-detail__thumb-button:hover img,
.seat-detail__thumb-button:focus-visible img {
  opacity: 0.88;
}

.image-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-popup.is-open {
  display: flex;
}

.image-popup__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
}

.image-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
}

.image-popup__close {
  position: absolute;
  top: -44px;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.image-popup__image {
  display: block;
  width: 100%;
  max-height: min(84vh, 960px);
  object-fit: contain;
  background: #fff;
}

.seat-detail__body h3,
.benefit-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.seat-copy {
  display: none;
}

.seat-copy.is-active {
  display: block;
}

.seat-copy strong {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #000;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
}

.seat-copy p,
.section-copy,
.benefit-card__body p,
.faq-answer,
.notice-box li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.seat-copy p {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.section-copy a {
  color: var(--yellow);
  text-decoration: underline;
}

.c-qa__item-txt a {
  color: #2848ff;
  text-decoration: underline;
}

.notice-box ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.section-emblem,
.contact-logo {
  display: flex;
  justify-content: center;
}

.section-emblem img,
.contact-logo img {
  width: 150px;
}

.section-emblem {
  margin-bottom: 16px;
}

#benefits .section-emblem {
  position: relative;
  z-index: 2;
  margin-top: -180px;
  margin-bottom: 55px;
}

.benefit-cards {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 34px;
}

.benefit-scroll {
  width: calc(100% + 64px);
  margin: 30px 0 0 -32px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#benefits .benefit-scroll {
  width: 100%;
  margin-left: 0;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  overflow-x: auto;
}

.benefit-scroll::-webkit-scrollbar {
  display: none;
}

.benefit-card {
  width: var(--benefit-card-width, 300px);
  flex: 0 0 var(--benefit-card-width, 300px);
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 0 0 1px rgba(27, 12, 56, 0.35);
  scroll-snap-align: start;
}

.benefit-card__media {
  border-top: 5px solid #4b2f8e;
  border-bottom: 1px solid #dadada;
  background: url("/files/user/26-27_SEASON/lp/seasonseat/img/comingsoon.jpg") center center / cover no-repeat;
}

.benefit-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card__body {
  padding: 15px;
}

.benefit-card__label {
  margin: 0;
  height: 65px;
  padding: 10px 18px;
  border-bottom: 5px solid #4b2f8e;
  background: #fff;
  color: #332775;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__tag,
.benefit-card__body .benefit-card__tag {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #4b2f8e;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.benefit-card__body strong {
  display: block;
  margin-top: 16px;
  color: #3e2d93;
  text-align: left;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
}

.benefit-card__body strong span {
  font-weight: 800;
}

.benefit-note {
  margin: 34px 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 3px 3px 0 rgba(46, 24, 97, 0.9);
}

.benefit-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #1e1e1e;
}

.section-copy {
  margin: 18px auto 0;
  text-align: center;
}

.purchase-group {
  width: min(100%, 440px);
  margin: 28px auto 0;
}

.purchase-group__title,
.purchase-divider {
  margin: 0 0 18px;
  text-align: center;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.purchase-divider {
  position: relative;
}

.purchase-divider::before {
  left: 0;
}

.purchase-divider::after {
  right: 0;
}

.purchase-button {
  position: relative;
  width: 100%;
  min-height: 60px;
  display: grid;
  place-items: center;
  margin-top: 14px;
  padding: 0 24px;
  border: 1px solid var(--yellow);
  background: linear-gradient(180deg, #5c35b2, #43217f);
  font-weight: 800;
}

.purchase-button__label,
.purchase-button__status {
  position: relative;
  z-index: 1;
}

.purchase-button__label {
  display: block;
}

.purchase-button__status {
  position: absolute;
  top: 19px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(15, 8, 31, 0.32);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.purchase-button.is-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.72;
  filter: grayscale(0.15);
}

.purchase-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.purchase-button--yellow::after {
  background: var(--yellow);
}

.purchase-button--white::after {
  background: #fff;
}

.purchase-group--general .purchase-button {
  border-color: #fff;
}

.purchase-group--general .purchase-button__status {
  background: rgba(255, 255, 255, 0.2);
}

.purchase-button__meta {
  margin: 6px 0 0;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.08em;
  opacity: 0.86;
}

.purchase-button__member-label {
  display: inline-block;
  font-size: 13px;
}

.notice-box {
  width: min(100%, 560px);
  margin: 90px auto 0;
  padding-top: 28px;
  border-top: 2px solid #fed100;
}

.notice-box p {
  margin: 0 0 10px;
  font-weight: 800;
}

.notice-box li {
  font-size: 12px;
}

.faq-list {
  width: min(100%, 700px);
  margin: 28px auto 0;
  display: grid;
  gap: 14px;
}

.c-qa + .c-qa {
  margin-top: 0;
}

.c-qa__item {
  position: relative;
}

.c-qa__item-txt {
  flex: 1;
  font-size: 17px;
  color: #26203f;
  line-height: 1.6;
}

.c-qa__item--parent {
  cursor: pointer;
  background: #fff;
  border-radius: 14px;
}

.c-qa__item--parent::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 10px;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-right: 3px solid #392171;
  border-bottom: 3px solid #392171;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.c-qa__item--parent.is-active::after {
  transform: translateY(-35%) rotate(-135deg);
}

.c-qa__item--parent.is-active {
  border-radius: 14px 14px 0 0;
}

.c-qa__item--child {
  display: none;
  position: relative;
  font-size: 14px;
}

.c-qa__item--child.is-active {
  display: block;
}

.c-qa__item-inner {
  position: relative;
  line-height: 1.6;
  padding: 18px 52px 18px 55px;
  display: flex;
  align-items: center;
}

.c-qa__item-inner::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 36px;
  min-width: 24px;
  display: block;
  line-height: 1;
  flex: 0 0 auto;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-qa__item-inner--parent .c-qa__item-txt {
  margin-top: 0;
  font-weight: 900;
  color: #2d1d77;
  font-size: 16px;
  line-height: 1.6;
}

.c-qa__item-inner--parent::before {
  background-image: url("/files/user/26-27_SEASON/lp/seasonseat/img/faq-q.svg");
}

.c-qa__item-inner--child {
  padding: 6px 18px 18px 55px;
  background: #fff;
  border-radius: 0 0 14px 14px;
}

.c-qa__item-inner--child .c-qa__item-txt {
  margin-top: 0;
  font-size: 14px;
  font-weight: 400;
  color: #26203f;
  line-height: 1.9;
}

.c-qa__item-inner--child::before {
  background-image: url("/files/user/26-27_SEASON/lp/seasonseat/img/faq-a.svg");
  top: 0;
  transform: none;
}

.contact {
  text-align: center;
}

.contact-button {
  width: min(100%, 260px);
  min-height: 50px;
  display: inline-grid;
  place-items: center;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--yellow);
  color: #171109;
  font-size: 18px;
}

.contact-logo {
  margin-top: 28px;
}

.contact small {
  display: block;
  margin-top: 20px;
  font-size: 9px;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

.site-footer {
  position: relative;
  padding: 0 0 60px;
  background: #452c84;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 160px;
  background:
    linear-gradient(rgba(68, 42, 132, 0.82), rgba(68, 42, 132, 0.82)),
    url("/files/user/26-27_SEASON/lp/seasonseat/img/bg_global_nav.png") center top / cover no-repeat;
  opacity: 0.95;
}

.site-footer__hero,
.site-footer__cta,
.site-footer__follow-block,
.site-footer__wordmark,
.site-footer__legal,
.site-footer__copyright {
  position: relative;
  z-index: 1;
}

.site-footer__hero {
  padding-top: 28px;
}

.site-footer__hero-line {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--yellow);
  transform: translateY(50px);
}

.site-footer__hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 184px;
  margin-top: -18px;
  background: #452c84;
}

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

.site-footer__cta {
  width: min(100%, 670px);
  margin: 74px auto 0;
}

.site-footer__cta-link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 98px;
  margin-top: 22px;
  padding: 0 108px 0 46px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffd316 0%, #ffbf09 100%);
  color: #3c2b82;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  text-align: left;
}

.site-footer__cta-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 64px;
  width: 18px;
  height: 18px;
  border-top: 7px solid #3c2b82;
  border-right: 7px solid #3c2b82;
  transform: translateY(-50%) rotate(45deg);
}

.site-footer__follow {
  margin: 0 auto;
}

.site-footer__follow img {
  display: block;
  width: 242px;
  max-width: 100%;
  margin: 0 auto;
}

.site-footer__follow-block {
  margin-top: 58px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.site-footer__social img {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.site-footer__social--line img {
  width: 40px;
  height: 40px;
}

.site-footer__social--x img,
.site-footer__social--tiktok img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}

.site-footer__instagram-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 4px solid #fff;
  border-radius: 10px;
}

.site-footer__instagram-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 4px solid #fff;
  border-radius: 50%;
}

.site-footer__instagram-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.site-footer__wordmark {
  display: block;
  width: fit-content;
  margin: 68px auto 0;
}

.site-footer__wordmark img {
  display: block;
  width: 274px;
  max-width: 100%;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 34px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.site-footer__copyright {
  display: block;
  margin-top: 32px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 1;
}

.footer {
  background: var(--sr-purple);
  color: #fff;
  text-align: center;
}

.footer__main {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0 0 34px;
}

.footer__main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--sr-yellow);
}

.footer__logo {
  position: relative;
  z-index: 1;
  width: 112px;
  height: auto;
  margin-top: -40px;
  margin-bottom: 40px;
}

.footer__cta {
  width: min(344px, calc(100% - 56px));
  min-height: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 18px 0 24px;
  background: linear-gradient(90deg, #ffd400 0%, #ffc800 52%, #ffbd00 100%);
  color: var(--sr-purple);
  font-size: 14px;
  font-weight: 900;
  border-radius: 0 14px 0 14px;
}

.footer__follow {
  display: block;
  width: min(120px, 42vw);
  margin: 20px 0 0;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.footer-social__link {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
}

.footer-social__link svg,
.footer-social__link--line img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 0 38px;
}

.footer__brand-logo {
  width: min(150px, 72vw);
}

.footer-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}

.footer-subnav__link,
.footer small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
}

@media (max-width: 1100px) {
  .page-frame {
    width: 100%;
  }

  .side-rail {
    display: none;
  }

  .season-lp {
    width: min(100%, 760px);
  }
}

@media (max-width: 767px) {
  body {
    background:
      linear-gradient(rgba(24, 4, 53, 0.28), rgba(24, 4, 53, 0.52)),
      url("/files/user/26-27_SEASON/lp/seasonseat/img/bg.jpg") center top / cover no-repeat;
  }

  .global-nav {
    height: 70px;
    padding: 0 14px;
    border-bottom-width: 4px;
  }

  .global-nav__bg-title {
    inset: 0 auto 0 50%;
    width: min(360px, calc(100% - 145px));
    transform: translateX(-50%);
  }

  .global-nav__season {
    top: 50%;
    width: min(360px, calc(100% - 170px));
  }

  .global-nav__brand,
  .global-nav__logo {
    width: 50px;
    height: 50px;
  }

  .global-nav__toggle {
    width: 40px;
    height: 36px;
  }

  .global-nav__toggle span {
    width: 30px;
    height: 3px;
    margin-left: -15px;
  }

  .global-nav__toggle span:nth-child(1) { top: 6px; }
  .global-nav__toggle span:nth-child(2) { top: 16px; }
  .global-nav__toggle span:nth-child(3) { top: 26px; }

  .global-nav__menu {
    left: 8px;
    right: 8px;
    width: auto;
    max-width: none;
  }

  .hero__panel {
    width: 100%;
  }

  .hero__seal {
    width: 92px;
    margin-top: -18px;
  }

  .quick-nav {
    padding: 25px 36px 40px;
  }

  .quick-nav__links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-top: 26px;
  }

  .quick-nav p {
    margin-bottom: 22px;
  }

  .quick-nav p img {
    width: min(220px, 100%);
    margin-top: 24px;
  }

  .quick-nav__links a {
    min-height: 78px;
    padding-top: 14px;
    border-left: 0;
    border-right: 2px solid #fff;
    font-size: 18px;
  }

  .quick-nav__links a:nth-child(2n + 1) {
    border-left: 2px solid #fff;
  }

  .quick-nav__links a:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 1px);
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  .quick-nav__links a:last-child span {
    width: 100%;
    text-align: center;
  }

  .site-footer {
    padding: 0 0 36px;
  }

  .site-footer::before {
    height: 120px;
  }

  .site-footer__hero {
    padding-top: 22px;
  }

  .site-footer__hero-line {
    height: 3px;
    transform: translateY(38px);
  }

  .site-footer__hero-logo,
  .site-footer__hero-logo img {
    width: 118px;
    height: 118px;
  }

  .site-footer__cta {
    width: min(100%, 330px);
    margin-top: 44px;
  }

  .site-footer__cta-link {
    min-height: 54px;
    margin-top: 14px;
    padding: 0 56px 0 22px;
    border-radius: 16px;
    font-size: 18px;
  }

  .site-footer__cta-link::after {
    right: 24px;
    width: 10px;
    height: 10px;
    border-top-width: 4px;
    border-right-width: 4px;
  }

  .site-footer__follow-block {
    margin-top: 34px;
  }

  .site-footer__follow img {
    width: 142px;
  }

  .site-footer__socials {
    gap: 14px;
    margin-top: 12px;
  }

  .site-footer__social {
    width: 34px;
    height: 34px;
  }

  .site-footer__social--line img {
    width: 28px;
    height: 28px;
  }

  .site-footer__social--x img,
  .site-footer__social--tiktok img {
    width: 24px;
    height: 24px;
  }

  .site-footer__instagram-icon {
    width: 24px;
    height: 24px;
    border-width: 3px;
    border-radius: 7px;
  }

  .site-footer__instagram-icon::before {
    inset: 5px;
    border-width: 3px;
  }

  .site-footer__instagram-icon::after {
    top: 3px;
    right: 3px;
    width: 4px;
    height: 4px;
  }

  .site-footer__wordmark {
    margin-top: 40px;
  }

  .site-footer__wordmark img {
    width: 170px;
  }

  .site-footer__legal {
    gap: 10px 20px;
    margin-top: 22px;
  }

  .site-footer__legal a {
    font-size: 12px;
  }

  .site-footer__copyright {
    margin-top: 20px;
    font-size: 11px;
  }

  .section {
    padding: 76px 36px 90px;
  }

  .seat-detail {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .seatmap-lead {
    margin: 34px 0 40px;
  }

  .seatmap-lead p {
    font-size: 15px;
  }

  .seatmap-lead__pc {
    display: none !important;
  }

  .seatmap-lead__sp {
    display: block !important;
  }

  .seatmap-floors {
    width: 90%;
    margin-bottom: 18px;
    gap: 10px;
    justify-content: center;
  }

  .seatmap-floor {
    min-width: 70px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 18px;
  }

  .seatmap-numbers {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-inline: 16px;
    padding-bottom: 6px;
  }

  .seat-chip {
    flex: 0 0 56px;
    min-height: 48px;
    font-size: 18px;
  }

  .seat-detail__body h3 {
    font-size: 28px;
  }

  .seat-copy strong {
    font-size: 22px;
  }

  .benefit-cards {
    gap: 16px;
    padding: 0 16px;
  }

  #benefits .section-emblem {
    margin-top: -155px;
    margin-bottom: 70px;
  }

  .benefit-scroll {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding-bottom: 4px;
  }

  #benefits .benefit-scroll {
    width: 100%;
    margin-left: 0;
  }

  .benefit-card {
    width: var(--benefit-card-width, 250px);
    flex: 0 0 var(--benefit-card-width, 250px);
    scroll-snap-align: center;
  }

  #benefits .benefit-scroll {
    scroll-padding-inline: calc((100% - var(--benefit-card-width, 250px)) / 2);
  }

  .benefit-card__label {
    height: 84px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .benefit-card__media {
    aspect-ratio: 250 / 198;
    border-top-width: 3px;
  }

  .benefit-card__body {
    padding: 14px 14px 16px;
  }

  .benefit-card__body p {
    font-size: 14px;
  }

  .benefit-card__body strong {
    margin-top: 14px;
    font-size: 28px;
  }

  .benefit-note {
    margin-top: 24px;
    font-size: 12px;
  }

  .purchase-divider::before,
  .purchase-divider::after {
    width: 72px;
  }

  .faq-list {
    width: 100%;
    margin-top: 28px;
  }

  .c-qa__item--parent {
    border-radius: 14px;
  }

  .c-qa__item--parent::after {
    right: 22px;
    width: 12px;
    height: 12px;
    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .c-qa__item-inner {
    min-height: 84px;
    padding: 18px 52px 18px 72px;
    align-items: center;
  }

  .c-qa__item-inner::before {
    left: 20px;
    top: 38px;
    width: 24px;
    height: 36px;
    min-width: 24px;
  }

  .c-qa__item-inner--child {
    padding: 0 20px 20px 72px;
    border-radius: 0 0 14px 14px;
  }

  .c-qa__item-inner--child::before {
    left: 20px;
    top: 0;
    width: 24px;
    height: 36px;
  }

  .c-qa__item-inner--parent .c-qa__item-txt {
    font-size: 15px;
    font-weight: 900;
    margin-top: 0;
    line-height: 1.5;
  }

  .c-qa__item-inner--child .c-qa__item-txt {
    font-size: 14px;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.9;
  }
}
