/* ============================================
   ○○ヒーローズ図鑑 / タガヤス吹上
   ============================================ */

:root {
  --navy: #1E3A5F;
  --navy-deep: #14283F;
  --navy-soft: #2A4A75;
  --coral: #F96167;
  --coral-deep: #E04149;
  --gold: #FFB84D;
  --gold-deep: #E89A30;
  --mint: #2BB6A2;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --text: #1E293B;

  --font-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-en: "Inter", system-ui, sans-serif;

  --max: 1180px;
  --pad: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.35s var(--ease);
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(20, 40, 63, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.nav-logo-mark {
  color: var(--gold);
  font-size: 12px;
  transform: rotate(45deg);
  display: inline-block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a.nav-cta {
  background: var(--coral);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s var(--ease);
}
.nav-menu a.nav-cta:hover {
  background: var(--coral-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(249,97,103,0.5);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 32px -10px rgba(249,97,103,0.6);
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(249,97,103,0.7);
}
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,184,77,0.06);
}
.btn-large {
  padding: 20px 40px;
  font-size: 16px;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(255,184,77,0.20), transparent 55%),
    radial-gradient(ellipse at 82% 78%, rgba(249,97,103,0.18), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(43,182,162,0.06), transparent 70%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 18s ease-in-out infinite;
}
.hero-shape-1 {
  width: 380px; height: 380px;
  background: rgba(255,184,77,0.35);
  top: -100px; right: -80px;
}
.hero-shape-2 {
  width: 320px; height: 320px;
  background: rgba(249,97,103,0.30);
  bottom: -120px; left: 5%;
  animation-delay: -6s;
}
.hero-shape-3 {
  width: 220px; height: 220px;
  background: rgba(43,182,162,0.30);
  top: 38%; left: 48%;
  animation-delay: -12s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.eyebrow-line {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(48px, 10vw, 132px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}
.hero-line {
  display: block;
  overflow: visible;
}
.hero-accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 8px;
  background: var(--coral);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.2s var(--ease) 1.4s forwards;
}
@keyframes drawLine {
  to { transform: scaleX(1); }
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 48px;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 96px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
}
.scroll-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ===== Section base ===== */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section-head {
  max-width: 820px;
  margin-bottom: 80px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--coral);
  margin-bottom: 24px;
  padding-left: 18px;
  position: relative;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 10px;
  height: 1px;
  background: var(--coral);
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-bottom: 28px;
}
.section-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2;
  color: var(--gray-600);
}
.mark-line {
  background: linear-gradient(transparent 64%, rgba(255,184,77,0.5) 64%);
  padding: 0 4px;
}
.text-gold { color: var(--gold-deep); }
.text-coral { color: var(--coral); }
.text-mint { color: var(--mint); }

/* ===== ISSUE ===== */
.section-issue {
  background: var(--gray-100);
}
.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.issue-card {
  background: var(--white);
  padding: 44px 36px 40px;
  border-radius: 4px;
  position: relative;
  transition: all 0.5s var(--ease);
  border-top: 3px solid var(--coral);
  box-shadow: 0 1px 3px rgba(30,58,95,0.06);
}
.issue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(30,58,95,0.18);
}
.issue-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--coral);
  margin-bottom: 24px;
  opacity: 0.85;
}
.issue-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 18px;
}
.issue-desc {
  font-size: 15px;
  line-height: 1.95;
  color: var(--gray-600);
}
.issue-conclusion {
  text-align: center;
  padding: 60px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.issue-conclusion::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,184,77,0.10), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(249,97,103,0.10), transparent 50%);
}
.conclusion-text {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.7;
  font-weight: 500;
}
.emph {
  color: var(--gold);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.emph::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}

/* ===== ABOUT ===== */
.section-about {
  background: var(--white);
}
.philosophy {
  background: var(--navy);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px);
  border-radius: 4px;
  margin: 0 0 100px;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: "❝";
  position: absolute;
  top: -20px;
  left: 24px;
  font-size: 180px;
  color: var(--gold);
  opacity: 0.18;
  font-family: var(--font-serif);
  line-height: 1;
}
.philosophy blockquote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 2.1;
  position: relative;
  z-index: 1;
}
.philosophy blockquote p { margin-bottom: 24px; }
.philosophy blockquote p:last-child { margin-bottom: 0; }
.philosophy-strong {
  font-weight: 700;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-top: 32px !important;
}
.pillars-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 48px;
  text-align: center;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--gray-50);
  padding: 40px 32px;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--gray-200);
}
.pillar-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(30,58,95,0.2);
  border-color: var(--gold);
}
.pillar-letter {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  color: var(--coral);
  letter-spacing: 0.1em;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  color: var(--navy);
  margin-bottom: 24px;
}
.pillar-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.pillar-tag {
  font-size: 12px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 16px;
}
.pillar-card > p:last-child {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--gray-600);
}

/* ===== HOW IT WORKS ===== */
.section-how {
  background: var(--gray-50);
}
.steps {
  position: relative;
  padding-left: 24px;
  margin-bottom: 120px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral), var(--gold), var(--mint));
}
.step {
  display: flex;
  gap: 32px;
  padding: 20px 0 32px 32px;
  position: relative;
}
.step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 32px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--coral);
  border-radius: 50%;
  z-index: 1;
}
.step:nth-child(2)::before { border-color: var(--gold); }
.step:nth-child(3)::before { border-color: var(--gold-deep); }
.step:nth-child(4)::before { border-color: var(--mint); }
.step:nth-child(5)::before { border-color: var(--navy-soft); }
.step:nth-child(6)::before { border-color: var(--navy); }
.step-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.12;
  min-width: 110px;
}
.step-body {
  flex: 1;
  padding-top: 12px;
}
.step-phase {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 5px 12px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  margin-bottom: 12px;
}
.step-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--gray-600);
}

.sanpou {
  padding: 80px 40px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}
.sanpou-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-align: center;
  color: var(--navy);
  margin-bottom: 56px;
}
.sanpou-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sanpou-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--gray-50);
  border-radius: 4px;
  border-top: 3px solid var(--mint);
  transition: all 0.35s var(--ease);
}
.sanpou-card:nth-child(2) { border-top-color: var(--gold); }
.sanpou-card:nth-child(3) { border-top-color: var(--coral); }
.sanpou-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(30,58,95,0.15); }
.sanpou-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}
.sanpou-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.sanpou-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray-600);
}

/* ===== RESULTS ===== */
.section-results {
  background: var(--white);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 100px;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,184,77,0.15), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(249,97,103,0.12), transparent 40%);
}
.stat {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 20px 8px;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 30%;
  bottom: 30%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 80px);
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat-unit {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
  color: rgba(255,255,255,0.8);
}
.stat-label {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}

.media {
  margin-bottom: 100px;
}
.media-title, .voices-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 4px solid var(--coral);
}
.media-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
}
.media-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.25s;
}
.media-item:hover {
  background: var(--gray-50);
}
.media-channel {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--coral);
  border: 1.5px solid var(--coral);
  padding: 4px 10px;
  text-align: center;
  border-radius: 3px;
}
.media-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.media-prog {
  font-size: 13px;
  color: var(--gray-600);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: var(--gray-50);
  padding: 36px 28px;
  border-radius: 4px;
  position: relative;
  border-bottom: 3px solid var(--gold);
}
.voice-mark {
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.voice-card blockquote {
  font-family: var(--font-serif);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--navy);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.voice-card figcaption {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

/* ===== TEAM ===== */
.section-team {
  background: var(--gray-100);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.member-card {
  background: var(--white);
  padding: 44px 32px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(30,58,95,0.2);
}
.member-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.member-avatar::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.6;
}
.member-avatar span {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
}
.member-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.member-role {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.member-contact {
  text-align: left;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}
.member-contact li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}
.member-contact span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--coral);
  align-self: center;
}
.member-contact a {
  color: var(--navy);
  word-break: break-all;
  transition: color 0.2s;
}
.member-contact a:hover { color: var(--coral); }

/* ===== VISION ===== */
.section-vision {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.vision-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vision-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,184,77,0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(43,182,162,0.12), transparent 50%);
}
.vision-shape {
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255,184,77,0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vision-shape::before, .vision-shape::after {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,184,77,0.12);
}
.vision-shape::after { inset: 120px; }
.vision-label {
  color: var(--gold) !important;
}
.vision-label::before {
  background: var(--gold) !important;
}
.section-vision .container { z-index: 1; }
.vision-quote {
  position: relative;
  margin: 40px 0 48px;
}
.vision-line {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 80px);
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.vision-body {
  position: relative;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2.2;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 100px;
}
.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.road-item {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s var(--ease);
}
.road-current {
  background: rgba(255,184,77,0.10);
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 20px 40px -16px rgba(255,184,77,0.3);
}
.road-year {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 14px;
}
.road-arrow {
  margin-left: 6px;
  opacity: 0.6;
}
.road-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.road-status {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 999px;
}
.status-done {
  background: rgba(43,182,162,0.2);
  color: var(--mint);
  border: 1px solid var(--mint);
}
.status-now {
  background: var(--coral);
  color: var(--white);
}
.road-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.road-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 24px;
  position: relative;
  width: 40px;
}
.road-connector::before {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.2);
  border-top: 1px dashed rgba(255,255,255,0.3);
  background: none;
}

/* ===== CONTACT ===== */
.section-contact {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  text-align: center;
}
.contact-headline {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.4;
  color: var(--navy);
  margin: 24px 0 64px;
  letter-spacing: 0.01em;
}
.contact-asks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.ask-card {
  background: var(--white);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: left;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.35s var(--ease);
}
.ask-card:hover {
  transform: translateY(-6px);
  border-color: var(--coral);
  box-shadow: 0 30px 60px -20px rgba(249,97,103,0.2);
}
.ask-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 32px;
  color: var(--coral);
  margin-bottom: 16px;
  line-height: 1;
}
.ask-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.5;
}
.ask-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray-600);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.contact-people {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.contact-person strong {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-person a {
  color: var(--gray-600);
  transition: color 0.2s;
}
.contact-person a:hover { color: var(--coral); }
.contact-divider {
  width: 1px;
  height: 60px;
  background: var(--gray-200);
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.9;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .issue-grid, .pillar-grid, .sanpou-grid, .voice-grid, .team-grid, .contact-asks {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 24px;
  }
  .stat:nth-child(2)::after { display: none; }
  .media-list { grid-template-columns: 1fr; }
  .roadmap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .road-connector {
    width: auto;
    height: 30px;
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .road-current { transform: none; }
}

@media (max-width: 720px) {
  .nav-menu {
    position: fixed;
    inset: 64px 0 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 40px 28px;
    gap: 28px;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a { font-size: 18px; }
  .nav-menu a.nav-cta {
    display: inline-block;
    padding: 12px 24px;
  }
  .nav-toggle { display: flex; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .step { gap: 16px; padding-left: 24px; }
  .step-num { min-width: 60px; font-size: 40px; }
  .media-item {
    grid-template-columns: 64px 1fr;
    grid-template-areas: "ch name" "ch prog";
    gap: 4px 14px;
  }
  .media-channel { grid-area: ch; }
  .media-name { grid-area: name; font-size: 14px; }
  .media-prog { grid-area: prog; }
  .contact-divider { display: none; }
  .footer-grid { flex-direction: column; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-shape { animation: none; }
  .scroll-line::after { animation: none; }
}
