:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #0c0c0c;
  --surface-2: #151515;
  --text: #f7f2eb;
  --muted: #b7b0aa;
  --line: rgba(247, 242, 235, 0.18);
  --amber: #c70d16;
  --coral: #e21720;
  --teal: #f7f2eb;
  --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-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(199, 13, 22, 0.16), transparent 28rem),
    #050505;
  background-size: 6px 6px, 8px 8px, auto, auto;
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.65;
  text-rendering: geometricprecision;
}

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

@keyframes typeRise {
  from {
    opacity: 1;
    transform: translateY(14px);
  }

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

@keyframes statusPulse {
  0%,
  93%,
  100% {
    text-shadow: none;
  }

  94% {
    text-shadow: 0 0 12px rgba(247, 242, 235, 0.45);
  }
}

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

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

iframe,
video {
  max-width: 100%;
}

:where(.hero-content, .section-heading, .hero-ticket-alert, .interview-ticket-strip, .ticket-layout, .story-band, .benefits-panel, .benefits-detail-hero, .benefits-detail-grid, .goods-page-hero, .goods-layout, .merch-card-board, .profile-grid, .access) > * {
  min-width: 0;
}

:where(h1, h2, h3, p, a, strong, small, span, dt, dd, li) {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 44px;
  max-width: none;
  border: none;
  object-fit: contain;
  background: none;
  filter: none;
}

.brand-text {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  color: rgba(247, 242, 235, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding-inline: 6px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 96svh;
  overflow: visible;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(1) contrast(1.12) brightness(0.65);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.68) 44%, rgba(5, 5, 5, 0.92) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.28) 45%, rgba(5, 5, 5, 0.58) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(96px, 13vh, 150px);
  padding-bottom: 120px;
}

.eyebrow,
.section-kicker,
.section-heading p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid rgba(247, 242, 235, 0.3);
  background: rgba(5, 5, 5, 0.6);
}

.hero-status span,
.hero-status strong {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
}

.hero-status span {
  color: var(--muted);
}

.hero-status strong {
  background: var(--text);
  color: var(--ink);
  animation: statusPulse 5.6s steps(1, end) infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 7ch;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(92px, 14.4vw, 190px);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(247, 242, 235, 0.8);
}

.hero-copy > .eyebrow,
.hero-status,
.hero-copy h1,
.lead,
.hero-meta,
.hero-ticket-alert {
  animation: typeRise 680ms cubic-bezier(0.2, 0.78, 0.22, 1) both;
}

.hero-status {
  animation-delay: 80ms;
}

.hero-copy h1 {
  animation-delay: 150ms;
}

.lead {
  animation-delay: 210ms;
}

.hero-meta {
  animation-delay: 270ms;
}

.hero-ticket-alert {
  animation-delay: 330ms;
}

.kana {
  display: inline;
  font-size: inherit;
  transform: none;
}

.profile-card .kana,
.ticket-detail .kana,
.tour-item .kana {
  font-size: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > .eyebrow,
  .hero-status,
  .hero-copy h1,
  .lead,
  .hero-meta,
  .hero-ticket-alert,
  .hero-status strong {
    animation: none;
  }
}

.lead {
  max-width: 580px;
  margin-bottom: 28px;
  color: rgba(247, 242, 235, 0.9);
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 900;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-meta span {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(247, 242, 235, 0.28);
  background: rgba(5, 5, 5, 0.68);
  color: rgba(247, 242, 235, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.hero-ticket-alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
  position: relative;
  overflow: hidden;
  width: min(100%, 860px);
  margin: -12px 0 22px;
  border: 1px solid rgba(247, 242, 235, 0.28);
  background:
    linear-gradient(100deg, rgba(226, 23, 32, 0.22), rgba(5, 5, 5, 0.84) 42%, rgba(226, 23, 32, 0.18)),
    rgba(5, 5, 5, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.hero-ticket-alert::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
  opacity: 0.95;
}

.hero-ticket-alert > a {
  min-height: 64px;
}

.hero-beginner-guide {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 18px;
  color: var(--text);
}

.hero-beginner-guide .beginner-mark-label {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(247, 242, 235, 0.32);
  background: rgba(247, 242, 235, 0.94);
  box-shadow: 0 0 0 5px rgba(247, 242, 235, 0.06);
}

.hero-beginner-guide .beginner-mark-label img {
  width: 21px;
  height: 21px;
}

.hero-beginner-guide div {
  display: grid;
  align-content: center;
  gap: 4px;
  min-width: 0;
}

.hero-ticket-alert span:not(.beginner-mark-label) {
  color: rgba(247, 242, 235, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-catch {
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 900;
  line-height: 1.08;
}

.ticket-catch span {
  color: var(--text);
  font-size: 1.08em;
}

.hero-ticket-alert strong {
  color: var(--text);
  font-size: clamp(12px, 1.25vw, 14px);
  font-weight: 900;
  line-height: 1.15;
}

.hero-soldout-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  column-gap: 14px;
  row-gap: 3px;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 12px 38px 12px 18px;
  border-left: 1px solid rgba(247, 242, 235, 0.18);
  background:
    linear-gradient(90deg, rgba(226, 23, 32, 0.22), rgba(5, 5, 5, 0.88) 34%),
    rgba(5, 5, 5, 0.82);
  color: var(--text);
  text-align: left;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-soldout-link::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  height: auto;
  border-radius: 0;
  background: var(--red);
  box-shadow: 0 0 18px rgba(226, 23, 32, 0.62);
}

.hero-soldout-link::after {
  content: "→";
  position: absolute;
  right: 14px;
  top: 50%;
  color: rgba(247, 242, 235, 0.72);
  font-size: 13px;
  font-weight: 900;
  transform: translateY(-50%);
}

.hero-soldout-link span {
  grid-column: 1;
  color: rgba(247, 242, 235, 0.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-soldout-link strong {
  grid-column: 1;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  line-height: 1.08;
  white-space: nowrap;
}

.hero-soldout-link em {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--coral);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.hero-soldout-link:hover,
.hero-soldout-link:focus-visible {
  border-color: rgba(247, 242, 235, 0.42);
  background:
    linear-gradient(90deg, rgba(226, 23, 32, 0.3), rgba(5, 5, 5, 0.88) 34%),
    rgba(5, 5, 5, 0.78);
  transform: translateY(-2px);
}

.hero-beginner-guide:hover,
.hero-beginner-guide:focus-visible {
  background: rgba(247, 242, 235, 0.07);
}

.icon-mask {
  display: inline-block;
  flex: 0 0 auto;
  width: 1.05em;
  height: 1.05em;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  vertical-align: -0.14em;
}

.icon-youtube {
  mask-image: url("assets/icon-youtube.svg");
  -webkit-mask-image: url("assets/icon-youtube.svg");
}

.icon-news {
  mask-image: url("assets/icon-news.svg");
  -webkit-mask-image: url("assets/icon-news.svg");
}

.poster-card {
  justify-self: end;
  width: min(100%, 380px);
  padding: 10px;
  border: 1px solid rgba(247, 242, 235, 0.34);
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62);
  transform: rotate(1.2deg);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 1448 / 2048;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}

.primary-button,
.ghost-button {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-button {
  background: var(--coral);
  color: var(--text);
}

.ghost-button {
  border-color: rgba(247, 242, 235, 0.35);
  background: rgba(5, 5, 5, 0.42);
}

.primary-button:hover,
.ghost-button:hover,
.primary-button:focus-visible,
.ghost-button:focus-visible {
  transform: translateY(-2px);
}

.countdown {
  display: inline-flex;
  width: min(100%, 520px);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -12px 0 18px;
  padding: 13px 16px;
  border: 1px solid rgba(247, 242, 235, 0.24);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
}

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

.countdown [data-countdown] {
  color: var(--text);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: #f7f2eb;
  color: var(--ink);
}

.ticker > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  background: var(--ink);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker p {
  margin: 0;
  font-weight: 800;
}

.section,
.story-band,
.access,
.link-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(76px, 10vw, 124px) 0;
  scroll-margin-top: 88px;
}

.section.compact {
  padding-top: clamp(72px, 9vw, 104px);
}

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

.section-heading h2,
.story-copy h2,
.access h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.story-title {
  display: grid;
  gap: 0.05em;
}

.story-title span {
  display: block;
}

.interview-section {
  position: relative;
  isolation: isolate;
  padding-top: clamp(72px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}

.interview-section::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  border-block: 1px solid rgba(247, 242, 235, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 84% 10%, rgba(226, 23, 32, 0.24), transparent 30rem),
    linear-gradient(120deg, rgba(247, 242, 235, 0.06), transparent 34%),
    rgba(5, 5, 5, 0.9);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  content: "";
}

.interview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.interview-heading > div {
  text-align: left;
}

.interview-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.interview-heading h2 {
  max-width: 880px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.86;
  text-wrap: auto;
}

.interview-heading h2 > span {
  font-family: var(--font-serif);
  font-size: 1em;
  line-height: 0.86;
}

.interview-heading h2 em {
  color: var(--coral);
  font-size: clamp(28px, 3.6vw, 54px);
  font-style: normal;
  line-height: 0.9;
  text-align: left;
  text-transform: uppercase;
}

.interview-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
  margin: clamp(18px, 2.4vw, 28px) 0 16px;
}

.video-panel {
  position: relative;
  padding: clamp(10px, 1.2vw, 14px);
  border: 1px solid rgba(247, 242, 235, 0.24);
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.075), rgba(247, 242, 235, 0.025)),
    #030303;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.video-tag {
  position: absolute;
  top: 0;
  left: clamp(18px, 2vw, 28px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: var(--text);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.video-frame {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.video-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(247, 242, 235, 0.08), inset 0 -80px 110px rgba(0, 0, 0, 0.3);
  content: "";
}

.video-frame::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 8px 18px;
  min-height: 58px;
  padding: 14px 4px 0;
}

.video-caption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-caption strong {
  color: var(--text);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.25;
  text-align: right;
}

.video-caption p {
  grid-column: 2;
  margin: 0;
  color: rgba(247, 242, 235, 0.78);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 800;
  line-height: 1.5;
  text-align: right;
}

.interview-ticket-strip {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr) minmax(220px, 0.36fr);
  margin: 0;
  border: 1px solid rgba(247, 242, 235, 0.26);
  background: rgba(5, 5, 5, 0.78);
}

.interview-ticket-strip div,
.interview-ticket-strip a {
  min-height: 82px;
  padding: 16px 22px;
  border-right: 1px solid rgba(247, 242, 235, 0.18);
}

.interview-ticket-strip div {
  display: grid;
  align-content: center;
  gap: 4px;
}

.interview-ticket-strip span,
.interview-ticket-strip small {
  color: rgba(247, 242, 235, 0.66);
  font-size: 12px;
  font-weight: 900;
}

.interview-ticket-strip strong {
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 38px);
  line-height: 1.08;
}

.interview-ticket-strip div:nth-child(2) strong {
  font-size: clamp(18px, 2vw, 26px);
}

.interview-ticket-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 0;
  background: var(--coral);
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease;
}

.interview-ticket-strip a:hover,
.interview-ticket-strip a:focus-visible {
  background: #f01823;
  transform: translateY(-2px);
}

.text-interview-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.24fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.6vw, 28px);
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(247, 242, 235, 0.24);
  background:
    linear-gradient(90deg, rgba(247, 242, 235, 0.09), transparent 55%),
    rgba(5, 5, 5, 0.78);
  color: var(--text);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.text-interview-card img,
.text-interview-media {
  width: 100%;
  aspect-ratio: 16 / 8;
  height: auto;
  border: 1px solid rgba(247, 242, 235, 0.2);
  object-fit: cover;
  object-position: 50% 46%;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
}

.text-interview-media {
  display: block;
  min-height: 100%;
}

.text-interview-copy {
  display: grid;
  gap: 7px;
}

.text-interview-label {
  color: rgba(247, 242, 235, 0.64);
  font-size: 11px;
  font-weight: 900;
}

.text-interview-title {
  max-width: 980px;
  color: var(--text);
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.35;
  text-wrap: balance;
}

.text-interview-title span,
.text-interview-quote span {
  display: inline-block;
}

.text-interview-quote {
  color: rgba(247, 242, 235, 0.74);
  font-size: clamp(15px, 1.45vw, 19px);
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.text-interview-cta {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--coral);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.text-interview-card:hover,
.text-interview-card:focus-visible {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  transform: translateY(-2px);
}

.news-list,
.tour-list {
  display: grid;
  gap: 14px;
}

.news-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-list {
  grid-template-columns: 1fr;
}

.news-item,
.tour-item,
.ticket-panel,
.ticket-side,
.goods-card {
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.055);
}

.news-item {
  min-height: 220px;
  padding: 22px;
}

.news-item time {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.tour-item {
  display: grid;
  grid-template-columns: 92px 142px minmax(0, 1fr) 142px;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 18px 22px;
}

.tour-item time {
  display: grid;
  gap: 4px;
}

.tour-item time strong {
  color: rgba(255, 248, 239, 0.74);
  font-size: 40px;
  line-height: 1;
}

.tour-item time span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.tour-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  background: rgba(247, 242, 235, 0.2);
  color: var(--text);
  font-weight: 900;
}

.ticket-stamp {
  position: relative;
  isolation: isolate;
  min-width: 136px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: #fff9f0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
  transform: rotate(-1.2deg);
}

.ticket-stamp::before,
.ticket-stamp::after {
  position: absolute;
  inset: 4px 0;
  z-index: -1;
  content: "";
  background: #e21720;
  box-shadow: 0 0 0 1px rgba(255, 248, 239, 0.1), 0 12px 24px rgba(226, 23, 32, 0.22);
}

.ticket-stamp::before {
  clip-path: polygon(2% 13%, 96% 0, 100% 19%, 97% 43%, 100% 72%, 91% 100%, 3% 88%, 0 61%, 4% 42%, 0 22%);
}

.ticket-stamp::after {
  inset: 13px -8px 7px 8px;
  opacity: 0.45;
  clip-path: polygon(0 18%, 96% 0, 100% 38%, 88% 50%, 100% 70%, 8% 100%, 0 76%, 12% 53%);
}

.tour-item h3 {
  margin-bottom: 6px;
  font-size: clamp(20px, 3vw, 30px);
}

.tour-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.tour-item > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  background: var(--coral);
  color: var(--text);
  font-weight: 900;
}

.tour-item > a.tour-ticket-cta {
  min-height: 46px;
  padding: 0 14px;
  background: transparent;
  color: #fff9f0;
  text-decoration: none;
}

.tour-item.is-ended {
  opacity: 0.58;
}

.tour-item.is-active {
  border-color: rgba(226, 23, 32, 0.82);
  background: rgba(199, 13, 22, 0.14);
}

.tour-item.is-active time strong,
.tour-item.is-active time span {
  color: var(--text);
}

.tour-item.is-active .tour-status {
  background: transparent;
  color: #fff9f0;
}

.news-item h3 {
  margin: 18px 0 12px;
  font-size: 20px;
  line-height: 1.35;
}

.news-item p,
.story-copy p,
.ticket-detail p,
.ticket-side dd,
.goods-card p,
.access p {
  color: var(--muted);
  line-height: 1.8;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(68px, 9vw, 106px) 0;
  border-block: 1px solid var(--line);
  scroll-margin-top: 88px;
}

.story-copy p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  text-wrap: pretty;
}

.setlist-preview {
  display: grid;
  grid-template-columns: minmax(72px, 0.34fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.setlist-preview span,
.setlist-preview strong {
  min-height: 72px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.setlist-preview span:nth-last-child(-n + 2),
.setlist-preview strong:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.setlist-preview span {
  background: rgba(199, 13, 22, 0.22);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.setlist-preview strong {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1;
}

.ticket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 14px;
}

.ticket-panel,
.ticket-side {
  padding: clamp(22px, 3vw, 32px);
}

.ticket-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}

.ticket-tab {
  display: grid;
  gap: 4px;
  min-height: 44px;
  align-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.ticket-tab span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
}

.ticket-tab.is-active {
  border-color: transparent;
  background: var(--coral);
  color: var(--text);
}

.ticket-tab.is-active span {
  color: var(--text);
}

.ticket-tab.is-sold-out {
  color: rgba(247, 242, 235, 0.52);
}

.ticket-tab.is-sold-out span {
  color: rgba(247, 242, 235, 0.42);
}

.ticket-tab.is-sold-out.is-active {
  border-color: rgba(247, 242, 235, 0.28);
  background: rgba(247, 242, 235, 0.08);
  color: var(--muted);
}

.ticket-tab.is-sold-out.is-active span {
  color: var(--muted);
}

.ticket-label {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-detail h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 52px);
}

.ticket-detail .ticket-catch {
  margin-top: 12px;
  font-size: clamp(16px, 2vw, 20px);
}

.ticket-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-top: 2px;
  padding: 0 10px;
  background: var(--coral);
  color: var(--text);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.ticket-detail.is-sold-out .ticket-status {
  border: 1px solid rgba(247, 242, 235, 0.25);
  background: transparent;
  color: var(--muted);
}

.ticket-detail strong {
  display: block;
  margin-top: 22px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 62px);
}

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

.ticket-side dl {
  margin: 0 0 26px;
}

.ticket-side div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.ticket-side dt {
  color: var(--text);
  font-weight: 900;
}

.ticket-side dd {
  margin: 0;
  text-align: right;
}

.full {
  width: 100%;
}

.benefits-section {
  padding-top: clamp(68px, 9vw, 104px);
}

.benefits-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  min-height: 280px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(247, 242, 235, 0.22);
  background:
    linear-gradient(120deg, rgba(199, 13, 22, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(247, 242, 235, 0.07), rgba(247, 242, 235, 0.025)),
    #070707;
}

.benefits-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 8px;
  background: var(--text);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefits-panel h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.86;
}

.benefits-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 700;
  line-height: 1.9;
}

.benefits-lead {
  margin-bottom: 14px;
}

.benefits-lead h3 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
}

.benefits-flow {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(247, 242, 235, 0.2);
  background: rgba(5, 5, 5, 0.64);
}

.benefits-flow > span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  background: var(--text);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.benefits-flow ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-flow li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(247, 242, 235, 0.2);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

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

.benefit-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(247, 242, 235, 0.2);
  background:
    linear-gradient(135deg, rgba(226, 23, 32, 0.14), transparent 56%),
    rgba(247, 242, 235, 0.045);
}

.benefit-card > span {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 28px;
  padding: 0 8px;
  background: rgba(247, 242, 235, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.18;
}

.benefit-card p,
.benefit-card li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.benefit-card p {
  margin: 0;
}

.benefit-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.15em;
}

.benefit-card strong {
  color: var(--text);
  font-weight: 900;
}

.benefit-card.is-faq {
  min-height: auto;
  background:
    linear-gradient(135deg, rgba(226, 23, 32, 0.2), transparent 58%),
    rgba(5, 5, 5, 0.68);
}

.benefits-portal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  min-height: 260px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(247, 242, 235, 0.24);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 52%, rgba(5, 5, 5, 0.46) 100%),
    linear-gradient(120deg, rgba(199, 13, 22, 0.22), transparent 58%),
    url("assets/benefits-hero-frame.jpg") center / cover;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.benefits-portal:hover,
.benefits-portal:focus-visible {
  border-color: rgba(226, 23, 32, 0.76);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 52%, rgba(5, 5, 5, 0.54) 100%),
    linear-gradient(120deg, rgba(199, 13, 22, 0.32), transparent 58%),
    url("assets/benefits-hero-frame.jpg") center / cover;
  transform: translateY(-2px);
}

.benefits-portal span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 8px;
  background: var(--text);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.benefits-portal .beginner-mark-label {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(247, 242, 235, 0.32);
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.1);
  color: var(--text);
}

.benefits-portal .beginner-mark-label img {
  width: 25px;
  height: 25px;
}

.benefits-portal h3 {
  max-width: 720px;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.04;
}

.benefits-portal p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 800;
  line-height: 1.85;
}

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

.guide-points li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(247, 242, 235, 0.2);
  background: rgba(5, 5, 5, 0.46);
  color: rgba(247, 242, 235, 0.86);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.benefits-page-main {
  padding-top: 88px;
}

.benefits-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: clamp(430px, 48vw, 560px);
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(247, 242, 235, 0.24);
  border-radius: 8px;
  isolation: isolate;
}

.benefits-detail-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.06);
}

.benefits-detail-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(226, 23, 32, 0.32), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.7) 58%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.62), transparent 48%),
    repeating-linear-gradient(0deg, rgba(247, 242, 235, 0.03) 0 1px, transparent 1px 6px);
  content: "";
}

.benefits-detail-copy {
  display: grid;
  align-content: center;
  max-width: 760px;
}

.benefits-detail-copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.benefits-detail-copy h1 span {
  display: block;
  margin-top: 10px;
  color: var(--coral);
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1;
}

.benefits-detail-copy p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: rgba(247, 242, 235, 0.82);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 800;
  line-height: 1.9;
}

.benefits-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.benefits-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.benefits-quick-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(247, 242, 235, 0.18);
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.08);
  color: rgba(247, 242, 235, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.benefits-hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.benefits-hero-meta div {
  display: grid;
  gap: 6px;
  min-height: 84px;
  align-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(247, 242, 235, 0.2);
  border-radius: 8px;
  background: rgba(247, 242, 235, 0.07);
  backdrop-filter: blur(12px);
}

.benefits-hero-meta span {
  color: rgba(247, 242, 235, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.benefits-hero-meta strong {
  color: var(--text);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.benefits-page-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(46px, 6vw, 78px) 0 0;
}

.benefits-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-bottom: 20px;
}

.benefits-page-heading p {
  margin: 0;
  justify-self: start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(226, 23, 32, 0.16);
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  line-height: 28px;
}

.benefits-page-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4.5vw, 60px);
  line-height: 1.06;
  word-break: keep-all;
}

.benefits-page-heading span {
  max-width: 780px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}

.entry-order-list {
  counter-reset: entry-order;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-order-list li {
  position: relative;
  counter-increment: entry-order;
  display: grid;
  gap: 10px;
  min-height: 104px;
  align-content: center;
  padding: 16px 14px;
  border: 1px solid rgba(247, 242, 235, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.12), transparent 62%),
    rgba(247, 242, 235, 0.055);
  color: var(--text);
  text-align: center;
  word-break: keep-all;
}

.entry-order-list li::before {
  display: block;
  color: rgba(226, 23, 32, 0.9);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 0.9;
  content: counter(entry-order, decimal-leading-zero);
}

.entry-order-list li::after {
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 2;
  color: var(--coral);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  content: "→";
  transform: translateY(-50%);
}

.entry-order-list li:last-child::after {
  content: none;
}

.entry-order-list span {
  display: block;
  color: var(--text);
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 900;
  line-height: 1.22;
}

.entry-order-list small {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: rgba(247, 242, 235, 0.1);
  color: rgba(247, 242, 235, 0.68);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.day-flow-list {
  display: grid;
  gap: 12px;
}

.flow-movie-box {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
  margin: 0 0 18px;
  padding: clamp(16px, 2.3vw, 24px);
  border: 1px solid rgba(247, 242, 235, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(226, 23, 32, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(247, 242, 235, 0.08), rgba(247, 242, 235, 0.035));
}

.flow-movie-thumb {
  position: relative;
  display: grid;
  min-height: 170px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 235, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.78)),
    repeating-linear-gradient(0deg, rgba(247, 242, 235, 0.04) 0 1px, transparent 1px 12px);
}

.flow-movie-thumb::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(226, 23, 32, 0.18), transparent 54%);
  content: "";
}

.flow-movie-thumb .benefit-icon {
  position: relative;
  width: 42px;
  height: 42px;
  color: var(--coral);
}

.flow-movie-thumb strong {
  position: relative;
  color: rgba(247, 242, 235, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-movie-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
}

.flow-movie-copy span {
  justify-self: start;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(226, 23, 32, 0.18);
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  line-height: 26px;
}

.flow-movie-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
}

.flow-movie-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.day-flow-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  min-height: 96px;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(247, 242, 235, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 23, 32, 0.13), transparent 32%),
    rgba(247, 242, 235, 0.055);
}

.day-flow-meta {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.day-flow-meta time {
  color: var(--coral);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.day-flow-list h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}

.day-flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

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

.beginner-guide-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(247, 242, 235, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 23, 32, 0.16), transparent 34%),
    rgba(247, 242, 235, 0.06);
}

.benefit-icon {
  display: inline-block;
  align-self: center;
  justify-self: start;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: currentColor;
  color: var(--coral);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 20px 20px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 20px 20px;
}

.benefits-detail-card > .benefit-icon,
.benefits-goods-link > .benefit-icon {
  grid-column: 1;
  grid-row: 1;
}

.benefits-detail-card > .benefit-icon + span:not(.benefit-icon),
.benefits-goods-link > .benefit-icon + div {
  align-self: center;
}

.icon-music-note {
  mask-image: url("assets/icon-music-note.svg");
  -webkit-mask-image: url("assets/icon-music-note.svg");
}

.icon-camera-round {
  mask-image: url("assets/icon-camera-round.svg");
  -webkit-mask-image: url("assets/icon-camera-round.svg");
}

.icon-camera {
  mask-image: url("assets/icon-camera.svg");
  -webkit-mask-image: url("assets/icon-camera.svg");
}

.icon-movie {
  mask-image: url("assets/icon-movie.svg");
  -webkit-mask-image: url("assets/icon-movie.svg");
}

.icon-tablet {
  mask-image: url("assets/icon-tablet.svg");
  -webkit-mask-image: url("assets/icon-tablet.svg");
}

.beginner-guide-grid span:not(.benefit-icon) {
  align-self: center;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.beginner-mark-label {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 242, 235, 0.2);
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.08);
}

.beginner-mark-label img {
  width: 24px;
  height: 24px;
  filter: invert(16%) sepia(99%) saturate(5431%) hue-rotate(348deg) brightness(103%) contrast(88%);
}

.beginner-guide-grid h3 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
}

.beginner-guide-grid p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.72;
}

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

.benefits-detail-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-content: start;
  gap: 10px 12px;
  min-height: 240px;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(247, 242, 235, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 23, 32, 0.14), transparent 30%),
    rgba(247, 242, 235, 0.055);
}

.benefits-detail-card.is-wide {
  grid-column: 1 / -1;
  min-height: 220px;
}

.benefits-detail-card.is-alert {
  background:
    linear-gradient(135deg, rgba(226, 23, 32, 0.28), transparent 56%),
    rgba(5, 5, 5, 0.76);
}

.benefits-detail-card > span:not(.benefit-icon) {
  display: inline-flex;
  align-self: center;
  justify-self: start;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(247, 242, 235, 0.1);
  color: rgba(247, 242, 235, 0.76);
  font-size: 11px;
  font-weight: 900;
}

.benefits-detail-card h3 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.benefits-detail-card p,
.benefits-detail-card li {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.78;
}

.benefits-detail-card p {
  margin: 0;
}

.benefits-detail-card ul {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.15em;
}

.benefits-detail-card strong {
  color: var(--text);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
}

.benefits-detail-card li strong {
  font-size: inherit;
}

.benefits-detail-card.is-entry-order {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    linear-gradient(110deg, rgba(226, 23, 32, 0.18), transparent 54%),
    rgba(247, 242, 235, 0.055);
}

.benefits-detail-card.is-entry-order h3 {
  max-width: 720px;
  font-size: clamp(24px, 2.7vw, 36px);
}

.entry-flow-compact {
  grid-column: 1 / -1;
  counter-reset: entry-step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.entry-flow-compact li {
  position: relative;
  counter-increment: entry-step;
  grid-column: auto;
  display: grid;
  gap: 6px;
  min-height: 76px;
  align-content: center;
  padding: 12px 10px;
  border: 1px solid rgba(247, 242, 235, 0.18);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.42);
  color: var(--text);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.entry-flow-compact li::before {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  content: "STEP " counter(entry-step, decimal-leading-zero);
}

.entry-flow-compact li::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
  content: "›";
  transform: translateY(-50%);
}

.entry-flow-compact li:last-child::after {
  content: none;
}

.entry-order-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.entry-order-notes p {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--coral);
  background: rgba(247, 242, 235, 0.07);
  color: rgba(247, 242, 235, 0.82);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

#faq .benefits-detail-grid {
  gap: 14px;
}

#faq .benefits-detail-card {
  min-height: 190px;
  gap: 8px 12px;
  padding: clamp(18px, 2.2vw, 24px);
  background:
    linear-gradient(135deg, rgba(226, 23, 32, 0.16), transparent 58%),
    rgba(247, 242, 235, 0.045);
}

#faq .benefits-detail-card h3 {
  margin-top: 10px;
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.32;
}

#faq .benefits-detail-card p {
  padding-top: 12px;
  border-top: 1px solid rgba(247, 242, 235, 0.16);
  color: rgba(247, 242, 235, 0.82);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
}

#faq .benefits-detail-card strong {
  color: rgba(247, 242, 235, 0.92);
  font-size: inherit;
  font-weight: 800;
}

.benefits-goods-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(247, 242, 235, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(226, 23, 32, 0.18), transparent 68%),
    rgba(247, 242, 235, 0.055);
  transition: border-color 160ms ease, transform 160ms ease;
}

.benefits-goods-link:hover,
.benefits-goods-link:focus-visible {
  border-color: rgba(247, 242, 235, 0.46);
  transform: translateY(-2px);
}

.benefits-goods-link h3,
.benefits-goods-link p {
  margin: 0;
}

.benefits-goods-link h3 {
  color: var(--text);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.18;
}

.benefits-goods-link p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.benefits-goods-link strong {
  display: inline-flex;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--coral);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

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

.goods-page-main {
  padding-top: 104px;
}

.goods-page-main .section {
  width: min(1120px, calc(100% - 40px));
  padding: clamp(46px, 6vw, 74px) 0 clamp(80px, 9vw, 116px);
}

.goods-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: clamp(20px, 5vw, 60px);
  align-items: end;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px) 0 clamp(24px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}

.goods-page-hero h1 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(54px, 9vw, 118px);
}

.goods-page-hero h1 span {
  color: var(--coral);
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}

.goods-page-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.85;
}

.goods-page-meta {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(226, 23, 32, 0.18), transparent 62%),
    rgba(247, 242, 235, 0.045);
}

.goods-page-meta span,
.goods-page-meta strong {
  color: var(--text);
  font-weight: 900;
}

.goods-page-meta span {
  color: var(--muted);
  font-size: 12px;
}

.goods-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
  border: 1px solid rgba(247, 242, 235, 0.2);
  background: rgba(5, 5, 5, 0.58);
}

.goods-summary-strip div {
  display: grid;
  gap: 5px;
  min-height: 78px;
  align-content: center;
  padding: 16px 18px;
  border-right: 1px solid rgba(247, 242, 235, 0.16);
}

.goods-summary-strip div:last-child {
  border-right: 0;
}

.goods-summary-strip span {
  color: rgba(247, 242, 235, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.goods-summary-strip strong {
  color: var(--text);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.1;
}

.goods-portal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(247, 242, 235, 0.24);
  background:
    linear-gradient(120deg, rgba(199, 13, 22, 0.18), transparent 56%),
    rgba(247, 242, 235, 0.045);
}

.goods-portal span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 8px;
  background: var(--ink);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
}

.goods-portal h3 {
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.goods-portal p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.85;
}

.goods-portal .guide-points li {
  background: rgba(247, 242, 235, 0.08);
}

.goods-portal-link {
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.goods-portal-link:hover,
.goods-portal-link:focus-visible {
  border-color: rgba(226, 23, 32, 0.76);
  background:
    linear-gradient(120deg, rgba(199, 13, 22, 0.3), transparent 56%),
    rgba(247, 242, 235, 0.075);
  transform: translateY(-2px);
}

.goods-card,
.goods-note,
.goods-table-wrap {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(247, 242, 235, 0.055);
}

.goods-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.goods-page-main .goods-layout {
  grid-template-columns: 1fr;
}

.goods-page-main .goods-note {
  min-height: auto;
}

.goods-page-main .goods-note h3 {
  font-size: clamp(38px, 5vw, 56px);
}

.goods-note {
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(199, 13, 22, 0.28), transparent 58%),
    rgba(247, 242, 235, 0.055);
}

.goods-note h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.9;
}

.goods-note p {
  color: var(--muted);
  line-height: 1.8;
}

.goods-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.shop-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(247, 242, 235, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(135deg, rgba(226, 23, 32, 0.12), transparent 46%),
    rgba(247, 242, 235, 0.045);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.shop-board-label {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  padding: 7px 10px;
  background: var(--text);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.merch-card-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(247, 242, 235, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(135deg, rgba(226, 23, 32, 0.1), transparent 46%),
    rgba(247, 242, 235, 0.045);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.merch-product-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 235, 0.24);
  border-radius: 8px;
  background: #f7f2eb;
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.merch-product-card figure {
  display: grid;
  height: 260px;
  place-items: center;
  margin: 0;
  padding: 16px;
  background:
    radial-gradient(circle at 78% 12%, rgba(226, 23, 32, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(24, 24, 24, 0.78));
}

.merch-product-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.merch-product-card.is-featured figure {
  position: relative;
  padding: 16px;
  background:
    radial-gradient(circle at 78% 12%, rgba(226, 23, 32, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(24, 24, 24, 0.78));
}

.merch-product-card.is-featured img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #fff;
  transition: opacity 180ms ease, transform 220ms ease, filter 220ms ease;
}

.merch-product-card.is-featured .merch-image-back {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
}

.merch-product-card.is-featured:hover .merch-image-front,
.merch-product-card.is-featured:focus-visible .merch-image-front {
  opacity: 0;
  filter: contrast(0.9);
  transform: scale(1.015);
}

.merch-product-card.is-featured:hover .merch-image-back,
.merch-product-card.is-featured:focus-visible .merch-image-back {
  opacity: 1;
  transform: scale(1);
}

.merch-product-card:not(.is-featured) img {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(247, 242, 235, 0.2);
  object-fit: cover;
}

.merch-product-card.is-text-only figure {
  height: 260px;
}

.merch-product-card figure > span {
  color: rgba(247, 242, 235, 0.92);
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.merch-product-card div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 14px;
}

.merch-product-card div > span {
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.merch-product-card h3 {
  min-height: 3.05em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 900;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.merch-product-card strong {
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 900;
}

.shop-group {
  --shop-accent: var(--text);
  --shop-label-text: var(--ink);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 235, 0.24);
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.075), transparent 54%),
    rgba(5, 5, 5, 0.68);
}

.shop-group::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--shop-accent);
  content: "";
}

.shop-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-items: start;
  gap: 12px;
  min-height: 78px;
  align-items: center;
  padding: 14px 16px 14px 18px;
  border-bottom: 1px solid rgba(247, 242, 235, 0.14);
}

.shop-group-head span {
  color: var(--text);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.08;
  word-break: keep-all;
}

.shop-group-head strong {
  justify-self: end;
  color: var(--text);
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 900;
  white-space: nowrap;
}

.shop-group ul {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 168px;
  margin: 0;
  padding: 16px 16px 18px 18px;
  list-style: none;
}

.shop-group li {
  color: rgba(247, 242, 235, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.shop-group.is-tee {
  --shop-accent: var(--coral);
  --shop-label-text: #050505;
  grid-column: span 2;
}

.shop-group.is-tee-feature {
  --shop-accent: var(--coral);
  --shop-label-text: #050505;
  grid-column: span 2;
}

.damn-tee-visual {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(226, 23, 32, 0.12), transparent 52%),
    #f7f2eb;
  color: var(--ink);
}

.damn-tee-visual img {
  width: 100%;
  aspect-ratio: 610 / 330;
  object-fit: contain;
}

.damn-tee-visual figcaption {
  color: rgba(5, 5, 5, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.shop-group.is-tee ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-group.is-parka {
  --shop-accent: var(--text);
  --shop-label-text: #050505;
}

.shop-group.is-longsleeve {
  --shop-accent: rgba(247, 242, 235, 0.76);
  --shop-label-text: #050505;
}

.shop-group.is-sweat {
  --shop-accent: rgba(247, 242, 235, 0.48);
  --shop-label-text: #f7f2eb;
}

.shop-group.is-other {
  --shop-accent: var(--coral);
  --shop-label-text: #050505;
  grid-column: 1 / -1;
}

.shop-group.is-other ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 0;
}

.shop-price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(247, 242, 235, 0.12);
}

.shop-price-list li:last-child {
  border-bottom: 0;
}

.shop-price-list li span {
  min-width: 0;
}

.shop-price-list li strong {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 12px;
  overflow-wrap: anywhere;
  text-align: right;
}

.goods-table-wrap {
  overflow-x: auto;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.055), rgba(247, 242, 235, 0.025)),
    rgba(5, 5, 5, 0.68);
}

.goods-table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.goods-table-title span,
.goods-table-title strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.goods-table-title strong {
  color: var(--text);
  font-size: clamp(20px, 2vw, 30px);
}

.goods-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}

.goods-table thead th {
  background: rgba(247, 242, 235, 0.08);
}

.goods-table th,
.goods-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
}

.goods-table th {
  color: var(--text);
  font-size: 12px;
}

.goods-table td {
  color: var(--muted);
  font-weight: 700;
}

.goods-table td:first-child,
.goods-table td:nth-child(3) {
  color: var(--text);
  font-weight: 900;
}

.goods-table tbody tr:last-child td {
  border-bottom: 0;
}

.goods-art {
  min-height: 230px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    radial-gradient(circle at 70% 25%, rgba(43, 216, 196, 0.35), transparent 120px),
    #151515;
}

.goods-art-a {
  clip-path: polygon(22% 0, 78% 0, 92% 30%, 76% 42%, 76% 100%, 24% 100%, 24% 42%, 8% 30%);
}

.goods-art-b {
  min-height: 150px;
  margin-top: 42px;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--teal));
}

.goods-art-c {
  min-height: 150px;
  margin-top: 42px;
  border: 22px solid var(--teal);
  border-radius: 999px;
  background: transparent;
}

.goods-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.goods-card span {
  color: var(--text);
  font-weight: 900;
}

.link-band {
  padding: clamp(54px, 7vw, 92px) 0;
  border-block: 1px solid var(--line);
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.official-link {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(199, 13, 22, 0.28), transparent 62%),
    rgba(247, 242, 235, 0.055);
  font-weight: 900;
}

.official-link span {
  display: inline-flex;
  padding: 5px 8px;
  background: var(--text);
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.official-link strong {
  font-size: clamp(20px, 3vw, 30px);
  overflow-wrap: anywhere;
}

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

.profile-card {
  position: relative;
  display: grid;
  min-height: 390px;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  isolation: isolate;
}

.profile-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.42) 46%, rgba(5, 5, 5, 0.08) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 5px);
  content: "";
}

.profile-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 220ms ease, filter 220ms ease;
}

.profile-card > span,
.profile-card > strong {
  padding-inline: 18px;
}

.profile-card > span {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.profile-card > strong {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.profile-card:hover img,
.profile-card:focus-visible img {
  filter: grayscale(0.6) contrast(1.12);
  transform: scale(1.04);
}

.support-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.support-member-list span,
.support-member-list a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(247, 242, 235, 0.14);
  background: rgba(247, 242, 235, 0.035);
}

.support-member-list span {
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.support-member-list a:hover {
  color: var(--text);
  border-color: rgba(247, 242, 235, 0.32);
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(70px, 9vw, 110px) 0;
  scroll-margin-top: 88px;
}

.map-panel {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 340px;
  align-content: end;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, rgba(199, 13, 22, 0.28), rgba(247, 242, 235, 0.08)),
    #111;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.map-panel::before {
  position: absolute;
  inset: 18% 16% auto auto;
  width: 28px;
  height: 28px;
  border: 8px solid var(--coral);
  border-radius: 50%;
  background: var(--text);
  content: "";
}

.map-panel::after {
  position: absolute;
  inset: auto 28px 28px auto;
  width: 34px;
  height: 34px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  content: "";
  transform: rotate(45deg);
}

.map-panel span {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-panel strong {
  margin: 6px 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 0.95;
}

.map-panel small {
  max-width: 440px;
  color: var(--muted);
}

.map-panel em {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 6px 10px;
  background: var(--coral);
  color: var(--text);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.map-widget {
  display: grid;
  gap: 12px;
}

.map-options {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(199, 13, 22, 0.24), transparent 58%),
    rgba(5, 5, 5, 0.9);
}

.map-options[hidden] {
  display: none;
}

.map-options p {
  margin: 0;
  padding-right: 72px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-options div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.map-options a,
.map-options button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.map-options a {
  background: rgba(247, 242, 235, 0.08);
}

.map-options button {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  padding: 0 12px;
  background: transparent;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p,
.site-footer small {
  margin: 0;
}

@media (max-width: 820px) {
  body::before {
    opacity: 0.34;
  }

  .site-header {
    height: 62px;
    padding: 0 16px;
  }

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

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 38px;
  }

  .menu-button {
    display: block;
    width: 38px;
    height: 38px;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 9, 11, 0.99);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

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

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 48% top;
    filter: grayscale(1) contrast(1.08) brightness(0.58);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.34) 0%, rgba(5, 5, 5, 0.8) 44%, rgba(5, 5, 5, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.5));
  }

  .hero-content {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    min-height: auto;
    align-items: start;
    padding-top: 86px;
    padding-bottom: 18px;
  }

  h1 {
    max-width: none;
    margin-bottom: 10px;
    font-size: 68px;
    line-height: 0.94;
  }

  .eyebrow,
  .section-kicker,
  .section-heading p {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .lead {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-status {
    margin-bottom: 10px;
  }

  .hero-status span,
  .hero-status strong {
    min-height: 28px;
    padding: 0 8px;
    font-size: 10px;
  }

  .hero-meta {
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-meta span {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .hero-ticket-alert {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 0 12px;
  }

  .hero-beginner-guide {
    min-height: 50px;
    padding: 11px 14px 10px 16px;
  }

  .hero-soldout-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 54px;
    font-size: 13px;
    border-top: 1px solid rgba(247, 242, 235, 0.18);
    border-left: 0;
    margin: 0;
    padding: 12px 42px 12px 16px;
    text-align: left;
  }

  .hero-soldout-link::before {
    inset: 0 auto 0 0;
    width: 4px;
    height: auto;
  }

  .hero-soldout-link::after {
    right: 14px;
    bottom: auto;
  }

  .hero-soldout-link em {
    white-space: nowrap;
  }

  .hero-ticket-alert strong {
    font-size: 12px;
  }

  .hero-soldout-link strong {
    font-size: clamp(18px, 5.8vw, 22px);
  }

  .hero-ticket-alert .ticket-catch {
    font-size: clamp(14px, 4vw, 16px);
  }

  .primary-button,
  .ghost-button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

  .poster-card {
    display: none;
  }

  .countdown {
    display: grid;
    width: 100%;
    margin: -2px 0 14px;
    padding: 14px 16px;
  }

  .countdown [data-countdown] {
    font-size: 28px;
  }

  .ticker {
    display: grid;
    align-items: flex-start;
    gap: 8px;
    min-height: auto;
    padding: 12px 16px;
  }

  .ticker p {
    font-size: 12px;
    line-height: 1.55;
  }

  .section,
  .story-band,
  .access,
  .link-band {
    width: calc(100% - 32px);
  }

  .section {
    padding: 58px 0;
    scroll-margin-top: 70px;
  }

  .section.compact {
    padding-top: 58px;
  }

  .section-heading {
    display: block;
    margin-bottom: 22px;
  }

  .section-heading h2,
  .story-copy h2,
  .access h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section-heading,
  .interview-feature,
  .story-band,
  .ticket-layout,
  .goods-layout,
  .goods-grid,
  .profile-layout,
  .access,
  .news-list {
    grid-template-columns: 1fr;
  }

  .interview-section {
    padding-top: 54px;
  }

  .interview-heading {
    display: block;
    margin-bottom: 26px;
  }

  .interview-heading > div {
    text-align: left;
  }

  .interview-heading span {
    font-size: 11px;
  }

  .interview-heading h2 {
    max-width: none;
    display: grid;
    gap: 8px;
    justify-content: start;
    font-size: 54px;
    line-height: 0.9;
    white-space: normal;
  }

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

  .video-panel {
    padding: 10px;
  }

  .video-tag {
    position: static;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 8px;
    padding: 6px 8px;
    font-size: 10px;
    transform: none;
  }

  .video-frame {
    min-height: 0;
  }

  .video-caption {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: auto;
    padding-top: 12px;
  }

  .video-caption span {
    font-size: 10px;
  }

  .video-caption strong {
    font-size: 14px;
    text-align: left;
  }

  .video-caption p {
    grid-column: auto;
    font-size: 12px;
    text-align: left;
  }

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

  .interview-ticket-strip div,
  .interview-ticket-strip a {
    min-height: auto;
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 242, 235, 0.16);
  }

  .interview-ticket-strip a {
    min-height: 52px;
    border-bottom: 0;
  }

  .tour-item {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 16px;
  }

  .tour-item time strong {
    font-size: 31px;
  }

  .tour-item time span {
    font-size: 14px;
  }

  .tour-status {
    grid-column: 1;
    grid-row: 2;
    min-height: 28px;
    padding: 0 8px;
    font-size: 11px;
  }

  .tour-status.ticket-stamp {
    min-width: 78px;
    min-height: 30px;
    padding: 0;
    font-size: 11px;
    transform: rotate(-1deg);
  }

  .tour-item > a.tour-ticket-cta {
    min-height: 40px;
    font-size: 15px;
  }

  .tour-item > div:not(.tour-status) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .tour-item > a {
    grid-column: 1 / -1;
    min-height: 42px;
  }

  .tour-item h3 {
    font-size: 18px;
    line-height: 1.35;
  }

  .tour-item p {
    font-size: 13px;
  }

  .story-band {
    gap: 22px;
    padding: 58px 0;
    scroll-margin-top: 70px;
  }

  .story-copy p:last-child {
    margin-top: 16px;
    font-size: 14px;
  }

  .setlist-preview span,
  .setlist-preview strong {
    min-height: 56px;
    padding: 16px;
  }

  .setlist-preview strong {
    font-size: 22px;
  }

  .ticket-layout {
    gap: 12px;
  }

  .ticket-panel,
  .ticket-side,
  .benefits-panel,
  .goods-card,
  .goods-note,
  .goods-table-wrap {
    padding: 16px;
  }

  .ticket-tabs {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 22px;
  }

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

  .ticket-detail strong {
    font-size: 42px;
  }

  .ticket-side div {
    display: grid;
    gap: 4px;
    padding: 13px 0;
  }

  .ticket-side dd {
    text-align: left;
  }

  .text-interview-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .text-interview-card img,
  .text-interview-media,
  .text-interview-copy,
  .text-interview-cta {
    grid-column: auto;
    grid-row: auto;
  }

  .text-interview-card img,
  .text-interview-media {
    aspect-ratio: 16 / 6.4;
    max-height: 132px;
    object-position: 50% 48%;
  }

  .text-interview-title {
    font-size: clamp(18px, 5.1vw, 21px);
    line-height: 1.42;
    text-wrap: auto;
  }

  .text-interview-quote {
    font-size: 15px;
    line-height: 1.5;
  }

  .text-interview-cta {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .benefits-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .benefits-panel h3 {
    font-size: 34px;
  }

  .benefits-panel p {
    font-size: 14px;
  }

  .benefits-flow {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .benefits-flow ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-flow li {
    justify-content: center;
    padding: 0 8px;
    font-size: 12px;
    text-align: center;
  }

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

  .benefit-card {
    min-height: auto;
    padding: 16px;
  }

  .benefit-card h3 {
    font-size: 24px;
  }

  .benefit-card p,
  .benefit-card li {
    font-size: 13px;
    line-height: 1.72;
  }

  .benefits-portal {
    grid-template-columns: 1fr;
    min-height: 250px;
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.76) 66%, rgba(5, 5, 5, 0.42) 100%),
      linear-gradient(120deg, rgba(199, 13, 22, 0.2), transparent 58%),
      url("assets/benefits-hero-frame.jpg") center / cover;
  }

  .benefits-portal h3 {
    font-size: 36px;
  }

  .benefits-page-main {
    padding-top: 72px;
  }

  .benefits-detail-hero {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    min-height: auto;
    gap: 14px;
    padding: 16px;
  }

  .benefits-detail-hero::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.74) 58%, rgba(5, 5, 5, 0.94) 100%),
      repeating-linear-gradient(0deg, rgba(247, 242, 235, 0.03) 0 1px, transparent 1px 6px);
  }

  .benefits-detail-bg {
    object-position: 32% center;
  }

  .benefits-detail-copy h1 {
    margin-bottom: 12px;
    font-size: 40px;
    line-height: 1.02;
  }

  .benefits-detail-copy h1 span {
    margin-top: 8px;
    font-size: 22px;
  }

  .benefits-detail-copy p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.68;
  }

  .benefits-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .benefits-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .benefits-hero-meta div {
    min-height: auto;
    padding: 12px;
  }

  .benefits-hero-meta strong {
    font-size: 17px;
    white-space: normal;
  }

  .benefits-page-section {
    width: calc(100% - 32px);
    padding-top: 48px;
  }

  .benefits-page-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .benefits-page-heading h2 {
    font-size: 32px;
  }

  .benefits-page-heading span {
    grid-column: auto;
    font-size: 13px;
  }

  .entry-order-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .entry-order-list li {
    min-height: 88px;
    padding: 14px;
    font-size: 13px;
  }

  .entry-order-list li::after {
    top: auto;
    right: auto;
    bottom: -25px;
    left: 50%;
    content: "↓";
    transform: translateX(-50%);
  }

  .entry-order-list span {
    font-size: 17px;
  }

  .flow-movie-box {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px;
  }

  .flow-movie-thumb {
    min-height: 132px;
  }

  .flow-movie-copy h3 {
    font-size: 21px;
  }

  .flow-movie-copy p {
    font-size: 13px;
  }

  .day-flow-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    min-height: auto;
    padding: 16px;
  }

  .day-flow-meta {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .day-flow-meta time {
    font-size: 20px;
  }

  .day-flow-list p {
    font-size: 13px;
  }

  .beginner-guide-grid {
    grid-template-columns: 1fr;
  }

  .beginner-guide-grid article {
    min-height: auto;
    padding: 16px;
  }

  .beginner-guide-grid p {
    font-size: 13px;
  }

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

  .benefits-detail-card,
  .benefits-detail-card.is-wide {
    grid-column: auto;
    min-height: auto;
    padding: 17px;
  }

  .benefits-detail-card h3 {
    font-size: 25px;
  }

  .benefits-detail-card.is-entry-order h3 {
    font-size: 24px;
  }

  .entry-flow-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .entry-flow-compact li {
    min-height: 68px;
    font-size: 13px;
  }

  .entry-flow-compact li::after {
    content: none;
  }

  .entry-order-notes {
    grid-template-columns: 1fr;
  }

  .entry-order-notes p {
    font-size: 13px;
  }

  .benefits-detail-card p,
  .benefits-detail-card li {
    font-size: 13px;
    line-height: 1.72;
  }

  .benefits-goods-link {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .benefits-goods-link div,
  .benefits-goods-link strong {
    grid-column: 1 / -1;
  }

  .benefits-goods-link strong {
    width: 100%;
  }

  .goods-page-main {
    padding-top: 74px;
  }

  .goods-page-hero {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    gap: 16px;
  }

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

  .goods-page-hero h1 span {
    display: block;
    margin-top: 8px;
    font-size: 28px;
  }

  .goods-page-meta {
    padding: 14px;
  }

  .goods-summary-strip {
    grid-template-columns: 1fr;
  }

  .goods-summary-strip div {
    min-height: auto;
    padding: 13px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 242, 235, 0.16);
  }

  .goods-summary-strip div:last-child {
    border-bottom: 0;
  }

  .goods-summary-strip strong {
    font-size: clamp(20px, 7vw, 30px);
    line-height: 1.18;
  }

  .goods-portal {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .goods-portal strong {
    justify-content: center;
    width: 100%;
  }

  .goods-portal h3 {
    font-size: 32px;
  }

  .goods-note {
    min-height: auto;
  }

  .goods-note h3 {
    font-size: 42px;
  }

  .shop-board {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .merch-card-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .merch-product-card {
    grid-template-rows: 170px 1fr;
    border-radius: 6px;
  }

  .merch-product-card figure {
    height: 170px;
    padding: 10px;
  }

  .merch-product-card.is-featured figure {
    padding: 10px;
  }

  .merch-product-card.is-featured .merch-image-back {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .merch-product-card.is-text-only figure {
    height: 170px;
  }

  .merch-product-card div {
    padding: 12px;
  }

  .merch-product-card h3 {
    min-height: auto;
    font-size: 15px;
    line-height: 1.38;
  }

  .merch-product-card strong {
    font-size: 16px;
  }

  .shop-group-head {
    min-height: 58px;
    padding: 12px 12px 12px 18px;
  }

  .shop-group-head span {
    font-size: 22px;
  }

  .shop-group-head strong {
    font-size: 16px;
  }

  .shop-group.is-tee {
    grid-column: auto;
  }

  .shop-group.is-tee-feature {
    grid-column: auto;
  }

  .damn-tee-visual {
    padding: 12px;
  }

  .shop-group ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 13px 12px 14px 18px;
  }

  .shop-group:not(.is-tee) ul {
    grid-template-columns: 1fr;
  }

  .shop-group.is-other ul {
    grid-template-columns: 1fr;
  }

  .goods-table {
    min-width: 0;
  }

  .goods-table th:nth-child(2),
  .goods-table td:nth-child(2),
  .goods-table th:nth-child(4),
  .goods-table td:nth-child(4) {
    display: none;
  }

  .goods-table th,
  .goods-table td {
    padding: 16px;
  }

  .goods-table td:first-child {
    font-weight: 800;
    line-height: 1.45;
  }

  .goods-table td:nth-child(3) {
    color: var(--text);
    font-weight: 900;
    white-space: nowrap;
  }

  .link-band {
    padding: 56px 0;
  }

  .official-link {
    display: grid;
    min-height: auto;
    justify-content: stretch;
    gap: 10px;
    padding: 16px;
  }

  .official-link strong {
    font-size: 20px;
  }

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

  .profile-card {
    min-height: 260px;
  }

  .profile-card > span,
  .profile-card > strong {
    padding-inline: 12px;
  }

  .profile-card > span {
    font-size: 21px;
    white-space: normal;
  }

  .profile-card > strong {
    padding-bottom: 12px;
    font-size: 11px;
  }

  .support-member-list {
    gap: 6px;
  }

  .support-member-list span,
  .support-member-list a {
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px;
  }

  .access {
    gap: 18px;
    padding: 58px 0;
    scroll-margin-top: 70px;
  }

  .access p {
    font-size: 14px;
  }

  .map-panel {
    min-height: 260px;
    padding: 20px;
  }

  .map-panel strong {
    font-size: 37px;
  }

  .map-panel small {
    font-size: 12px;
  }

  .map-options {
    margin-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    padding: 14px;
  }

  .site-footer {
    display: grid;
    gap: 6px;
    padding: 22px 16px calc(86px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(48px, 16vw, 62px);
  }

  .lead {
    font-size: 14px;
  }

  .hero-meta span,
  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .countdown {
    width: 100%;
    margin-bottom: 18px;
  }

  .countdown [data-countdown] {
    font-size: 25px;
  }

  .goods-art {
    min-height: 190px;
  }

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

  .profile-card {
    min-height: 238px;
  }
}

@media (max-width: 430px) {
  .hero-content,
  .section,
  .story-band,
  .access,
  .link-band,
  .benefits-detail-hero,
  .benefits-page-section,
  .goods-page-hero {
    width: calc(100% - 24px);
  }

  .site-header {
    height: 64px;
    padding-inline: 12px;
  }

  .brand-logo {
    height: 36px;
  }

  .mobile-ticket-bar {
    position: fixed;
    z-index: 30;
    display: flex;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid rgba(247, 242, 235, 0.28);
    border-radius: 6px;
    background: rgba(226, 23, 32, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
    color: var(--text);
    font-weight: 900;
  }

  .mobile-ticket-bar span {
    font-size: 11px;
    line-height: 1.25;
  }

  .mobile-ticket-bar strong {
    font-size: 12px;
  }

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

  .hero-ticket-alert {
    border-color: rgba(247, 242, 235, 0.32);
  }

  .hero-beginner-guide {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    padding: 10px 12px 9px 14px;
  }

  .hero-beginner-guide .beginner-mark-label {
    width: 28px;
    height: 28px;
  }

  .hero-beginner-guide .beginner-mark-label img {
    width: 20px;
    height: 20px;
  }

  .hero-soldout-link {
    min-height: 52px;
  }

  .countdown {
    display: grid;
    justify-items: start;
    gap: 6px;
    padding: 12px;
  }

  .countdown [data-countdown] {
    font-size: clamp(21px, 7vw, 25px);
  }

  .ticker span,
  .text-interview-cta,
  .benefits-goods-link strong,
  .goods-summary-strip strong,
  .shop-group-head strong,
  .shop-price-list li strong,
  .goods-table td:nth-child(3),
  .profile-card > strong,
  .profile-card > span,
  .mobile-ticket-bar strong,
  .countdown [data-countdown] {
    white-space: normal;
  }

  .section-heading h2,
  .story-copy h2,
  .access h2 {
    font-size: clamp(28px, 10vw, 34px);
    line-height: 1.1;
  }

  .interview-heading h2 {
    font-size: clamp(42px, 14vw, 54px);
    line-height: 0.98;
  }

  .ticket-tabs,
  .entry-flow-compact,
  .benefits-flow ol,
  .merch-card-board,
  .shop-group ul,
  .profile-grid,
  .goods-grid,
  .news-list {
    grid-template-columns: 1fr;
  }

  .benefits-quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .goods-summary-strip,
  .shop-group-head,
  .merch-product-card div > span {
    width: auto;
    max-width: 100%;
  }

  .ticket-tab {
    min-height: 50px;
  }

  .ticket-detail h3 {
    font-size: clamp(28px, 10vw, 34px);
  }

  .ticket-detail strong {
    font-size: clamp(36px, 13vw, 42px);
  }

  .text-interview-card img,
  .text-interview-media {
    aspect-ratio: 16 / 8.4;
    max-height: none;
  }

  .benefits-portal h3,
  .goods-portal h3 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .benefits-detail-copy h1,
  .goods-page-hero h1 {
    font-size: clamp(40px, 13vw, 50px);
    line-height: 1;
  }

  .goods-page-hero h1 span {
    font-size: clamp(24px, 8vw, 28px);
  }

  .merch-product-card {
    grid-template-rows: minmax(180px, auto) 1fr;
  }

  .merch-product-card figure,
  .merch-product-card.is-text-only figure {
    height: 190px;
  }

  .profile-card {
    min-height: 300px;
  }

  .map-panel strong {
    font-size: clamp(28px, 10vw, 37px);
  }

  .site-footer {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 360px) {
  :root {
    --gutter: 14px;
  }

  .hero-beginner-guide {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .beginner-mark-label {
    width: 30px;
    height: 30px;
  }

  .countdown [data-countdown] {
    font-size: 20px;
    line-height: 1.2;
  }

  .ticket-detail strong,
  .benefits-detail-copy h1,
  .goods-page-hero h1 {
    font-size: clamp(38px, 14vw, 50px);
  }

  .merch-product-card div {
    padding: 12px;
  }
}

/* Mobile-first refinement layer for the public top page. */
@media (max-width: 820px) {
  html {
    scroll-padding-top: 72px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    gap: 18px;
    padding-top: 84px;
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 18vw, 78px);
    line-height: 0.92;
  }

  .lead {
    max-width: 28rem;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-meta span {
    display: flex;
    width: 100%;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-ticket-alert {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .hero-ticket-alert > a {
    min-height: 62px;
  }

  .hero-beginner-guide {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .hero-beginner-guide .beginner-mark-label {
    width: 34px;
    height: 34px;
  }

  .hero-beginner-guide .beginner-mark-label img {
    width: 24px;
    height: 24px;
  }

  .hero-ticket-alert strong {
    font-size: clamp(14px, 4.2vw, 18px);
  }

  .hero-soldout-link strong {
    font-size: clamp(23px, 7vw, 30px);
  }

  .countdown {
    margin: 0;
    border-color: rgba(247, 242, 235, 0.22);
  }

  .countdown [data-countdown] {
    font-size: clamp(26px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .ticker {
    margin-top: 0;
  }

  .section,
  .story-band,
  .access,
  .link-band {
    width: min(100% - 28px, var(--max));
    padding-block: 58px;
  }

  .section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .story-copy h2,
  .access h2 {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 1.05;
  }

  .interview-ticket-strip {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .interview-ticket-strip div,
  .interview-ticket-strip a {
    min-height: 64px;
    padding: 14px;
  }

  .video-panel,
  .text-interview-card,
  .ticket-panel,
  .ticket-side,
  .benefits-portal,
  .goods-portal,
  .map-panel {
    border-color: rgba(247, 242, 235, 0.24);
  }

  .video-caption {
    padding: 16px;
  }

  .video-caption strong {
    font-size: clamp(20px, 6.4vw, 28px);
    line-height: 1.18;
  }

  .text-interview-card {
    grid-template-columns: 1fr;
  }

  .text-interview-copy {
    padding: 20px 16px 8px;
  }

  .text-interview-title {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.22;
  }

  .tour-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 16px;
  }

  .tour-item > div:not(.tour-status) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .tour-item > a {
    grid-column: 1 / -1;
  }

  .tour-item h3 {
    font-size: clamp(18px, 5.2vw, 23px);
  }

  .tour-item p {
    font-size: 13px;
  }

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

  .ticket-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ticket-tab:first-child {
    grid-column: 1 / -1;
  }

  .ticket-detail h3 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.05;
  }

  .ticket-detail strong {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 1;
  }

  .ticket-side dl {
    gap: 0;
  }

  .ticket-side dl > div {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .benefits-portal,
  .goods-portal {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .benefits-portal h3,
  .goods-portal h3 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.08;
  }

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

@media (min-width: 821px) {
  .hero-content {
    min-height: 96svh;
  }

  .section-heading {
    align-items: end;
  }
}
