/* ============================================
   PROXY FIGHT LP — BRAND COLOR DESIGN
   SAAFホールディングス 前俊守 株主投票LP
   #0f6fa8 × #fdf30b × #ffffff
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap');

/* --- Brand Color System --- */
:root {
  /* Base */
  --white: #ffffff;
  --off-white: #f4f9fd;
  --cream: #eaf4fb;
  --warm-gray-50: #f5f5f5;
  --warm-gray-100: #ebebeb;
  --warm-gray-200: #d5d5d5;
  --warm-gray-300: #aaaaaa;
  --warm-gray-400: #888888;
  --warm-gray-500: #666666;
  --warm-gray-600: #444444;
  --warm-gray-700: #2a2a2a;
  --warm-gray-800: #1a1a1a;
  --warm-gray-900: #111111;

  /* Ink */
  --ink: #0d2137;
  --ink-80: rgba(13, 33, 55, 0.8);
  --ink-60: rgba(13, 33, 55, 0.6);
  --ink-40: rgba(13, 33, 55, 0.4);
  --ink-20: rgba(13, 33, 55, 0.15);
  --ink-10: rgba(13, 33, 55, 0.08);
  --ink-05: rgba(13, 33, 55, 0.04);

  /* Primary Blue — #0f6fa8 */
  --blue: #0f6fa8;
  --blue-dark: #0a4f7a;
  --blue-deeper: #073a5a;
  --blue-light: #2d8dc0;
  --blue-subtle: rgba(15, 111, 168, 0.08);
  --blue-border: rgba(15, 111, 168, 0.25);

  /* Accent Yellow — #fdf30b */
  --yellow: #fdf30b;
  --yellow-dark: #d4ca00;
  --yellow-deeper: #a89f00;
  --yellow-light: #fef566;
  --yellow-subtle: rgba(253, 243, 11, 0.12);
  --yellow-border: rgba(253, 243, 11, 0.4);
  --yellow-on-dark: #0d2137;

  /* Mapped tokens — accent is BLUE outside hero */
  --accent: var(--blue);
  --accent-light: var(--blue-light);
  --accent-dark: var(--blue-dark);
  --accent-subtle: var(--blue-subtle);
  --accent-border: var(--blue-border);
  --accent-glow: rgba(15, 111, 168, 0.3);
  --primary: var(--blue);
  --primary-light: var(--blue-light);
  --primary-dark: var(--blue-dark);
  --primary-subtle: var(--blue-subtle);
  --teal: var(--blue-light);
  --teal-light: #4aa8d0;
  --teal-subtle: var(--blue-subtle);

  /* Status */
  --status-confirmed: #0f6fa8;
  --status-confirmed-bg: rgba(15, 111, 168, 0.08);
  --status-press: #2d8dc0;
  --status-press-bg: rgba(45, 141, 192, 0.08);
  --status-pending: #d4ca00;
  --status-pending-bg: rgba(212, 202, 0, 0.1);
  --danger: #e53e3e;
  --danger-bg: rgba(229, 62, 62, 0.06);
  --success: #0f6fa8;
  --success-bg: rgba(15, 111, 168, 0.08);

  /* Gradients */
  --gradient-hero: linear-gradient(150deg, #073a5a 0%, #0a4f7a 35%, #0f6fa8 65%, #1a8ac8 100%);
  --gradient-hero-mesh:
    radial-gradient(ellipse at 10% 80%, rgba(253, 243, 11, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 15%, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
  --gradient-accent: linear-gradient(135deg, #fdf30b, #fef566);
  --gradient-cta: linear-gradient(135deg, #fdf30b, #fef566);
  --gradient-bright: linear-gradient(135deg, rgba(15, 111, 168, 0.05), rgba(253, 243, 11, 0.06));
  --gradient-section-alt: linear-gradient(180deg, #f4f9fd 0%, #eaf4fb 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));

  /* Fonts */
  --font-serif: 'Noto Sans JP', sans-serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-display: 'Noto Sans JP', sans-serif;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-base: 0.35s var(--ease-out-quart);
  --transition-slow: 0.7s var(--ease-out-expo);
  --transition-micro: 0.15s ease;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 4px 24px rgba(7, 58, 90, 0.15);
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink-80);
  background-color: var(--white);
  line-height: 1.9;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  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");
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}

.pc-only {
  display: inline;
}
.sp-only {
  display: none;
}
/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(15, 111, 168, 0.1), 0 4px 20px rgba(7, 58, 90, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.logo {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.08em;
  transition: color var(--transition-base);
}
.logo img {
  max-height: 3.5rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}
.site-header.scrolled .logo img {

}
.site-header.scrolled .logo {
  color: var(--ink);
}

.site-header .nav-links .nav-cta {
  white-space: nowrap;
}

.logo em {
  font-style: italic;
  color: var(--yellow);
}

.site-header.scrolled .logo em {
  color: var(--blue);
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.08em;
  transition: color var(--transition-base);
}

.nav-links a:hover {
  color: var(--white);
}

.site-header.scrolled .nav-links a {
  color: var(--warm-gray-900);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #0d2137 !important;
  background: var(--gradient-cta);
  padding: 10px 28px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  transition: all var(--transition-base) !important;
}

.nav-cta:hover {
  background: var(--yellow-dark) !important;
  color: #0d2137 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(253, 243, 11, 0.35);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #a6a6a6;
  transition: all var(--transition-base);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--white);
  background-image: url(img/20260316-142807.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-mesh);
  animation: heroBgShift 10s ease-in-out infinite alternate;
}

.hero-bg-anim::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle 500px at 15% 80%, rgba(253, 243, 11, 0.1) 0%, transparent 70%),
    radial-gradient(circle 350px at 75% 20%, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  filter: blur(30px);
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.hero-bg-anim::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle 600px at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 70%),
    radial-gradient(circle 400px at 70% 25%, rgba(255,255,255,0.04) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite alternate;
  filter: blur(40px);
}

.hero-bg-anim::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

@keyframes heroBgShift {
  0% { opacity: 0.7; transform: scale(1) rotate(0deg); }
  100% { opacity: 1; transform: scale(1.06) rotate(0.5deg); }
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.98); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 80px 100px;
}

/* Countdown Bar */
.hero-countdown-bar {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
  color: var(--white);
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 148, 46, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(200, 148, 46, 0.15);
  }
}

.countdown-label {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  /* opacity: 0.7; */
}

.countdown-timer {
  display: flex;
  gap: 12px;
}

.countdown-unit {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--yellow);
}

.countdown-sub {
  /* font-size: 0.6rem; */
  opacity: 0.6;
}

.countdown-timer--light .countdown-num {
  color: var(--yellow);
  font-size: 2rem;
}

.countdown-timer--light .countdown-sub {
  color: rgba(255, 255, 255, 1);
  /* font-size: 0.7rem; */
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(7, 58, 90, 0.3);
}

.hero h1 .accent {
  color: var(--yellow);
  position: relative;
  text-shadow: none;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-light);
  opacity: 0.4;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 1);
  line-height: 2.2;
  margin-bottom: 48px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-40);
}

.hero-photo-inner .photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(15, 111, 168, 0.08) 0%, rgba(253, 243, 11, 0.05) 60%, rgba(255, 255, 255, 0.04) 100%);
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
}

.photo-placeholder-icon {
  width: 100%;
  height: 320px;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.2);
}
.photo-placeholder-icon img {
  height: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: drift 3s ease-in-out infinite;
  z-index: 3;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(253, 243, 11, 0.6), transparent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 0.95rem;
}

.btn--xl {
  padding: 22px 56px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.78rem;
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--warm-gray-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 25, 23, 0.15);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-20);
}

.btn--outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  color: var(--ink);
}

.btn--accent {
  background: var(--yellow);
  color: var(--yellow-on-dark);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(253, 243, 11, 0.25);
}

.btn--accent:hover {
  background: var(--yellow-dark);
  color: var(--yellow-on-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(253, 243, 11, 0.35);
}

.btn--pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 150, 12, 0);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(212, 150, 12, 0.12);
  }
}

.btn--white {
  background: var(--white);
  color: var(--ink);
}

.btn--white:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn--white-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   STATEMENT
   ============================================ */
.statement {
  padding: 120px 0;
  text-align: center;
  background: var(--white);
  position: relative;
}

.statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.statement-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px;
}

.statement blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 2.2;
  color: var(--ink);
}

.statement blockquote strong {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================
   SECTION HEADER (共通)
   ============================================ */
.section-header {
  margin-bottom: 80px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ============================================
   TRACK RECORD — 実績数字
   ============================================ */
.track-record {
  padding: 160px 0;
  background: var(--off-white);
}

.track-record-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-10);
  border: 1px solid var(--ink-10);
  border-radius: 4px;
  overflow: hidden;
}

.number-card {
  background: var(--off-white);
  padding: 56px 36px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.number-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.number-card:hover {
  background: var(--white);
}

.number-card:hover::before {
  transform: scaleX(1);
}

.number-card:hover {
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.number-card.featured-card {
  background: var(--accent-subtle);
}

.number-value {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.number-value.special-text {
  font-family: var(--font-serif);
  font-size: 3rem;
  letter-spacing: 0.05em;
}

.number-unit {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--ink-60);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.number-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.number-detail {
  font-size: 1rem;
  color: var(--ink-80);
  line-height: 1.8;
}

/* ============================================
   STORY — 創業者ストーリー
   ============================================ */
.story {
  padding: 160px 0;
  background: var(--white);
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.story-left {
  position: sticky;
  top: 120px;
}

.story-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-top: 16px;
}

.story-right {
  position: relative;
}

.story-episode {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
}

.story-episode:last-child {
  margin-bottom: 0;
}

.episode-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.episode-year {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.4;
  margin-bottom: 12px;
  font-style: italic;
}

.episode-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent), var(--ink-10));
  min-height: 40px;
}

.episode-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.episode-body p {
  font-size: 1rem;
  line-height: 2.1;
  color: var(--ink-80);
}

/* ============================================
   MID-CTA — 中間CTA
   ============================================ */
.mid-cta {
  padding: 100px 48px;
  text-align: center;
  background: linear-gradient(150deg, #073a5a 0%, #0a4f7a 40%, #0f6fa8 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(253, 243, 11, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.mid-cta--light {
  background: var(--yellow);
  color: var(--yellow-on-dark);
}

.mid-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mid-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
  text-shadow: none;
}

/* ============================================
   VISION — 2つの未来
   ============================================ */
.vision {
  padding: 160px 0;
  background: var(--white);
}

.vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.future-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.future-card {
  padding: 56px 48px;
  border-radius: 0;
  position: relative;
  transition: all var(--transition-base);
}

.future-dark {
  background: var(--primary);
  color: rgba(255, 255, 255, 1);
}

.future-dark .future-label {
  color: rgba(255, 255, 255, 0.5);
}

.future-dark h3 {
  color: rgba(255, 255, 255, 0.9);
}

.future-dark ul li {
  color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.08);
}

.future-dark ul li::before {
  content: '×';
  color: var(--danger);
}

.future-bright {
  background: var(--gradient-bright);
  border: 2px solid var(--accent-border);
  position: relative;
}

.future-bright::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.future-bright h3 {
  color: var(--ink);
}

.future-bright ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.future-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 16px;
  display: block;
}

.future-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.future-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.future-card ul {
  list-style: none;
}

.future-card ul li {
  padding: 14px 0;
  border-top: 1px solid var(--ink-05);
  font-size: 0.92rem;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.future-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ============================================
   100-DAY PLAN
   ============================================ */
.plan {
  padding: 160px 0;
  background: var(--gradient-section-alt);
}

.plan-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.plan-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: end;
}

.plan-header-desc {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 2.2;
}

.plan-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink-10);
  background: var(--white);
}

.plan-col {
  padding: 56px 40px;
  border-right: 1px solid var(--ink-10);
  position: relative;
}

.plan-col:last-child {
  border-right: none;
}

.plan-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.plan-col:hover::before {
  transform: scaleX(1);
}

.plan-col-num {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 300;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 12px;
  font-style: normal;
}

.plan-col-icon {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.plan-col h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.plan-col .col-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  display: block;
}

.plan-list {
  list-style: none;
  margin-bottom: 24px;
}

.plan-list li {
  padding: 14px 0;
  border-top: 1px solid var(--ink-05);
  /* font-size: 0.92rem; */
  color: var(--ink-80);
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.plan-list li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

.plan-promise {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  padding-top: 16px;
  border-top: 2px solid var(--accent-border);
}

/* ============================================
   PHILOSOPHY — 意思決定
   ============================================ */
.philosophy {
  padding: 120px 0;
  background: var(--cream);
  text-align: center;
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.philosophy h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 56px;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-10);
  border: 1px solid var(--ink-10);
  margin-bottom: 48px;
}

.phil-card {
  background: var(--cream);
  padding: 48px 32px;
  transition: all var(--transition-base);
}

.phil-card:hover {
  background: var(--white);
}

.phil-num {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 300;
  font-style: normal;
  color: var(--blue-light);
  display: block;
  margin-bottom: 20px;
}

.phil-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.8;
}

.philosophy-note {
  font-size: 0.92rem;
  color: var(--ink-60);
  line-height: 2;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  padding: 160px 0;
  background: var(--white);
}

.timeline-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
.timeline-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
}
.timeline-header {
  margin-bottom: 80px;
}

.timeline-header p:last-child {
  /* font-size: 0.92rem; */
  color: var(--ink-60);
  margin-top: 8px;
}

.timeline-labels {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tl-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* font-size: 0.75rem; */
  letter-spacing: 0.06em;
  color: var(--ink-60);
}

.tl-label .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.dot--confirmed {
  background: var(--status-confirmed);
}

.dot--press {
  background: var(--status-press);
}

.dot--pending {
  background: var(--status-pending);
}

.timeline-list {
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ink-10);
}

.tl-event {
  padding: 0 0 48px 48px;
  position: relative;
}

.tl-event:last-child {
  padding-bottom: 0;
}

.tl-event::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--white);
}

.tl-event-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.tl-date {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  color: var(--blue);
  font-style: italic;
}

.tl-status {
  font-size: 0.925rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 100px;
}

.tl-status--confirmed {
  background: var(--status-confirmed-bg);
  color: var(--status-confirmed);
}

.tl-status--press {
  background: var(--status-press-bg);
  color: var(--status-press);
}

.tl-status--pending {
  background: var(--status-pending-bg);
  color: var(--status-pending);
}

.tl-event p {
  font-size: 1rem;
  color: var(--ink-80);
  line-height: 1.9;
}

.tl-source {
  font-size: 0.78rem;
  color: var(--ink-40);
  margin-top: 8px;
  font-style: italic;
}

/* ============================================
   VOTE — 投票セクション
   ============================================ */
.vote {
  padding: 160px 0;
  background: var(--cream);
}

.vote-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.vote-subtitle {
  font-size: 1rem;
  color: var(--ink-60);
  margin-top: 12px;
}

.vote-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 80px;
}

.vote-step {
  background: var(--white);
  border: 1px solid var(--ink-10);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
  border-radius: 4px;
}

.vote-step:hover {
  border-color: var(--accent-border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--accent-border);
  transform: translateY(-4px);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.vote-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.vote-step p {
  font-size: 0.85rem;
  color: var(--ink-60);
  line-height: 1.8;
}

.step-arrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  padding: 0 16px;
  font-style: italic;
}

/* Schedule */
.schedule-box {
  max-width: 100%;
  margin: 24px auto 64px;
  border: 1px solid var(--ink-10);
  background: var(--white);
  padding: 48px;
}

.schedule-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-10);
}

.schedule-item {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
}

.s-label {
  /* font-size: 0.72rem; */
  color: var(--ink-40);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.s-date {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.s-date.highlight {
  color: var(--accent);
}

.schedule-note {
  text-align: center;
  /* font-size: 0.75rem; */
  color: var(--ink-60);
  margin-top: 20px;
}

/* Vote CTA */
.vote-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.vote-cta .btn {
  margin: 0 8px 16px;
}

.vote-cta-note {
  font-size: 0.78rem;
  color: var(--ink-40);
  margin-top: 8px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 160px 0;
  background: var(--gradient-section-alt);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.faq-header {
  margin-bottom: 64px;
}

.faq-item {
  border-bottom: 1px solid var(--ink-10);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink-40);
  transition: all var(--transition-base);
}

.faq-toggle::before {
  width: 14px;
  height: 1.5px;
}

.faq-toggle::after {
  width: 1.5px;
  height: 14px;
}

.faq-item.active .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.faq-answer-text {
  padding: 0 0 28px;
  font-size: 0.92rem;
  color: var(--ink-60);
  line-height: 2.2;
}

/* ============================================
   DOCUMENTS
   ============================================ */
.documents {
  padding: 120px 0;
  background: var(--off-white);
}

.documents-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.documents-header {
  margin-bottom: 48px;
}

.documents-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
}

.doc-list {
  border-top: 1px solid var(--ink-10);
}

.doc-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ink-10);
  align-items: center;
  transition: background var(--transition-base);
}

.doc-row:hover {
  background: var(--white);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}

.doc-date-col {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
}

.doc-title-col h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.doc-title-col p {
  font-size: 0.8rem;
  color: var(--ink-40);
}

.doc-type-col {
  font-size: 0.72rem;
  color: var(--ink-40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 48px;
  text-align: center;
  background: linear-gradient(150deg, #073a5a 0%, #0a4f7a 35%, #0f6fa8 70%, #2d8dc0 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;

}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(253, 243, 11, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-countdown {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.fcc-label {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
}

.final-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: none;
  letter-spacing: -0.01em;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  /* font-size: 0.98rem; */
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(7, 58, 90, 0.96);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
  border-top: 1px solid rgba(253, 243, 11, 0.2);
  box-shadow: 0 -4px 20px rgba(7, 58, 90, 0.2);
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.floating-cta-text {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
}

.floating-cta-text strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.floating-cta-text span {
  font-size: 0.78rem;
  color: rgba(253, 243, 11, 0.85);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 64px 0 40px;
  background: #073a5a;
  color: rgba(255, 255, 255, 0.45);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand .logo {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.footer-brand p {
  /* font-size: 0.78rem; */
  color: rgba(255, 255, 255, 0.35);
  max-width: 400px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-nav-col h5 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-nav-col ul {
  list-style: none;
}

.footer-nav-col ul li {
  margin-bottom: 8px;
}

.footer-nav-col ul a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav-col ul a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  /* font-size: 0.7rem; */
  color: rgba(255, 255, 255, 0.4);
  max-width: 600px;
  line-height: 1.8;
}

.footer-copy {
  /* font-size: 0.7rem; */
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes drift {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: 0.5s;
}

.reveal-stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-cta);
  z-index: 1100;
  transition: width 0.1s linear;
  box-shadow: none;
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   FOUNDER MESSAGE — 創業者メッセージ
   ============================================ */
.founder-message {
  padding: 140px 0;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.founder-message::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(200, 148, 46, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(27, 107, 138, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.founder-message-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.founder-message .eyebrow {
  color: var(--accent-light);
  margin-bottom: 24px;
}

.founder-message h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 48px;
}

.founder-quote {
  position: relative;
  padding: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 40px;
}

.founder-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--accent-light);
  opacity: 0.3;
  line-height: 1;
}

.founder-quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 2.4;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.founder-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.founder-signature .sig-line {
  width: 40px;
  height: 1px;
  background: var(--accent-light);
  opacity: 0.4;
}

.founder-signature strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ============================================
   SUPPORTER VOICES — 支援者の声
   ============================================ */
.supporters {
  padding: 140px 0;
  background: var(--off-white);
}

.supporters-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.supporter-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.supporter-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--ink-10);
  border-radius: 4px;
  transition: all var(--transition-base);
  position: relative;
}

.supporter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.supporter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.supporter-card:hover::before {
  transform: scaleX(1);
}

.supporter-card .quote-icon {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.supporter-card p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 2;
  margin-bottom: 24px;
}

.supporter-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-05);
}

.supporter-meta .meta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.supporter-meta .meta-info {
  font-size: 0.82rem;
  color: var(--ink-40);
}

.supporter-meta .meta-info strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ============================================
   NOTE ARTICLES
   ============================================ */
.note-articles {
  padding: 80px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.note-articles::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(200, 148, 46, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(27, 107, 138, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.note-articles-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.note-articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.note-articles-header-text .eyebrow {
  color: var(--accent-light);
  margin-bottom: 12px;
}

.note-articles-header-text h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 12px;
}

.note-articles-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.9;
}

.note-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 148, 46, 1);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color var(--transition-base), border-color var(--transition-base);
  flex-shrink: 0;
}

.note-all-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* カードグリッド */
.note-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ベースカード */
.note-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.note-card::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(255, 255, 255, 0.8); */
  transition: background 0.35s ease;
}

.note-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 148, 46, 0.3);
  background: rgba(45, 141, 192, 0.8);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
/* ⭐最重要カードを強調 */
.note-card--main {
  background: var(--accent-light);
  border-color: rgba(200, 148, 46, 0.2);
}

.note-card--main:hover {
  background: rgba(200, 148, 46, 0.13);
  border-color: rgba(200, 148, 46, 0.45);
}

/* カテゴリバッジ */
.note-card-category {
  margin-bottom: 16px;
}

.note-cat-badge {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.note-cat--story {
  background: #2c8dc0;
  color: var(--white);
}

.note-cat--main {
  background: var(--white);
  color: var(--accent-light);
}

.note-cat--vision {
  background: rgba(46, 139, 87, 0.2);
  color: #6fcb96;
}

/* タイトル・説明 */
.note-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65;
  color:var(--warm-gray-900);
  margin-bottom: 12px;
  flex-grow: 1;
  transition: all 0.35s var(--ease-out-expo);
}
.note-card--main .note-card-title {
  color: var(--white);
}
.note-card:hover .note-card-title {
  color: var(--white);
}
.note-card-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--warm-gray-900);
  margin-bottom: 24px;
  flex-grow: 2;
  transition: all 0.35s var(--ease-out-expo);
}
.note-card--main .note-card-desc {
  color: var(--white);
}
.note-card:hover .note-card-desc {
  color: var(--white);
}

/* フッター */
.note-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--accent-light);
  margin-top: auto;
}
.note-card--main .note-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

.note-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--warm-gray-900);
}
.note-card--main .note-card-author {
  color: var(--white);
}

.note-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.note-read-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-light);
  transition: color var(--transition-base);
}
.note-card--main .note-read-label {
  color: var(--white);
}
.note-card:hover .note-read-label {
  color: var(--white);
}

.note-articles-disclaimer {
  margin-top: 24px;
  /* font-size: 0.72rem; */
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ============================================
   3-LINE SUMMARY
   ============================================ */
.summary-3line {
  padding: 100px 0;
  background: var(--off-white);
}

.summary-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.summary-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  text-align: left;
}

.summary-item {
  background: var(--white);
  border: 1px solid var(--ink-10);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.summary-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.summary-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
}

.summary-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.5;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.summary-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.summary-item p {
  font-size: 1rem;
  color: var(--warm-gray-900);
  line-height: 2;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 140px 0;
  background: var(--white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

/* .profile-photo-box {
  position: sticky;
  top: 100px;
} */

.profile-quick {
  margin-top: 24px;
}

.profile-quick-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-05);
  font-size: 0.82rem;
}

.pq-label {
  color: var(--primary);
  min-width: 50px;
  font-weight: 600;
}

.pq-val {
  color: var(--ink-80);
}

.about-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

.about-text p {
  /* font-size: 0.92rem; */
  line-height: 2.2;
  color: var(--warm-gray-900);
}

/* STAT PILLS */
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--ink-10);
  padding: 16px 18px;
  text-align: center;
  flex: 1;
  min-width: 160px;
  transition: border-color var(--transition-base);
}

.stat-pill:hover {
  border-color: var(--accent-border);
}

.stat-pill strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  display: block;
}

.stat-pill span {
  font-size: 1rem;
  color: var(--ink-80);
  margin-top: 4px;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why {
  padding: 140px 0;
  background: var(--off-white);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-lead {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.9;
  margin-top: 16px;
  max-width: 680px;
}

/* ============================================
   SUPPORT TIERS (3-tier CTA)
   ============================================ */
.support-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.support-tier {
  background: var(--white);
  border: 1px solid var(--ink-10);
  padding: 40px 32px;
  transition: all var(--transition-base);
  border-radius: 8px;
  position: relative;
}

.support-tier--featured {
  background: linear-gradient(150deg, #0a4f7a 0%, #0f6fa8 60%, #2d8dc0 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 12px 48px rgba(15, 111, 168, 0.25);
}

.support-tier--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(253, 243, 11, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.support-tier--featured .plan-list li {
  color: rgba(255, 255, 255, 0.78);
}

.support-tier--featured .plan-list li::before {
  color: var(--yellow);
}

.support-tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.support-tier--featured:hover {
  box-shadow: 0 20px 64px rgba(11, 61, 92, 0.35);
}

.tier-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.tier-badge {
  /* font-size: 0.72rem; */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--teal-subtle);
  color: var(--teal);
  padding: 4px 16px;
  border-radius: 100px;
}

.tier-badge--accent {
  background: var(--gradient-cta);
  color: var(--white);
}

.tier-who {
  /* font-size: 0.75rem; */
  color: var(--ink-40);
}

.support-tier--featured .tier-who {
  color: rgba(255, 255, 255, 0.5);
}

.support-tier .tier-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.support-tier h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.support-tier--featured h3 {
  color: var(--white);
}

/* ============================================
   LINE CTA BOX
   ============================================ */
.line-cta-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  padding: 20px;
  background: rgba(6, 199, 85, 0.05);
  border: 1px solid rgba(6, 199, 85, 0.25);
  border-radius: 6px;
}

/* ボタン・説明エリア（上段） */
.line-cta-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* 仕切り線（不使用 — 非表示） */
.line-cta-divider {
  display: none;
}

/* QRエリア（下段・PC版のみ） */
.line-cta-left {
  display: flex;
  justify-content: center;
  padding-top: 4px;
  border-top: 1px solid rgba(6, 199, 85, 0.15);
}

.line-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.line-qr-placeholder {
  width: 96px;
  height: 96px;
  border: 1.5px solid rgba(6, 199, 85, 0.35);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  overflow: hidden;
}

.line-qr-label {
  font-size: 0.62rem;
  color: var(--ink-40);
  text-align: center;
  line-height: 1.5;
}

.line-cta-desc {
  /* font-size: 0.78rem; */
  color: var(--ink-60);
  line-height: 1.65;
  margin: 0;
}

/* LINE専用ボタン */
.btn--line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #06c755;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 20px;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  width: 100%;
}

.btn--line:hover {
  background: #05b04b;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
}

/* メールサブリンク */
.line-email-sub {
  font-size: 0.7rem;
  color: var(--ink-40);
  text-decoration: none;
  text-align: center;
  padding-bottom: 1px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
  align-self: flex-start;
  transition: color var(--transition-base);
}

.line-email-sub:hover {
  color: var(--ink);
}

/* コア支援の注意書き */
.tier-note {
  /* font-size: 0.74rem; */
  color: var(--ink-40);
  line-height: 1.75;
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--warm-gray-50);
  border-left: 2px solid var(--ink-10);
  font-style: italic;
}

/* ============================================
   HERO ADDITIONS
   ============================================ */
.hero-sub-notice {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-left: 2px solid rgba(200, 148, 46, 0.4);
  background: rgba(255, 255, 255, 0.03);
  max-width: 520px;
}

/* ============================================
   TIMELINE ADDITIONS
   ============================================ */
.tl-note {
  margin-top: 48px;
  padding: 24px;
  background: var(--warm-gray-50);
  border: 1px solid var(--ink-05);
}

.tl-note p {
  font-size: 0.925rem;
  color: var(--ink-40);
  line-height: 1.8;
  font-style: italic;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */
.disclaimer-section {
  padding: 48px 0;
  background: var(--warm-gray-50);
  border-top: 1px solid var(--ink-05);
}

.disclaimer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.disclaimer-inner h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-60);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.disclaimer-inner p {
  /* font-size: 0.78rem; */
  color: var(--ink-60);
  line-height: 2;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
	.logo {
    width: 30%;
    font-size: 0.9rem;
	}
	.logo img {
		max-height: 3rem;

	}
  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 140px 48px 80px;
  }

  .hero-photo {
    height: 50vh;
  }

  .hero-scroll {
    display: none;
  }

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

  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-left {
    position: relative;
    top: auto;
  }

  .plan-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .plan-col {
    border-right: none;
    border-bottom: 1px solid var(--ink-10);
  }

  .plan-col:last-child {
    border-bottom: none;
  }

  .future-compare {
    grid-template-columns: 1fr;
  }

  .future-vs {
    width: 100%;
    height: 48px;
  }

  .note-cards {
    grid-template-columns: 1fr;
  }

  .note-articles-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .profile-photo-box {
    position: static;
  }

  .support-tiers {
    grid-template-columns: 1fr;
  }

  .philosophy-cards {
    grid-template-columns: 1fr;
  }

  .supporter-cards {
    grid-template-columns: 1fr;
  }

  .vote-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

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

  .footer-nav {
    gap: 40px;
  }
}

@media (max-width: 880px) {

  /* ===========================
     HEADER
     =========================== */
  .nav-links {
    gap: 15px;
  }

}
@media (max-width: 768px) {

  /* ===========================
     UTILITY
     =========================== */
  .pc-only {
    display: none;
  }
  .sp-only {
    display: inline;
  }


  /* ===========================
     HEADER & NAV
     =========================== */
  .header-inner {
    padding: 0 20px;
    height: 56px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100dvh;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    padding: 48px 36px;
    gap: 0;
    transition: right var(--transition-slow);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 0;
    letter-spacing: 0.03em;
  }

  /* モバイルメニューはscrolled状態でも常に白文字（ダーク背景のため） */
  .site-header.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.85);
  }
  .site-header.scrolled .nav-links a:hover {
    color: #ffffff;
  }

  .nav-links .nav-cta {
    margin-top: 16px;
    display: block;
    text-align: center;
    background: var(--gradient-cta);
    /* color: var(--white) !important; */
    border-radius: 2px;
    padding: 16px 24px;
  }

  .menu-toggle {
    display: flex;
  }

  /* ===========================
     HERO — スマホ最適化
     =========================== */
  .hero-content {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
  }

  /* 写真はスマホでは非表示（テキスト情報を優先） */
  .hero-photo {
    display: none;
  }

  .hero-text {
    padding: 96px 20px 56px;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }

  /* カウントダウン: コンパクト横並び */
  .hero-countdown-bar {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    width: fit-content;
  }

  .countdown-label {
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .countdown-num {
    font-size: 1.4rem;
  }

  .countdown-sub {
    font-size: 0.58rem;
  }

  .countdown-unit {
    gap: 2px;
  }

  /* H1: 読みやすいサイズで */
  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    line-height: 1.5;
    margin-bottom: 16px;
  }

  /* 免責notice: スマホではよりコンパクト */
  .hero-sub-notice {
    font-size: 0.72rem;
    padding: 10px 14px;
    margin-bottom: 16px;
    max-width: 100%;
    line-height: 1.7;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.9;
    margin-bottom: 28px;
  }

  /* CTAボタン: 縦積み＋フルwidth＋タップしやすい高さ */
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 0.95rem;
  }

  /* 最初のボタン（primary）は特に目立たせる */
  .hero-actions .btn:first-child {
    font-size: 1rem;
    min-height: 56px;
  }

  /* アウトラインボタンはテキストを小さく */
  .hero-actions .btn--white-outline {
    font-size: 0.82rem;
    min-height: 48px;
  }

  /* 写真エリアは最小限 */
  .hero-photo {
    height: 45vw;
    min-height: 180px;
    max-height: 260px;
    order: 0;
  }

  .hero-scroll {
    display: none;
  }

  /* ===========================
     NOTE ARTICLES
     =========================== */
  .note-articles {
    padding: 48px 0;
  }

  .note-articles-inner {
    padding: 0 20px;
  }

  .note-articles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }

  .note-articles-header-text h2 {
    font-size: 1.25rem;
  }

  .note-all-link {
    font-size: 0.8rem;
    align-self: flex-start;
  }

  .note-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* noteカード: スマホでは横スクロール可能に */
  .note-card {
    padding: 24px 20px;
  }

  .note-card-title {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .note-card-desc {
    font-size: 0.79rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
  }

  /* ===========================
     3行要約
     =========================== */
  .summary-3line {
    padding: 60px 0;
  }

  .summary-inner {
    padding: 0 20px;
  }

  .summary-num {
    font-size: 0.68rem;
    font-style: normal;
    letter-spacing: 0.12em;
    opacity: 0.35;
    margin-bottom: 4px;
    display: inline-block;
  }

  .summary-item {
    padding: 18px;
    border-left: 3px solid var(--accent);
    border-top: none;
  }

  .summary-item::before {
    display: none;
  }

  .summary-item h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .summary-item p {
    font-size: 0.8rem;
    line-height: 1.75;
  }

  /* ===========================
     ABOUT（人物）
     =========================== */
  .about {
    padding: 52px 0;
  }

  .about-inner {
    padding: 0 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  /* プロフィール写真プレースホルダー: スマホは非表示（空白掉查） */
  .profile-photo-box {
    /* display: none; */
  }

  /* 数字カード: 2×2グリッドでコンパクトに */
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .number-card {
    padding: 16px 12px;
  }

  .number-value {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
  .number-value.special-text {
    font-size: 1.5rem;
  }
  /* .number-unit {
    font-size: 0.75rem;
  } */

  /* stat pills: 2×2 */
  .numbers-sub {
    gap: 8px !important;
    flex-wrap: wrap;
  }

  .stat-pill {
    min-width: calc(50% - 4px);
    padding: 12px 10px;
    flex: 0 0 calc(50% - 4px);
  }

  .stat-pill strong {
    font-size: 1.3rem;
  }

  .stat-pill span {
    font-size: 0.9rem;
  }

  /* ===========================
     STORY（歩み）
     =========================== */
  .story {
    padding: 72px 0;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .story-left {
    position: relative;
    top: auto;
  }

  /* エピソード: 横並びマーカーを廃止しシンプルに */
  .story-episode {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ink-05);
    margin-bottom: 28px;
  }

  .story-episode:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .episode-marker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-direction: row;
  }

  .episode-year {
    font-size: 0.72rem;
    padding: 3px 8px;
  }

  .episode-line {
    height: 1px;
    width: 32px;
    min-height: auto;
    flex-shrink: 0;
  }

  .episode-body h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .episode-body p {
    font-size: 0.82rem;
    line-height: 1.9;
  }

  /* ===========================
     MID CTA
     =========================== */
  .mid-cta {
    padding: 60px 20px;
  }

  .mid-cta h2 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 24px;
  }

  .mid-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* ===========================
     WHY / VISION
     =========================== */
  .why {
    padding: 72px 0;
  }

  .why-inner,
  .vision-inner {
    padding: 0 20px;
  }

  /* WHYセクションタイトル */
  .why {
    padding: 52px 0;
  }

  .why h2 {
    font-size: 1.3rem !important;
  }

  .why-inner,
  .vision-inner {
    padding: 0 20px;
  }

  .future-compare {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .future-card {
    padding: 20px 18px;
  }

  .future-card h3 {
    font-size: 1rem;
  }

  .future-card li {
    font-size: 0.82rem;
    line-height: 1.7;
  }

  .future-vs {
    width: 100%;
    height: 36px;
  }

  /* ===========================
     100日計画
     =========================== */
  .plan-inner {
    padding: 0 20px;
  }

  .plan-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .plan-header h2 {
    font-size: 1.3rem !important;
  }

  .plan-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .plan-col {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid var(--ink-10);
  }

  .plan-col-num {
    font-size: 2rem;
    margin-bottom: 2px;
  }

  .plan-col-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }

  .plan-col h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .plan-col .col-sub {
    font-size: 0.85rem;
  }

  .plan-list li {
    /* font-size: 0.8rem;
    padding-left: 12px; */
    margin-bottom: 5px;
    line-height: 1.6;
  }

  /* .plan-promise {
    font-size: 0.78rem;
  } */

  .plan-col:last-child {
    border-bottom: none;
  }

  /* ===========================
     FOUNDER MESSAGE
     =========================== */
  .founder-message {
    padding: 52px 0;
  }

  .founder-message-inner {
    padding: 0 20px;
  }

  .founder-message h2 {
    font-size: 1.3rem !important;
  }

  .founder-quote {
    padding: 20px 18px;
  }

  .founder-quote::before {
    font-size: 3rem;
    top: -12px;
    left: 14px;
  }

  .founder-quote p {
    font-size: 0.84rem;
    line-height: 2;
  }

  /* ===========================
     SUPPORT TIERS（支援3段階）
     =========================== */
  .vote {
    padding: 72px 0;
  }

  .vote-inner {
    padding: 0 20px;
  }

  .support-tiers {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .support-tier {
    padding: 28px 20px;
  }

  /* LINE CTA: モバイルではQR非表示・ボタンのみ */
  .line-cta-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  /* QRエリアを完全に非表示 */
  .line-cta-left,
  .line-cta-divider {
    display: none;
  }

  /* ボタンエリアをフル幅に */
  .line-cta-right {
    padding: 0;
    width: 100%;
  }

  /* featuredを先頭に */
  .support-tier--featured {
    order: -1;
  }

  /* ===========================
     スケジュール
     =========================== */
  .schedule-box {
    padding: 24px 20px;
  }

  .schedule-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .schedule-item {
    padding: 12px 14px;
  }

  /* ===========================
     PHILOSOPHY
     =========================== */
  .philosophy {
    padding: 72px 0;
  }

  .philosophy-inner {
    padding: 0 20px;
  }

  /* 2カラムでコンパクトに */
  .philosophy-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .phil-card {
    padding: 20px 16px;
  }

  /* ===========================
     TIMELINE
     =========================== */
  .timeline {
    padding: 72px 0;
  }

  .timeline-inner {
    padding: 0 20px;
  }

  .timeline-labels {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .tl-event {
    padding: 20px 16px;
    margin-left: 0;
  }

  .tl-event-header {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }

  .tl-date {
    font-size: 0.75rem;
  }

  .tl-event p {
    font-size: 0.82rem;
    line-height: 1.85;
  }

  .tl-source {
    font-size: 0.7rem;
  }

  /* ===========================
     FAQアコーディオン
     =========================== */
  .faq {
    padding: 72px 0;
  }

  .faq-inner {
    padding: 0 20px;
  }

  .faq-question {
    padding: 18px 16px;
    font-size: 0.9rem;
    /* タップターゲット確保 */
    min-height: 56px;
  }

  .faq-answer-text {
    padding: 0 16px 20px;
    font-size: 0.83rem;
    line-height: 1.9;
  }

  /* ===========================
     資料室
     =========================== */
  .documents {
    padding: 72px 0;
  }

  .documents-inner {
    padding: 0 20px;
  }

  .doc-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .doc-date-col {
    font-size: 0.72rem;
  }

  /* ===========================
     FINAL CTA
     =========================== */
  .final-cta {
    padding: 72px 20px;
  }

  .final-cta h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 16px;
  }

  .final-cta-countdown {
    margin-bottom: 28px;
    padding: 10px 20px;
    gap: 12px;
  }

  .fcc-label { font-size: 0.68rem; }

  .final-cta-countdown .countdown-num {
    font-size: 1.4rem;
  }

  .final-cta-countdown .countdown-sub {
    font-size: 0.58rem;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* ===========================
     FLOATING CTA — スマホ専用最適化
     =========================== */
  .floating-cta-inner {
    padding: 12px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .floating-cta-text {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    font-size: 0.8rem;
  }

  .floating-cta-text strong {
    font-size: 0.88rem;
  }

  .floating-cta .btn--sm {
    flex-shrink: 0;
    min-height: 40px;
    font-size: 0.8rem;
    padding: 0 16px;
    white-space: nowrap;
  }

  /* ===========================
     SUPPORTERS
     =========================== */
  .supporters {
    padding: 72px 0;
  }

  .supporters-inner {
    padding: 0 20px;
  }

  .supporter-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .supporter-card {
    padding: 24px 20px;
  }

  /* ===========================
     ABOUT PROFILE QUICK
     =========================== */
  .profile-quick-item {
    flex-direction: column;
    gap: 2px;
    padding: 12px 0;
  }

  /* ===========================
     FOOTER
     =========================== */
  .footer-inner {
    padding: 0 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
    padding-bottom: 36px;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-nav-col {
    flex: 1;
    min-width: 120px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
  }

  /* .footer-disclaimer,
  .footer-copy {
    font-size: 0.72rem;
  } */

  /* ===========================
     NOTE ARTICLES INNER
     =========================== */
  .note-articles-inner {
    padding: 0 20px;
  }

  /* ===========================
     DISCLAIMER
     =========================== */
  .disclaimer-inner {
    padding: 0 20px;
  }

  /* ===========================
     SUMMARY INNER
     =========================== */
  .summary-inner {
    padding: 0 20px;
  }

  /* ===========================
     STATEMENT
     =========================== */
  .statement-inner {
    padding: 0 20px;
  }

  .statement-inner blockquote {
    font-size: clamp(1rem, 4.5vw, 1.3rem);
    line-height: 2;
    padding: 0;
  }

  /* ===========================
     汎用 SECTION タイトル
     =========================== */
  .section-header h2,
  .about h2,
  .story h2,
  .why h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
  }

  /* ===========================
     VOTE CTA BUTTONS
     =========================== */
  .vote-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .vote-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* SUPPORT TIER内ボタン */
  .support-tier .btn {
    min-height: 48px;
  }
}

/* ===========================
   超小型デバイス（375px以下）
   =========================== */
@media (max-width: 375px) {
  .logo {
    flex-direction: column;
  }
  .logo img {
    max-height: 3rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }

  .countdown-num {
    font-size: 1.4rem;
  }

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

  .philosophy-cards {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand .logo {
    align-items: flex-start;
  }
}
/* ===== SCHOO BANNER ===== */
.schoo-banner {
  padding: 32px 0;
}
.schoo-banner a {
  display: block;
}
.schoo-banner img {
  border-radius: 8px;
}
