/* =========================================================
   社外CMOサービス — Landing Page
   Design tokens & component styles
   ========================================================= */

:root {
  /* ---- Color: Navy / Brand ---- */
  --navy-900: #071a3a;
  --navy-800: #0a2350;
  --navy-700: #0e2f6b;
  --navy-600: #133b86;
  --blue-600: #1b50a3;
  --blue-500: #2563b8;
  --blue-400: #3f7fd4;

  /* ---- Accent ---- */
  --gold: #f5b400;
  --gold-dark: #e0a300;
  --gold-ink: #0a2350;

  /* highlight gradients used in hero headline */
  --hl-teal-a: #38e3d4;   /* cyan   */
  --hl-teal-b: #54e39a;   /* teal   */
  --hl-teal-c: #a6ec4f;   /* lime   */
  --hl-yellow: #ffc93c;
  --hl-yellow-b: #ffe06a;

  /* ---- Neutrals (cool-tinted) ---- */
  --ink-900: #0d1b32;
  --ink-700: #1e3050;
  --ink-500: #4a5a74;
  --ink-400: #6e7d96;
  --line: #e3e8f0;
  --line-strong: #cfd7e3;
  --surface: #ffffff;
  --bg-soft: #eef2f7;
  --bg-softer: #f5f7fb;

  /* ---- Layout ---- */
  --maxw: 1160px;
  --gutter: 24px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 76px;

  /* ---- Shadow ---- */
  --shadow-sm: 0 2px 8px rgba(16, 35, 70, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 35, 70, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 24, 55, 0.18);

  /* ---- Type ---- */
  --font: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-mono: "Bebas Neue", "DM Mono", ui-monospace, monospace;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--surface);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------------- Layout helpers ---------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 120px); }
.section--soft { background: var(--bg-soft); }

/* ---------------- Section heads ---------------- */
.eyebrow {
  display: block;
  text-align: center;
  color: var(--blue-500);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.section-title .accent { color: var(--blue-600); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.3;
  padding: 18px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center; justify-content: center;
}
.btn--gold {
  background: var(--gold);
  color: var(--gold-ink);
  box-shadow: 0 10px 26px rgba(245, 180, 0, 0.35);
}
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(245,180,0,.42); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.10); transform: translateY(-2px); }
.btn--lg { padding: 22px 48px; font-size: 1.12rem; }
.btn--block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(7, 22, 50, 0.80);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 100;
  transition: background .3s ease;
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}
.brand__mark {
  width: 30px; height: 30px;
  color: var(--gold);
  flex: none;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  color: rgba(255,255,255,.86);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding-block: 6px;
  transition: color .15s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .22s ease;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
.header .btn { padding: 12px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s 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); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(56px, 7vw, 110px);
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% 22%, rgba(86,150,235,.45), transparent 58%),
    radial-gradient(700px 500px at 30% 90%, rgba(40,90,180,.30), transparent 60%),
    linear-gradient(150deg, #11357e 0%, #0b2459 42%, #071a3a 100%);
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,170,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,170,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 120% at 70% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero__kicker {
  font-size: 0.98rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.005em;
}
.hero__title .hl-teal {
  background: linear-gradient(96deg, var(--hl-teal-a) 0%, var(--hl-teal-b) 48%, var(--hl-teal-c) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* soft glow behind the colored text, matching the reference */
  filter: drop-shadow(0 2px 14px rgba(70, 220, 180, 0.32));
}
.hero__title .hl-yellow {
  background: linear-gradient(96deg, var(--hl-yellow) 0%, var(--hl-yellow-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(255, 200, 50, 0.28));
}
.hero__lead {
  margin-top: 26px;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255,255,255,.82);
  max-width: 38em;
}
.hero__cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* ---- Hero circular diagram ---- */
.cycle {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.cycle__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.cycle__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38%; height: 38%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #ffffff, #eaf1fb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(0,0,0,.35), inset 0 0 0 8px rgba(27,80,163,.08);
}
.cycle__center span {
  font-weight: 700;
  color: var(--navy-700);
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.cycle__node {
  position: absolute;
  width: 27%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-500), var(--navy-700));
  box-shadow: 0 14px 30px rgba(0,0,0,.32);
  border: 2px solid rgba(255,255,255,.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 6px;
}
.cycle__node svg { width: 26%; height: auto; margin-bottom: 5px; opacity: .95; }
.cycle__node b { font-size: clamp(.72rem, 1.7vw, .92rem); font-weight: 700; line-height: 1.25; }
.cycle__node small { font-size: clamp(.56rem, 1.3vw, .68rem); opacity: .82; font-weight: 400; }
.cycle__node--top    { top: 0; left: 50%; transform: translateX(-50%); }
.cycle__node--right  { top: 50%; right: 0; transform: translateY(-50%); }
.cycle__node--bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.cycle__node--left   { top: 50%; left: 0; transform: translateY(-50%); }

/* =========================================================
   PROBLEM ("こんなお悩み")
   ========================================================= */
.problem-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.problem-card__media { position: relative; aspect-ratio: 16 / 7; }
.problem-card__head {
  background: linear-gradient(120deg, var(--navy-700), var(--blue-600));
  color: #fff;
  font-weight: 700;
  font-size: 1.12rem;
  text-align: center;
  padding: 18px 20px;
}
.problem-card__body { padding: 26px 28px 30px; }
.check-list { display: grid; gap: 16px; }
.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-700);
}
.check-list .ico {
  margin-top: 3px;
  width: 22px; height: 22px;
  color: var(--blue-500);
  flex: none;
}
.problem-note {
  margin-top: 44px;
  text-align: center;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink-900);
}
.problem-note em { color: var(--blue-600); font-style: normal; }

/* ---- CTA band ---- */
.cta-band { background: var(--bg-soft); padding-block: clamp(40px, 6vw, 64px); }
.cta-band .wrap { display: flex; justify-content: center; }

/* =========================================================
   WHY (dark) "なぜ成果につながらないのか"
   ========================================================= */
.why {
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 520px at 18% 6%, rgba(86,150,235,.40), transparent 56%),
    radial-gradient(760px 520px at 92% 96%, rgba(60,120,220,.26), transparent 60%),
    linear-gradient(158deg, #123a86 0%, #0b2459 46%, #071a3a 100%);
}
.why__cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  backdrop-filter: blur(4px);
}
.why-card h3 {
  text-align: center;
  font-size: 1.22rem;
  font-weight: 700;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.why-card__visual {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card p {
  margin-top: 22px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,.78);
  text-align: center;
}
.scattered { display: flex; flex-wrap: wrap; gap: 16px 22px; justify-content: center; align-items: flex-start; max-width: 230px; }
.scattered .item { display: flex; flex-direction: column; align-items: center; gap: 7px; color: #fff; font-size: .76rem; }
.scattered .item svg { width: 38px; height: 38px; opacity: .9; }

.blueprint {
  margin-top: 30px;
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--radius);
  padding: 34px clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
}
.blueprint__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.blueprint__lead { font-size: clamp(1.05rem, 2.3vw, 1.4rem); font-weight: 700; line-height: 1.6; }
.blueprint__lead .hl { color: var(--blue-600); }
.blueprint__flow {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 18px);
  flex-wrap: wrap;
  justify-content: center;
}
.flow-step { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--navy-700); min-width: 76px; }
.flow-step svg { width: 38px; height: 38px; color: var(--blue-500); }
.flow-step span { font-size: .82rem; font-weight: 700; }
.flow-arrow { color: var(--blue-400); flex: none; }
.blueprint__note {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px dashed var(--line-strong);
  text-align: center;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink-700);
}

/* =========================================================
   SERVICES "提供サービス"
   ========================================================= */
.svc-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.svc-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.svc-card__num {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--blue-500), var(--navy-700));
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}
.svc-card__head h3 { font-size: 1.2rem; font-weight: 700; }
.svc-card__main { display: flex; gap: 18px; align-items: flex-start; }
.svc-card__icon {
  flex: none;
  width: 64px; height: 64px;
  color: var(--blue-500);
}
.svc-card__icon svg { width: 100%; height: 100%; }
.svc-list { display: grid; gap: 11px; }
.svc-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
  align-items: start;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-700);
}
.svc-list .tri { color: var(--blue-500); margin-top: 6px; }

/* ---- blue statement band ---- */
.statement {
  margin-top: 46px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 300px at 88% 50%, rgba(120,180,255,.22), transparent 60%),
    linear-gradient(120deg, var(--blue-600), var(--navy-700));
  color: #fff;
  padding: clamp(30px, 4vw, 44px) clamp(26px, 4vw, 52px);
  display: flex;
  align-items: center;
  gap: 26px;
}
.statement__check {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
}
.statement__check svg { width: 30px; height: 30px; }
.statement p { font-size: clamp(1.1rem, 2.6vw, 1.6rem); font-weight: 700; line-height: 1.55; }
.statement p .hl { color: var(--hl-yellow); }

/* =========================================================
   RESULTS "実現できること"
   ========================================================= */
.result-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.result-card__media { aspect-ratio: 4 / 3; }
.result-card__cap {
  padding: 18px 16px 22px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--navy-700);
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   CASES "ご支援事例"
   ========================================================= */
.case-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: default;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover { transform: none; box-shadow: none; }
.case-card__media { aspect-ratio: 16 / 9; }
.case-card__body { padding: 24px 24px 28px; }
.case-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.case-card h3 { font-size: 1.12rem; font-weight: 700; line-height: 1.5; margin-bottom: 12px; }
.case-card p { font-size: 0.92rem; color: var(--ink-500); line-height: 1.8; }
.case-metric {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.case-metric b { font-size: 1.7rem; font-weight: 700; color: var(--blue-600); font-family: var(--font-mono); }
.case-metric span { font-size: 0.86rem; color: var(--ink-500); }

/* =========================================================
   PRICING "料金プラン"
   ========================================================= */
.price-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card--featured {
  border: 2px solid var(--blue-500);
  box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card__name { font-size: 1.32rem; font-weight: 800; color: var(--navy-700); text-align: center; }
.price-card__desc { margin-top: 12px; font-size: 0.9rem; color: var(--ink-500); line-height: 1.7; min-height: 3em; text-align: center; }
.price-card__price { margin-top: 18px; display: flex; align-items: baseline; justify-content: center; gap: 2px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
/* 「月額」をキャンペーンと同じゴールドの丸チップに */
.price-card__price .pre {
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: linear-gradient(180deg, var(--camp-gold-b), var(--camp-gold-c));
  width: 2.7em; height: 2.7em;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  align-self: center;
  margin-right: .3em;
  flex: none;
}
/* 数字を明朝体 × ゴールドグラデーション(キャンペーンの「50%OFF」と統一) */
.price-card__price .amount {
  font-family: var(--font-serif);
  font-size: clamp(2.9rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .03em;
  background: linear-gradient(180deg, var(--camp-gold-a), var(--camp-gold-b) 55%, var(--camp-gold-c));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* 「万円」も同じゴールド明朝で小さめに */
.price-card__price .unit {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .02em;
  margin-left: .12em;
  background: linear-gradient(180deg, var(--camp-gold-a), var(--camp-gold-b) 55%, var(--camp-gold-c));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* 主な支援内容 pill */
.price-pill {
  align-self: center;
  margin-top: 22px;
  display: inline-block;
  background: #57606e;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 20px;
  border-radius: 999px;
}
.price-pill--accent { background: linear-gradient(180deg, var(--blue-500), var(--blue-head)); }

.price-feat {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  flex: 1;
  width: fit-content;
  margin-inline: auto;
}
.price-feat li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-700);
}
.price-feat .ico { color: var(--blue-500); margin-top: 3px; }
.price-card .btn { margin-top: 28px; }
.btn--outline { background: transparent; color: var(--blue-600); border-color: var(--blue-500); }
.btn--outline:hover { background: var(--blue-600); color: #fff; transform: translateY(-2px); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { margin-top: 46px; max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.6;
}
.faq-q .q-mark {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--blue-600);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.faq-q .q-toggle {
  margin-left: auto;
  flex: none;
  width: 24px; height: 24px;
  color: var(--blue-500);
  transition: transform .25s ease;
}
.faq-item.is-open .q-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a__inner {
  padding: 0 24px 24px 72px;
  font-size: 0.96rem;
  color: var(--ink-500);
  line-height: 1.9;
}

/* =========================================================
   FINAL CTA + FORM
   ========================================================= */
.final {
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 520px at 82% 8%, rgba(86,150,235,.42), transparent 56%),
    radial-gradient(700px 480px at 12% 96%, rgba(50,110,210,.26), transparent 60%),
    linear-gradient(158deg, #123a86 0%, #0b2459 46%, #071a3a 100%);
}
.final__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.final__copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; line-height: 1.45; }
.final__copy h2 .hl { color: var(--hl-yellow); }
.final__copy p { margin-top: 22px; color: rgba(255,255,255,.82); font-size: 1rem; line-height: 2; }
.final__points { margin-top: 30px; display: grid; gap: 8px; }
.final__points li { display: flex; gap: 13px; align-items: center; font-size: 1rem; color: rgba(255,255,255,.92); }
.final__points .ico { flex: none; width: 24px; height: 24px; color: var(--hl-teal-b); }

.form-card {
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.form-card .sub { font-size: 0.9rem; color: var(--ink-500); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 8px; color: var(--ink-700); }
.field label .req { color: #d4503f; font-size: 0.78rem; margin-left: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  padding: 13px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-softer);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,184,.12);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #d4503f; background: #fdf3f1; }
.field .err { display: none; color: #d4503f; font-size: 0.8rem; margin-top: 6px; }
.field.has-error .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.78rem; color: var(--ink-400); line-height: 1.7; margin-top: 4px; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .ok {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e8f7ef;
  color: #1d9d63;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { color: var(--ink-900); }
.form-success p { color: var(--ink-500); font-size: 0.95rem; margin-top: 8px; }

/* =========================================================
   Contact Form 7 — .form-card 内に限定してスタイル上書き
   ========================================================= */
/* CF7のデフォルトmarginをリセット */
.form-card .wpcf7 { margin: 0; }
.form-card .wpcf7-form p { margin: 0; }

/* CF7のcontrol-wrapをblock化（inline→block） */
.form-card .wpcf7-form-control-wrap { display: block; }

/* フィールド構造を既存の .field と同等に */
.form-card .wpcf7-form .field { margin-bottom: 18px; }
.form-card .wpcf7-form .field label {
  display: block; font-size: 0.88rem; font-weight: 700;
  margin-bottom: 8px; color: var(--ink-700);
}
.form-card .wpcf7-form .field label .req {
  color: #d4503f; font-size: 0.78rem; margin-left: 6px;
}

/* input / select / textarea */
.form-card .wpcf7-form input[type="text"],
.form-card .wpcf7-form input[type="email"],
.form-card .wpcf7-form input[type="tel"],
.form-card .wpcf7-form select,
.form-card .wpcf7-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--bg-soft);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-card .wpcf7-form textarea {
  resize: vertical; min-height: 110px; line-height: 1.7;
}
.form-card .wpcf7-form input:focus,
.form-card .wpcf7-form select:focus,
.form-card .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,184,.12);
}

/* バリデーションエラー */
.form-card .wpcf7-not-valid {
  border-color: #d4503f !important;
  background: #fdf3f1 !important;
}
.form-card .wpcf7-not-valid-tip {
  display: block;
  color: #d4503f;
  font-size: 0.8rem;
  margin-top: 6px;
}

/* 送信ボタン */
.form-card .wpcf7-submit {
  width: 100% !important;
  cursor: pointer !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  font-family: inherit !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  padding: 17px 32px !important;
  border-radius: 8px !important;
  border: none !important;
  background: linear-gradient(135deg, #fac630, #f5b400, #e0a300) !important;
  color: #0a2350 !important;
  box-shadow: 0 8px 22px rgba(180,130,0,.28) !important;
  transition: filter .2s ease, transform .15s ease, box-shadow .2s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.form-card .wpcf7-submit:hover {
  filter: brightness(1.06) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(180,130,0,.36) !important;
}
.form-card .wpcf7-submit:disabled {
  opacity: 0.6 !important; cursor: wait !important; transform: none !important;
}

/* 送信中スピナー */
.form-card .wpcf7-spinner { margin-left: 10px; }

/* 送信結果メッセージ（成功・エラー共通） */
.form-card .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
}
.form-card .wpcf7-mail-sent-ok {
  background: #edfaf3;
  color: #1a7a45;
  border-left: 3px solid #2da05a;
}
.form-card .wpcf7-mail-sent-ng,
.form-card .wpcf7-aborted,
.form-card .wpcf7-spam-blocked,
.form-card .wpcf7-validation-errors {
  background: #fdf3f1;
  color: #c0392b;
  border-left: 3px solid #d4503f;
}

/* 2カラム行（名前・電話） */
.form-card .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 500px) {
  .form-card .form-row { grid-template-columns: 1fr; }
}

/* プライバシー注記 */
.form-card .form-note {
  font-size: 0.78rem; color: var(--ink-400); line-height: 1.7; margin-top: 4px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  z-index: 2;            /* CONTACTの斜め帯のはみ出しを覆い、上端を水平に */
  background: #050f24;
  color: rgba(255,255,255,.7);
  padding-block: 64px 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer .brand { margin-bottom: 18px; }
.footer__about { font-size: 0.9rem; line-height: 1.9; max-width: 32em; }
.footer__col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 6px; }
.footer__col a { font-size: 0.9rem; transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
}

/* =========================================================
   FIRST VIEW (new main visual) — お悩み → 社外CMO → 成果
   ========================================================= */
:root {
  --orange-600: #e8721c;
  --orange-500: #f2811e;
  --orange-50:  #fdf1e6;
  --blue-head:  #1f56b3;
  --blue-50:    #eef3fb;
  --fv-maxw:    1280px;
}

.fv {
  position: relative;
  isolation: isolate;
  color: var(--ink-900);
  padding-top: calc(var(--header-h) + clamp(28px, 4vw, 52px));
  background:
    radial-gradient(1100px 620px at 50% 4%, #eaf1fb 0%, #f3f6fb 46%, #eef3fa 100%);
  overflow: hidden;
}
/* 上部ブロック：背景画像はこの範囲のみ（フローパネル上辺で止まる） */
.fv__upper { position: relative; isolation: isolate; }
.fv__bg {
  position: absolute;
  top: calc(-1 * (var(--header-h) + clamp(28px, 4vw, 52px)));   /* ヒーロー最上部まで引き上げ（上の隙間を埋める） */
  bottom: clamp(-78px, -4.5vw, -28px);   /* フローパネルへかぶせる（ブロックに合わせて上げる） */
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);   /* 高さは上部ブロックに限定しつつ、幅は画面いっぱい */
  z-index: -1;
  background-image:
    linear-gradient(rgba(18,44,108,.14), rgba(18,44,108,.14)),
    url("images/hero-city.png");
  background-size: cover;
  background-position: 50% 90%;
  opacity: 0.85;
  mask-image: linear-gradient(180deg, #000 90%, transparent 100%);
}

.fv__wrap { max-width: var(--fv-maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---- top heading ---- */
.fv__lead { text-align: center; }
.fv__eyebrow {
  display: inline-block;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--navy-900);
  line-height: 1.3;
  text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 28px #fff;
}
.fv__vmark {
  display: block;
  width: clamp(96px, 13vw, 128px);
  margin: 14px auto 0;
  color: var(--blue-500);
}
.fv__vmark svg { display: block; width: 100%; height: auto; }

/* ---- middle 3 columns ---- */
.fv__cols {
  margin-top: clamp(20px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.18fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(8px, 1.4vw, 22px);
}
.fv__side { position: relative; display: flex; flex-direction: column; }
.fv__side--orange { align-items: flex-end; }

/* problem cards */
.pcard {
  width: 100%;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 42%);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(16, 35, 70, 0.14);
  position: relative;
  z-index: 2;
}
/* 吹き出しのテール（内側＝中央ハブの方へ向ける） */
.pcard::after {
  content: "";
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  width: 16px; height: 30px;
  background: #fff;
  filter: drop-shadow(0 4px 5px rgba(16,35,70,.10));
}
/* 左(青)カード：右側に右向きテール */
.pcard--blue::after {
  left: 100%;
  margin-left: -1px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  filter: drop-shadow(3px 0 4px rgba(31,86,179,.30));
}
/* 右(オレンジ)カード：左側に左向きテール */
.pcard--orange::after {
  right: 100%;
  margin-right: -1px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  filter: drop-shadow(-3px 0 4px rgba(232,114,28,.30));
}

/* カードの縦辺を斜めに（平行四辺形）。中身は逆スキューで直立（左右対称） */
.pcard--blue   { transform: skewX(4deg);  box-shadow: 0 12px 30px rgba(31,86,179,.34),  0 0 22px rgba(31,86,179,.22); }
.pcard--orange { transform: skewX(-4deg); box-shadow: 0 12px 30px rgba(232,114,28,.34), 0 0 22px rgba(232,114,28,.22); }
.pcard--blue   .pcard__list   { transform: skewX(-4deg); }
.pcard--orange .pcard__list   { transform: skewX(4deg); }
.pcard__head-t { display: inline-block; }
.pcard--blue   .pcard__head-t { transform: skewX(-4deg); }
.pcard--orange .pcard__head-t { transform: skewX(4deg); }
.pcard__head {
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.92rem, 1.4vw, 1.06rem);
  text-align: center;
  padding: 13px 16px;
  letter-spacing: 0.01em;
  border-radius: 20px 20px 0 0;
}
.pcard--blue   .pcard__head { background: linear-gradient(180deg, #2a64c4, var(--blue-head)); }
.pcard--orange .pcard__head { background: linear-gradient(180deg, #f0801f, var(--orange-600)); }
.pcard__list { padding: 18px 20px 20px; display: grid; gap: 0; }
.pcard__list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  padding: 15px 2px;
  align-items: start;
}
.pcard__list li + li { border-top: 1px dashed var(--line-strong); }
.pcard__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none; margin-top: 1px;
}
.pcard__check svg { width: 16px; height: 16px; }
.pcard--blue   .pcard__check { background: #fff; color: var(--blue-600);   box-shadow: 0 0 0 1.5px var(--blue-50),   0 3px 7px rgba(16,35,70,.10); }
.pcard--orange .pcard__check { background: #fff; color: var(--orange-600); box-shadow: 0 0 0 1.5px var(--orange-50), 0 3px 7px rgba(16,35,70,.10); }
.pcard__list b {
  display: block;
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink-900);
}
.pcard__list small {
  display: block;
  margin-top: 5px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--ink-500);
  font-weight: 500;
}

/* person photos (透過カットアウト) */
.fv__person {
  z-index: 4;                 /* カード(z-index:2)より前＝最前面 */
  width: clamp(150px, 16vw, 220px);
  height: auto;
  margin-top: -34px;          /* カード下端へ少し食い込ませる */
  filter: drop-shadow(0 14px 26px rgba(16,35,70,.22));
  pointer-events: none;
}
.fv__person--left  { align-self: flex-start; margin-left: clamp(-44px, -2.4vw, -10px); }
.fv__person--right { align-self: flex-end;   margin-right: clamp(-44px, -2.4vw, -10px); width: clamp(250px, 28vw, 380px); }
@media (max-width: 860px) {
  .fv__person { width: clamp(120px, 26vw, 170px); margin-top: -24px; }
}

/* center column */
.fv__center { text-align: center; padding-top: 4px; align-self: stretch; display: flex; flex-direction: column; align-items: center; }
.fv__title {
  font-size: clamp(1.7rem, 3.1vw, 2.65rem);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.01em;
  color: var(--navy-900);
  text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 28px #fff;
}
.fv__title .brand-accent { color: #0a1f44; }
.fv__title .hl { color: var(--blue-600); }

.fv__hub {
  margin-top: clamp(16px, 2.4vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 18px);
}
.fv__arrow { flex: none; display: flex; align-items: center; }
.fv__arrow svg { width: clamp(74px, 9.5vw, 144px); height: auto; }
.fv__arrow--blue   { color: var(--blue-500); }
.fv__arrow--orange { color: var(--orange-500); }
.fv__hub-circle {
  flex: none;
  width: clamp(96px, 9vw, 124px);
  height: clamp(96px, 9vw, 124px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 34px rgba(16,35,70,.20), inset 0 0 0 6px rgba(31,86,179,.06);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
}
.fv__hub-circle svg { width: 40%; height: auto; }
.fv__hub-circle span { font-size: clamp(0.8rem, 1.2vw, 0.95rem); font-weight: 800; color: var(--navy-700); }

/* ---- flow panel ---- */
.fv__flow {
  position: relative;
  z-index: 3;
  margin-top: clamp(-90px, -5.5vw, -44px);   /* ブロックを上げる */
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(16,35,70,.16);
  padding: clamp(22px, 2.6vw, 34px) clamp(20px, 2.4vw, 38px);
  display: grid;
  grid-template-columns: 1fr auto 1.04fr auto 1fr;
  align-items: stretch;
  gap: clamp(6px, 1.2vw, 16px);
}
.flowstep { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.flowstep__tag {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.82rem, 1.15vw, 0.96rem);
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.flowstep__tag--gray   { background: #57606e; }
.flowstep__tag--blue   { background: var(--blue-head); }
.flowstep__tag--orange { background: var(--orange-600); }
.flowstep__body {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
}
.flowstep__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.flowstep__img--mess   { max-width: 300px; }
.flowstep__img--laptop { max-width: 268px; }
.flowstep__img--growth { max-width: 240px; }
.flowstep__cap {
  font-size: clamp(0.82rem, 1.1vw, 0.94rem);
  line-height: 1.7;
  color: var(--ink-700);
  font-weight: 600;
}
.flowstep__arrow { align-self: center; color: var(--blue-500); flex: none; display: flex; }
.flowstep__arrow svg { width: clamp(26px, 3vw, 44px); height: auto; }
.flowstep__arrow--orange { color: var(--orange-500); }

/* step1 — tangled mess */
.mess { position: relative; width: 100%; max-width: 300px; aspect-ratio: 3 / 2; }
.mess__tangle { position: absolute; inset: 0; width: 100%; height: 100%; color: #c3ccd9; }
.mess__pills { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; justify-items: center; gap: 6px; }
.mpill {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 3px 9px rgba(16,35,70,.10);
  border-radius: 999px;
  font-size: clamp(0.62rem, 0.95vw, 0.78rem);
  font-weight: 700;
  color: var(--ink-700);
  padding: 6px 11px;
  white-space: nowrap;
}

/* step2 — laptop dashboard */
.laptop { width: 100%; max-width: 268px; }
.laptop__screen {
  background: linear-gradient(160deg, #f3f7fd, #e7eefa);
  border: 5px solid #d4ddea;
  border-radius: 12px 12px 4px 4px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.laptop__base {
  height: 9px;
  background: linear-gradient(180deg, #d4ddea, #b9c5d6);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
  width: 116%;
  max-width: none;
  transform: translateX(-7%);
}
.dash-pie {
  width: 52px; height: 52px; border-radius: 50%;
  background: conic-gradient(var(--blue-500) 0 42%, var(--orange-500) 42% 66%, #c7d6ea 66% 100%);
  justify-self: center;
}
.dash-bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; }
.dash-bars i { width: 9px; background: var(--blue-400); border-radius: 2px 2px 0 0; display: block; }
.dash-bars i:nth-child(1){height:38%} .dash-bars i:nth-child(2){height:60%}
.dash-bars i:nth-child(3){height:46%} .dash-bars i:nth-child(4){height:82%}
.dash-checks { grid-column: 1 / -1; display: grid; gap: 6px; }
.dash-checks i {
  height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, #cdd9ec 70%, transparent 70%);
  background-size: 100% 100%;
  position: relative;
}
.dash-checks i::before {
  content: "✓"; color: #1d9d63; font-size: 9px; font-weight: 900;
  position: absolute; right: 4px; top: -3px;
}

/* step3 — growth + result icons */
.growth { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.growth__chart { position: relative; width: 100%; max-width: 240px; height: 88px; }
.growth__bars { position: absolute; inset: auto 0 0 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 6px; height: 100%; }
.growth__bars i { flex: 1; background: linear-gradient(180deg, #6ea2e6, var(--blue-500)); border-radius: 3px 3px 0 0; }
.growth__bars i:nth-child(1){height:26%} .growth__bars i:nth-child(2){height:38%}
.growth__bars i:nth-child(3){height:52%} .growth__bars i:nth-child(4){height:64%}
.growth__bars i:nth-child(5){height:80%} .growth__bars i:nth-child(6){height:96%}
.growth__arrow { position: absolute; inset: 0; color: var(--orange-500); }
.result-icons { display: flex; justify-content: center; gap: clamp(10px, 1.6vw, 22px); }
.result-icons div { display: flex; flex-direction: column; align-items: center; gap: 7px; font-size: clamp(0.66rem, 1vw, 0.78rem); font-weight: 700; color: var(--ink-700); line-height: 1.35; }
.result-icons .ri-ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.result-icons .ri-ic svg { width: 22px; height: 22px; }

/* ---- bottom CTA band ---- */
.fv__cta {
  margin-top: clamp(26px, 3.4vw, 44px);
  background:
    repeating-linear-gradient(168deg, transparent 0 34px, rgba(255,255,255,.045) 34px 35px),
    radial-gradient(820px 520px at 18% 6%, rgba(86,150,235,.40), transparent 56%),
    radial-gradient(760px 520px at 92% 96%, rgba(60,120,220,.26), transparent 60%),
    linear-gradient(158deg, #123a86 0%, #0b2459 46%, #071a3a 100%);
}
.fv__cta-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(44px, 5.5vw, 80px) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  flex-wrap: wrap;
}
.fv__cta-text { color: #fff; font-size: clamp(1.05rem, 1.8vw, 1.4rem); font-weight: 800; letter-spacing: 0.02em; }
.fv__cta .btn--gold { padding: 17px 34px; font-size: 1.08rem; }
.fv__cta .btn .cal { width: 22px; height: 22px; display: inline-flex; }

/* ---- FV responsive (tablet down — smartphone refined later) ---- */
@media (max-width: 1080px) {
  .fv__cols { grid-template-columns: 1fr; gap: 22px; max-width: 640px; margin-inline: auto; }
  .fv__center { order: -1; }
  .fv__side--orange { align-items: stretch; }
  .fv__side--orange .fv__person { align-self: flex-end; }
  .fv__person { margin-top: -16px; }
  .fv__flow { grid-template-columns: 1fr; gap: 18px; max-width: 460px; margin-inline: auto; }
  .fv__flow .flowstep__arrow { transform: rotate(90deg); }
}

/* スマホ専用要素はデスクトップで非表示 */
.fv__sp-diagram { display: none; }
.fv__sp-issues  { display: none; }

/* ---- FV smartphone — シンプル1カラム ---- */
@media (max-width: 680px) {
  /* 左右のpcardと人物写真を非表示（スマホ専用リストで代替） */
  .fv__side { display: none; }
  /* フローパネルとアコーディオンを非表示 */
  .fv__flow { display: none; }
  .fv__about { display: block; margin-top: 16px; }
  /* colsは中央コンテンツのみ */
  .fv__cols { display: block; max-width: 100%; margin-inline: 0; }
  /* hubごと非表示 */
  .fv__hub { display: none; }
  /* タイトルを大きく */
  .fv__title { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  /* eyebrowをモバイルで小さく・1行に */
  .fv__eyebrow { font-size: clamp(0.78rem, 3.8vw, 0.95rem); white-space: nowrap; }

  /* スマホ専用悩みリスト */
  .fv__sp-issues {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
  }
  .fv__sp-col {
    list-style: none; margin: 0; padding: 10px 10px 10px 10px;
    border-radius: 10px;
    display: flex; flex-direction: column; gap: 6px;
    text-align: left;
  }
  .fv__sp-col--blue   { background: rgba(37,99,184,.10); border: 1px solid rgba(37,99,184,.22); }
  .fv__sp-col--orange { background: rgba(232,114,28,.09); border: 1px solid rgba(232,114,28,.22); }
  .fv__sp-col li {
    font-size: .68rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--navy-700);
    padding-left: 10px;
    position: relative;
  }
  /* チェックマーク */
  .fv__sp-col li { padding-left: 14px; }
  .fv__sp-col--blue   li::before {
    content: ""; position: absolute; left: 1px; top: .38em;
    width: 5px; height: 9px;
    border-right: 2px solid var(--blue-500);
    border-bottom: 2px solid var(--blue-500);
    transform: rotate(45deg);
    background: none; border-radius: 0;
  }
  .fv__sp-col--orange li::before {
    content: ""; position: absolute; left: 1px; top: .38em;
    width: 5px; height: 9px;
    border-right: 2px solid #e8721c;
    border-bottom: 2px solid #e8721c;
    transform: rotate(45deg);
    background: none; border-radius: 0;
  }

  /* スマホ専用図解 */
  .fv__sp-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 18px;
  }
  /* hubレイアウト */
  .fv__sp-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .fv__sp-hub-row {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .fv__sp-hub-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .fv__sp-htag {
    font-size: .66rem;
    font-weight: 700;
    color: var(--navy-700);
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(37,99,184,.28);
    border-radius: 6px;
    padding: 5px 0;
    backdrop-filter: blur(4px);
    width: 68px;
    text-align: center;
    flex: none;
  }
  .fv__sp-hub-core {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1b50a3, #0b2459);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(11,36,89,.36), 0 0 0 6px rgba(37,99,184,.12);
    flex: none;
  }
  /* 下矢印 */
  .fv__sp-down-arrow {
    color: var(--blue-500);
    margin: 6px 0 2px;
  }
  .fv__sp-down-arrow svg { width: 20px; height: 24px; display: block; }
  /* 結果バッジ */
  .fv__sp-result {
    background: var(--gold);
    color: var(--gold-ink);
    font-size: .96rem;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 11px 26px;
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(192,140,30,.28);
  }
  /* upperの下端余白を詰める */
  .fv__upper { padding-bottom: clamp(24px, 5vw, 40px); }
}

/* =========================================================
   CAMPAIGN banner (料金プラン特別キャンペーン)
   ========================================================= */
:root {
  --camp-navy:   #15265c;
  --camp-navy-2: #0c1a44;
  --camp-gold-a: #f0d588;
  --camp-gold-b: #c39c52;
  --camp-gold-c: #a37d33;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.camp {
  max-width: 1000px;
  margin: 0 auto clamp(46px, 6vw, 70px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* header band */
.camp__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(22px, 3vw, 32px) clamp(26px, 4vw, 46px);
  background:
    radial-gradient(150% 130% at 100% 0%, rgba(120,150,230,.26), transparent 55%),
    linear-gradient(118deg, var(--camp-navy) 0%, var(--camp-navy-2) 72%);
  overflow: hidden;
}
.camp__sparkle {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(240,213,136,.95) 1px, transparent 1.5px);
  background-size: 24px 21px;
  -webkit-mask-image: radial-gradient(130% 140% at 100% 0%, #000 0%, transparent 46%);
          mask-image: radial-gradient(130% 140% at 100% 0%, #000 0%, transparent 46%);
  opacity: .55;
  pointer-events: none;
}
.camp__medal {
  flex: none;
  position: relative;
  z-index: 1;
  width: clamp(90px, 9.5vw, 114px);
  height: clamp(90px, 9.5vw, 114px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #f8ecc4, var(--camp-gold-b) 68%, var(--camp-gold-c));
  box-shadow: 0 8px 22px rgba(0,0,0,.42), inset 0 0 0 3px rgba(255,255,255,.5), inset 0 0 0 7px rgba(163,125,51,.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #5a401a; text-align: center;
}
.camp__crown { width: 32%; margin-bottom: 1px; color: #fff; filter: drop-shadow(0 1px 1px rgba(90,64,26,.4)); }
.camp__medal-txt { display: flex; flex-direction: column; line-height: 1.02; font-weight: 900; }
.camp__medal-txt i { font-style: normal; font-size: clamp(.56rem, .9vw, .64rem); letter-spacing: .1em; }
.camp__medal-txt b { font-size: clamp(1.4rem, 2.4vw, 1.7rem); font-family: var(--font-serif); }

.camp__head { position: relative; z-index: 1; }
.camp__title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(1.3rem, 2.9vw, 2.05rem);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: .03em;
}
.camp__sub { margin-top: 9px; color: rgba(255,255,255,.84); font-size: clamp(.85rem, 1.4vw, 1rem); line-height: 1.7; }

/* white benefits panel */
.camp__panel {
  position: relative;
  margin: clamp(16px, 2vw, 22px);
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: clamp(8px, 2vw, 24px);
}
.camp__benefit { text-align: center; }
.camp__tag {
  display: inline-block;
  background: var(--camp-navy);
  color: #fff;
  font-weight: 700;
  font-size: clamp(.84rem, 1.3vw, .94rem);
  letter-spacing: .14em;
  padding: 6px 24px;
  border-radius: 4px;
  margin-bottom: clamp(14px, 2vw, 20px);
}
.camp__benefit-main { display: flex; align-items: center; justify-content: center; gap: clamp(8px, 1.5vw, 16px); }
.camp__bicon {
  flex: none;
  width: clamp(46px, 5vw, 60px); height: clamp(46px, 5vw, 60px);
  border-radius: 50%;
  background: #eef1f8;
  color: var(--camp-navy);
  display: flex; align-items: center; justify-content: center;
}
.camp__bicon svg { width: 54%; height: auto; }
.camp__bcopy { display: flex; flex-direction: column; align-items: flex-start; }
.camp__blabel { font-size: clamp(.98rem, 1.7vw, 1.28rem); font-weight: 800; color: var(--camp-navy); letter-spacing: .02em; }
.camp__bbig {
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1;
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  letter-spacing: .05em;
  background: linear-gradient(180deg, var(--camp-gold-a), var(--camp-gold-b) 55%, var(--camp-gold-c));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: flex; align-items: baseline;
}
.camp__bbig small { font-size: .42em; font-weight: 900; letter-spacing: .02em; }
.camp__chip {
  font-family: var(--font);
  font-style: normal;
  font-size: clamp(.7rem, 1vw, .82rem);
  font-weight: 800;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: linear-gradient(180deg, var(--camp-gold-b), var(--camp-gold-c));
  width: 2.7em; height: 2.7em;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  align-self: center;
  margin-right: .34em;
  flex: none;
}
.camp__bnote { margin-top: clamp(12px, 1.6vw, 16px); font-size: clamp(.82rem, 1.3vw, .95rem); color: var(--ink-700); line-height: 1.85; }

.camp__plus { align-self: stretch; position: relative; display: flex; align-items: center; justify-content: center; }
.camp__plus::before { content: ""; position: absolute; top: 6px; bottom: 6px; width: 1px; background: var(--line-strong); }
.camp__plus span {
  position: relative;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  background: var(--camp-navy);
  width: clamp(40px, 4.4vw, 52px); height: clamp(40px, 4.4vw, 52px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(12,26,68,.32);
}

/* note box */
.camp__note {
  margin: 0 clamp(16px, 2vw, 22px) clamp(16px, 2vw, 20px);
  padding: clamp(16px, 2vw, 22px) clamp(20px, 3vw, 32px);
  background: #eef2fa;
  border-radius: 12px;
  display: flex; align-items: center; gap: clamp(14px, 2vw, 22px); flex-wrap: wrap;
}
.camp__bulb {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--camp-navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.camp__bulb svg { width: 22px; height: 22px; }
.camp__note p { flex: 1; min-width: 240px; font-size: clamp(.86rem, 1.4vw, 1rem); font-weight: 700; color: var(--ink-900); line-height: 1.75; }
.camp__hand {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 700;
  color: var(--camp-navy);
  white-space: nowrap;
  position: relative;
  padding-bottom: 9px;
}
.camp__hand::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: 2px; height: 6px;
  border-bottom: 2.5px solid var(--gold);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: rotate(-1deg);
}
.camp__fine {
  text-align: center;
  padding: 0 24px clamp(20px, 3vw, 28px);
  font-size: clamp(.72rem, 1.1vw, .8rem);
  color: var(--ink-400);
  line-height: 1.7;
}

/* plans subhead (smaller, under campaign) */
.camp-plans-head { margin-top: clamp(48px, 6vw, 72px); }
.shead__title--sm { font-size: clamp(1.45rem, 3vw, 2.1rem); }

@media (max-width: 760px) {
  .camp__top { flex-direction: column; text-align: center; }
  .camp__panel { grid-template-columns: 1fr; }
  .camp__plus { align-self: center; padding: 6px 0; }
  .camp__plus::before { top: auto; bottom: auto; left: 10%; right: 10%; width: auto; height: 1px; }
  .camp__benefit-main { flex-direction: column; }
  .camp__bcopy { align-items: center; }
  .camp__note { text-align: center; justify-content: center; }
}

/* =========================================================
   IMAGE PLACEHOLDER (for ClaudeCode handoff)
   ========================================================= */
.ph {
  position: absolute;
  inset: 0;
  background-color: #dde4ee;
  background-image: repeating-linear-gradient(
    45deg, rgba(27,80,163,.07) 0 12px, rgba(27,80,163,.02) 12px 24px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ph--static { position: relative; width: 100%; height: 100%; }
.ph--dark {
  background-color: #112a55;
  background-image: repeating-linear-gradient(
    45deg, rgba(255,255,255,.05) 0 12px, rgba(255,255,255,.01) 12px 24px
  );
}
.ph__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--blue-600);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(27,80,163,.2);
  border-radius: 6px;
  padding: 6px 11px;
  line-height: 1.4;
  max-width: 84%;
}
.ph--dark .ph__label { color: #cfe0ff; background: rgba(8,22,50,.6); border-color: rgba(255,255,255,.2); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE — Tablet
   ========================================================= */
@media (max-width: 1000px) {
  .result-grid { grid-template-columns: repeat(3, 1fr); }
  .why__cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* =========================================================
   RESPONSIVE — Smartphone (重点)
   ========================================================= */
@media (max-width: 720px) {
  :root { --header-h: 64px; --gutter: 18px; }
  body { line-height: 1.8; }

  /* nav -> drawer */
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7,22,50,.98);
    backdrop-filter: blur(10px);
    padding: 8px 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { padding: 15px 6px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: 14px; }
  .nav-toggle { display: flex; }
  .header .nav .btn { padding: 16px; font-size: 1rem; }

  /* hero */
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { order: -1; }
  .cycle { max-width: 320px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  /* generic 2-col -> 1col */
  .problem-grid { grid-template-columns: 1fr; gap: 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card__main { gap: 16px; }
  .result-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }

  .blueprint__top { flex-direction: column; align-items: stretch; text-align: center; }
  .blueprint__flow { gap: 6px; }
  .flow-step { min-width: 64px; }
  .flow-step span { font-size: .72rem; }

  .statement { flex-direction: column; text-align: center; }

  .final__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }

  .btn { width: 100%; }
  .cta-band .btn { max-width: 480px; }
}

@media (max-width: 420px) {
  .result-grid { grid-template-columns: 1fr; }
}
