@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Noto+Sans+JP:wght@400;700;900&display=swap");
@import url("./design-system.css?v=20260527-design-system");

:root {
  --black: var(--color-neutral-900);
  --blue: var(--color-primary);
  --blue-muted: var(--color-secondary);
  --blue-pale: color-mix(in srgb, var(--color-secondary) 70%, var(--color-white));
  --gray: var(--color-neutral-50);
  --line: var(--color-line);
  --text-muted: var(--color-muted);
  --unique-accent: #f46b89;
  --unique-accent-soft: color-mix(in srgb, var(--unique-accent) 20%, transparent);
  --color-ticket-ss: var(--unique-accent);
  --color-ticket-s: color-mix(in srgb, var(--unique-accent) 62%, var(--color-white));
  --color-ticket-a: var(--color-primary);
  --color-ticket-b: var(--color-secondary);
  --color-ticket-ss-soft: var(--unique-accent-soft);
  --color-ticket-s-soft: color-mix(in srgb, var(--color-ticket-s) 20%, transparent);
  --color-ticket-a-soft: color-mix(in srgb, var(--color-ticket-a) 20%, transparent);
  --color-ticket-b-soft: color-mix(in srgb, var(--color-ticket-b) 20%, transparent);
  --paper-texture-image: url("./assets/paper-texture.jpg");
  --site-width: 1359px;
  --content-wide: 1079px;
  --content-mid: 896px;
  --schedule-button-width: 360px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--black);
  font-family: var(--font-body);
  font-feature-settings: "palt";
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.splash-screen::before {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  background-image: url("./assets/splash-bg-texture.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}

.splash-screen::after {
  display: none;
  content: none;
}

.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  padding: 32px 24px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.splash-decorations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.splash-decor {
  --splash-decor-delay: 0ms;
  --splash-decor-transform: rotate(0deg);
  --splash-float-distance: -8px;
  position: absolute;
  display: block;
  width: var(--splash-decor-width);
  height: auto;
  filter: drop-shadow(0 10px 0 rgba(0, 0, 0, 0.05));
  transform: var(--splash-decor-transform);
  animation: splash-decor-fade-in 520ms ease-out var(--splash-decor-delay) both,
    splash-decor-float 2100ms ease-in-out calc(var(--splash-decor-delay) + 520ms) infinite;
}

.splash-decor-ice {
  --splash-decor-width: clamp(50px, 7vw, 96px);
  --splash-decor-delay: 80ms;
  --splash-decor-transform: rotate(-16deg);
  left: max(18px, 8vw);
  top: max(24px, 9vh);
}

.splash-decor-ice-right {
  --splash-decor-width: clamp(50px, 7vw, 96px);
  --splash-decor-delay: 500ms;
  --splash-decor-transform: translateY(-50%) rotate(15deg);
  --splash-float-distance: -7px;
  left: auto;
  right: max(26px, 7vw);
  top: 50%;
}

.splash-decor-fan {
  --splash-decor-width: clamp(62px, 8.5vw, 112px);
  --splash-decor-delay: 180ms;
  --splash-decor-transform: rotate(14deg);
  right: max(18px, 8vw);
  top: max(74px, 16vh);
}

.splash-decor-juice {
  --splash-decor-width: clamp(60px, 8.5vw, 108px);
  --splash-decor-delay: 260ms;
  --splash-decor-transform: rotate(13deg);
  left: max(18px, 8vw);
  bottom: max(38px, 8vh);
}

.splash-decor-watermelon {
  --splash-decor-width: clamp(58px, 8vw, 102px);
  --splash-decor-delay: 340ms;
  --splash-decor-transform: rotate(-12deg);
  right: max(20px, 10vw);
  bottom: max(34px, 8vh);
}

.splash-decor-water-balloon {
  --splash-decor-width: clamp(46px, 6.5vw, 78px);
  --splash-decor-delay: 420ms;
  --splash-decor-transform: translateY(-50%) rotate(9deg);
  --splash-float-distance: -6px;
  left: max(26px, 7vw);
  right: auto;
  top: 50%;
}

.splash-kicker {
  margin: 0;
  font-family: var(--font-section-title);
  font-size: var(--text-title-s-size);
  font-weight: var(--text-title-s-weight);
  letter-spacing: var(--text-title-s-tracking);
  line-height: var(--text-title-s-leading);
}

.splash-logo {
  display: block;
  width: min(360px, 58vw);
  height: auto;
  max-width: none;
  object-fit: contain;
  overflow: visible;
  animation: splash-logo-pop 700ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  margin: 0;
  height: 65px;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  color: var(--color-white);
  transition: background-color 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--color-white);
  box-shadow: none;
  color: var(--black);
}

.header-inner {
  width: min(100%, 1280px);
  height: 64px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  width: min(138px, 42vw);
  height: 56px;
}

.header-logo {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 6px 0;
  object-fit: contain;
  box-sizing: border-box;
  transition: opacity 220ms ease;
}

.header-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .header-logo-light,
.site-header.is-menu-open .header-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .header-logo-dark,
.site-header.is-menu-open .header-logo-dark {
  opacity: 1;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: inherit;
  font-family: var(--font-section-title);
  font-size: calc(var(--text-body-m-size) + 4px);
  font-weight: 700;
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
  transition: color 220ms ease;
}

.site-header.is-scrolled .global-nav,
.site-header.is-menu-open .global-nav {
  color: var(--color-subtle);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color 220ms ease;
}

.menu-toggle-icon {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.menu-toggle-icon-dark {
  opacity: 0;
}

.site-header.is-scrolled .menu-toggle-icon-light,
.site-header.is-menu-open .menu-toggle-icon-light {
  opacity: 0;
}

.site-header.is-scrolled .menu-toggle-icon-dark,
.site-header.is-menu-open .menu-toggle-icon-dark {
  opacity: 1;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.global-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease;
}

.global-nav a:hover,
.global-nav a:focus-visible,
.site-header.is-scrolled .global-nav a:hover,
.site-header.is-scrolled .global-nav a:focus-visible,
.site-header.is-menu-open .global-nav a:hover,
.site-header.is-menu-open .global-nav a:focus-visible {
  color: var(--unique-accent);
}

.lp-shell {
  width: min(100%, var(--site-width));
  margin: 0 auto;
  overflow: visible;
}

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 56.25vw;
  overflow: hidden;
  color: var(--color-white);
}

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

.band-primary {
  --bg-parallax-y: 0px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: var(--blue);
  background-image: url("./assets/BG_Blue.svg");
  background-position: 64% calc(29% + var(--bg-parallax-y));
  background-repeat: no-repeat;
  background-size: 130% 144%;
  color: var(--color-white);
  will-change: background-position;
}

.about {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--color-white);
  color: var(--black);
  text-align: center;
}

.about h2 {
  margin: 0;
  font-size: var(--text-title-xl-size);
  font-weight: var(--text-title-xl-weight);
  letter-spacing: var(--text-title-xl-tracking);
  line-height: var(--text-title-xl-leading);
  text-wrap: balance;
}

.about p {
  margin: 0;
  font-size: var(--text-body-l-size);
  font-weight: var(--text-body-l-weight);
  letter-spacing: var(--text-body-l-tracking);
  line-height: var(--text-body-l-leading);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.button {
  min-height: 56px;
  border-radius: 8px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--text-title-s-size);
  font-weight: var(--text-title-s-weight);
  letter-spacing: var(--text-title-s-tracking);
  line-height: var(--text-title-s-leading);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button img {
  width: 24px;
  height: 24px;
}

.button-light {
  width: 300px;
  background: var(--color-white);
  color: var(--blue);
}

.button-primary {
  width: 370px;
  background: var(--blue);
  color: var(--color-white);
}

.section {
  padding: 62px 24px;
  scroll-margin-top: 72px;
}

.section-news,
.lineup-section,
.schedule-section,
.goods-section,
.media-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-news > *,
.lineup-section > *,
.schedule-section > *,
.goods-section > *,
.media-section > * {
  position: relative;
  z-index: 1;
}

.section-news::before,
.section-news::after,
.lineup-section::before,
.lineup-section::after,
.schedule-section::before,
.schedule-section::after,
.goods-section::before,
.goods-section::after,
.media-section::before,
.media-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  width: var(--firework-size);
  height: var(--firework-size);
  background-image: var(--firework-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: var(--firework-opacity);
  pointer-events: none;
  transform: var(--firework-transform) scale(1);
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.section-news.is-visible::before,
.section-news.is-visible::after,
.lineup-section.is-visible::before,
.lineup-section.is-visible::after,
.schedule-section.is-visible::before,
.schedule-section.is-visible::after,
.goods-section.is-visible::before,
.goods-section.is-visible::after,
.media-section.is-visible::before,
.media-section.is-visible::after {
  animation: firework-bloom 1800ms cubic-bezier(0.18, 0.88, 0.28, 1) calc(420ms + var(--firework-delay, 0ms)) both;
}

.section-news,
.lineup-section,
.goods-section,
.media-section {
  --firework-image: url("./assets/アセット 1.svg");
  --firework-opacity: 1;
}

.schedule-section {
  --firework-image: url("./assets/アセット 2.svg");
  --firework-opacity: 1;
}

.section-news::before {
  --firework-size: clamp(142px, 16vw, 252px);
  --firework-transform: rotate(-16deg);
  --firework-delay: 0ms;
  top: 24px;
  left: max(-44px, calc(50% - 690px));
}

.section-news::after {
  --firework-size: clamp(104px, 11vw, 180px);
  --firework-transform: rotate(18deg);
  --firework-delay: 180ms;
  right: max(-26px, calc(50% - 674px));
  bottom: 28px;
}

.lineup-section::before {
  --firework-size: clamp(180px, 19vw, 330px);
  --firework-transform: rotate(-10deg);
  --firework-delay: 0ms;
  top: 44px;
  left: max(-70px, calc(50% - 740px));
}

.lineup-section::after {
  --firework-size: clamp(150px, 15vw, 260px);
  --firework-transform: rotate(22deg);
  --firework-delay: 260ms;
  right: max(-48px, calc(50% - 720px));
  bottom: 40px;
}

.schedule-section::before {
  --firework-size: clamp(120px, 13vw, 220px);
  --firework-transform: rotate(-14deg);
  --firework-delay: 80ms;
  top: 42px;
  left: max(-54px, calc(50% - 730px));
}

.schedule-section::after {
  --firework-size: clamp(128px, 15vw, 252px);
  --firework-transform: rotate(16deg);
  --firework-delay: 240ms;
  right: max(-74px, calc(50% - 720px));
  bottom: 42px;
}

.goods-section::before {
  --firework-size: clamp(144px, 16vw, 256px);
  --firework-transform: rotate(14deg);
  --firework-delay: 0ms;
  top: 26px;
  right: max(-46px, calc(50% - 704px));
}

.goods-section::after {
  --firework-size: clamp(116px, 13vw, 210px);
  --firework-transform: rotate(-20deg);
  --firework-delay: 180ms;
  left: max(-42px, calc(50% - 688px));
  bottom: 30px;
}

.media-section::before {
  --firework-size: clamp(140px, 15vw, 250px);
  --firework-transform: rotate(-14deg);
  --firework-delay: 0ms;
  top: 34px;
  left: max(-42px, calc(50% - 690px));
}

.media-section::after {
  --firework-size: clamp(112px, 12vw, 198px);
  --firework-transform: rotate(20deg);
  --firework-delay: 220ms;
  right: max(-34px, calc(50% - 690px));
  bottom: 32px;
}

.section-inner {
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(100%, var(--content-mid));
}

.section-heading {
  --heading-lantern-image: url("./assets/アセット 4.svg");
  --heading-lantern-width: 32px;
  --heading-lantern-height: 40px;
  --heading-lantern-gap: 14px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  margin: 0;
  color: var(--blue);
  font-family: var(--font-section-title);
  font-size: var(--text-title-xl-size);
  font-weight: var(--text-title-xl-weight);
  letter-spacing: var(--text-title-xl-tracking);
  line-height: var(--text-title-xl-leading);
  text-align: center;
  white-space: nowrap;
}

.section-heading h2::before,
.section-heading h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: var(--heading-lantern-width);
  height: var(--heading-lantern-height);
  background-image: var(--heading-lantern-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: translateY(-50%);
}

.section-heading h2::before {
  left: calc((var(--heading-lantern-width) + var(--heading-lantern-gap)) * -1);
}

.section-heading h2::after {
  right: calc((var(--heading-lantern-width) + var(--heading-lantern-gap)) * -1);
  transform: translateY(-50%) scaleX(-1);
}

.section-heading p {
  width: 100%;
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-body-m-size);
  font-weight: var(--text-body-m-weight);
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
}

.light-heading h2,
.light-heading p {
  color: var(--color-white);
}

.light-heading h2::before,
.light-heading h2::after {
  background-image: var(--heading-lantern-image);
}

.band-primary .section-heading,
.light-heading {
  --heading-lantern-image: url("./assets/アセット 3.svg");
}

.news-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-top: 1px;
}

.section-news {
  height: auto;
  padding-top: 62px;
  padding-bottom: 62px;
  padding-left: 231.5px;
  padding-right: 231.5px;
  background-position: center calc(50% + var(--bg-parallax-y));
  background-size: auto 240%;
  background-size: auto max(240%, 84vw);
}

.section-news .section-inner.narrow {
  width: 896px;
  max-width: 100%;
  margin: 0 auto;
}

.section-news .section-heading {
  margin-bottom: 52px;
}

.section-news .section-heading h2,
.section-news .section-heading p {
  color: var(--color-white);
}

.section-news .section-heading h2::before,
.section-news .section-heading h2::after {
  background-image: var(--heading-lantern-image);
}

.news-item {
  width: 100%;
  height: auto;
  padding: 0 8px;
  border-radius: 4px;
}

.news-summary {
  min-height: 84.797px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-item time {
  height: 44.797px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  flex: 0 0 auto;
  color: var(--color-white);
  white-space: nowrap;
}

.news-item time::after {
  content: "";
  display: none;
}

.news-item time span {
  font-size: var(--text-caption-xs-size);
  font-weight: 700;
  letter-spacing: var(--text-caption-xs-tracking);
  line-height: var(--text-caption-xs-leading);
}

.news-item time strong {
  font-size: var(--text-title-l-size);
  font-weight: var(--text-title-l-weight);
  letter-spacing: var(--text-title-l-tracking);
  line-height: var(--text-title-l-leading);
}

.news-divider {
  display: block;
  width: 1px;
  height: 100%;
  flex: 0 0 1px;
  background: color-mix(in srgb, var(--color-white) 40%, transparent);
}

.news-title {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-body-m-size);
  font-weight: var(--text-body-m-weight);
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
}

.news-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  background: transparent;
  cursor: pointer;
}

.section-news .news-toggle img {
  filter: brightness(0) invert(1);
}

.news-toggle img {
  width: 16px;
  height: 16px;
  transform-origin: center;
  transition: transform 220ms ease;
}

.news-item.is-open .news-toggle img {
  transform: rotate(180deg);
}

.news-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 260ms ease, opacity 180ms ease;
}

.news-item.is-open .news-content {
  max-height: 240px;
  opacity: 1;
}

.news-content p {
  margin: 0;
  padding: 0 56px 20px 137px;
  color: color-mix(in srgb, var(--color-white) 80%, transparent);
  font-size: var(--text-body-m-size);
  font-weight: var(--text-body-m-weight);
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
}

.more-button {
  margin-top: 16px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-size: var(--text-caption-xs-size);
  font-weight: var(--text-caption-xs-weight);
  letter-spacing: var(--text-caption-xs-tracking);
  line-height: var(--text-caption-xs-leading);
  cursor: pointer;
}

.more-button[hidden] {
  display: none !important;
}

.more-button img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.event-section {
  min-height: 559px;
}

.event-section .section-heading {
  margin-bottom: 32px;
}

.event-layout {
  width: min(100%, var(--content-mid));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 377px;
  gap: 28px;
  align-items: start;
}

.event-detail h3 {
  margin: 0 0 16px;
  font-size: var(--text-title-m-size);
  font-weight: var(--text-title-m-weight);
  letter-spacing: var(--text-title-m-tracking);
  line-height: var(--text-title-m-leading);
}

.event-detail,
.event-block {
  min-width: 0;
}

.event-block + .event-block {
  margin-top: 16px;
}

.event-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--font-section-title);
  font-size: var(--text-title-xl-size);
  font-weight: var(--text-title-xl-weight);
  letter-spacing: var(--text-title-xl-tracking);
  line-height: var(--text-title-xl-leading);
}

.event-date-text {
  margin: 0;
  font-size: var(--text-title-s-size);
  font-weight: var(--text-title-s-weight);
  letter-spacing: var(--text-title-s-tracking);
  line-height: var(--text-title-s-leading);
  overflow-wrap: anywhere;
}

.time-pairs {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.time-pairs div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-pairs dt {
  width: 81px;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--color-primary-soft);
  color: var(--blue);
  font-size: var(--text-title-s-size);
  font-weight: var(--text-title-s-weight);
  letter-spacing: var(--text-title-s-tracking);
  text-align: center;
}

.time-pairs dd {
  margin: 0;
  font-size: var(--text-title-s-size);
  font-weight: var(--text-title-s-weight);
  letter-spacing: var(--text-title-s-tracking);
}

.map-placeholder {
  width: 377px;
  height: 290px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--gray);
  color: var(--black);
  font-size: var(--text-title-m-size);
  font-weight: var(--text-title-m-weight);
  letter-spacing: var(--text-title-m-tracking);
}

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

.lineup-section {
  min-height: 731.656px;
  padding: 62px 142px;
  background-position: center calc(50% + var(--bg-parallax-y));
  background-size: auto 240%;
}

.card-grid {
  margin: 0 auto;
  display: grid;
  justify-content: center;
  gap: 32px 24px;
}

.lineup-grid {
  width: calc((157.328px * 4) + (24px * 3));
  grid-template-columns: repeat(4, 157.328px);
  justify-content: center;
}

.lineup-section .section-heading {
  margin-bottom: 40px;
}

.lineup-section .card-status,
.lineup-section .card-label {
  display: none;
}

.artist-card {
  width: 157.328px;
  color: var(--color-white);
}

.lineup-section .artist-card-visual {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.artist-card img {
  display: block;
  width: 157.328px;
  height: 157.328px;
  object-fit: cover;
}

.lineup-section .artist-card-visual img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.artist-card h3 {
  margin: 4px 0 0;
  font-size: var(--text-body-m-size);
  font-weight: var(--text-body-m-weight);
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
}

.card-status {
  margin: 0 0 4px;
  color: var(--blue-pale);
  font-size: var(--text-caption-xs-size);
  font-weight: var(--text-caption-xs-weight);
  letter-spacing: var(--text-caption-xs-tracking);
  line-height: var(--text-caption-xs-leading);
  white-space: nowrap;
}

.card-label {
  margin: 4px 0 0;
  color: var(--blue-muted);
  font-size: var(--text-caption-xs-size);
  font-weight: var(--text-caption-xs-weight);
  letter-spacing: var(--text-caption-xs-tracking);
  line-height: var(--text-caption-xs-leading);
}

.lineup-note {
  width: 1075px;
  margin: 40px auto 0;
  color: var(--blue-muted);
  font-size: var(--text-caption-xs-size);
  font-weight: var(--text-caption-xs-weight);
  letter-spacing: var(--text-caption-xs-tracking);
  line-height: var(--text-caption-xs-leading);
  text-align: center;
}

.ticket-section {
  min-height: 0;
}

.ticket-section .section-heading {
  margin-bottom: 24px;
}

.ticket-layout {
  width: min(100%, 1288px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 641px) minmax(0, 641px);
  align-items: start;
  justify-content: center;
  gap: 32px;
}

.ticket-layout.no-seat-map {
  width: min(100%, 1040px);
  grid-template-columns: minmax(0, 1040px);
}

.seat-map {
  width: 100%;
  margin: 0;
}

.seat-image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 641 / 507;
  overflow: hidden;
  border-radius: 12px;
}

.seat-image img {
  position: absolute;
  display: block;
  left: -0.94%;
  top: -11.04%;
  width: 101.87%;
  height: 118.65%;
  max-width: none;
  object-fit: fill;
}

.seat-legend {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: var(--black);
  font-size: var(--text-title-s-size);
  font-weight: var(--text-title-s-weight);
  letter-spacing: var(--text-title-s-tracking);
}

.seat-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.ss {
  background: var(--color-ticket-ss);
}

.legend-dot.s {
  background: var(--color-ticket-s);
}

.legend-dot.a {
  background: var(--color-ticket-a);
}

.legend-dot.b {
  background: var(--color-ticket-b);
}

.ticket-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.ticket-card {
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--color-white);
}

.ticket-ss {
  grid-column: 1 / -1;
}

.ticket-s,
.ticket-a {
  min-height: auto;
}

.ticket-ss-body {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.ticket-benefit {
  margin: 0;
}

.ticket-benefit img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(16, 24, 40, 0.1));
}

.ticket-card h3 {
  margin: 0;
  padding: 10px;
  color: var(--color-white);
  font-size: var(--text-title-m-size);
  font-weight: var(--text-title-m-weight);
  letter-spacing: var(--text-title-m-tracking);
  line-height: var(--text-title-m-leading);
  text-align: center;
}

.ticket-card > div {
  padding: 20px;
}

.ticket-price {
  margin: 0 0 8px;
  color: var(--black);
  font-size: var(--text-title-l-size);
  font-weight: var(--text-title-l-weight);
  letter-spacing: var(--text-title-l-tracking);
}

.ticket-card p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--black);
  font-size: var(--text-title-s-size);
  font-weight: var(--text-title-s-weight);
  letter-spacing: var(--text-title-s-tracking);
}

.ticket-card span {
  padding: 4px 8px;
  border-radius: 8px;
}

.ticket-card small {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: var(--text-body-m-size);
  font-weight: var(--text-body-m-weight);
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
}

.ticket-ss h3 {
  background: var(--color-ticket-ss);
}

.ticket-s h3 {
  background: var(--color-ticket-s);
  color: var(--color-white);
}

.ticket-a h3,
.ticket-a-ppv h3 {
  background: var(--color-ticket-a);
}

.ticket-b h3,
.ticket-b-ppv h3 {
  background: var(--color-ticket-b);
  color: var(--color-neutral-900);
}

.ticket-ss span {
  background: var(--color-ticket-ss-soft);
  color: var(--color-ticket-ss);
}

.ticket-s span {
  background: var(--color-ticket-s-soft);
  color: var(--color-ticket-s);
}

.ticket-a span,
.ticket-a-ppv span {
  background: var(--color-ticket-a-soft);
  color: var(--color-ticket-a);
}

.ticket-b span,
.ticket-b-ppv span {
  background: var(--color-ticket-b-soft);
  color: var(--color-ticket-b);
}

.schedule-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--gray);
}

.schedule-list {
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.schedule-card {
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--color-white);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.schedule-card[data-status="open"] {
  border-color: transparent;
}

.schedule-card[data-status="ended"] {
  background: color-mix(in srgb, var(--color-neutral-50) 76%, var(--color-white));
}

.schedule-copy {
  min-width: 0;
}

.schedule-title-row {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.schedule-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: var(--text-body-m-size);
  font-weight: 700;
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
}

.schedule-card h3 {
  margin: 0;
  color: var(--black);
  font-size: var(--text-title-m-size);
  font-weight: var(--text-title-m-weight);
  letter-spacing: var(--text-title-m-tracking);
  line-height: var(--text-title-m-leading);
}

.schedule-status {
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-soft);
  color: var(--blue);
  font-size: var(--text-body-s-size);
  font-weight: 700;
  letter-spacing: var(--text-body-s-tracking);
  line-height: var(--text-body-s-leading);
}

.schedule-card[data-status="open"] .schedule-status {
  background: var(--blue);
  color: var(--color-white);
}

.schedule-card[data-status="ended"] .schedule-status {
  background: color-mix(in srgb, var(--black) 8%, var(--color-white));
  color: var(--color-subtle);
}

.schedule-card[data-status="ended"] .schedule-button {
  display: none;
}

.schedule-period {
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  color: var(--blue);
  font-size: var(--text-title-s-size);
  font-weight: var(--text-title-s-weight);
  letter-spacing: var(--text-title-s-tracking);
  line-height: var(--text-title-s-leading);
}

.schedule-card[data-status="ended"] .schedule-period {
  color: var(--color-subtle);
}

.schedule-text {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-body-m-size);
  font-weight: var(--text-body-m-weight);
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
}

.schedule-button {
  width: var(--schedule-button-width);
  max-width: 100%;
  flex: 0 0 auto;
}

.schedule-card[data-status="upcoming"] .schedule-button {
  pointer-events: none;
  background: color-mix(in srgb, var(--black) 24%, var(--color-white));
  color: var(--color-white);
  box-shadow: none;
  cursor: default;
}

.schedule-card[data-status="upcoming"] .schedule-button:hover {
  transform: none;
}

.schedule-card[data-status="upcoming"] .schedule-button img {
  opacity: 0.5;
}

.goods-section {
  min-height: 524.328px;
  padding: 62px 140px;
  background-position: center calc(50% + var(--bg-parallax-y));
  background-size: auto 240%;
  background-size: auto max(240%, 84vw);
}

.goods-grid {
  width: 701.312px;
  grid-template-columns: repeat(auto-fit, 157.328px);
}

.goods-card .goods-price {
  margin: 4px 0 0;
  color: var(--color-white);
  font-size: var(--text-title-s-size);
  font-weight: var(--text-body-l-weight);
  letter-spacing: var(--text-title-s-tracking);
  line-height: var(--text-title-s-leading);
}

.goods-link {
  width: 370px;
  margin: 24px auto 0;
  display: flex;
}

.media-section {
  min-height: 360px;
  padding-left: 140px;
  padding-right: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: center calc(50% + var(--bg-parallax-y));
  background-size: auto 240%;
  background-size: auto max(240%, 84vw);
}

.media-content {
  width: min(100%, var(--content-wide));
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.media-content h3 {
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-title-m-size);
  font-weight: var(--text-title-m-weight);
  letter-spacing: var(--text-title-m-tracking);
  line-height: var(--text-title-m-leading);
}

.media-content p {
  width: min(100%, 720px);
  margin: 0;
  color: color-mix(in srgb, var(--color-white) 88%, transparent);
  font-size: var(--text-body-m-size);
  font-weight: var(--text-body-m-weight);
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
}

.media-button {
  width: 300px;
  margin-top: 8px;
}

.sns-section {
  height: 332px;
  padding-bottom: 62px;
}

.sns-grid {
  display: grid;
  grid-template-columns: repeat(4, 157px);
  justify-content: center;
  gap: 20px;
}

.sns-card {
  min-height: 111px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease;
}

.sns-card:hover {
  transform: translateY(-1px);
}

.sns-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.sns-card .sns-icon-zoom {
  transform: scale(1.35);
  transform-origin: center;
}

.sns-card strong {
  color: var(--black);
  font-size: var(--text-body-m-size);
  font-weight: var(--text-body-m-weight);
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
  text-align: center;
  white-space: nowrap;
}

.qa-section {
  background: var(--color-white);
}

.qa-list {
  width: min(100%, var(--content-mid));
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.qa-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--gray);
}

.qa-item summary {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--black);
  font-size: var(--text-body-m-size);
  font-weight: 700;
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
  list-style: none;
}

.qa-item summary::-webkit-details-marker {
  display: none;
}

.qa-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.qa-item[open] summary::after {
  transform: rotate(-135deg);
}

.qa-label {
  color: var(--blue);
  font-weight: 700;
}

.qa-item p {
  margin: 0;
  padding: 0 24px 20px 56px;
  color: var(--text-muted);
  font-size: var(--text-body-m-size);
  font-weight: var(--text-body-m-weight);
  letter-spacing: var(--text-body-m-tracking);
  line-height: var(--text-body-m-leading);
}

.qa-item a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  overflow-wrap: anywhere;
}

.contact-section {
  min-height: 320px;
  height: auto;
  padding-bottom: 62px;
}

.about,
.event-section,
.ticket-section,
.sns-section,
.qa-section,
.contact-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--color-white);
}

.about > *,
.event-section > *,
.ticket-section > *,
.sns-section > *,
.qa-section > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}

.about::before,
.event-section::before,
.ticket-section::before,
.sns-section::before,
.qa-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--paper-texture-image);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 0.2;
}

.contact-buttons {
  gap: 24px;
}

.contact-item {
  width: min(100%, 370px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-item .button {
  width: 100%;
}

.contact-caption {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-body-s-size);
  font-weight: var(--text-body-s-weight);
  letter-spacing: var(--text-body-s-tracking);
  line-height: var(--text-body-s-leading);
  text-align: center;
}

.contact-caption a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #262626;
  color: #fff;
  height: 294px;
  padding: 62px 0;
  box-sizing: border-box;
}

.footer-apps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.abema-logo {
  width: 235px;
  height: 51px;
}

.app-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.appstore-badge {
  display: block;
  width: 110px;
  height: 40px;
}

.google-badge {
  width: 135px;
  height: 40px;
  display: block;
}

.appstore-badge img,
.google-badge img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-bottom {
  margin-top: 36px;
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  font-size: var(--text-body-s-size);
  font-weight: var(--text-body-s-weight);
  letter-spacing: var(--text-body-s-tracking);
  line-height: var(--text-body-s-leading);
}

.footer-bottom nav {
  display: flex;
  gap: 36px;
  white-space: nowrap;
}

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

.footer-bottom p {
  margin: 0;
  white-space: nowrap;
}

.scroll-belt {
  width: 100vw;
  height: 44px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border: 0;
  display: flex;
  align-items: center;
  background: var(--unique-accent);
  color: var(--color-white);
}

.scroll-belt-light {
  background: var(--unique-accent);
  color: var(--color-white);
}

.scroll-belt-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  animation: scroll-belt 28s linear infinite;
  will-change: transform;
}

.scroll-belt-reverse .scroll-belt-track {
  animation-direction: reverse;
}

.scroll-belt-track span {
  flex: 0 0 auto;
  padding: 0 32px;
  font-family: var(--font-section-title);
  font-size: var(--text-title-m-size);
  font-weight: var(--text-title-m-weight);
  letter-spacing: var(--text-title-m-tracking);
  line-height: 1;
  white-space: nowrap;
}

@keyframes scroll-belt {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes splash-decor-fade-in {
  from {
    opacity: 0;
    filter: drop-shadow(0 10px 0 rgba(0, 0, 0, 0.05)) saturate(1.18);
  }

  to {
    opacity: 1;
    filter: drop-shadow(0 10px 0 rgba(0, 0, 0, 0.05));
  }
}

@keyframes splash-decor-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) var(--splash-decor-transform);
  }

  50% {
    transform: translate3d(0, var(--splash-float-distance), 0) var(--splash-decor-transform);
  }
}

@keyframes splash-logo-pop {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes firework-bloom {
  0% {
    opacity: 0;
    filter: saturate(1.25) brightness(1.18);
    transform: var(--firework-transform) scale(0.12);
  }

  68% {
    opacity: var(--firework-opacity);
    filter: saturate(1.22) brightness(1.12);
    transform: var(--firework-transform) scale(1);
  }

  100% {
    opacity: var(--firework-opacity);
    filter: none;
    transform: var(--firework-transform) scale(1);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .splash-screen {
    transition: none;
  }

  .splash-logo,
  .splash-decor {
    animation: none;
    opacity: 1;
    transform: var(--splash-decor-transform, none);
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-belt-track {
    animation: none;
  }

  .section-news::before,
  .section-news::after,
  .lineup-section::before,
  .lineup-section::after,
  .schedule-section::before,
  .schedule-section::after,
  .goods-section::before,
  .goods-section::after,
  .media-section::before,
  .media-section::after {
    animation: none;
    opacity: var(--firework-opacity);
    transform: var(--firework-transform) scale(1);
  }
}

@media (max-width: 1200px) {
  .section-news,
  .lineup-section,
  .goods-section,
  .media-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section-news,
  .lineup-section,
  .goods-section,
  .media-section,
  .sns-section,
  .contact-section {
    height: auto;
  }

  .lineup-note,
  .goods-grid {
    width: min(100%, 1075px);
  }

  .lineup-grid {
    width: min(100%, calc((157.328px * 4) + (24px * 3)));
  }

  .ticket-layout {
    grid-template-columns: 1fr;
    width: min(100%, 920px);
  }

  .seat-image {
    height: auto;
    aspect-ratio: 641 / 507;
  }

  .ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 920px);
    margin: 0 auto;
    justify-content: center;
  }

  .ticket-card {
    width: 100%;
  }

  .ticket-card small {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
  }

  .header-inner {
    height: auto;
    min-height: 64px;
    padding: 14px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .global-nav {
    width: 100%;
    gap: 18px;
    font-size: var(--text-body-m-size);
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .about {
    height: auto;
    min-height: 0;
  }

  .about h2,
  .section-heading h2 {
    font-size: var(--text-title-xl-size);
  }

  .about p {
    font-size: var(--text-body-l-size);
    white-space: normal;
  }

  .section,
  .section-news,
  .lineup-section,
  .goods-section,
  .media-section {
    padding: 56px 32px;
  }

  .section-news::after,
  .lineup-section::after,
  .schedule-section::after,
  .goods-section::after,
  .media-section::after {
    display: none;
  }

  .section-news::before,
  .lineup-section::before,
  .goods-section::before,
  .media-section::before {
    --firework-size: 172px;
    top: 20px;
    left: auto;
    right: -58px;
  }

  .schedule-section::before {
    --firework-size: 184px;
    top: 28px;
    left: -72px;
    right: auto;
  }

.section-news {
  height: auto;
}

  .section-news .section-heading {
    margin-bottom: 36px;
  }

  .news-item {
    width: 100%;
    min-height: 88px;
  }

  .event-section {
    height: auto;
  }

  .event-layout {
    width: min(100%, var(--content-mid));
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .event-detail,
  .map-placeholder {
    width: min(100%, 520px);
  }

  .map-placeholder {
    height: 260px;
  }

  .lineup-grid {
    grid-template-columns: repeat(auto-fit, 157.328px);
  }

  .ticket-section {
    min-height: 0;
  }

  .schedule-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .schedule-button {
    width: min(100%, 320px);
  }

  .goods-grid {
    grid-template-columns: repeat(auto-fit, 157.328px);
    max-width: 520px;
  }

  .sns-grid {
    grid-template-columns: repeat(2, 157px);
  }

  .contact-buttons {
    width: min(100%, 480px);
  }

  .contact-buttons .button {
    width: 100%;
  }

  .site-footer {
    height: auto;
    padding: 56px 0;
  }

  .footer-bottom {
    padding: 0 32px;
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 28px;
  }
}

@media (max-width: 600px) {
  .site-header {
    position: fixed;
    z-index: 30;
    height: 64px;
  }

  .header-inner {
    height: 64px;
    min-height: 64px;
    padding: 0 20px;
    align-items: center;
    flex-direction: row;
  }

  .brand {
    font-size: var(--text-caption-xs-size);
    letter-spacing: var(--text-caption-xs-tracking);
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    gap: 0;
  }

  .menu-toggle-icon {
    display: block;
  }

  .menu-toggle span {
    display: none;
  }

  .site-header.is-menu-open .menu-toggle {
    gap: 5px;
  }

  .site-header.is-menu-open .menu-toggle-icon {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span {
    display: block;
  }

  .site-header.is-menu-open .menu-toggle span:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-of-type(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-menu-bg);
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .site-header.is-menu-open .global-nav {
    max-height: 320px;
    padding: 8px 20px 12px;
  }

  .global-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .splash-logo {
    width: min(260px, 62vw);
  }

  .splash-decor-ice {
    --splash-decor-width: 52px;
    left: 34px;
    top: 92px;
  }

  .splash-decor-ice-right {
    display: none;
  }

  .splash-decor-fan {
    --splash-decor-width: 56px;
    right: 28px;
    top: 112px;
  }

  .splash-decor-juice {
    --splash-decor-width: 54px;
    left: 42px;
    bottom: 52px;
  }

  .splash-decor-watermelon {
    --splash-decor-width: 54px;
    right: 46px;
    bottom: 56px;
  }

  .splash-decor-water-balloon {
    --splash-decor-width: 38px;
    --splash-decor-transform: rotate(-8deg);
    left: auto;
    right: 184px;
    top: 22px;
  }

  .about,
  .section,
  .section-news,
  .lineup-section,
  .goods-section,
  .media-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .band-primary {
    background-position: center calc(50% + var(--bg-parallax-y));
    background-size: auto 240%;
  }

  .media-section {
    min-height: 0;
  }

  .about {
    min-height: 0;
  }

  .scroll-belt {
    height: 36px;
  }

  .scroll-belt-track span {
    padding: 0 20px;
    font-size: var(--text-title-s-size);
  }

  .about h2,
  .section-heading h2 {
    font-size: var(--text-title-xl-size);
  }

  .section-heading {
    --heading-lantern-width: 24px;
    --heading-lantern-height: 30px;
    --heading-lantern-gap: 8px;
  }

  .section-heading h2::before {
    left: calc((var(--heading-lantern-width) + var(--heading-lantern-gap)) * -1);
  }

  .section-heading h2::after {
    right: calc((var(--heading-lantern-width) + var(--heading-lantern-gap)) * -1);
  }

  .section-heading h2::before,
  .section-heading h2::after {
    width: var(--heading-lantern-width);
    height: var(--heading-lantern-height);
  }

  .about p {
    font-size: var(--text-body-l-size);
  }

  .button,
  .button-light,
  .button-primary,
  .goods-link {
    width: 100%;
    max-width: 370px;
    font-size: var(--text-title-s-size);
  }

  .news-item {
    height: auto;
    min-height: 84.797px;
    padding: 0;
  }

  .news-summary {
    gap: 12px;
  }

  .news-divider {
    height: 44.797px;
  }

  .news-item time strong {
    font-size: var(--text-title-l-size);
    line-height: var(--text-title-l-leading);
  }

  .news-title {
    font-size: var(--text-body-s-size);
  }

  .news-content p {
    padding: 0 0 18px;
    font-size: var(--text-body-s-size);
  }

  .event-detail h3 {
    font-size: var(--text-title-m-size);
  }

  .event-label {
    font-size: var(--text-title-xl-size);
  }

  .event-date-text,
  .time-pairs dd {
    font-size: var(--text-title-s-size);
  }

  .map-placeholder {
    height: 220px;
  }

  .lineup-grid,
  .goods-grid {
    width: 100%;
    max-width: 326px;
    grid-template-columns: repeat(2, minmax(0, 157px));
    gap: 28px 12px;
  }

  .artist-card,
  .artist-card img {
    width: 100%;
  }

  .artist-card img {
    height: auto;
    aspect-ratio: 1;
  }

  .lineup-section .artist-card-visual img {
    height: 100%;
  }

  .artist-card h3 {
    font-size: var(--text-body-s-size);
    line-height: var(--text-body-s-leading);
  }

  .lineup-note {
    width: 100%;
    white-space: normal;
  }

  .seat-legend {
    gap: 10px;
    font-size: var(--text-body-s-size);
  }

  .legend-dot {
    width: 14px;
    height: 14px;
  }

  .ticket-card h3 {
    font-size: var(--text-title-s-size);
  }

  .ticket-price {
    font-size: var(--text-title-l-size);
  }

  .ticket-card p {
    font-size: var(--text-title-s-size);
  }

  .ticket-ss-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ticket-benefit img {
    max-width: 100%;
  }

  .ticket-grid {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
  }

  .ticket-card {
    width: min(100%, 420px);
  }

  .schedule-list {
    gap: 12px;
  }

  .schedule-card {
    padding: 20px 16px;
    gap: 16px;
  }

  .schedule-card h3 {
    font-size: var(--text-title-s-size);
  }

  .schedule-period,
  .schedule-text {
    font-size: var(--text-body-s-size);
    line-height: var(--text-body-s-leading);
  }

  .schedule-button {
    width: 100%;
    max-width: 370px;
  }

  .media-button {
    width: 100%;
    max-width: 300px;
  }

  .qa-item summary {
    padding: 18px 16px;
  }

  .qa-item p {
    padding: 0 16px 18px 44px;
    font-size: var(--text-body-s-size);
  }

  .sns-grid {
    grid-template-columns: repeat(2, minmax(0, 157px));
    gap: 16px;
  }

  .sns-card {
    width: 100%;
    min-height: 108px;
    padding: 16px 10px;
  }

  .sns-card strong {
    font-size: var(--text-body-s-size);
    white-space: normal;
  }

  .site-footer {
    height: auto;
    min-height: 294px;
  }

  .abema-logo {
    width: 180px;
    height: 39px;
  }

  .footer-bottom {
    padding: 0 20px;
    gap: 24px;
  }

  .footer-bottom nav {
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom p {
    white-space: normal;
  }
}
