:root {
  --ink: #071019;
  --navy: #091b2b;
  --indigo: #102a43;
  --paper: #f2efe7;
  --paper-strong: #fffdf7;
  --muted: #6a7279;
  --line: rgba(12, 28, 41, 0.16);
  --red: #df2d24;
  --red-dark: #b6231c;
  --blue: #278bd2;
  --gold: #c49a55;
  --max: 1220px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: Inter, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

main > section[id] { scroll-margin-top: 74px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: white;
  color: black;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 34px;
  color: white;
  background: linear-gradient(180deg, rgba(2, 8, 14, .88), rgba(2, 8, 14, .32));
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header[data-elevated="true"] {
  background: rgba(5, 15, 24, .96);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.brand { display: inline-flex; align-items: center; width: 128px; }
.brand img { display: block; }

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.site-nav a,
.site-footer a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
}

.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }

.language-tabs {
  display: flex;
  justify-self: end;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: rgba(2,8,14,.45);
}
.language-tabs a {
  min-width: 48px;
  padding: 8px 10px;
  border-radius: 3px;
  color: rgba(255,255,255,.7);
  text-align: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
  transition: color .2s ease, background .2s ease;
}
.language-tabs a:hover,
.language-tabs a:focus-visible { color: white; }
.language-tabs a[aria-current="page"] { color: white; background: var(--red); }

.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  display: grid;
  align-items: end;
  color: white;
  isolation: isolate;
}

.hero-photo,
.hero-shade,
.hero-lines { position: absolute; inset: 0; height: 100%; }

.hero-photo { object-fit: cover; object-position: center; z-index: -4; }

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2,9,16,.94) 0%, rgba(2,9,16,.78) 42%, rgba(2,9,16,.24) 73%, rgba(2,9,16,.48) 100%),
    linear-gradient(0deg, rgba(2,9,16,.9) 0%, rgba(2,9,16,.06) 55%, rgba(2,9,16,.48) 100%);
}

.hero-lines {
  z-index: -2;
  opacity: .6;
  background:
    linear-gradient(151deg, transparent 0 75%, rgba(223,45,36,.9) 75.15% 75.45%, transparent 75.6%),
    linear-gradient(160deg, transparent 0 70%, rgba(39,139,210,.75) 70.1% 70.34%, transparent 70.5%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 140px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 90px;
  align-items: end;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-kicker { color: white; opacity: .92; }

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 8.2vw, 124px);
  line-height: .83;
  letter-spacing: -.065em;
  font-weight: 900;
}
.hero h1 span { display: block; }

.hero-message {
  margin: 38px 0 8px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: .04em;
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
}

.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { border-color: rgba(255,255,255,.45); color: white; background: rgba(0,0,0,.16); }
.button-light { background: var(--paper-strong); color: var(--ink); }

.hero-facts {
  border-top: 3px solid var(--red);
  background: rgba(6, 20, 32, .86);
  backdrop-filter: blur(10px);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
}
.hero-facts > p { margin: 0 0 6px; color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .14em; }
.hero-facts > strong { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; font-size: 28px; line-height: 1.1; }
.hero-facts > strong span { color: var(--red); }
.hero-facts small { font-size: 11px; letter-spacing: .08em; }
.hero-facts dl { margin: 28px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-facts dl div { display: grid; grid-template-columns: 54px 1fr; gap: 12px; margin-top: 14px; }
.hero-facts dt { color: rgba(255,255,255,.5); font-size: 11px; }
.hero-facts dd { margin: 0; font-weight: 700; line-height: 1.45; }
.hero-caption { position: absolute; right: 24px; bottom: 18px; margin: 0; font-size: 10px; color: rgba(255,255,255,.55); }

.venue-scale {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  background: var(--paper-strong);
}

.venue-scale-copy { padding: clamp(56px, 6.5vw, 96px) max(40px, calc((100vw - var(--max)) / 2)); padding-right: clamp(48px, 6vw, 98px); }

.venue-scale h2,
.section-heading h2,
.movie-copy h2,
.results-content h2,
.access-heading h2,
.tocj-about h2,
.updates h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.35;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.nb { white-space: nowrap; }
h1 .nb, h2 .nb, h3 .nb, .question-text .nb, .hero-message .nb,
.highlight-card h3 .nb, .hero-facts strong .nb { color: inherit; font-size: inherit; font-weight: inherit; letter-spacing: inherit; }

.venue-intro { margin: 22px 0 26px; max-width: 650px; font-size: 18px; }

.hall-comparison { display: grid; gap: 14px; margin: 28px 0; }
.hall-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: center; }
.hall-row > div:first-child { display: grid; line-height: 1.35; }
.hall-row > div:first-child span { color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.hall-row > div:first-child strong { font-size: 14px; }
.hall-bar { display: flex; align-items: center; padding: 0 16px; height: 42px; background: #9ca4aa; color: white; font-weight: 900; }
.hall-row-2025 .hall-bar { width: 50%; }
.hall-row-2026 .hall-bar { width: 100%; height: 58px; background: var(--red); font-size: 22px; }

.venue-numbers { display: flex; flex-wrap: wrap; gap: 24px 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.venue-numbers div { display: grid; grid-template-columns: auto auto; align-items: baseline; }
.venue-numbers strong { font-size: clamp(48px, 5vw, 78px); line-height: 1; letter-spacing: -.06em; }
.venue-numbers span { color: var(--red); font-size: 22px; font-weight: 900; }
.venue-numbers small { grid-column: 1 / -1; margin-top: 8px; color: var(--muted); font-size: 12px; }

.venue-visual { position: relative; margin: 0; min-height: 540px; background: var(--navy); overflow: hidden; }
.venue-visual img { height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.venue-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,12,20,.88), transparent 58%); }
.venue-visual figcaption { position: absolute; z-index: 2; left: 42px; right: 42px; bottom: 38px; display: grid; color: white; }
.venue-visual figcaption span { font-size: 12px; letter-spacing: .16em; }
.venue-visual figcaption strong { font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); }
.venue-visual figcaption small { color: rgba(255,255,255,.66); }

.section { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; padding: 84px 0; }
.section-heading { max-width: 900px; margin-bottom: 38px; }
.section-heading h2 { font-size: clamp(28px, 3.2vw, 44px); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr 350px; gap: 60px; align-items: end; }
.split-heading > p { margin: 0 0 6px; color: var(--muted); }

.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; }
.intro-copy { font-size: 18px; }
.intro-copy p { margin: 0 0 24px; }
.welcome-card { align-self: start; padding: 42px; background: var(--navy); color: white; border-top: 4px solid var(--red); }
.welcome-card > p { margin: 0 0 24px; font-family: var(--serif); font-size: 25px; font-weight: 700; }
.welcome-card ul { margin: 0; padding: 0; list-style: none; }
.welcome-card li { position: relative; padding: 15px 0 15px 28px; border-top: 1px solid rgba(255,255,255,.13); }
.welcome-card li::before { content: "○"; position: absolute; left: 0; color: var(--red); }

.movie-section { display: grid; grid-template-columns: .72fr 1.28fr; background: var(--ink); color: white; }
.movie-copy { padding: clamp(56px, 6.5vw, 92px) max(40px, calc((100vw - var(--max)) / 2)); padding-right: clamp(40px, 5vw, 80px); }
.movie-copy h2 { font-size: clamp(28px, 3.2vw, 44px); }
.movie-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.text-link { display: inline-block; margin-top: 18px; color: white; text-decoration-color: var(--red); text-underline-offset: 7px; font-weight: 800; }

.youtube-card { position: relative; aspect-ratio: 16 / 9; min-height: 0; overflow: hidden; cursor: pointer; background: black; }
.youtube-card > img { height: 100%; object-fit: cover; opacity: .88; transition: transform .4s ease, opacity .4s ease; }
.youtube-card:hover > img { transform: scale(1.025); opacity: 1; }
.youtube-card iframe { width: 100%; height: 100%; border: 0; }
.play-button { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 90px; height: 90px; border: 0; border-radius: 50%; background: var(--red); color: white; font-size: 26px; cursor: pointer; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.play-button span { display: block; transform: translateX(3px); }

.highlight-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.highlight-card { position: relative; min-height: 280px; overflow: hidden; }
.highlight-photo { grid-column: span 6; color: white; background: var(--navy); }
.highlight-photo img { height: 100%; object-fit: cover; }
.highlight-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(1,9,15,.9), transparent 65%); }
.highlight-photo > div { position: absolute; z-index: 2; inset: auto 28px 25px; }
.highlight-card span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.highlight-card h3 { margin: 2px 0 2px; font-family: var(--serif); font-size: 28px; }
.highlight-card p { margin: 0; }
.highlight-text { grid-column: span 6; padding: 42px; min-height: 250px; border: 1px solid var(--line); background: var(--paper-strong); }
.highlight-text p { margin: 12px 0 24px; max-width: 480px; }
.highlight-text small { color: var(--muted); }
.international-card { color: white; background: var(--indigo); border-color: transparent; }
.international-card small { color: rgba(255,255,255,.65); }

.results-section { display: grid; grid-template-columns: 1fr 1fr; color: white; background: var(--navy); }
.results-photo { position: relative; min-height: 540px; }
.results-photo img { height: 100%; object-fit: cover; }
.results-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,20,32,.7), transparent 55%); }
.results-photo p { position: absolute; z-index: 2; left: 28px; bottom: 18px; margin: 0; font-size: 11px; letter-spacing: .12em; }
.results-content { padding: clamp(56px, 5.5vw, 84px); }
.results-content h2 { font-size: clamp(28px, 3.2vw, 44px); }
.results-lead { max-width: 680px; margin: 20px 0 0; color: rgba(255,255,255,.72); line-height: 1.8; }
.result-numbers { display: grid; grid-template-columns: 1fr 1fr; margin-top: 32px; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.result-numbers article { display: grid; padding: 24px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.result-numbers strong { font-size: clamp(34px, 4vw, 54px); line-height: 1.1; }
.result-numbers span { color: rgba(255,255,255,.62); font-size: 13px; }
.survey-note { color: rgba(255,255,255,.45); font-size: 11px; }
.voice-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.voice-list blockquote { margin: 0; padding: 34px; border-right: 1px solid rgba(255,255,255,.16); font-family: var(--serif); line-height: 1.9; }
.voice-list blockquote::before { content: "“"; display: block; color: var(--red); font-size: 40px; line-height: .8; }

.partners { padding-top: 72px; padding-bottom: 72px; }
.partner-placeholders { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partner-placeholders span { min-height: 130px; display: grid; place-items: center; border: 1px solid var(--line); color: #a4a6a2; background: rgba(255,255,255,.28); font-size: 11px; letter-spacing: .16em; }

.access-section { padding: 84px max(32px, calc((100vw - var(--max)) / 2)); color: white; background: var(--ink); }
.access-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 80px; margin-bottom: 42px; }
.access-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -8px; }
.access-heading h2 { font-size: clamp(30px, 3.4vw, 46px); }
.access-heading > p:last-child { align-self: end; margin: 0; color: rgba(255,255,255,.65); font-size: 18px; }
.access-grid { display: grid; grid-template-columns: 1.15fr .9fr .9fr; gap: 1px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.15); }
.access-grid article { padding: clamp(30px, 3.4vw, 50px); background: var(--navy); }
.access-grid article > span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.access-grid h3 { margin: 10px 0 18px; font-family: var(--serif); font-size: 30px; line-height: 1.18; }
.access-main { background: var(--red) !important; }
.access-main > span { color: white !important; opacity: .7; }
.access-main h3 { margin: 18px 0 4px; font-family: var(--sans); font-size: clamp(34px, 4vw, 52px); letter-spacing: -.05em; }
.access-main > strong { display: block; margin-bottom: 32px; font-family: var(--serif); font-size: 26px; }
.access-main address { margin-bottom: 30px; font-style: normal; color: rgba(255,255,255,.76); }
.access-route dl { margin: 0; }
.access-route dl div { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.14); }
.access-route dt { color: rgba(255,255,255,.54); font-size: 12px; }
.access-route dd { margin: 2px 0 0; font-weight: 700; }
.access-route > p { color: rgba(255,255,255,.62); font-size: 13px; }
.access-route ul { margin: 0; padding: 0; list-style: none; }
.access-route li { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; }

.tocj-about { display: block; }
.tocj-about-heading { max-width: 760px; margin-bottom: 46px; }
.tocj-about-body { display: grid; grid-template-columns: 132px minmax(0, 760px); gap: 48px; align-items: start; }
.tocj-about-logo { width: 132px; margin: 0; }
.tocj-about h2 { font-size: clamp(28px, 3.2vw, 44px); }
.tocj-about-copy { font-size: 18px; }
.tocj-about-copy p:first-child { margin-top: 0; }

.updates { padding: 110px 32px; text-align: center; color: white; background: var(--indigo); position: relative; }
.updates::before { content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 48px; background: var(--red); }
.updates h2 { font-size: clamp(42px, 5vw, 68px); }
.updates > p:not(.eyebrow):not(.form-status) { color: rgba(255,255,255,.67); }
.updates-form { max-width: 650px; margin: 32px auto 0; display: grid; grid-template-columns: 1fr auto; }
.updates-form input { min-width: 0; padding: 16px 18px; border: 1px solid rgba(255,255,255,.3); border-right: 0; color: white; background: rgba(0,0,0,.16); outline: none; }
.updates-form input:focus { border-color: white; }
.updates-form button { border: 0; padding: 0 24px; color: white; background: var(--red); font-weight: 800; cursor: pointer; }
.form-status { min-height: 1.8em; color: #ffd8d5; font-size: 13px; }

.site-footer { min-height: 190px; display: grid; grid-template-columns: 120px 1fr auto; gap: 30px 48px; align-items: center; padding: 48px max(32px, calc((100vw - var(--max)) / 2)); color: rgba(255,255,255,.72); background: #03090e; }
.site-footer > img { width: 84px; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer small { grid-column: 2 / -1; color: rgba(255,255,255,.36); }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .site-nav { position: fixed; inset: 74px 0 auto; display: none; padding: 24px 32px; align-items: stretch; background: rgba(5,15,24,.98); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 10px 0; }
  .menu-button { display: grid; gap: 4px; width: 42px; height: 42px; place-content: center; border: 0; background: transparent; cursor: pointer; }
  .menu-button > span:not(.sr-only) { width: 22px; height: 2px; background: white; }
  .language-tabs { justify-self: end; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero-facts { max-width: 520px; }
  .venue-scale { grid-template-columns: minmax(0, 1fr); }
  .venue-scale-copy { padding-left: max(32px, calc((100vw - 780px) / 2)); padding-right: max(32px, calc((100vw - 780px) / 2)); }
  .venue-visual { min-height: 560px; }
  .movie-section { grid-template-columns: minmax(0, 1fr); }
  .movie-copy { padding-left: max(32px, calc((100vw - 780px) / 2)); padding-right: max(32px, calc((100vw - 780px) / 2)); }
  .results-section { grid-template-columns: minmax(0, 1fr); }
  .results-photo { min-height: 520px; }
  .voice-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .access-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .access-main { grid-row: span 2; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  main > section[id] { scroll-margin-top: 64px; }
  .site-header {
    position: sticky;
    inset: auto;
    top: 0;
    height: 64px;
    padding: 0 18px;
    gap: 12px;
    background: rgba(5,15,24,.96);
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
  }
  .brand { width: 112px; }
  .site-nav { top: 64px; }
  .language-tabs { padding: 2px; }
  .language-tabs a { min-width: 41px; padding: 8px 7px; font-size: 10px; }
  .hero {
    display: block;
    min-height: 0;
    padding: 0 18px 42px;
    background: linear-gradient(180deg, #05070a 0%, #071019 100%);
  }
  .hero-photo {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    width: calc(100% + 36px);
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 -18px 28px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    background: #000;
    object-fit: contain;
    object-position: center center;
  }
  .hero-shade,
  .hero-lines { display: none; }
  .hero-inner { width: 100%; padding: 0; }
  .hero h1 { font-size: clamp(38px, 12vw, 56px); letter-spacing: -.05em; }
  .hero-message { margin-top: 28px; }
  .hero-caption { display: none; }
  .hero-facts { padding: 22px; }
  .hero-facts > strong { font-size: 24px; }
  .venue-scale-copy { padding: 58px 20px; }
  .venue-scale h2 { font-size: 28px; }
  .venue-intro { font-size: 16px; }
  .hall-row { grid-template-columns: 94px 1fr; }
  .venue-numbers { gap: 24px; }
  .venue-numbers strong { font-size: 48px; }
  .venue-visual { min-height: 440px; }
  .venue-visual figcaption { left: 22px; right: 22px; bottom: 22px; }
  .section { width: calc(100% - 40px); padding: 60px 0; }
  .section-heading { margin-bottom: 38px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .intro-grid { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .intro-copy { font-size: 16px; }
  .welcome-card { padding: 28px; }
  .movie-copy { padding: 56px 20px; }
  .play-button { width: 70px; height: 70px; }
  .highlight-grid { grid-template-columns: minmax(0, 1fr); }
  .highlight-photo,
  .highlight-text { grid-column: auto; }
  .highlight-photo { min-height: 330px; }
  .results-photo { min-height: 410px; }
  .results-content { padding: 54px 20px; }
  .voice-list { grid-template-columns: minmax(0, 1fr); }
  .voice-list blockquote { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .partner-placeholders { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .access-section { padding: 60px 20px; }
  .access-heading { grid-template-columns: 1fr; gap: 24px; }
  .access-heading .eyebrow { grid-column: auto; }
  .access-grid { grid-template-columns: minmax(0, 1fr); }
  .access-main { grid-row: auto; }
  .tocj-about-heading { margin-bottom: 34px; }
  .tocj-about-body { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .tocj-about-logo { width: 96px; }

  .updates-form { grid-template-columns: 1fr; gap: 10px; }
  .updates-form input { border-right: 1px solid rgba(255,255,255,.3); }
  .updates-form button { min-height: 52px; }
  .site-footer { grid-template-columns: 1fr; gap: 20px; }
  .site-footer small { grid-column: auto; }
}

/* ===== ORIGIN — X TAKEOVERとは ===== */
.origin { color: white; background: var(--ink); }
.origin-inner {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(60px, 7vw, 96px) 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(48px, 6vw, 100px);
}
.origin h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.45;
  letter-spacing: -.02em;
}
.origin-copy p:not(.eyebrow) { margin: 0 0 20px; max-width: 620px; color: rgba(255,255,255,.82); font-size: 17px; }
.origin-copy strong { color: white; }
.origin-copy p a { text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; }
.origin-timeline {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid rgba(255,255,255,.22);
}
.origin-timeline li { position: relative; display: grid; padding: 22px 0 22px 30px; }
.origin-timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 32px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}
.origin-timeline span { font-size: 11px; font-weight: 900; letter-spacing: .16em; color: rgba(255,255,255,.5); }
.origin-timeline strong { font-size: 20px; letter-spacing: .02em; }
.origin-timeline small { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; }
.origin-timeline .is-japan { border-top: 0; }
.origin-timeline .is-japan::before { background: var(--red); box-shadow: 0 0 0 5px rgba(223,45,36,.22); }
.origin-timeline .is-japan span { color: var(--red); }
.origin-timeline .is-japan strong { font-family: var(--serif); font-size: 24px; }

/* ===== TWO DAYS — 前夜祭と本祭 ===== */
.two-days { background: var(--paper); }
.two-days-inner { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; padding: clamp(60px, 7vw, 88px) 0; }
.two-days-heading h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -.03em;
}
.day-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.day-card { display: grid; align-content: start; padding: clamp(28px, 3.2vw, 42px); }
.day-card .day-date { font-size: clamp(28px, 3vw, 40px); font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.day-card .day-date small { font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.day-card h3 { margin: 16px 0 12px; font-family: var(--serif); font-size: clamp(26px, 2.6vw, 36px); }
.day-card p { margin: 0 0 22px; max-width: 460px; }
.day-eve { color: white; background: var(--navy); border-top: 4px solid var(--gold); }
.day-eve .day-date { color: var(--gold); }
.day-eve p { color: rgba(255,255,255,.8); }
.day-eve small { color: rgba(255,255,255,.55); }
.day-main { background: var(--paper-strong); border-top: 4px solid var(--red); box-shadow: 0 18px 44px rgba(12,28,41,.08); }
.day-main .day-date { color: var(--red); }
.day-main small { color: var(--muted); }

/* ===== FOR INTERNATIONAL GUESTS ===== */
.intl { position: relative; background: var(--paper-strong); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intl-inner { width: min(860px, calc(100% - 64px)); margin: 0 auto; padding: clamp(60px, 7vw, 92px) 0; }
.intl h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -.01em; }
.intl p:not(.eyebrow) { margin: 0 0 18px; font-size: 17px; line-height: 1.9; }
.intl em { font-family: var(--serif); }
.intl-tagline { margin-top: 30px !important; color: var(--red); font-size: 19px !important; }
.intl small { color: var(--muted); }
.intl-vertical {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: clamp(90px, 10vw, 150px);
  line-height: 1;
  color: rgba(223,45,36,.1);
  user-select: none;
}

/* ===== 問いの帯 ===== */
.question-band {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(64px, 8vw, 96px) 24px;
  background: var(--paper);
  text-align: center;
}
.question-stroke {
  width: min(520px, 74%);
  mix-blend-mode: multiply;
  opacity: .85;
  margin-bottom: -26px;
}
.question-text {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: .06em;
}
.question-sub { margin: 14px 0 0; color: var(--muted); font-size: 14px; font-family: var(--serif); font-style: italic; }

/* ===== 見どころ: スケッチカード ===== */
.highlight-sketch img { filter: none; }
.highlight-sketch::after { background: linear-gradient(0deg, rgba(1,9,15,.92) 0%, rgba(1,9,15,.55) 34%, rgba(1,9,15,.08) 62%, transparent 78%); }
.highlight-sketch .sketch-note {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 16px;
  padding: 3px 10px;
  color: var(--ink);
  background: rgba(255,253,247,.85);
  font-size: 10px;
  letter-spacing: .06em;
}

/* ===== ヒーロー: キービジュアル ===== */
.hero-kv {
  width: 100%;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.16);
}
/* ===== 日本の迎え方（門・道・間・縁） ===== */
.omotenashi {
  position: relative;
  color: #f7f3ea;
  background:
    radial-gradient(circle at 82% 12%, rgba(39,139,210,.12), transparent 34%),
    linear-gradient(145deg, #071019 0%, #0a1a28 58%, #04090e 100%);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.omotenashi-inner { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; padding: clamp(60px, 7vw, 92px) 0; }
.omotenashi h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  text-wrap: balance;
  letter-spacing: -.02em;
}
.omotenashi-lead { margin: 0 0 32px; max-width: 760px; font-size: 17px; }
.story-premise { max-width: 820px; margin: 0 0 40px; }
.story-premise p { margin: 0 0 16px; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.95; }
.story-premise strong { color: white; }
.story-closing {
  max-width: 820px;
  margin: 40px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 2;
}
.story-closing strong { color: white; }
.kanji-num {
  color: #ff71d1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-shadow: 0 0 10px rgba(255,65,190,.72);
}
.kanji-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.kanji-grid article {
  position: relative;
  overflow: hidden;
  padding: 0 0 26px;
  background: linear-gradient(180deg, rgba(255,54,181,.09), rgba(5,13,22,.92) 58%);
  border: 1px solid rgba(255,75,196,.82);
  box-shadow:
    0 0 0 1px rgba(255,50,181,.16),
    0 0 22px rgba(255,35,174,.25),
    inset 0 0 28px rgba(255,39,178,.08),
    0 20px 44px rgba(0,0,0,.28);
}
.kanji-grid article::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 2px;
  background: #ff83dc;
  box-shadow: 0 0 12px #ff3dbd, 0 0 24px rgba(255,61,189,.78);
}
.kanji-grid img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; border-bottom: 1px solid rgba(255,75,196,.62); }
.kanji-caption { display: flex; align-items: baseline; gap: 10px; padding: 18px 22px 0; }
.kanji-grid strong {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  color: white;
  text-shadow: 0 0 14px rgba(255,68,194,.34);
}
.kanji-grid h3 { margin: 0; color: #ff71d1; font-size: 12px; font-weight: 800; letter-spacing: .22em; text-shadow: 0 0 10px rgba(255,65,190,.58); }
.kanji-grid p { margin: 10px 22px 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.9; }
.kanji-note { margin: 18px 0 0; color: var(--muted); font-size: 11px; }

/* ===== SNS（更新情報の代替） ===== */
.sns-section { padding: clamp(60px, 7.5vw, 88px) 32px; text-align: center; color: white; background: var(--indigo); position: relative; }
.sns-section::before { content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 48px; background: var(--red); }
.sns-section h2 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); }
.sns-section > p:not(.eyebrow) { max-width: 640px; margin: 18px auto 0; color: rgba(255,255,255,.7); }
.sns-links { display: flex; justify-content: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.sns-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 26px;
  border: 1px solid rgba(255,255,255,.4);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease;
}
.sns-links a:hover, .sns-links a:focus-visible { background: rgba(255,255,255,.1); border-color: white; }
.footer-sns { display: flex; gap: 18px; margin-top: 6px !important; }
.footer-sns a { text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.55); }
.footer-sns a:hover { color: white; }

/* ===== 会場比較の面積表記 ===== */
.hall-row > div:first-child em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--muted); }

@media (max-width: 1000px) {
  .origin-inner { grid-template-columns: minmax(0, 1fr); }
  .day-cards { grid-template-columns: minmax(0, 1fr); }
  .intl-vertical { display: none; }
  .kanji-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .origin-inner { width: calc(100% - 40px); }
  .two-days-inner { width: calc(100% - 40px); }
  .intl-inner { width: calc(100% - 40px); }
  .origin-timeline strong { font-size: 17px; }
  .day-card { min-height: 0; }
  .question-stroke { margin-bottom: -16px; }
  .omotenashi-inner { width: calc(100% - 40px); }
  .kanji-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-sns { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
