:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #0d0d0d;
  --surface-2: #171717;
  --paper: #f2f0ea;
  --text: #f7f2eb;
  --muted: #b9b3aa;
  --line: rgba(247, 242, 235, 0.18);
  --red: #d81920;
  --yellow: #f0c400;
  --green: #84c817;
  --ink: #050505;
  --max: 1160px;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  --font-serif: "Noto Serif JP", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 8% 0%, rgba(216, 25, 32, 0.2), transparent 28rem),
    radial-gradient(circle at 100% 22%, rgba(240, 196, 0, 0.13), transparent 26rem),
    #050505;
  background-size: 6px 6px, 8px 8px, auto, auto, auto;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  line-height: 1.75;
  text-rendering: geometricprecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.04) 36% 37%, transparent 37%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.52;
  content: "";
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.42), transparent);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 0;
  color: var(--muted);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.58);
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.mobile-ticket-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 22;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(5, 5, 5, 0.35);
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: -3;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: grayscale(1) contrast(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72) 52%, rgba(5, 5, 5, 0.34)),
    linear-gradient(0deg, var(--bg), transparent 35%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  width: min(var(--max), calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(86px, 10vh, 104px) 0 28px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(82px, 14vw, 178px);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.24);
}

.lead {
  margin: 14px 0 0;
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.hero-meta span,
.guide-points li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 800;
}

.hero-ticket-alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 12px;
  margin-top: 12px;
  max-width: 600px;
}

.hero-beginner-guide,
.hero-soldout-link,
.benefits-portal,
.goods-portal,
.official-link,
.profile-card,
.notice-panel,
.guide-steps article,
.goods-grid article {
  border: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-beginner-guide,
.hero-soldout-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.beginner-mark-label {
  display: inline-grid;
  width: 46px;
  min-width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: var(--yellow);
  overflow: hidden;
}

.beginner-mark-label img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(81%) sepia(94%) saturate(1062%) hue-rotate(350deg) brightness(103%) contrast(101%);
}

.hero-beginner-guide span,
.hero-soldout-link span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.ticket-catch {
  margin: 2px 0;
  font-weight: 900;
}

.hero-soldout-link {
  display: grid;
  gap: 0;
  background: var(--paper);
  color: var(--ink);
}

.hero-soldout-link strong {
  font-size: 16px;
  line-height: 1.15;
  white-space: nowrap;
}

.countdown {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
  font-size: 25px;
  font-weight: 900;
}

.countdown-label {
  color: var(--muted);
  font-size: 12px;
}

.hero-video-card {
  width: min(300px, 100%);
  margin-top: 12px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.poster-card {
  align-self: end;
  padding: 10px;
  border: 1px solid rgba(247, 242, 235, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(1.2deg);
}

.poster-card img {
  aspect-ratio: 1838 / 2578;
  object-fit: cover;
}

.ticker {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: var(--red);
  color: var(--text);
  font-weight: 900;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: var(--ink);
  font-size: 12px;
}

.ticker span img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.ticker p {
  margin: 0;
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) 0;
}

.compact {
  padding-top: 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading h2,
.story-title,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.4;
}

.page-hero h1 {
  font-size: 36px;
}

.section-note {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.interview-heading h2 span,
.interview-heading h2 em {
  display: block;
}

.interview-heading h2 em {
  color: var(--yellow);
  font-family: var(--font-sans);
  font-size: 24px;
  font-style: normal;
  letter-spacing: 0;
}

.interview-ticket-strip {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 1px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.interview-ticket-strip > * {
  padding: 16px;
  background: rgba(13, 13, 13, 0.92);
}

.interview-ticket-strip span,
.interview-ticket-strip small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.interview-ticket-strip strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.interview-ticket-strip a {
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  gap: 18px;
}

.photo-feature {
  position: relative;
  aspect-ratio: 4000 / 2668;
  min-height: 0;
  overflow: hidden;
}

.photo-feature img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.photo-feature div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.9) 20%, rgba(5, 5, 5, 0.96));
}

.photo-feature span,
.setlist-preview span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.photo-feature strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.photo-feature p {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--muted);
}

.setlist-preview {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.setlist-preview strong {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.5;
}

.text-link,
.source-link {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.setlist-preview .text-link {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.events-section {
  padding-top: 72px;
}

.event-list {
  display: grid;
  gap: 14px;
}

.schedule-list .event-item {
  grid-template-columns: 180px 110px minmax(0, 1fr) auto;
}

.schedule-list .event-item time strong {
  font-size: 40px;
  overflow-wrap: anywhere;
}

.schedule-list .event-item time span {
  color: var(--muted);
  font-size: 14px;
}

.event-item {
  display: grid;
  grid-template-columns: 150px 180px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.58);
}

.event-item time {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.event-item time strong {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.9;
}

.event-item time span {
  font-size: 18px;
}

.event-status {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  padding: 8px 18px;
  background: rgba(247, 242, 235, 0.12);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.event-copy h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.event-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.event-item.is-placeholder {
  opacity: 0.58;
}

.event-item.is-final {
  border-color: var(--red);
  background:
    linear-gradient(90deg, rgba(230, 18, 28, 0.24), rgba(13, 13, 13, 0.72) 48%),
    rgba(13, 13, 13, 0.72);
}

.event-item.is-final .event-status,
.event-ticket-link {
  background: var(--red);
  color: var(--text);
}

.event-item.venue-change {
  border-color: var(--yellow);
  background: linear-gradient(90deg, rgba(240, 196, 0, 0.16), rgba(13, 13, 13, 0.72));
}

.event-item.venue-change .event-status {
  background: var(--yellow);
  color: var(--ink);
}

.event-ticket-link {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 900;
}

.schedule-caution {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--yellow);
  background: rgba(240, 196, 0, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.ticket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
}

.ticket-panel {
  border: 1px solid var(--line);
  background: var(--surface);
}

.ticket-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.ticket-tab {
  min-height: 78px;
  padding: 12px 8px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.ticket-tab:last-child {
  border-right: 0;
}

.ticket-tab span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
}

.ticket-tab.is-active {
  background: var(--paper);
  color: var(--ink);
}

.ticket-tab .ticket-sale-ended,
.ticket-detail .ticket-sale-ended {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.6;
}

.ticket-detail {
  padding: clamp(24px, 5vw, 48px);
}

.ticket-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 8px;
  background: var(--green);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.ticket-detail h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
}

.ticket-detail p {
  max-width: 560px;
  color: var(--muted);
}

.ticket-detail .ticket-label {
  color: var(--ink);
}

.ticket-detail .ticket-catch {
  color: var(--text);
  font-size: 18px;
}

.ticket-status {
  display: block;
  color: var(--yellow);
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
}

.ticket-detail strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.ticket-detail strong span {
  color: var(--muted);
  font-size: 13px;
}

.ticket-buy-button {
  width: min(280px, 100%);
  margin-top: 20px;
}

.ticket-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.ticket-side img,
.floor-image {
  border: 1px solid var(--line);
  background: var(--paper);
}

.ticket-side img {
  width: 100%;
  aspect-ratio: 1838 / 2577;
  object-fit: contain;
}

.ticket-side dl {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.ticket-side dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 14px;
  background: var(--surface);
}

.ticket-buy-side {
  width: 100%;
}

.ticket-extra-note {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(240, 196, 0, 0.08);
  color: var(--muted);
  font-size: 13px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 900;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.95fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 9vw, 108px) max(18px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(132, 200, 23, 0.16), transparent 48%),
    var(--surface-2);
}

.story-title span {
  display: block;
}

.story-copy p:last-child {
  color: var(--muted);
  font-size: 16px;
}

.benefits-portal,
.goods-portal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 42px);
}

.benefits-portal h3,
.goods-portal h3 {
  margin: 8px 0 6px;
  font-size: 20px;
  line-height: 1.5;
}

.benefits-portal p,
.goods-portal p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.guide-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}

.notices-section,
.faq-section {
  padding-top: 70px;
}

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

.notice-card,
.benefit-ticket-grid article,
.rules-grid article,
.venue-grid article,
.goods-status-card {
  padding: clamp(20px, 3.2vw, 34px);
  border: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.78);
}

.notice-card > span,
.benefit-ticket-grid article > span,
.venue-grid article > span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.notice-card h3,
.benefit-ticket-grid h3,
.rules-grid h3,
.venue-grid h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.5;
}

.notice-card p,
.benefit-ticket-grid p,
.rules-grid p,
.venue-grid p,
.goods-status-card p {
  margin: 0;
  color: var(--muted);
}

.source-link {
  display: inline-block;
  margin-top: 22px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 860px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.link-band {
  padding-top: 76px;
}

.profile-layout {
  display: grid;
  gap: 16px;
}

.official-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.profile-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-width: 0;
  overflow: hidden;
}

.profile-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 45%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.86) 58%, rgba(5, 5, 5, 0.96));
  content: "";
}

.profile-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background: var(--ink);
  filter: grayscale(1) contrast(1.08);
}

.profile-card span,
.profile-card strong {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  display: block;
  padding-inline: 14px;
  background: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.profile-card span {
  bottom: 30px;
  font-weight: 900;
  line-height: 1.25;
}

.profile-card strong {
  bottom: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.access {
  padding: clamp(68px, 9vw, 112px) max(18px, calc((100% - var(--max)) / 2));
  background: var(--paper);
  color: var(--ink);
}

.access-heading {
  margin-bottom: 32px;
}

.access .section-kicker {
  margin: 0 0 12px;
  color: #8d2025;
}

.access-heading > p:last-child {
  max-width: 48em;
  margin: 16px 0 0;
}

.notices-section .section-heading h2,
.faq-section .section-heading h2,
.venue-guide .section-heading h2,
.access h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.4;
}

.access-venues {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 58px);
}

.access-venue {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 5, 5, 0.24);
}

.access-venue p {
  margin: 0 0 16px;
}

.access-venue .venue-purpose {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}

.access-venue h3 {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.access-venue .venue-address {
  font-size: 14px;
}

.access-venue .text-link {
  margin-top: 4px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.map-options {
  margin-top: 10px;
  padding: 16px;
  border: 2px solid var(--ink);
  background: var(--text);
}

.map-options p {
  margin: 0 0 10px;
  font-weight: 900;
}

.map-options div {
  display: flex;
  gap: 8px;
}

.map-options a,
.map-options button {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  place-items: end start;
  overflow: hidden;
  padding: 120px max(18px, calc((100vw - var(--max)) / 2)) 70px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.5)), linear-gradient(0deg, var(--bg), transparent 40%);
  content: "";
}

.page-hero div {
  max-width: 760px;
}

.page-hero p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.guide-page,
.goods-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 18px;
}

.guide-steps,
.goods-grid {
  display: grid;
  gap: 12px;
}

.guide-steps article,
.goods-grid article,
.notice-panel {
  padding: clamp(20px, 4vw, 34px);
}

.guide-steps article > span,
.goods-grid span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.guide-steps h2,
.goods-grid h2,
.notice-panel h2 {
  margin: 6px 0 8px;
  font-size: 20px;
  line-height: 1.5;
}

.guide-steps p,
.goods-grid p,
.notice-panel li {
  color: var(--muted);
}

.guide-step-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0.5em;
}

.guide-step-heading > span {
  display: inline-block;
}

.guide-steps article .text-link {
  display: inline-block;
  margin-top: 10px;
}

.guide-steps .venue-change-card {
  border-color: var(--yellow);
  background: linear-gradient(135deg, rgba(240, 196, 0, 0.15), rgba(13, 13, 13, 0.82));
}

.sticky-note {
  position: sticky;
  top: 96px;
  align-self: start;
}

.sticky-note li strong {
  display: block;
  color: var(--text);
}

.ticket-rules-section,
.venue-guide {
  padding-top: 44px;
}

.benefit-ticket-grid,
.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-ticket-grid article:first-child {
  border-color: rgba(91, 164, 255, 0.7);
}

.benefit-ticket-grid article:first-child > span {
  color: #70afff;
}

.benefit-ticket-grid article:nth-child(2) {
  border-color: rgba(216, 25, 32, 0.8);
}

.benefit-ticket-grid article:nth-child(2) > span {
  color: #ff5a61;
}

.benefit-ticket-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: clamp(28px, 4vw, 46px);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.venue-grid .venue-marble {
  border-color: var(--yellow);
}

.venue-grid .primary-button {
  margin-top: 18px;
}

.guide-final-note {
  padding-bottom: 96px;
}

.guide-final-note .notice-panel {
  background: rgba(240, 196, 0, 0.08);
}

.goods-status-card h2 {
  margin: 6px 0 0;
  color: var(--yellow);
  font-size: 36px;
  line-height: 1.4;
}

.goods-status-card > strong {
  display: block;
  margin: 8px 0 20px;
  font-size: 24px;
}

.goods-status-card .primary-button {
  margin-top: 24px;
}

.goods-notice p {
  color: var(--muted);
}

.goods-notice .text-link {
  display: inline-block;
  margin-top: 12px;
}

.notice-panel ul {
  display: grid;
  gap: 10px;
  padding-left: 1.1em;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
    scroll-padding-bottom: 96px;
  }

  body {
    padding-bottom: 82px;
  }

  .site-header {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(14px);
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-ticket-bar {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.93), rgba(5, 5, 5, 0.72)),
      linear-gradient(0deg, var(--bg), transparent 48%);
  }

  .hero-image {
    object-fit: contain;
    object-position: center top;
    background: var(--bg);
  }

  .hero-content,
  .feature-grid,
  .ticket-layout,
  .story-band,
  .access,
  .guide-page,
  .goods-page {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 24px));
    min-height: auto;
    padding: 96px 0 52px;
    gap: 28px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(76px, 23vw, 140px);
    line-height: 0.84;
  }

  .lead {
    font-size: clamp(18px, 5vw, 26px);
  }

  .hero-meta span {
    flex: 1 1 calc(50% - 10px);
  }

  .poster-card {
    max-width: min(320px, 82vw);
    margin: 0 auto;
  }

  .interview-ticket-strip {
    grid-template-columns: 1fr;
  }

  .event-item {
    grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
    gap: 14px;
  }

  .schedule-list .event-item {
    grid-template-columns: minmax(124px, 0.34fr) minmax(0, 1fr);
  }

  .event-status,
  .event-ticket-link {
    justify-self: start;
  }

  .event-copy,
  .event-ticket-link {
    grid-column: 2;
  }

  .schedule-list .event-status {
    grid-column: 2;
  }

  .notice-grid,
  .rules-grid {
    grid-template-columns: 1fr;
  }

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

  .ticket-tab {
    min-height: 62px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .ticket-tab:nth-child(2n) {
    border-right: 0;
  }

  .story-band,
  .access {
    padding-inline: 18px;
  }

  .floor-image {
    width: auto;
    max-height: 560px;
    margin-inline: auto;
    object-fit: contain;
  }

  .page-hero {
    min-height: 58svh;
    padding: 96px 18px 48px;
  }

  .sticky-note {
    position: static;
  }

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

@media (max-width: 620px) {
  .brand {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .mobile-ticket-bar {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 10px 12px;
    font-size: 10px;
  }

  .mobile-ticket-bar strong {
    white-space: nowrap;
  }

  .hero-content {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: clamp(70px, 24vw, 104px);
  }

  .hero-image {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1838 / 2578;
    margin-top: 68px;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-meta span {
    flex-basis: 100%;
  }

  .hero-ticket-alert,
  .benefits-portal,
  .goods-portal,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-beginner-guide,
  .hero-soldout-link {
    min-width: 0;
    padding: 14px;
  }

  .countdown {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 24px;
  }

  .hero-video-card {
    display: none;
  }

  .poster-card {
    display: none;
  }

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

  .section {
    width: min(var(--max), calc(100% - 24px));
    padding: 56px 0;
  }

  .section-heading {
    display: block;
  }

  .section-note {
    margin-top: 12px;
  }

  .section-heading h2,
  .story-title,
  .notices-section .section-heading h2,
  .faq-section .section-heading h2,
  .venue-guide .section-heading h2,
  .access h2 {
    font-size: 24px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .guide-steps h2,
  .notice-panel h2,
  .notice-card h3,
  .benefit-ticket-grid h3,
  .rules-grid h3,
  .venue-grid h3,
  .access-venue h3,
  .benefits-portal h3,
  .goods-portal h3 {
    font-size: 20px;
  }

  .guide-step-heading {
    flex-direction: column;
    gap: 2px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .goods-status-card h2 {
    font-size: 28px;
  }

  .interview-ticket-strip > * {
    padding: 14px;
  }

  .interview-ticket-strip strong {
    font-size: 18px;
  }

  .photo-feature div {
    padding: 18px;
  }

  .photo-feature strong {
    font-size: 28px;
  }

  .photo-feature p {
    font-size: 13px;
  }

  .event-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .event-copy,
  .event-ticket-link {
    grid-column: auto;
  }

  .schedule-list .event-item,
  .schedule-list .event-status {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .event-item time {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .event-item time strong {
    font-size: 48px;
  }

  .event-copy h3 {
    font-size: 20px;
  }

  .ticket-detail {
    padding: 22px;
  }

  .ticket-detail h3 {
    font-size: 28px;
  }

  .ticket-detail .ticket-catch {
    font-size: 18px;
  }

  .ticket-status {
    font-size: 30px;
  }

  .ticket-side dl div {
    grid-template-columns: 74px 1fr;
    padding: 12px;
  }

  .notice-grid,
  .benefit-ticket-grid,
  .rules-grid,
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .story-band {
    padding-block: 56px;
  }

  .access {
    padding-block: 56px 104px;
    padding-inline: 12px;
  }

  .access-venues {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero {
    min-height: 52svh;
  }

  .page-hero p:last-child {
    font-size: 16px;
  }

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

@media (max-width: 420px) {
  .ticket-tabs {
    grid-template-columns: 1fr;
  }

  .ticket-tab,
  .ticket-tab:nth-child(2n) {
    border-right: 0;
  }

  .beginner-mark-label {
    width: 44px;
    min-width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

@media (max-width: 360px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}
