/* ════════════════════════════════════════════
   @font-face — ローカルフォント優先
   ════════════════════════════════════════════ */
@font-face {
  font-family: 'Local Noto Sans JP';
  src: local('Noto Sans JP'), local('Noto Sans CJK JP Regular');
  font-display: swap;
}
@font-face {
  font-family: 'Local Noto Serif JP';
  src: local('Noto Serif JP'), local('Noto Serif CJK JP');
  font-display: swap;
}

/* ════════════════════════════════════════════
   Custom Properties
   ════════════════════════════════════════════ */
:root {
  --cream: #faf7f2;
  --cream-deep: #f0e8dd;
  --night: #1c1714;
  --night-soft: #2a2320;

  --ink: #2d2522;
  --ink-mid: #6b5f55;
  --ink-light: #847868;
  --on-dark: #f5f0ea;
  --on-dark-mid: rgba(245,240,234,0.72);

  --terra: #c75d2a;
  --terra-dark: #a84d1e;
  --terra-glow: rgba(199,93,42,0.35);
  --gold: #c4a265;
  --gold-glow: rgba(196,162,101,0.25);
  --amber: #d4943a;

  --green: #4CAF50;
  --green-dark: #43A047;
  --green-glow: rgba(76,175,80,0.30);

  --ff-display: 'Local Noto Serif JP', 'Noto Serif JP', serif;
  --ff-serif: 'Local Noto Serif JP', 'Noto Serif JP', serif;
  --ff-body: 'Local Noto Sans JP', 'Noto Sans JP', sans-serif;

  --wrap: 1080px;
  --narrow: 700px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --sec-py: clamp(4.5rem, 10vw, 7rem);
  --sec-py-sm: clamp(3rem, 7vw, 4.5rem);

  --shadow-soft: 0 4px 20px rgba(45,37,34,0.06);
  --shadow-mid: 0 8px 32px rgba(45,37,34,0.08);
  --shadow-lift: 0 12px 40px rgba(45,37,34,0.1);
}

/* ════════════════════════════════════════════
   Reset
   ════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  overflow-wrap: anywhere;
  line-break: strict;
  text-autospace: normal;
  text-spacing-trim: trim-start;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink);
  background: var(--cream);
  font-kerning: none;
  -webkit-font-smoothing: antialiased;
}
/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: multiply;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
strong { font-weight: 700; }
pre, time { text-autospace: no-autospace; }

/* ════════════════════════════════════════════
   Japanese Typography
   ════════════════════════════════════════════ */
:is(h1, h2, h3, h4, h5, h6):lang(ja) {
  font-feature-settings: "palt";
  font-kerning: normal;
}
@supports (word-break: auto-phrase) {
  :is(h1, h2, h3, h4, h5, h6):lang(ja) {
    word-break: auto-phrase;
    text-wrap: balance;
  }
}
:lang(ja) em {
  font-weight: bolder;
}
:is(address, i, cite, em, dfn):lang(ja) {
  font-style: unset;
}
/* hanging-punctuation — 行末の句読点・閉じ括弧をぶら下げ */
p:lang(ja) {
  hanging-punctuation: last allow-end;
}
@supports (text-box-trim: trim-both) {
  .trim { text-box-trim: trim-both; text-box-edge: text; }
}

/* ════════════════════════════════════════════
   Layout
   ════════════════════════════════════════════ */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.narrow {
  max-width: var(--narrow);
  margin-inline: auto;
}

/* ════════════════════════════════════════════
   Skip Link
   ════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--terra);
  color: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ════════════════════════════════════════════
   Navigation
   ════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
  padding: 0.8rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.4s;
}
.nav.scrolled .nav-logo { color: var(--ink); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.nav.scrolled .nav-link { color: var(--ink-mid); }
.nav-link:hover { color: #fff; }
.nav.scrolled .nav-link:hover { color: var(--ink); }
.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  border: 1.5px solid rgba(196,162,101,0.5);
  padding: 0.45rem 1.2rem;
  border-radius: 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 12px var(--gold-glow);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 110;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav.scrolled .hamburger span { background: var(--ink); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(28,23,20,0.96);
  backdrop-filter: blur(24px) saturate(0.8);
  -webkit-backdrop-filter: blur(24px) saturate(0.8);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--on-dark);
  text-decoration: none;
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity 0.4s, transform 0.4s, filter 0.4s, color 0.2s;
  letter-spacing: 0.03em;
}
.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.mobile-menu.active a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.23s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.28s; }
.mobile-menu a:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   Buttons
   ════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.15;
  padding: 1.05rem 2.4rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
  background: linear-gradient(160deg, #56b85a 0%, var(--green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px var(--green-glow);
}
.btn-outline {
  border: 1.5px solid rgba(76,175,80,0.35);
  color: var(--green-dark);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(76,175,80,0.06);
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(76,175,80,0.1);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--on-dark);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-nav {
  border: 1.5px solid rgba(196,162,101,0.35);
  color: var(--gold);
  background: transparent;
}
.btn-nav:hover {
  background: rgba(196,162,101,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.btn-nav-dark {
  border: 1.5px solid rgba(196,162,101,0.25);
  color: var(--gold);
  background: transparent;
}
.btn-nav-dark:hover {
  background: rgba(196,162,101,0.08);
  border-color: rgba(196,162,101,0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.btn-gold-fill {
  background: linear-gradient(160deg, var(--gold) 0%, #b8944e 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-gold-fill:hover {
  background: linear-gradient(160deg, #d0af72 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-gold-fill:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px var(--gold-glow);
}
.btn-sm {
  font-size: 0.8125rem;
  padding: 0.75rem 1.7rem;
}

/* ════════════════════════════════════════════
   Hero
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 40% at 50% 38%, rgba(199,93,42,0.12) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(28,23,20,0.4) 0%, rgba(28,23,20,0.6) 60%, rgba(28,23,20,0.75) 100%),
    url('/images/hero-bg.png') center/cover no-repeat;
  background-color: var(--night);
  color: var(--on-dark);
  overflow: hidden;
  padding: 6rem var(--gutter) 4rem;
}
/* Subtle vertical piano-key-like lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 80px
  );
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.3), transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}
/* Warm spotlight glow from above */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,162,101,0.08) 0%, rgba(199,93,42,0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}
/* Bottom vignette transition */
.hero > .hero-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(196,162,101,0.4);
  padding: 0.5rem 1.6rem;
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.1s both;
  background: rgba(196,162,101,0.1);
  text-shadow: 0 0 20px rgba(196,162,101,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-badge-deadline {
  opacity: 0.85;
  margin-left: 0.25em;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.hero-badge-deadline::before {
  content: '·';
  margin-right: 0.35em;
}
.hero-catch {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 8.5vw, 5.8rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.9s 0.25s both;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,234,0.9);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.45s both;
  letter-spacing: 0.06em;
}
.hero-event {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(245,240,234,0.82);
  margin-bottom: 0.5rem;
  animation: fadeUp 0.8s 0.6s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-event em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(245,240,234,0.85);
  margin-left: 0.15em;
}
.hero-meta {
  font-size: 0.9375rem;
  color: rgba(245,240,234,0.82);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s 0.7s both;
}
.hero-meta time {
  font-family: var(--ff-display);
  letter-spacing: 0.06em;
}
.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.85s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
/* Decorative line under hero */
.hero-line {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196,162,101,0.4), transparent);
  animation: fadeUp 1.2s 1.2s both;
}

/* ════════════════════════════════════════════
   Section Commons
   ════════════════════════════════════════════ */
.sec-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.sec-label {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ink-light);
  margin-bottom: 0.85rem;
}
.sec-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.9;
  color: var(--ink-mid);
  max-width: 620px;
}
.text-center { text-align: center; text-wrap: balance; }
.mx-auto { margin-inline: auto; }

/* ════════════════════════════════════════════
   Concept
   ════════════════════════════════════════════ */
.concept {
  padding-block: var(--sec-py);
  background: var(--cream);
  position: relative;
}
.concept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(28,23,20,0.03), transparent);
  pointer-events: none;
}
.concept-lead {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: center;
  text-wrap: balance;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.fears {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 2rem;
  max-width: 620px;
}
.fears span {
  font-family: var(--ff-serif);
  font-size: 0.9375rem;
  color: var(--ink-mid);
  background: rgba(0,0,0,0.025);
  padding: 0.55rem 1.2rem;
  border-radius: 2rem;
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.fears span:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.06);
}
.concept-bridge {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--ink-mid);
  margin-bottom: 2.5rem;
}
.concept-transition {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.concept-transition .hl {
  color: var(--terra);
  font-weight: 700;
}
.concept-body {
  font-size: 1rem;
  line-height: 2;
  color: var(--ink-mid);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
/* Data Annotation — Concept 用ヒーロー数字 */
.concept-proofs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 520px;
  margin: 2.5rem auto 3rem;
  text-align: center;
}
.data-proof {
  padding: 1.5rem 1rem;
}
.data-proof:first-child {
  border-right: 1px solid rgba(0,0,0,0.07);
}
.data-proof-num {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--terra);
  letter-spacing: -0.02em;
}
.data-proof-num small {
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: 0.15em;
  margin-left: 0.05em;
}
.data-proof-body {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-mid);
  margin-top: 0.5rem;
  text-wrap: balance;
}
.concept-proofs-note {
  grid-column: 1 / -1;
  font-size: 0.6875rem;
  color: var(--ink-light);
  letter-spacing: 0.02em;
  padding-top: 0.75rem;
}
/* Inline Annotation — pricing / CTA 用テキスト注釈 */
.inline-note {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-mid);
  text-wrap: balance;
}
.inline-note strong {
  font-weight: 600;
  color: var(--ink);
}
.metric-period {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}
.concept-impact {
  margin-bottom: 0;
}

/* ════════════════════════════════════════════
   Stories
   ════════════════════════════════════════════ */
.stories {
  padding-block: var(--sec-py-sm);
  background: var(--cream);
  position: relative;
}
.stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}
.stories-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.story {
  max-width: 660px;
  margin: 0 auto;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.story:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.story-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-indent: hanging 0.5em;
}
.story-quote {
  font-size: 1.0625rem;
  line-height: 2;
  color: var(--ink-mid);
  margin-bottom: 1rem;
}
.story-attr {
  font-size: 0.8125rem;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}

/* Voices — horizontal scroll */
.voices-section {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  position: relative;
}
.voices-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  mask-image: linear-gradient(to right, transparent 0, black 1rem, black calc(100% - 3rem), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 1rem, black calc(100% - 3rem), transparent);
}
.voices-scroll::-webkit-scrollbar { display: none; }
.voices-track {
  display: flex;
  gap: 1.25rem;
  padding-inline: var(--gutter);
  width: max-content;
}
.voice-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: linear-gradient(165deg, #fff 0%, #fdfbf8 100%);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03), 0 0 0 1px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--ff-display);
  font-size: 4rem;
  line-height: 1.1;
  color: rgba(196,162,101,0.1);
  pointer-events: none;
}
.voice-card p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
}
.voice-card cite {
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}

.voices-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-bottom: 0.75rem;
  padding-right: 0.5rem;
}
.voices-hint svg { opacity: 0.5; }
@media (min-width: 1200px) { .voices-hint { display: none; } }

/* Voices scroll progress — thin gold line */
.voices-progress {
  position: relative;
  height: 2px;
  background: rgba(196,162,101,0.1);
  margin-top: 1.25rem;
  margin-inline: var(--gutter);
  border-radius: 1px;
  overflow: hidden;
}
.voices-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  border-radius: 1px;
  transition: width 0.15s ease-out;
}
@media (min-width: 1200px) {
  /* On wide screens where all cards may be visible, hide the indicator */
  .voices-progress { display: none; }
}

/* Mid CTA */
.mid-cta {
  text-align: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  position: relative;
}
.mid-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,162,101,0.25), transparent);
}
.mid-cta p {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════
   Experience
   ════════════════════════════════════════════ */
.experience {
  padding-block: var(--sec-py);
  background: var(--cream-deep);
  position: relative;
}
.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(0,0,0,0.06) 30%, rgba(0,0,0,0.06) 70%, transparent 95%);
}
.experience .sec-lead {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.phase {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border: 1.5px solid rgba(132,120,104,0.15);
  position: relative;
  overflow: hidden;
}
.phase:last-of-type { margin-bottom: 0; }
.phase-before {
  border-color: rgba(132,120,104,0.18);
}
.phase-after {
  border-color: rgba(196,162,101,0.25);
}
.phase-name {
  font-family: var(--ff-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ink-light);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.phase-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  max-width: 660px;
}
.item-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--terra);
  flex-shrink: 0;
  width: 2.2rem;
  padding-top: 0.25rem;
  opacity: 0.7;
  letter-spacing: 0.02em;
}
.item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}
.item p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-mid);
}
.phase-onstage {
  border-color: rgba(199,93,42,0.22);
  background: linear-gradient(165deg, #fff 0%, #f7ede3 100%);
}
.phase-onstage::after {
  content: '';
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  right: -1.5px;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--terra) 30%, var(--gold) 70%, transparent 95%);
  opacity: 0.55;
  border-radius: 16px 16px 0 0;
}
.phase-onstage .phase-name {
  color: var(--terra);
  border-bottom-color: rgba(199,93,42,0.15);
}
.phase-onstage .item-num {
  opacity: 1;
  font-weight: 400;
}

/* Item Quote — editorial inline testimonial */
.item-quote {
  margin-top: 1.1rem;
  padding-left: 1.5rem;
  position: relative;
}
.item-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.3rem;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
}
.item-quote p {
  font-family: var(--ff-serif);
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 0.2rem;
  font-feature-settings: "palt";
}
.item-quote cite {
  display: block;
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 0.6875rem;
  color: var(--ink-light);
  letter-spacing: 0.03em;
}
/* On Stage phase — warm tint */
.phase-onstage .item-quote::before {
  color: var(--amber);
}

/* ════════════════════════════════════════════
   Stats
   ════════════════════════════════════════════ */
.stats {
  padding-block: clamp(5rem, 12vw, 8.5rem);
  background: var(--night);
  color: var(--on-dark);
  box-shadow: 0 -40px 60px -20px rgba(26,22,18,0.3),
              0 40px 60px -20px rgba(26,22,18,0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* Ambient warm glow behind stats */
.stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(196,162,101,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.stats::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196,162,101,0.2) 50%, transparent 90%);
}
.stats-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.stats-header .sec-title {
  color: var(--on-dark);
}
.stats-header .sec-label {
  color: var(--on-dark-mid);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.2rem) clamp(1rem, 2vw, 1.5rem);
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.stat-card {
  min-width: 0;
}
.stat-ring-wrap {
  position: relative;
  width: clamp(100px, 14vw, 140px);
  aspect-ratio: 1;
  margin: 0 auto 0.5rem;
}
.stat-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.stat-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 2;
}
.stat-ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 2.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 6px rgba(196,162,101,0.35));
}
.stat-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--on-dark);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(196,162,101,0.3), 0 0 60px rgba(196,162,101,0.1);
  letter-spacing: -0.01em;
  padding-bottom: 0.1em;
}
.stat-unit {
  font-size: 0.6em;
  font-weight: 500;
  opacity: 0.7;
  margin-left: 0.05em;
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(245,240,234,0.75);
  margin-top: 0.5rem;
  line-height: 1.5;
  text-wrap: balance;
  letter-spacing: 0.02em;
}
.stat-supplement {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--on-dark-mid);
  line-height: 1.8;
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 600px;
  margin-inline: auto;
}
.stat-footnote {
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(245,240,234,0.55);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════
   Venue
   ════════════════════════════════════════════ */
.venue {
  padding-block: var(--sec-py);
  background: var(--cream);
}
.venue-content {
  max-width: 680px;
}
.venue-body {
  font-size: 1.0625rem;
  line-height: 2;
  color: var(--ink-mid);
  margin-bottom: 2rem;
}
.venue-body strong {
  color: var(--ink);
}
/* Venue Quotes — stacked testimonials */
.venue-quotes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}
.venue-quote {
  font-family: var(--ff-serif);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-mid);
  padding-left: 1.8rem;
  margin-bottom: 0;
  padding-block: 1rem;
  position: relative;
}
.venue-quote::after {
  content: '\201C';
  position: absolute;
  left: 0;
  top: 0.7rem;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
}
.venue-quotes .venue-quote + .venue-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.8rem;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(196,162,101,0.18), transparent 70%);
}
.venue-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-top: 0.5rem;
  font-family: var(--ff-body);
}
.venue-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.venue-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.venue-detail-icon {
  flex-shrink: 0;
  width: 20px;
  padding-top: 0.2rem;
  color: var(--terra);
}
.venue-detail-icon svg { width: 18px; height: 18px; }
.venue-detail strong {
  display: block;
  margin-bottom: 0.1rem;
}
.venue-detail span {
  color: var(--ink-mid);
  font-size: 0.875rem;
}
.venue-map {
  margin-top: 3rem;
  background: var(--cream-deep);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  max-width: 680px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-soft);
}
.venue-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
  filter: sepia(0.15) saturate(0.9) brightness(1.02);
}
.venue-map-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 1rem;
  background: linear-gradient(transparent, rgba(28,23,20,0.55));
  color: var(--on-dark);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-align: right;
  pointer-events: none;
}

/* ════════════════════════════════════════════
   Dojo
   ════════════════════════════════════════════ */
.dojo {
  padding-block: var(--sec-py-sm);
  background: var(--cream-deep);
}
/* Event Reference Card — Dojo / Related 共通 */
.event-ref {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  padding: 1.5rem 2rem;
  background: linear-gradient(165deg, #fff 0%, #fdfbf8 100%);
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-soft);
}
.event-ref:hover {
  border-color: rgba(0,0,0,0.08);
  box-shadow: var(--shadow-mid);
  transform: translateY(-2px);
}
.event-ref-logo {
  width: 105px;
  height: auto;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.event-ref-body {
  flex: 1;
  min-width: 0;
}
.event-ref-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--terra);
  border: 1px solid var(--terra);
  padding: 0.1rem 0.45rem;
  border-radius: 0.2rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}
.event-ref-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.event-ref-desc {
  font-size: 0.8125rem;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-top: 0.15rem;
}
.event-ref-arrow {
  margin-left: auto;
  font-size: 1.25rem;
  color: var(--ink-light);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.event-ref:hover .event-ref-arrow {
  transform: translateX(3px);
}
/* Dojo内 — セクションの左寄せフローに統合 */
.dojo .event-ref {
  margin-top: 2.5rem;
  padding: 2rem 0 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  gap: 1.75rem;
  position: relative;
}
.dojo .event-ref::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 1px;
  background: rgba(0,0,0,0.12);
}
.dojo .event-ref:hover {
  box-shadow: none;
  transform: none;
}
.dojo .event-ref-logo {
  width: 130px;
}
.dojo .event-ref-arrow {
  color: var(--terra);
}
.dojo-lead {
  font-size: 1.0625rem;
  line-height: 2;
  max-width: 620px;
  margin-bottom: 1.5rem;
}
.dojo-desc {
  font-size: 1rem;
  line-height: 2;
  color: var(--ink-mid);
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.dojo-flow {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.dojo-step {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.55rem 1.3rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, #fff, #fdfbf8);
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s;
}
.dojo-step small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-light);
}
.dojo-step-date {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--terra);
  margin-top: 0.1rem;
}
.dojo-step.current .dojo-step-date {
  color: rgba(255,255,255,0.75);
}
.dojo-step.current {
  background: linear-gradient(160deg, var(--terra) 0%, var(--terra-dark) 100%);
  color: #fff;
  border-color: var(--terra);
  box-shadow: 0 4px 16px var(--terra-glow);
}
.dojo-arrow {
  color: var(--ink-light);
  font-size: 1.2rem;
}
.dojo-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.dojo-benefit h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.dojo-benefit p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--ink-mid);
}
.dojo-benefit-icon {
  font-size: 1.6rem;
  color: var(--terra);
  opacity: 0.55;
  margin-bottom: 0.6rem;
  display: block;
  line-height: 1;
}
.dojo-quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.dojo-quote {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--ink-mid);
  padding-left: 1.8rem;
  position: relative;
}
.dojo-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.3rem;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
}
.dojo-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-top: 0.4rem;
}
/* ════════════════════════════════════════════
   Pricing
   ════════════════════════════════════════════ */
.pricing {
  padding-block: var(--sec-py);
  background: linear-gradient(180deg, var(--cream) 0%, #f5ece0 40%, #f5ece0 60%, var(--cream) 100%);
  border-top: 1px solid rgba(196,162,101,0.12);
  border-bottom: 1px solid rgba(196,162,101,0.12);
}
.pricing-header {
  text-align: center;
  margin-bottom: 1rem;
}
.pricing-impact {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.pricing-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--ink-mid);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.plan {
  background: linear-gradient(180deg, #fff 0%, #fdfbf8 100%);
  border-radius: 14px;
  padding: 2.2rem 1.5rem;
  border: 1.5px solid rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
  box-shadow: var(--shadow-soft);
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.plan.popular {
  border-color: var(--gold);
  position: relative;
  box-shadow: 0 4px 20px rgba(196,162,101,0.08);
}
.plan.popular:hover {
  box-shadow: 0 12px 40px rgba(196,162,101,0.12);
}
.plan.recommend {
  border-color: var(--terra);
  border-width: 2px;
  position: relative;
  box-shadow: 0 8px 32px rgba(199,93,42,0.12);
  transform: scale(1.03);
  z-index: 1;
}
.plan.recommend:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(199,93,42,0.16);
}
.rec-badge {
  background: linear-gradient(135deg, var(--terra) 0%, #d06830 100%) !important;
  box-shadow: 0 2px 8px var(--terra-glow) !important;
}
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #d4b06a 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 1.1rem;
  border-radius: 1rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px var(--gold-glow);
}
.plan-name {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.plan-price {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.plan-price .yen {
  font-size: 0.55em;
  font-weight: 500;
  margin-right: 0.1em;
  opacity: 0.7;
}
.plan-tax {
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}
.plan-tax .yen {
  font-size: 0.85em;
}
.discount .yen {
  font-size: 0.8em;
}
.plan-desc {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
}
.plan-section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  text-align: left;
}
.plan-discount-note {
  font-size: 0.8125rem;
  color: var(--ink-mid);
  text-align: left;
  margin-bottom: 1.25rem;
}
.plan-features {
  text-align: left;
  font-size: 0.8125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.plan-features li {
  padding: 0.35rem 0;
  padding-left: 1.6rem;
  position: relative;
  color: var(--ink-light);
  font-size: 0.78rem;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cline x1='3' y1='7' x2='11' y2='7' stroke='%23847868' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
}
.plan-features li.on {
  color: var(--ink);
  font-size: 0.8125rem;
}
.plan-features li.on::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpolyline points='2.5 7.5 5.5 10 11.5 4' fill='none' stroke='%23c75d2a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.pricing-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
}
.afterparty-value {
  max-width: 760px;
  margin: 0 auto 2rem;
  border: 1px solid rgba(199,93,42,0.16);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(199,93,42,0.06), rgba(196,162,101,0.04));
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 20px rgba(199,93,42,0.04);
  position: relative;
  overflow: hidden;
}
.afterparty-value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--terra), var(--gold), transparent);
  opacity: 0.3;
}
.afterparty-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--terra);
  margin-bottom: 0.45rem;
}
.afterparty-title {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 0.7rem;
}
.afterparty-copy {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.discounts {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.discount {
  font-size: 0.875rem;
  color: var(--ink-mid);
  background: linear-gradient(135deg, rgba(199,93,42,0.06), rgba(196,162,101,0.04));
  padding: 0.65rem 1.35rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(199,93,42,0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.discount i {
  font-size: 1.1rem;
  color: var(--terra);
  opacity: 0.6;
}
.discount strong {
  color: var(--terra);
}
.pricing-opt {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-top: 1.5rem;
}

/* Pricing Comparison Table */
.pricing-details {
  margin-bottom: 2.5rem;
}
.pricing-details-toggle {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  display: block;
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
  list-style: none;
}
.pricing-details-toggle::-webkit-details-marker { display: none; }
.pricing-details-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--ink-mid);
  border-bottom: 1.5px solid var(--ink-mid);
  transform: rotate(45deg);
  margin-left: 0.5rem;
  vertical-align: 0.15em;
  transition: transform 0.3s;
}
.pricing-details[open] > .pricing-details-toggle::after {
  transform: rotate(-135deg);
  vertical-align: -0.1em;
}
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(-1 * var(--gutter));
  padding: 0 var(--gutter);
}
.pricing-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.pricing-table th,
.pricing-table td {
  padding: 0.6rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pricing-table .pricing-table-feature,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 400;
  color: var(--ink-mid);
  white-space: nowrap;
}
.pricing-table thead th {
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 0.4rem;
  border-bottom: none;
  font-size: 0.875rem;
}
.pricing-table .price-row td {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  padding-top: 0.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid rgba(0,0,0,0.08);
  font-variant-numeric: tabular-nums;
  line-height: 1.6;
}
.pricing-table .price-row .yen {
  font-size: 0.7em;
}
.table-tax {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  color: var(--ink-light);
  font-weight: 400;
  line-height: 1.2;
}
.table-tax .yen {
  font-size: 0.85em;
}
.pricing-table .pop-col {
  background: rgba(196,162,101,0.05);
}
.pricing-table .rec-col {
  background: rgba(199,93,42,0.05);
}
.pricing-table tbody td {
  color: var(--terra);
  font-weight: 600;
}
.pricing-table tbody td.na {
  color: var(--ink-light);
  font-weight: 400;
}
.pricing-table .highlight-row td:first-child {
  font-weight: 500;
  color: var(--ink);
}
.pricing-table .table-group-label td {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  padding-top: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: none;
}
.pricing-table tbody td.opt {
  color: #a08545;
  font-weight: 600;
}
.pricing-table-note {
  font-size: 0.75rem;
  color: var(--ink-light);
  text-align: center;
  margin-top: 0.75rem;
}

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.faq {
  padding-block: var(--sec-py);
  background: var(--cream-deep);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(0,0,0,0.06) 30%, rgba(0,0,0,0.06) 70%, transparent 95%);
}
.faq-header {
  text-align: left;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
  margin-inline: auto;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.35rem 0;
  color: var(--ink);
  gap: 1rem;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--terra); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--ink-light);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--terra);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--ink-mid);
}

/* ════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════ */
.final-cta {
  padding-block: var(--sec-py);
  background:
    linear-gradient(to bottom, rgba(28,23,20,0.7), rgba(28,23,20,0.85)),
    url('/images/cta-bg.png') center/cover no-repeat;
  background-color: var(--night);
  color: var(--on-dark);
  text-align: center;
  box-shadow: 0 -40px 60px -20px rgba(26,22,18,0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(199,93,42,0.08) 0%, rgba(196,162,101,0.04) 35%, transparent 60%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(196,162,101,0.2) 50%, transparent 90%);
}
.cta-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  position: relative;
}
.cta-sub {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--on-dark-mid);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.cta-date {
  font-family: var(--ff-display);
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: var(--on-dark-mid);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.cta-evidence {
  font-size: 0.875rem;
  color: rgba(245,240,234,0.78);
  margin-bottom: 2.25rem;
  letter-spacing: 0.02em;
}
.cta-evidence .metric-period {
  color: rgba(245,240,234,0.5);
}
.cta-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.btn-cta-main {
  font-size: 1.125rem;
  padding: 1.3rem 3.5rem;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 24px var(--green-glow), 0 0 60px rgba(76,175,80,0.1);
}
.btn-cta-main:hover {
  box-shadow: 0 10px 36px rgba(76,175,80,0.35), 0 0 80px rgba(76,175,80,0.12);
}
.cta-secondary {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  border: 1.5px solid rgba(196,162,101,0.3);
  padding: 0.75rem 1.6rem;
  border-radius: 2rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
}
.btn-gold:hover {
  background: rgba(196,162,101,0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.btn-gold i {
  font-size: 1rem;
  opacity: 0.7;
}
.btn-gold:hover i { opacity: 1; }
.cta-note {
  font-size: 0.75rem;
  color: var(--on-dark-mid);
  margin-top: 1.5rem;
}

/* ════════════════════════════════════════════
   Related
   ════════════════════════════════════════════ */
.related {
  padding-block: var(--sec-py-sm);
  background: var(--cream);
}
.related-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
/* (related-card は event-ref に統合) */
.related .event-ref {
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   Footer
   ════════════════════════════════════════════ */
.footer {
  padding: 4rem var(--gutter) 2.5rem;
  background: var(--night);
  text-align: center;
  color: var(--on-dark-mid);
  position: relative;
}
.footer-logo {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  opacity: 0.85;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,162,101,0.3), transparent);
}
.footer-name {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--on-dark);
  margin-bottom: 0.35rem;
}
.footer-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8125rem;
  font-style: italic;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  color: rgba(245,240,234,0.5);
}
.footer-copy {
  font-size: 0.6875rem;
  color: rgba(245,240,234,0.35);
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════
   Scroll Reveal
   ════════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv.visible {
  opacity: 1;
  transform: translateY(0);
}
.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════
   Hover Effects
   ════════════════════════════════════════════ */
@media (hover: hover) {
  .voice-card { transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
  .voice-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02); transform: translateY(-3px); }
  .event-ref { transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
  .event-ref:hover { transform: translateY(-2px); }
}

/* ════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 400px;
  }

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

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
  .plan.recommend {
    order: -2;
    transform: none;
  }
  .plan.popular {
    order: -1;
  }

  .hero { min-height: 100svh; padding-top: 5rem; }
  .hero-catch { letter-spacing: 0; }

  .item { gap: 1rem; }
  .item-num { font-size: 1.5rem; width: 1.8rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 320px; }
  .stat-ring-wrap { width: 100px; }
  .stat-num { font-size: 1.5rem; }
  .data-proof { padding: 1rem 0.5rem; }
  .data-proof-body { font-size: 0.75rem; }
  .metric-period { font-size: 0.65rem; }
  .afterparty-value { padding: 1.1rem 0.95rem; }
  .afterparty-title { font-size: 1.05rem; }

  .dojo-flow { gap: 0.75rem; }
  .dojo-step { font-size: 0.8125rem; padding: 0.5rem 1rem; }

  .discounts { flex-direction: column; align-items: center; }

  .btn-cta-main { width: 100%; max-width: 340px; padding-inline: 1.5rem; }
  .cta-secondary { flex-direction: column; align-items: center; gap: 0.5rem; }
  .btn-gold { width: 100%; max-width: 280px; justify-content: center; }

  .voice-card { flex: 0 0 260px; }

  .item-quote {
    margin-top: 0.85rem;
    padding-left: 1.2rem;
  }
  .item-quote::before {
    font-size: 1.8rem;
    top: -0.25rem;
  }
  .item-quote p {
    font-size: 0.8125rem;
  }
}

/* ════════════════════════════════════════════
   prefers-reduced-motion
   ════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .stat-ring-fill { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════
   Focus
   ════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* ════════════════════════════════════════════
   PROPOSAL: Story Number Indicators
   ════════════════════════════════════════════ */
.story-num {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ════════════════════════════════════════════
   PROPOSAL: Inline CTA Sections
   ════════════════════════════════════════════ */
.inline-cta-section {
  text-align: center;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
}
.inline-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,162,101,0.2), transparent);
}
.inline-cta-section p {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.inline-cta-section--dark {
  padding-top: clamp(2rem, 4vw, 3rem);
}
.inline-cta-section--dark::before {
  background: linear-gradient(90deg, transparent, rgba(196,162,101,0.15), transparent);
}
.inline-cta-section--dark p {
  color: var(--on-dark-mid);
}

/* ════════════════════════════════════════════
   PROPOSAL: Venue Photo
   ════════════════════════════════════════════ */
.venue-photo {
  margin-bottom: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  max-width: 680px;
}
.venue-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ════════════════════════════════════════════
   PROPOSAL: Sticky CTA Bar
   ════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.65rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta-date {
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.sticky-cta .btn {
  font-size: 0.8125rem;
  padding: 0.6rem 1.5rem;
}
@media (max-width: 640px) {
  .sticky-cta { gap: 0.75rem; }
  .sticky-cta-date { font-size: 0.75rem; }
  .sticky-cta .btn { flex: 1; max-width: 220px; }
}

/* ════════════════════════════════════════════
   PROPOSAL: CTA Urgency
   ════════════════════════════════════════════ */
/* ── CTA schedule block ── */
.cta-schedule {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.cta-schedule-item { text-align: center; }
.cta-schedule-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: rgba(245,240,234,0.68);
  margin-bottom: 0.2rem;
}
.cta-schedule-date {
  font-family: 'Barlow', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245,240,234,0.88);
  line-height: 1;
}
.cta-schedule-date small {
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 0.1em;
}
.cta-schedule-sep {
  width: 1px;
  height: 2rem;
  background: rgba(245,240,234,0.18);
}
.cta-schedule-note {
  font-size: 0.75rem;
  line-height: 1.8;
  color: rgba(245,240,234,0.65);
  margin-top: -0.75rem;
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════
   PROPOSAL: Low-barrier CTA Cards
   ════════════════════════════════════════════ */
.cta-alt-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 0;
}
.cta-alt-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,162,101,0.25);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--on-dark);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 300px;
}
.cta-alt-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(196,162,101,0.45);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.cta-alt-card i {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.85;
  flex-shrink: 0;
}
.cta-alt-card-text {
  text-align: left;
}
.cta-alt-card-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.cta-alt-card-desc {
  font-size: 0.75rem;
  color: var(--on-dark-mid);
  line-height: 1.4;
}
@media (max-width: 640px) {
  .cta-alt-options { flex-direction: column; align-items: center; }
  .cta-alt-card { width: 100%; max-width: 320px; }
}
