:root {
  --bg: #160806;
  --bg-deep: #0d0504;
  --panel: rgba(42, 14, 10, 0.58);
  --red: #e45542;
  --gold: #e6c487;
  --cream: #f0dfbd;
  --muted: #bfa889;
  --line: rgba(255, 255, 255, 0.42);
  --line-soft: rgba(255, 255, 255, 0.16);
  --page-width: 1500px;
  --gutter: clamp(22px, 4vw, 64px);
  --font-body: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --font-display: "Cinzel Decorative", "Noto Serif JP", Georgia, serif;
  --font-numeral: "Gravitas One", Georgia, serif;
  --font-condensed: "Bebas Neue", "Arial Narrow", "Noto Sans JP", sans-serif;
  --font-sans: var(--font-body);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(113, 32, 21, 0.22), transparent 34%),
    radial-gradient(circle at 86% 68%, rgba(95, 28, 22, 0.18), transparent 36%),
    linear-gradient(145deg, var(--bg-deep), var(--bg) 48%, #210b08);
  color: var(--cream);
  font-family: var(--font-sans);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.17;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(13deg, transparent 0 4px, rgba(255, 255, 255, 0.022) 5px, transparent 6px),
    repeating-linear-gradient(101deg, transparent 0 7px, rgba(0, 0, 0, 0.13) 8px, transparent 9px);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: min(var(--page-width), 100%);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 24px var(--gutter);
  color: #fff;
}

.header-actions {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
}

.menu-panel {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.085em;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-sns {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sns-btn {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #fff;
  font-size: 0.78rem;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.sns-btn:hover,
.sns-btn:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-2px);
}

.sns-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@keyframes desktop-menu-enter {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes desktop-sns-enter {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@media (min-width: 761px) {
  .site-header {
    position: fixed;
  }

  .site-header::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    content: "";
    pointer-events: none;
    background: rgba(0, 0, 0, 0.32);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 240ms ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .site-header.is-scrolled::before {
    opacity: 1;
  }

  .header-actions {
    z-index: 1;
  }

  .site-nav a {
    animation: desktop-menu-enter 820ms cubic-bezier(0.22, 1, 0.36, 1) 620ms both;
  }

  .site-nav a:nth-child(2) {
    animation-delay: 760ms;
  }

  .site-nav a:nth-child(3) {
    animation-delay: 900ms;
  }

  .header-sns {
    animation: desktop-sns-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) 1080ms both;
  }
}

.tour-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(390px, 56vw, 760px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 5, 4, 0.22), rgba(13, 5, 4, 0.08) 70%, var(--bg-deep)),
    url("../images/top.webp") center / cover no-repeat;
}

.tour-hero::before,
.tour-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.tour-hero::before {
  z-index: 1;
  inset: -20%;
  opacity: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 231, 183, 0.38) 0,
    rgba(230, 196, 135, 0.14) 28%,
    transparent 62%
  );
  mix-blend-mode: screen;
  transform: scale(0.08);
  animation: hero-light-glow 2.4s ease-out 120ms both;
}

.tour-hero::after {
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 50%;
  box-shadow:
    0 0 12vmax 6vmax rgba(2, 0, 0, 0.94),
    0 0 0 120vmax #020000;
  transform: translate(-50%, -50%);
  animation: hero-light-aperture 2.5s cubic-bezier(0.3, 0.02, 0.12, 1) 120ms both;
}

@keyframes hero-light-aperture {
  0%,
  10% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  42% {
    width: 34vmax;
    height: 34vmax;
    opacity: 1;
  }

  78% {
    width: 130vmax;
    height: 130vmax;
    opacity: 1;
  }

  100% {
    width: 220vmax;
    height: 220vmax;
    opacity: 0;
  }
}

@keyframes hero-light-glow {
  0%,
  12% {
    opacity: 0;
    transform: scale(0.08);
  }

  38% {
    opacity: 0.92;
    transform: scale(0.42);
  }

  74% {
    opacity: 0.38;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.tour-middle {
  width: 100%;
  overflow: hidden;
  background: #4a160f;
}

.tour-middle__desktop {
  width: min(100%, 2668px);
  margin: 0 auto;
}

.tour-middle__row {
  display: grid;
  width: 100%;
}

.tour-middle__row--top {
  grid-template-columns: 964fr 661fr 1043fr;
}

.tour-middle__row--bottom {
  grid-template-columns: 810fr 557fr 521fr 783fr;
}

.tour-middle__item,
.tour-middle__mobile-item {
  display: block;
  width: 100%;
  height: auto;
}

.tour-middle__mobile {
  display: none;
  width: 100%;
}

.tour-middle__row--top .tour-middle__item:nth-child(2) {
  --middle-index: 1;
}

.tour-middle__row--top .tour-middle__item:nth-child(3) {
  --middle-index: 2;
}

.tour-middle__row--bottom .tour-middle__item:nth-child(1) {
  --middle-index: 3;
}

.tour-middle__row--bottom .tour-middle__item:nth-child(2) {
  --middle-index: 4;
}

.tour-middle__row--bottom .tour-middle__item:nth-child(3) {
  --middle-index: 5;
}

.tour-middle__row--bottom .tour-middle__item:nth-child(4) {
  --middle-index: 6;
}

.tour-middle-sequence-ready .tour-middle__item {
  opacity: 0;
  filter: blur(8px) brightness(0.7);
  transform: translate3d(0, 24px, 0) scale(0.97);
  transition:
    opacity 620ms ease,
    filter 760ms ease,
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--middle-index, 0) * 120ms);
  will-change: opacity, filter, transform;
}

.tour-middle-sequence-ready .tour-middle.is-sequence-visible .tour-middle__item {
  opacity: 1;
  filter: none;
  transform: none;
  will-change: auto;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .tour-middle__mobile-item.reveal {
  filter: blur(5px) brightness(0.72);
  transform: translate3d(0, 34px, 0) scale(0.985);
  transform-origin: center top;
  transition:
    opacity 720ms ease,
    filter 820ms ease,
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal-ready .tour-middle__mobile-item.reveal.is-visible {
  filter: none;
}

.presale-card:nth-child(2) {
  --reveal-delay: 80ms;
}

.presale-card:nth-child(3) {
  --reveal-delay: 160ms;
}

.schedule-section,
.ticket-section {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) var(--gutter) 0;
}

.section-heading {
  padding-bottom: clamp(20px, 2.4vw, 32px);
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.08;
  text-wrap: balance;
}

#presaleTitle {
  font-size: clamp(1.9rem, 3.7vw, 4.25rem);
}

.schedule-list__labels {
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(120px, 0.42fr) minmax(360px, 1.5fr);
  justify-items: center;
  gap: clamp(24px, 3vw, 54px);
  padding: 4px 0 18px;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.schedule-list {
  border-top: 1px solid var(--line);
}

.schedule-card {
  padding: clamp(28px, 3.4vw, 48px) 0 clamp(26px, 3.2vw, 44px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.schedule-card:last-child {
  border-bottom: 0;
}

@media (min-width: 761px) {
  .schedule-card > h4 {
    font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  }
}

.schedule-card__head {
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(120px, 0.42fr) minmax(360px, 1.5fr);
  align-items: baseline;
  justify-items: center;
  gap: clamp(24px, 3vw, 54px);
}

.schedule-card__date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 15px;
  color: #fff;
  line-height: 1;
}

.schedule-card__date strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
  font-family: var(--font-numeral);
  font-optical-sizing: auto;
  font-size: clamp(2.15rem, 3.55vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.schedule-card__year {
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 0.46em;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.schedule-card__date span {
  font-family: var(--font-condensed);
  font-size: clamp(0.88rem, 1.15vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.schedule-card__area {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 2.7vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.schedule-card__venue {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: center;
}

.venue-break {
  display: none;
}

.schedule-card__times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  gap: 16px clamp(28px, 4vw, 68px);
  margin: clamp(24px, 3vw, 40px) auto 0;
}

.time-block {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.time-block__part {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
}

.time-block dl {
  display: flex;
  flex-wrap: wrap;
  gap: 7px clamp(22px, 3vw, 48px);
  margin: 0;
}

.time-block dl div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.time-block dt {
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.time-block dd {
  margin: 0;
  color: #fff;
  font-family: var(--font-numeral);
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.schedule-card__coming {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
  margin: clamp(24px, 3vw, 40px) 0 0;
  color: #fff;
}

.schedule-card__coming span {
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.schedule-card__coming strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  letter-spacing: 0.06em;
}

.ticket-section {
  padding-bottom: 0;
}

.section-heading--ticket {
  border-bottom: 1px solid var(--line);
}

.ticket-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(30px, 4vw, 52px) 0;
  text-align: center;
}

.ticket-panel__price p {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1rem, 1.4vw, 1.32rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ticket-panel__price strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.ticket-panel__price strong span {
  margin-right: 8px;
  font-family: var(--font-body);
  font-size: 0.48em;
}

.ticket-panel__price .ticket-panel__tokyo-price {
  margin-top: 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.ticket-panel__notes {
  display: flex;
  width: fit-content;
  max-width: 100%;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.ticket-panel__notes li {
  position: relative;
  padding-left: 22px;
  color: var(--cream);
  font-size: clamp(0.94rem, 1.25vw, 1.15rem);
  line-height: 1.8;
  text-align: left;
}

.ticket-panel__notes li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.presale-section {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) var(--gutter) clamp(72px, 9vw, 120px);
}

.presale-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(20px, 2.4vw, 30px);
  padding: 14px clamp(18px, 2vw, 28px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 3, 2, 0.3);
}

.presale-notice span {
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.presale-notice p {
  margin: 0;
  color: var(--cream);
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  letter-spacing: 0.06em;
}

.presale-notice strong {
  margin: 0 4px;
  color: #fff;
  font-size: 1.4em;
}

.presale-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.presale-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: clamp(26px, 2.7vw, 42px) clamp(22px, 2.4vw, 36px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(71, 22, 16, 0.24), transparent 52%),
    rgba(15, 5, 4, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.presale-card::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.presale-card__head {
  min-height: 100px;
  text-align: center;
}

.presale-card__head p {
  margin: 0 0 13px;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.presale-card__head h2,
.presale-card__head h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.28;
}

.presale-card__period {
  padding: 22px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.presale-card__period > p {
  margin: 0 0 15px;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
}

.presale-card__range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.presale-card__range time {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.presale-card__range time > span {
  font-family: var(--font-numeral);
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 1.65vw, 1.72rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.presale-card__range small {
  margin-left: 3px;
  font-family: var(--font-condensed);
  font-size: 0.42em;
  letter-spacing: 0.08em;
}

.presale-card__range time strong {
  margin-top: 8px;
  font-family: var(--font-numeral);
  font-optical-sizing: auto;
  font-size: clamp(0.92rem, 1.15vw, 1.12rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.presale-card__arrow {
  color: #fff;
  font-size: 1rem;
}

.presale-card__details {
  display: grid;
  gap: 0;
  margin: 16px 0 22px;
}

.presale-card__details div {
  display: grid;
  grid-template-columns: 7.1em minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}

.presale-card__details dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.presale-card__details dd {
  margin: 0;
  color: #fff;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 700;
  line-height: 1.55;
}

.presale-card__footer {
  margin-top: auto;
}

.presale-card__cta {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  font-size: clamp(0.96rem, 1.15vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.presale-card__cta:hover,
.presale-card__cta:focus-visible {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.presale-card__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.event-guidelines {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
  margin-top: clamp(52px, 7vw, 92px);
}

.guideline-block {
  position: relative;
  padding: clamp(26px, 3.4vw, 48px) clamp(22px, 3.8vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(71, 22, 16, 0.22), transparent 55%),
    rgba(15, 5, 4, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.guideline-block h2 {
  margin: 0;
  padding-bottom: clamp(18px, 2vw, 26px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.5;
  text-align: center;
}

.guideline-block ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: clamp(12px, 1.5vw, 20px) 0 0;
  list-style: none;
}

.guideline-block li {
  padding: clamp(11px, 1.2vw, 16px) 0;
  border-bottom: 1px solid var(--line-soft);
  color: #fff;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  letter-spacing: 0.025em;
  line-height: 1.9;
}

.guideline-block li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.guideline-block a {
  color: #fff;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.guideline-block a:hover,
.guideline-block a:focus-visible {
  color: var(--gold);
}

.guideline-block a:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 3px;
}

.guideline-reference {
  color: #fff;
}

.guideline-block--benefit {
  border-color: rgba(230, 196, 135, 0.68);
  background:
    radial-gradient(circle at 50% 0, rgba(230, 196, 135, 0.1), transparent 42%),
    rgba(15, 5, 4, 0.54);
}

.guideline-block--benefit > p {
  margin: clamp(20px, 2vw, 28px) 0 0;
  color: #fff;
  font-size: clamp(0.84rem, 1.05vw, 1rem);
  letter-spacing: 0.025em;
  line-height: 1.9;
}

.guideline-block--benefit .guideline-benefit-price {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px clamp(14px, 2vw, 24px);
  padding: clamp(16px, 2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.guideline-benefit-price > span {
  color: var(--gold);
}

.guideline-benefit-price strong {
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.site-footer {
  position: relative;
  display: flex;
  width: min(var(--page-width), 100%);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 28px var(--gutter) 42px;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
}

.site-footer p {
  margin: 0 auto;
}

.site-footer__top {
  position: absolute;
  right: var(--gutter);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-footer__top:hover,
.site-footer__top:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-3px);
}

.site-footer__top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .schedule-list__labels,
  .schedule-card__head {
    grid-template-columns: minmax(260px, 1fr) minmax(100px, 0.4fr) minmax(260px, 1fr);
  }

  .schedule-card__times {
    max-width: none;
  }

  .time-block dl {
    flex-direction: column;
  }

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

@media (max-width: 760px) {
  html.menu-open,
  html.menu-open body {
    overflow: hidden;
  }

  .site-header {
    padding: 0;
  }

  .header-actions {
    min-height: 42px;
    flex-direction: row;
  }

  .menu-toggle {
    position: fixed;
    z-index: 12;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background: rgba(13, 5, 4, 0.32);
    color: #fff;
    cursor: pointer;
    transition:
      border-color 180ms ease,
      background-color 180ms ease,
      color 180ms ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
  }

  .menu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }

  .header-actions.is-menu-open .menu-toggle {
    border-color: var(--gold);
    background: rgba(13, 5, 4, 0.68);
  }

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

  .header-actions.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

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

  .menu-panel {
    position: fixed;
    z-index: 10;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 90px 26px max(44px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background:
      radial-gradient(circle at 82% 8%, rgba(230, 196, 135, 0.2), transparent 29%),
      radial-gradient(circle at 12% 86%, rgba(164, 53, 37, 0.24), transparent 34%),
      linear-gradient(145deg, #2b0c08, #120605 52%, #090302);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.025);
    transition:
      opacity 320ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 320ms ease;
  }

  .menu-panel::before {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    content: "";
    pointer-events: none;
  }

  .header-actions.is-menu-open .menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }

  .site-nav {
    position: relative;
    z-index: 1;
    width: 100%;
    flex-direction: column;
    gap: clamp(18px, 4vh, 34px);
    font-size: clamp(1.85rem, 9vw, 2.7rem);
    line-height: 1;
  }

  .site-nav a {
    width: min(78vw, 380px);
    padding: 12px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition:
      color 240ms ease,
      opacity 280ms ease,
      transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a:active {
    color: var(--gold);
  }

  .header-actions.is-menu-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .header-actions.is-menu-open .site-nav a:nth-child(1) {
    transition-delay: 90ms;
  }

  .header-actions.is-menu-open .site-nav a:nth-child(2) {
    transition-delay: 140ms;
  }

  .header-actions.is-menu-open .site-nav a:nth-child(3) {
    transition-delay: 190ms;
  }

  .header-sns {
    position: relative;
    z-index: 1;
    right: auto;
    gap: 14px;
    margin-top: clamp(40px, 9vh, 76px);
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 280ms ease,
      transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .header-actions.is-menu-open .header-sns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 240ms;
  }

  .sns-btn {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }

  .tour-middle {
    display: none;
  }

  .tour-hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1667 / 2152;
    background-color: #542114;
    background-image: url("../images/sp-top.webp?v=20260803");
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .schedule-list__labels {
    display: none;
  }

  .schedule-card {
    text-align: center;
  }

  .schedule-card__head {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 12px;
  }

  .schedule-card__date {
    grid-column: auto;
    justify-content: center;
  }

  .schedule-card__area {
    font-size: 0.9rem;
  }

  .schedule-card__venue {
    text-align: center;
  }

  .venue-break {
    display: none;
  }

  .schedule-card__times {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .time-block {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .time-block__part {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0.8rem;
    line-height: 1;
  }

  .time-block dl {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: center;
    gap: 8px clamp(14px, 4vw, 26px);
  }

  .schedule-card__coming {
    justify-content: center;
  }

  .time-block dl div {
    gap: 6px;
    white-space: nowrap;
  }

  .ticket-panel {
    gap: 28px;
  }

  .presale-grid {
    grid-template-columns: 1fr;
  }

  .presale-card {
    min-height: 0;
  }

  .presale-card__head {
    min-height: 88px;
  }

  .event-guidelines {
    gap: 20px;
    margin-top: 48px;
  }

  .guideline-block {
    padding: 28px 22px;
  }

  .guideline-block h2 {
    font-size: 1rem;
  }

  .guideline-block li,
  .guideline-block--benefit > p {
    font-size: 0.84rem;
    line-height: 1.85;
  }
}

@media (max-width: 470px) {
  .schedule-section,
  .ticket-section,
  .presale-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .presale-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .presale-card {
    padding: 28px 20px;
  }

  .presale-card__range {
    gap: 8px;
  }

  .presale-card__details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .guideline-block {
    padding: 24px 18px;
  }

  .guideline-block h2 {
    font-size: 0.94rem;
  }

  .guideline-block--benefit .guideline-benefit-price {
    align-items: center;
    flex-direction: column;
  }

  .schedule-card__date {
    gap: 10px;
  }

  .schedule-card__date strong {
    font-size: 2rem;
  }

  .schedule-card__date span {
    font-size: 0.76rem;
  }

  .schedule-card__area {
    font-size: 0.8rem;
  }

  .schedule-card__venue {
    font-size: 1.08rem;
  }

  .time-block {
    gap: 10px;
  }

  .time-block__part {
    width: 38px;
    height: 38px;
    font-size: 0.74rem;
  }

  .time-block dl {
    justify-content: center;
    gap: 8px 12px;
  }

  .time-block dt {
    font-size: 0.58rem;
  }

  .time-block dd {
    font-size: 1.12rem;
  }

  .schedule-card__coming {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer {
    padding-right: 68px;
    padding-left: 68px;
  }

  .site-footer__top {
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tour-hero::before,
  .tour-hero::after {
    opacity: 0;
    animation: none;
  }

  .site-nav a,
  .header-sns {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
