@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 {
  --sr-purple: #3c1f78;
  --sr-purple-deep: #26104f;
  --sr-purple-soft: #41257d;
  --sr-yellow: #f7cf11;
  --sr-black: #070707;
  --sr-white: #fff;
  --sr-gray: #efedf4;
  --sr-gray-mid: #bebebe;
  --sr-ink: #25183c;
  --line: rgba(255, 209, 0, 0.9);
  --text-dark: #25183c;
  --content-width: 760px;
  --nav-height: 82px;
  --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;
  font-family: var(--font-base);
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  color: var(--sr-ink);
  font-family: var(--font-base);
  overflow-x: hidden;
  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/ticket/img/bg.jpg") center top / cover fixed no-repeat;
}

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

button,
input,
textarea,
select,
option {
  font: inherit;
  font-family: var(--font-base);
}

button {
  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-sidecopy {
  position: absolute;
  top: 30px;
  left: max(24px, calc(50% - (var(--content-width) / 2) - 280px));
  width: 750px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 0;
  z-index: 0;
  pointer-events: none;
}

.page-sidecopy__season {
  margin-top: 3px;
  width: 320px;
}

.page-sidecopy__season img,
.page-sidecopy__title img {
  display: block;
  height: auto;
  transform-origin: top left;
}

.page-sidecopy__season img {
  width: 336px;
  transform: rotate(90deg) translateY(-100%);
}

.page-sidecopy__title img {
  width: 790px;
  transform: rotate(90deg) translateY(-100%);
}

.ticket-lp {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  margin: 0 auto;
  background: transparent;
}

.global-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background:
    url("/files/user/26-27_SEASON/lp/ticket/img/bg_global_nav.png") right center / auto 100% no-repeat,
    #392171;
}

.global-nav__brand {
  min-width: 0;
  display: flex;
  align-items: center;
}

.global-nav__title-image {
  display: block;
  width: min(280px, 100%);
  height: auto;
}

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

.global-nav__toggle span {
  position: absolute;
  left: 50%;
  width: 30px;
  height: 3px;
  margin-left: -15px;
  border-radius: 999px;
  background: var(--sr-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;
  background: rgba(34, 15, 72, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  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 {
  background: url("/files/user/26-27_SEASON/lp/ticket/img/bg-purple.png") center top / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  background: #000;
  overflow: hidden;
}

.hero-carousel__viewport {
  overflow: hidden;
  padding: 50px 0;
}

.hero-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  will-change: transform;
  transition: transform 0.52s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-slide {
  flex: 0 0 72%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1920 / 1080;
  background: #12091f;
}

.hero-slide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 66px;
  height: 66px;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
}

.hero-carousel__arrow--prev { left: 18px; }
.hero-carousel__arrow--next { right: 18px; }

.hero-carousel__arrow span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 208, 0, 0.96);
}

.hero-carousel__arrow span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.hero-carousel__arrow--prev span::before {
  margin-left: -2px;
  border-right: 9px solid var(--sr-yellow);
}

.hero-carousel__arrow--next span::before {
  margin-left: 2px;
  border-left: 9px solid var(--sr-yellow);
}

.hero-ticket-button {
  position: relative;
  display: grid;
  grid-template-columns: 156px 1fr 144px;
  align-items: stretch;
  width: min(700px, 100%);
  min-height: 50px;
  margin: 18px auto 0;
  overflow: hidden;
  background: #fff;
  color: var(--sr-purple);
  border: 2px solid #14081f;
  box-shadow: 0 5px 0 rgba(38, 18, 81, 0.45);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.hero-ticket-button__stripes {
  display: block;
  background: url("/files/user/26-27_SEASON/lp/ticket/img/bg_ticket.png") left center / cover no-repeat;
  transition: background-position 0.45s ease, filter 0.3s ease;
}

.hero-ticket-button__label {
  display: grid;
  place-items: center;
  padding: 0 18px;
  color: var(--sr-purple);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: letter-spacing 0.24s ease, transform 0.24s ease;
}

.hero-ticket-button__logo {
  position: relative;
  overflow: hidden;
}

.hero-ticket-button__logo img {
  position: absolute;
  top: 110%;
  right: -34px;
  width: 156px;
  height: 156px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-ticket-button:hover {
    box-shadow: 0 7px 0 rgba(38, 18, 81, 0.34);
  }

  .hero-ticket-button:hover .hero-ticket-button__stripes {
    background-position: -18px center;
  }

  .hero-ticket-button:hover .hero-ticket-button__label {
    transform: none;
    letter-spacing: 0;
  }

  .hero-ticket-button:hover .hero-ticket-button__logo img {
    transform: translateY(-50%);
  }
}

.hero-links {
  position: relative;
  padding: 30px 18px 26px;
}

.hero-links::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  border-top: 7px double var(--sr-yellow);
}

.hero-links__prompt {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
}

.hero-links__prompt img {
  display: block;
  width: min(150px, calc(100% - 32px));
  margin: 0 auto;
}

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

.hero-links__menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 12px;
  height: 25px;
  transform: translateX(-50%);
  background: url("/files/user/26-27_SEASON/lp/ticket/img/arrow_click.png") center / contain no-repeat;
}

.hero-links__menu a {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-height: 60px;
  padding: 12px 10px 0;
  color: #fff;
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.hero-links__menu a:first-child {
  border-left: 2px solid rgba(0, 0, 0, 0.42);
}

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

.hero-links__latest {
  margin: 16px 0 0;
  text-align: center;
}

.hero-links__latest a {
  color: #fff;
  font-size: 13px;
}

.seatmap-links a {
  color: #000;
  font-size: 13px;
}

.club-band {
  position: relative;
  width: 100%;
  height: 44px;
  overflow: hidden;
  background: #000;
}

.club-band__track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
  width: max-content;
  min-width: 100%;
  animation: club-band-slide 26s linear infinite;
}

.club-band__item {
  display: flex;
  align-items: center;
  height: 100%;
}

.club-band__svg {
  display: block;
  width: 206px;
  height: auto;
  transform: translateY(-1px);
}

@keyframes club-band-slide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(var(--club-band-loop, 0px) * -1)); }
}

.section {
  position: relative;
  padding: 80px 30px 130px;
}

.section--light,
.section--white {
  background: #f2f2f2;
  color: var(--sr-ink);
}

.section--purple,
.section--violet {
  background: url("/files/user/26-27_SEASON/lp/ticket/img/bg-purple.png") center top / cover no-repeat;
  color: #fff;
}

.section--dark {
  background: var(--sr-yellow);
  color: var(--sr-ink);
}

#seatmap.section--violet {
  margin-top: -2px;
  background: #fff;
  color: var(--sr-ink);
  padding-top: 45px;
  padding-bottom: 120px;
}

#seatmap.section--violet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 118px;
  background: #f3f3f3;
}

.section--yellow {
  background: var(--sr-yellow);
}

.section--diagonal {
  background: linear-gradient(164deg, var(--sr-yellow) 0 30%, #fff 30% 100%);
}

.section--more {
  padding-top: 96px;
  overflow: visible;
}

.section-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-heading--games {
  width: min(920px, calc(100% - 24px));
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.section-heading__en {
  margin: 0;
}

.section-heading__en-image {
  display: block;
  width: 100%;
}

.section-heading__en--games {
  width: min(100%, calc(100% - 8px));
}

.section-heading__en--seatmap,
.section-heading__en--prices,
.section-heading__en--pickup,
.section-heading__en--lounge,
.section-heading__en--more,
.section-heading__en--access,
.section-heading__en--faq {
  width: min(220px, 100%);
  margin: 0 auto;
  padding: 12px 22px;
  background: #000;
  border-radius: 18px 0 18px 0;
}

.section-heading__en--seatmap {
  width: min(270px, 100%);
}

.section-heading__en--recommend {
  width: min(850px, 100%);
  margin: 0 auto;
}

.section-heading__en--pickup {
  width: min(240px, 100%);
  margin-top: 65px;
}

.section-heading__en--more {
  width: min(170px, 100%);
}

.section-heading__en--faq {
  width: min(140px, 100%);
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

#seatmap .section-heading,
#access .section-heading {
  padding-top: 40px;
}

.section-heading--games h2 {
  display: inline-block;
  margin: 12px 0 22px;
  padding: 6px 18px;
  border-radius: 18px 0 18px 0;
  background: var(--sr-yellow);
  color: #000;
  font-size: 24px;
}

.section-heading__tag {
  display: inline-block;
  margin: 0;
  padding: 0px 5px;
  background: #000;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

#games.section {
  padding-bottom: 20px;
}

#pickup.section {
  padding-bottom: 30px;
}

.games-list {
  width: min(100%, 700px);
  margin: 0 auto;
  overflow-x: visible;
  background: #fff;
  padding: 5px;
}

.games-list--notice {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 32px 24px;
}

.games-list__notice {
  margin: 0;
  width: 100%;
  color: var(--sr-purple);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.games-list__table {
  min-width: 0;
}

.games-list__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr .9fr 1.2fr;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.games-list__row--head {
  padding: 5px 0;
  border-top: 0;
  font-size: 16px;
  font-weight: 700;
}

.games-list__cell {
  text-align: center;
}

.games-list__cell--date,
.games-list__cell--time {
  display: flex;
  align-items: center;
  justify-content: center;
}

.games-list__date-main,
.games-list__time,
.games-list__rank {
  margin: 0;
}

.games-list__date-main,
.games-list__time {
  font-family: var(--font-base);
  font-size: 20px;
  line-height: 1;
}

.games-list__date-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.games-list__date-main span {
  display: inline-block;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.games-list__opponent-name {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
}

.games-list__rank {
  font-size: 20px;
}

.games-list__rank-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.games-list__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 20px;
  border: 0;
  padding: 0 16px;
  background: var(--sr-purple);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.games-list__button--disabled {
  background: #c8c5d5;
  color: #6b6387;
  cursor: not-allowed;
  box-shadow: inset 0 0 0 1px rgba(57, 33, 113, 0.14);
}

.seatmap-links {
  width: min(100%, 640px);
  margin: 18px auto 0;
  display: grid;
  justify-items: end;
}

.seatmap-lead {
  margin: 54px 0 74px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
}

.seatmap-lead__mobile {
  display: none;
}

.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: var(--sr-purple);
  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(--sr-yellow);
  color: var(--sr-purple);
}

.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;
  padding: 0;
  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(--sr-yellow);
}

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

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

.seatmap-diagram {
  background: #fff;
}

.seatmap-diagram img,
.seatmap-detail__thumb img {
  display: block;
  width: 100%;
}

.seatmap-diagram img:not([hidden]) {
  cursor: zoom-in;
}

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

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

.seatmap-detail__body 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 {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.prices-band {
  height: 40px;
  margin: -120px -30px 40px;
  background: var(--sr-yellow);
}

.price-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  width: min(100%, 1000px);
  margin: 28px auto 0;
}

.price-tabs button {
  min-height: 45px;
  border: 0;
  border-radius: 18px 18px 0 0;
  background: #d8d4e4;
  color: #231b35;
  font-size: 14px;
  font-weight: 900;
  margin: 1px 0 0 0;
}

.price-tabs button.is-active {
  background: var(--sr-yellow);
  color: #000;
}

.price-panels {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.price-panel {
  display: none;
}

.price-panel.is-active {
  display: block;
}

.price-image-frame {
  padding: 16px;
  background: #fff;
  border-top: 12px solid var(--sr-purple);
}

.price-image-frame img {
  display: block;
  width: 100%;
}

.section--purple .hero-ticket-button {
  margin-top: 26px;
}

.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;
}

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

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

.benefit-scroll--single {
  width: 100%;
  margin-left: 0;
  overflow: visible;
}

.benefit-cards--single {
  width: 100%;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  flex: 0 0 300px;
  background: #fff;
  color: var(--text-dark);
  scroll-snap-align: start;
}

#pickup .benefit-card {
  width: var(--pickup-card-width, 300px);
  flex-basis: var(--pickup-card-width, 300px);
}

.benefit-card__label {
  margin: 0;
  padding: 6px 18px 6px;
  color: #332775;
  text-align: center;
  font-size: 19px;
  font-weight: 800;
}

.benefit-card__media {
  /* aspect-ratio: 300 / 200; */
  border-top: 5px solid #4b2f8e;
  border-bottom: 1px solid #dadada;
  background: #fff;
}

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

.benefit-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  padding: 15px;
  text-align: left;
}

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

.benefit-card__body strong {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #3e2d93;
  text-align: right;
  font-size: 25px;
  line-height: 1;
}

.benefit-card__body a {
  min-height: 45px;
  width: 100%;
  margin-top: 10px;
  display: grid;
  place-items: center;
  background: var(--sr-purple);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.benefit-note {
  margin: 34px 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: none;
}

.lounge {
  width: min(100%, 640px);
  margin: 24px auto 0;
}

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

.lounge__body {
  padding: 28px 0 0;
}

.lounge__body p {
  margin: 0;
  color: var(--sr-ink);
  font-size: 16px;
  line-height: 2;
}

.lounge__actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.lounge__actions a {
  position: relative;
  width: min(344px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sr-purple);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.more-mark {
  position: absolute;
  left: 50%;
  top: -76px;
  transform: translateX(-50%);
  z-index: 2;
}

.more-mark img {
  display: block;
  width: 152px;
  height: 152px;
}

#more-ticket {
  background: var(--sr-purple);
  color: #fff;
  padding-top: 128px;
  overflow: visible;
}

#more-ticket::before,
#more-ticket::after {
  content: "";
  position: absolute;
  top: 0;
  width: 112px;
  height: 94px;
  margin: 0 10px;
  background: url("/files/user/26-27_SEASON/lp/ticket/img/three-arrow.png") center top / contain no-repeat;
}

#more-ticket::before {
  left: 0;
}

#more-ticket::after {
  right: 0;
  transform: scaleX(-1);
}

#more-ticket .section-heading h2 {
  color: #fff;
}

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

.howto-item,
.faq-item {
  background: #fff;
  color: var(--sr-ink);
  border-radius: 14px;
}

.howto-item--comingsoon {
  padding: 48px 20px;
  text-align: center;
}

.howto-item__comingsoon {
  margin: 0;
  color: var(--sr-purple);
  font-family: "SUNROCKERS BOLD", var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.howto-item summary,
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
}

.howto-item summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.howto-item summary {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 52px 16px 18px;
}

.howto-item__step img {
  display: block;
  width: 100%;
  max-width: 90px;
}

.howto-item__title {
  color: var(--sr-purple);
  font-size: 18px;
  font-weight: 900;
}

.howto-answer {
  padding: 0 18px 18px;
}

.howto-answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.faq-item summary {
  display: flex;
  align-items: center;
  padding: 18px 52px 18px 55px;
  color: #2d1d77;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.faq-item summary::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 36px;
  transform: translateY(-50%);
  background: url("/files/user/26-27_SEASON/lp/ticket/img/faq-q.svg") center / contain no-repeat;
}

.howto-item summary::after,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--sr-purple);
  border-bottom: 3px solid var(--sr-purple);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.howto-item[open] summary::after,
.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(-135deg);
}

.faq-answer {
  position: relative;
  padding: 6px 18px 18px 55px;
}

.faq-answer::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 24px;
  height: 36px;
  background: url("/files/user/26-27_SEASON/lp/ticket/img/faq-a.svg") center / contain no-repeat;
}

.faq-answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.faq-answer a {
  color: #4b2f8e;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  font-weight: 700;
}

.access-map {
  width: min(calc(100% - 56px), 600px);
  margin-left: auto;
  margin-right: auto;
}

#access {
  padding-top: 24px;
  padding-left: 0;
  padding-right: 0;
}

#access .section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
  padding: 0 28px;
}

.access-visual {
  width: min(100%, 960px);
  margin-top: 0;
}

.access-visual img {
  display: block;
  width: 100%;
}

.access-map {
  margin-top: 28px;
}

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

.access-info {
  width: min(calc(100% - 56px), 600px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
}

.access-info p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
}

.access-info p strong {
  display: block;
  margin-top: 18px;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.5;
}

.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;
}

.fixed_btn {
  position: fixed;
  right: max(30px, env(safe-area-inset-right));
  bottom: max(30px, env(safe-area-inset-bottom));
  z-index: 95;
  width: clamp(112px, 11vw, 168px);
}

.fixed_btn a,
.fixed_btn img {
  display: block;
}

@keyframes fixedBtnBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-8px) scale(1.03);
  }
  60% {
    transform: translateY(2px) scale(0.99);
  }
  80% {
    transform: translateY(-3px) scale(1.01);
  }
}

@media (hover: hover) and (pointer: fine) {
  .fixed_btn a:hover img {
    animation: fixedBtnBounce 0.6s ease;
  }
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
}

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

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

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 720px);
}

.image-lightbox__image {
  display: block;
  width: 100%;
}

.image-lightbox__close {
  position: absolute;
  top: -16px;
  right: -8px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--sr-purple);
  padding: 0;
}

.image-lightbox__close::before,
.image-lightbox__close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.image-lightbox__close::before {
  transform: rotate(45deg);
}

.image-lightbox__close::after {
  transform: rotate(-45deg);
}

body.modal-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

@media (max-width: 900px) {
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__main {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-carousel__track {
    gap: 10px;
  }

  .hero-slide {
    flex-basis: 80%;
  }

  .seat-detail {
    grid-template-columns: 1fr;
  }

  .price-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 72px;
  }

  .page-sidecopy {
    display: none !important;
  }

  .ticket-lp {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: var(--nav-height);
    overflow: hidden;
  }

  .hero,
  .hero__main,
  .hero-carousel,
  .hero-carousel__viewport,
  .hero-links,
  .club-band,
  .section,
  .footer {
    width: 100%;
    max-width: 100%;
  }

  .global-nav {
    position: fixed;
    left: 0;
    right: 0;
    padding: 10px 14px;
  }

  .global-nav__title-image {
    width: min(200px, calc(100vw - 110px));
  }

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

  .hero__main,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__main {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-carousel__viewport {
    padding: 30px 0;
  }

  .hero-carousel__track {
    gap: 0;
  }

  .hero-slide {
    flex-basis: 100%;
  }

  .hero-carousel__arrow {
    width: 30px;
    height: 30px;
  }

  .hero-carousel__arrow--prev { left: 2px; }
  .hero-carousel__arrow--next { right: 2px; }

  .hero-carousel__arrow--prev {
    display: none;
  }

  .hero-carousel__arrow--next {
    display: none;
  }

  .hero-carousel__arrow span {
    width: 22px;
    height: 22px;
  }

  .hero-ticket-button {
    display: block;
    width: calc(100% - 32px);
    min-height: 0;
    aspect-ratio: 1616 / 228;
    margin: 35px auto 20px;
    background: url("/files/user/26-27_SEASON/lp/ticket/img/button_sp.png") center center / 100% 100% no-repeat;
    border: 0;
    box-shadow: none;
  }

  .hero-ticket-button__stripes,
  .hero-ticket-button__label,
  .hero-ticket-button__logo {
    display: none;
  }

  .hero-links {
    padding: 22px 16px 26px;
  }

  .hero-links__prompt img {
    width: min(250px, calc(100% - 20px));
  }

  .hero-links__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-top: 26px;
  }

  .hero-links__menu a {
    min-height: 78px;
    padding-top: 14px;
    font-size: 18px;
  }

  .hero-links__menu a:nth-child(2n + 1) {
    border-left: 2px solid rgba(0, 0, 0, 0.42);
  }

  .hero-links__menu a:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 1px);
    border-left: 2px solid rgba(0, 0, 0, 0.42);
    border-right: 2px solid rgba(0, 0, 0, 0.42);
  }

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

  .hero-links__latest a,
  .seatmap-links a {
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  #seatmap.section--violet::before {
    height: 92px;
  }

  #seatmap .section-heading,
  #access .section-heading {
    padding-top: 12px;
  }

  .section-heading__en--more {
    width: min(182px, 100%);
  }

  .games-list {
    width: 100%;
    padding: 5px 0 0;
  }

  .games-list__table {
    min-width: 0;
  }

  .games-list__row {
    grid-template-columns: 1.15fr 0.95fr 1fr 0.9fr 1.15fr;
    gap: 8px;
    padding: 5px;
  }

  .games-list__row--head {
    font-size: 11px;
  }

  .games-list__date-main,
  .games-list__time {
    font-size: 13px;
  }

  .games-list__opponent-name {
    font-size: 11px;
    line-height: 1.3;
    word-break: keep-all;
  }

  .games-list__rank {
    font-size: 13px;
  }

  .games-list__button {
    min-width: 100%;
    min-height: 30px;
    padding: 0 6px;
    font-size: 11px;
  }

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

  .seatmap-lead__desktop {
    display: none;
  }

  .seatmap-lead__mobile {
    display: inline;
  }

  .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 {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

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

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

  .prices-band {
    height: 40px;
    margin: -120px -16px 32px;
  }

  .price-image-frame {
    padding: 10px;
  }

  .price-tabs button {
    min-height: 45px;
    font-size: 14px;
  }

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

  .benefit-scroll {
    width: 100%;
    margin-left: 0;
    padding-bottom: 4px;
  }

  #pickup .benefit-scroll {
    overflow-x: auto;
    scroll-padding-inline: calc((100% - min(250px, calc(100vw - 64px))) / 2);
  }

  .benefit-scroll--single {
    width: 100%;
    margin-left: 0;
    overflow: visible;
  }

  .benefit-cards--single {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
  }

  .benefit-card {
    width: min(250px, calc(100vw - 64px));
    flex: 0 0 min(250px, calc(100vw - 64px));
  }

  #pickup .benefit-card {
    width: min(250px, calc(100vw - 64px));
    flex-basis: min(250px, calc(100vw - 64px));
    scroll-snap-align: center;
  }

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

  .benefit-card__media {
    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;
  }

  .more-mark {
    top: -58px;
  }

  .more-mark img {
    width: 120px;
    height: 120px;
  }

  #more-ticket {
    padding-top: 102px;
  }

  #more-ticket::before,
  #more-ticket::after {
    width: 84px;
    height: 72px;
  }

  .howto-item summary {
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding: 14px 42px 14px 14px;
  }

  .howto-item__title,
  .faq-item summary {
    font-size: 15px;
  }

  .howto-answer,
  .faq-answer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .faq-item summary {
    min-height: 84px;
    padding: 18px 52px 18px 72px;
    line-height: 1.5;
  }

  .faq-item summary::before {
    left: 20px;
    top: 38px;
    width: 24px;
    height: 36px;
  }

  .faq-item summary::after {
    right: 22px;
  }

  .faq-answer {
    padding: 0 20px 20px 72px;
  }

  .faq-answer::before {
    left: 20px;
    width: 24px;
    height: 36px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .access-visual {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  #access {
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  #access .section-heading {
    margin-bottom: 20px;
    padding: 0 16px;
  }

  .access-map,
  .access-info {
    width: min(calc(100% - 32px), 500px);
  }

  .access-map iframe {
    height: 280px;
  }

  .footer__cta {
    width: min(344px, calc(100% - 32px));
  }

  .fixed_btn {
    right: 8px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 112px;
  }
}
