/* =========================================================
   ゆりかご｜人事担当者向けLP
   トーン: 上質さ × 保育の温かみ
   クリーム地 × ティール主役 × アプリコットの差し色 / 明朝見出し
   ビルドツールなし・素のCSS
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  /* ブランド（ロゴのティール） */
  --teal: #2bb2ac;
  --teal-deep: #1c8d88;
  --teal-darker: #11605c;
  --teal-soft: #e3f3f1;
  --teal-tint: #eef7f5;

  /* 保育の温かみ（紙・差し色） */
  --paper: #faf6ee;       /* ベース背景＝白ではなく生成り */
  --paper-2: #f4ecdc;     /* パネル・帯 */
  --paper-3: #efe4cf;     /* もう一段濃い面 */
  --apricot: #e88a4c;     /* シャープな差し色 */
  --apricot-soft: #f7e2cf;

  /* インク（少し温かい黒〜グレー） */
  --ink: #23302d;         /* 見出し */
  --ink-2: #4f5d59;       /* 本文 */
  --ink-3: #7f8b86;       /* 補足 */
  --line: #e7ddca;        /* 罫線（温かいトーン） */
  --line-2: #ddd1ba;

  /* タイポ */
  --serif: "Zen Old Mincho", "Shippori Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;

  /* かたち */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(35, 48, 45, .05), 0 2px 8px rgba(35, 48, 45, .04);
  --shadow: 0 12px 30px -12px rgba(20, 80, 76, .18), 0 4px 12px rgba(35, 48, 45, .05);
  --shadow-lg: 0 30px 60px -24px rgba(20, 80, 76, .28);

  --maxw: 1120px;
  --gut: clamp(20px, 5vw, 48px);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-2);
  background: var(--paper);
  line-height: 1.85;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* 紙の地のかすかな質感（縦のあたたかいグラデ） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 85% -5%, rgba(43, 178, 172, .10), transparent 60%),
    radial-gradient(55% 45% at -5% 8%, rgba(232, 138, 76, .07), transparent 55%);
  pointer-events: none;
}

/* ---------- レイアウト ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 120px); }

/* ---------- タイポ共通 ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  color: var(--teal-darker);
  text-transform: none;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--apricot));
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 700; line-height: 1.32; letter-spacing: .01em; text-wrap: balance; margin: 0; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-top: 14px; }
.section-head p { margin: 16px 0 0; color: var(--ink-2); font-size: 1.02rem; }

.lead { font-size: 1.06rem; color: var(--ink-2); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .22s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--teal); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(20, 80, 76, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(20, 80, 76, .6); }
.btn-ghost {
  background: #fff; color: var(--teal-darker);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--teal); color: var(--teal-deep); }
.btn-arrow { transition: transform .18s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, .72);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -18px rgba(35, 48, 45, .4);
  background: rgba(250, 246, 238, .9);
}
.nav {
  display: flex; align-items: center; gap: 18px;
  height: 72px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: 14px; }
.nav-links a {
  font-size: .94rem; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 4px 0;
  transition: color .18s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--teal); border-radius: 2px;
  transition: width .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-cta .text-link { font-weight: 700; color: var(--teal-darker); font-size: .94rem; }
.nav-cta .text-link:hover { color: var(--teal-deep); }
.btn-sm { padding: 11px 20px; font-size: .92rem; }
.nav-toggle { display: none; }

/* ---------- HERO ---------- */
.hero { padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(56px, 8vw, 96px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  padding: 8px 16px 8px 12px; border-radius: 999px;
  font-size: .85rem; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--apricot); box-shadow: 0 0 0 4px var(--apricot-soft); }
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  line-height: 1.28; margin: 22px 0 0;
}
.hero h1 .accent {
  color: var(--teal-deep);
  position: relative; white-space: nowrap;
}
.hero h1 .accent::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: .08em; height: .34em;
  background: var(--apricot-soft); border-radius: 6px; z-index: -1;
}
.hero .lead { margin: 24px 0 0; max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin: 16px 0 0; font-size: .86rem; color: var(--ink-3); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--ink-2); }
.hero-trust .check {
  width: 18px; height: 18px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep);
  display: inline-grid; place-items: center; font-size: 11px; font-weight: 800;
}

/* HERO ビジュアル：採用→配属→人材管理の一気通貫カード */
.hero-visual { position: relative; }
.flow-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px;
  position: relative; z-index: 2;
}
.flow-card .fc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.flow-card .fc-title { font-family: var(--serif); font-size: 1.02rem; color: var(--ink); }
.flow-card .fc-dots { display: flex; gap: 6px; }
.flow-card .fc-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--paper-3); }
.flow-card .fc-dots i:first-child { background: var(--apricot); }
.flow-steps { display: grid; gap: 10px; }
.flow-step {
  display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--paper); border: 1px solid var(--line);
}
.flow-step .fs-ico {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-deep);
}
.flow-step .fs-ico svg { width: 20px; height: 20px; }
.flow-step .fs-label { display: block; font-size: .76rem; color: var(--ink-3); margin-bottom: 2px; }
.flow-step .fs-main { display: block; font-weight: 700; color: var(--ink); font-size: .95rem; line-height: 1.4; }
.flow-step .fs-tag {
  font-size: .74rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal-darker); white-space: nowrap;
}
.flow-connector { display: grid; place-items: center; height: 8px; }
.flow-connector span { width: 2px; height: 8px; background: var(--line-2); }
/* 浮かぶ小カード */
.float-chip {
  position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; max-width: 200px;
}
.float-chip .fc-num { font-family: var(--serif); font-size: 1.5rem; color: var(--teal-deep); line-height: 1; }
.float-chip .fc-cap { font-size: .76rem; color: var(--ink-3); line-height: 1.4; }
.float-chip.tl { top: -46px; left: -22px; }
.float-chip.br { bottom: -34px; right: -14px; }
.hero-visual .blob {
  position: absolute; inset: -8% -10% -10% -6%; z-index: 1;
  background: radial-gradient(50% 60% at 70% 30%, rgba(43,178,172,.18), transparent 62%),
              radial-gradient(45% 50% at 20% 85%, rgba(232,138,76,.14), transparent 60%);
  filter: blur(6px);
}

/* ---------- ロゴ帯（信頼） ---------- */
.logos { padding-block: clamp(28px, 4vw, 44px); border-block: 1px solid var(--line); background: rgba(244,236,220,.5); }
.logos .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px; justify-content: center; }
.logos p { margin: 0; font-size: .84rem; color: var(--ink-3); font-weight: 600; letter-spacing: .04em; }
.logos .ph {
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink-3); opacity: .8;
  padding: 6px 4px; letter-spacing: .02em;
}

/* ---------- 課題（悩み） ---------- */
.problems { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.problem {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .22s ease;
}
.problem:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.problem .q {
  font-family: var(--serif); font-size: 1.6rem; color: var(--apricot); line-height: 1;
  position: absolute; top: 18px; right: 22px; opacity: .5;
}
.problem h3 { font-size: 1.12rem; margin-bottom: 8px; padding-right: 36px; }
.problem p { margin: 0; font-size: .96rem; color: var(--ink-2); }

/* 課題→解決の橋渡し */
.bridge { text-align: center; margin-top: clamp(40px, 6vw, 64px); }
.bridge .arw { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color: #fff; box-shadow: 0 10px 20px -8px rgba(20,80,76,.5); }
.bridge p { font-family: var(--serif); font-size: clamp(1.2rem, 2.6vw, 1.6rem); color: var(--ink); margin: 18px 0 0; }
.bridge p b { color: var(--teal-deep); }

/* ---------- ソリューション（3本柱） ---------- */
.solution { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .22s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar .p-ico {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-deep); margin-bottom: 18px;
}
.pillar .p-ico svg { width: 26px; height: 26px; }
.pillar.lead .p-ico { background: linear-gradient(135deg, var(--apricot), #f0a368); color: #fff; }
.pillar h3 { font-size: 1.18rem; margin-bottom: 10px; }
.pillar p { margin: 0; font-size: .95rem; }
.pillar .p-tag { display: inline-block; margin-bottom: 14px; font-size: .74rem; font-weight: 700; color: var(--apricot); letter-spacing: .06em; }

/* ---------- 機能詳細（採用・人材管理 主役） ---------- */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.feature-block + .feature-block { margin-top: clamp(56px, 8vw, 96px); }
.feature-block.rev .fb-text { order: 2; }
.fb-text .eyebrow { margin-bottom: 14px; }
.fb-text h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
.fb-text p { margin: 16px 0 0; }
.fb-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.fb-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: .98rem; color: var(--ink-2); }
.fb-list .ck { width: 24px; height: 24px; border-radius: 8px; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; font-size: 12px; font-weight: 800; margin-top: 3px; }
.fb-list li b { color: var(--ink); }

/* ビジュアル：擬似UI */
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--paper); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.mock-bar i:first-child { background: var(--apricot); }
.mock-bar span { margin-left: 8px; font-size: .82rem; color: var(--ink-3); font-weight: 600; }
.mock-body { padding: 20px; display: grid; gap: 12px; }
.applicant {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper);
}
.applicant .av { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; font-weight: 800; font-family: var(--serif); }
.applicant .info b { display: block; color: var(--ink); font-size: .94rem; }
.applicant .info small { color: var(--ink-3); font-size: .8rem; }
.status { font-size: .76rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.status.new { background: var(--apricot-soft); color: #b96a2e; }
.status.go { background: var(--teal-soft); color: var(--teal-darker); }
.status.set { background: #eef0ee; color: #6b7873; }
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kanban .col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; }
.kanban .col h4 { margin: 0 0 10px; font-family: var(--sans); font-size: .76rem; font-weight: 700; color: var(--ink-3); letter-spacing: .04em; }
.kanban .card { background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 10px; font-size: .82rem; color: var(--ink); margin-bottom: 8px; box-shadow: var(--shadow-sm); }
.kanban .card:last-child { margin-bottom: 0; }
.kanban .card small { display: block; color: var(--ink-3); font-size: .72rem; margin-top: 3px; }

/* ---------- 配置基準（差別化・帯） ---------- */
.compliance { background: var(--teal-darker); color: #eaf6f4; overflow: hidden; }
.compliance::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(50% 70% at 90% 10%, rgba(43,178,172,.4), transparent 60%),
              radial-gradient(40% 60% at 5% 95%, rgba(232,138,76,.25), transparent 60%);
  opacity: .7;
}
.compliance .wrap { position: relative; z-index: 1; }
.compliance .section-head h2, .compliance h3 { color: #fff; }
.compliance .eyebrow { color: #bfe7e3; }
.compliance .eyebrow::before { background: linear-gradient(90deg, #6fd3cd, var(--apricot)); }
.compliance .section-head p { color: #cfe9e6; }
.comp-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.comp-list { display: grid; gap: 16px; margin-top: 8px; }
.comp-item { display: grid; grid-template-columns: 46px 1fr; gap: 16px; }
.comp-item .ci-ico { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.12); display: grid; place-items: center; color: #fff; }
.comp-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.comp-item p { margin: 0; color: #cfe9e6; font-size: .94rem; }
.comp-panel { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 24px; backdrop-filter: blur(4px); }
.comp-panel .cp-title { font-family: var(--serif); font-size: 1rem; color: #fff; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.comp-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.06); margin-bottom: 10px; }
.comp-row:last-child { margin-bottom: 0; }
.comp-row .cr-name { color: #eaf6f4; font-size: .92rem; }
.comp-row .cr-name small { display: block; color: #a9d6d1; font-size: .76rem; }
.comp-badge { font-size: .78rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.comp-badge.ok { background: rgba(110,211,205,.2); color: #aef0ea; }
.comp-badge.warn { background: rgba(232,138,76,.22); color: #ffcfa6; }

/* ---------- 導入効果（数字） ---------- */
.results { background: var(--paper-2); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat .s-num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.2rem); color: var(--teal-deep); line-height: 1; }
.stat .s-num .unit { font-size: .42em; color: var(--ink-3); margin-left: 2px; }
.stat .s-label { margin-top: 12px; font-weight: 700; color: var(--ink); }
.stat .s-sub { margin-top: 4px; font-size: .84rem; color: var(--ink-3); }
.dummy-note { text-align: center; margin-top: 22px; font-size: .8rem; color: var(--ink-3); }

/* ---------- 声 ---------- */
.voices { background: var(--paper); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.voice {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.voice .quote { font-family: var(--serif); font-size: 1.04rem; color: var(--ink); line-height: 1.7; margin: 0 0 18px; }
.voice .quote::before { content: "“"; color: var(--apricot); font-size: 1.6rem; margin-right: 2px; }
.voice .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.voice .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; }
.voice .who b { display: block; font-size: .9rem; color: var(--ink); }
.voice .who small { color: var(--ink-3); font-size: .8rem; }

/* ---------- セキュリティ ---------- */
.security { background: var(--paper-2); }
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sec {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.sec .s-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; margin-bottom: 14px; }
.sec h3 { font-size: 1.02rem; margin-bottom: 6px; }
.sec p { margin: 0; font-size: .88rem; color: var(--ink-2); }

/* ---------- 導入の流れ ---------- */
.steps { background: var(--paper); }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); position: relative;
}
.step .s-no { font-family: var(--serif); font-size: 1rem; color: #fff; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-deep)); display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { margin: 0; font-size: .9rem; }
.steps .support-note { margin-top: 28px; text-align: center; }
.steps .support-note span { display: inline-flex; align-items: center; gap: 10px; background: var(--teal-soft); color: var(--teal-darker); padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper-2); }
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--serif); font-size: 1.04rem; color: var(--ink); font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--teal-deep); border-bottom: 2px solid var(--teal-deep);
  transform: translateY(-65%) rotate(45deg); transition: transform .22s ease;
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(225deg); }
.faq-item .a { padding: 0 24px 22px; color: var(--ink-2); font-size: .96rem; }
.faq-item summary:focus-visible { outline: none; box-shadow: inset 0 0 0 2px var(--teal); border-radius: var(--radius-sm); }

/* ---------- 最終CTA ---------- */
.cta { background: var(--paper); }
.cta-box {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-darker) 100%);
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  text-align: center; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 80% at 85% 0%, rgba(232,138,76,.35), transparent 60%), radial-gradient(40% 60% at 10% 100%, rgba(110,211,205,.3), transparent 60%); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta-box p { margin: 16px auto 0; max-width: 36em; color: #d7efec; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.cta-box .btn-ghost { background: #fff; color: var(--teal-darker); border-color: transparent; }
.cta-box .btn-white { background: #fff; color: var(--teal-darker); }
.cta-box .btn-white:hover { transform: translateY(-2px); }
.cta-box .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta-box .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.cta-mini { margin-top: 22px; font-size: .84rem; color: #bfe2de; }

/* ---------- フッター ---------- */
.site-footer { background: var(--ink); color: #c3cdca; padding-block: 48px 32px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 320px; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); opacity: .92; margin-bottom: 14px; }
.footer-brand p { margin: 0; font-size: .86rem; color: #9aa7a3; line-height: 1.8; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-cols h4 { font-family: var(--sans); font-size: .8rem; letter-spacing: .08em; color: #fff; margin: 0 0 14px; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-cols a { font-size: .88rem; color: #9aa7a3; transition: color .18s ease; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { padding-top: 22px; font-size: .8rem; color: #7c8884; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }

/* ---------- リビール ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .problem, .pillar, .float-chip { transition: none; }
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 24px; max-width: 480px; }
  .comp-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-block, .feature-block.rev { grid-template-columns: 1fr; }
  .feature-block.rev .fb-text { order: 0; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta .text-link { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center; margin-left: auto;
    width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--line); color: var(--ink);
  }
  .nav-cta { margin-left: 0; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: block; }
}
@media (max-width: 620px) {
  .problem-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .footer-cols { gap: 32px; }
  .float-chip.tl { left: -8px; top: -16px; }
  .float-chip.br { right: -4px; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* モバイルメニュー（PCでは非表示。760px以下でトグル表示） */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line); background: rgba(250,246,238,.98);
  padding: 14px var(--gut) 22px;
}
.mobile-menu a { display: block; padding: 12px 0; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { width: 100%; margin-top: 14px; }
