/* まいぷれくんAI LP — style.css
   配色は mypl.net本体(検索ボタン等)から抽出した実カラーに準拠。
   primary: #E38224 / accent-highlight: #FF9900 / text: #333333(いずれもmypl.netの実測値)
*/

:root {
  --color-bg: #FFF9F2;
  --color-bg-alt: #FFF1E2;
  --color-surface: #FFFFFF;
  --color-text: #333333;
  --color-text-muted: #706B63;
  --color-primary: #E38224;
  --color-primary-dark: #B5680F;
  --color-accent: #8C5A2E;
  --color-border: #ECE3D8;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 20px rgba(43, 42, 40, 0.08);
  --max-width: 960px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* セクションの上下余白は**ここ1箇所**で決まる（`.fv` と `.trust` だけ個別指定）。
   セクション間の実際の空きは この値×2（下＋上）になるので、変えるときはその前提で。 */
section { padding: 44px 0; }

h1, h2, h3 { line-height: 1.5; margin: 0 0 16px; font-weight: 700; }

h2 {
  font-size: clamp(22px, 4.2vw, 30px);
  text-align: center;
  margin-bottom: 32px;
}

/* ---------- 日本語の折り返し ----------
   `auto-phrase` は文節の切れ目で折り返す（「押す/だけ。」のような割れを防ぐ）。
   本文は `pretty`（行末に1〜2文字だけ残る"孤立行"を避ける）、
   **見出しは `balance`**（数行の短い塊なので行長をそろえるほうが効く）。
   ⚠️ **どちらも未対応ブラウザでは既定動作に戻るだけ**で、崩れは起きない。
   ⚠️ **このCSSは事例ページ・一覧とも共有**しているので、LPだけでなく全ページに効く。
   `white-space: nowrap` を持つ要素（`.nowrap` 等）には影響しない。 */
p,
figcaption,
li {
  word-break: auto-phrase;
  text-wrap: pretty;
}
h2,
h3 {
  word-break: auto-phrase;
  text-wrap: balance;
}

p { margin: 0 0 12px; }

a { color: var(--color-primary-dark); }

/* ---------- Header (no nav, minimal brand bar) ---------- */
.site-header {
  padding: 12px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.brand-logo {
  display: block;
  height: 28px;
  width: auto;
}
.brand-tagline {
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ---------- 実績バー上部のロゴ表記 ---------- */
.stats-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.stats-source .stats-logo {
  display: block;
  height: 22px;
  width: auto;
}

/* ---------- CTA buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(227, 130, 36, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(227, 130, 36, 0.4); }
.btn-block { display: block; width: 100%; }
/* 副次導線(事例一覧へ)。主CTA(.btn-primary)と塗り色を共有しない枠線ボタン。
   色はCTAに集中させる規律を守るため、背景は塗らずホバーでも塗りを足さない */
.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
  box-shadow: none;
  font-size: 16px;
  padding: 14px 28px;
}
.btn-outline:hover {
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: none;
}

.cta-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ---------- FV ---------- */
.fv {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  padding: 48px 0 40px;
  text-align: center;
}
.fv h1 {
  font-size: clamp(26px, 5.6vw, 40px);
  color: var(--color-text);
}
.fv .fv-sub {
  font-size: clamp(15px, 3.2vw, 18px);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
}
.fv .fv-cta { margin-bottom: 8px; }
.nowrap { white-space: nowrap; }
/* CTA直下のマイクロコピーは1本に統一(.cta-note)。旧 .cta-online-note / .cta-inline-note は廃止 */

/* ---------- 信頼バー(FV直下) ---------- */
/* 実績バーの本体スタイルは .stats-source / .stats-bar 側。ここは配置だけ持つ */
.trust { padding: 8px 0 0; }

/* ---------- 共感ブロック ---------- */
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}
.pain-list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 16px;
  box-shadow: var(--shadow-card);
}
.pain-highlight {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.pain-highlight strong { display: block; margin-bottom: 8px; font-size: 18px; color: var(--color-primary-dark); }
.pain-highlight p { margin: 0 auto 10px; max-width: 620px; }
.pain-highlight p:last-child { margin-bottom: 0; }

/* ---------- データ(導入効果) ---------- */
.data { text-align: center; }
.data-lead {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--color-text-muted);
  font-size: clamp(15px, 3vw, 17px);
}
.data-lead strong { color: var(--color-text); }
.data-grid {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .data-grid { grid-template-columns: repeat(3, 1fr); }
}
.data-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.data-value {
  font-size: clamp(40px, 8vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.02em;
}
.data-unit { font-size: 0.5em; font-weight: 700; margin-left: 2px; }
.data-before {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--color-text-muted);
}
.data-arrow {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0.25em;
  vertical-align: 0.12em;
}
.data-label {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.data-label b { color: var(--color-text); }
.data-emph {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
}
.data-durability {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: clamp(15px, 3vw, 17px);
  color: var(--color-text);
}
.data-durability strong { color: var(--color-accent); }
.data-existing {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 14px 18px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.data-note {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 11px;
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: left;
}

/* ---------- 解決策 (3 steps) ---------- */
.steps {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
}
.step-icon { width: 48px; height: 48px; margin: 0 auto 12px; color: var(--color-primary-dark); }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--color-text-muted); margin: 0; }

/* FV:操作画面3ステップギャラリー(PC横並び/スマホはスワイプ) */
.demo-steps {
  max-width: 880px;
  margin: 40px auto 0;
  text-align: left;
}
.demo-step {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.demo-step figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  justify-content: center;
  min-height: 36px;
}
.demo-step .phone-frame {
  flex: 1;
}
.demo-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.phone-frame {
  border: 6px solid #2B2A28;
  border-radius: 24px;
  overflow: hidden;
  background: #2B2A28;
  box-shadow: var(--shadow-card);
}
.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
@media (min-width: 720px) {
  .demo-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
}
@media (max-width: 719px) {
  .demo-steps {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 4px 12px;
    -webkit-overflow-scrolling: touch;
  }
  .demo-step {
    flex: 0 0 76%;
    scroll-snap-align: center;
  }
}

/* セクション3:機能一覧の実画面 */
.features-shot {
  max-width: 560px;
  margin: 0 auto 24px;
}
.features-shot-frame {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.features-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.features-shot-caption {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
}

.solution-note {
  text-align: center;
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--color-text-muted);
}

/* 機能セクション末尾の1行(旧「発信以外にも、こんなことができます」の2カードを圧縮したもの) */
/* 口コミ返信の小見出しブロック。本文の一行から独立させて見つけやすくする。
   ⚠️ 主CTAの塗りは使わない(クリック先ではないため)。 */
.solution-sub {
  max-width: 640px;
  margin: 28px auto 0;
  padding: 20px 22px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}
.solution-sub-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  text-align: left;
  margin: 0 0 8px;
  color: var(--color-primary-dark);
}
.solution-sub-icon { font-size: 15px; line-height: 1; }
.solution-sub p { margin: 0; }

.solution-extra {
  text-align: center;
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--color-text-muted);
}

.features-sub-heading {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.features-grid--sub {
  margin-top: 16px;
}

/* ---------- 差別化 ---------- */
.diff-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
}
.diff-block h2 { text-align: left; }
.diff-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}
.diff-list li {
  padding-left: 28px;
  position: relative;
}
.diff-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
}
.diff-closing {
  font-weight: 700;
  font-size: 17px;
  color: var(--color-accent);
  margin-top: 16px;
}

/* ---------- 一次情報 ---------- */
.primary-info {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.primary-info h2 { margin-bottom: 14px; }
.primary-info-lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-muted);
}
/* ---------- 一次情報 4ステップフロー ---------- */
.pi-flow {
  display: flex;
  /* ⚠️ flex-start だと各カードが内容分の高さで止まり、本文の行数差がそのまま
     カード下端のずれになる。**stretch（flexの既定）で3枚の高さを揃える。**
     見出しは番号・アイコンの上に載るので元から縦位置がそろっており、
     ずれていたのは下端だけだった。モバイルは下の @media が center に上書きする。 */
  align-items: stretch;
  gap: 0;
  margin: 36px auto 12px;
  max-width: 960px;
}
.pi-step {
  flex: 1;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px 18px;
  text-align: center;
}
.pi-step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.pi-step-icon {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}
.pi-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.pi-step-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
/* 3枚のカードの後に置く「何を材料に書くか」の段落。
   ⚠️ **太字・色は使わない**（このセクションは主張ではなく説明で通す）。
   幅はリード文(620px)より少し広く取り、注記の手前に置く。 */
.pi-scope {
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.9;
}
/* ③のカード内にあった連携設定の注記を、セクション全体の注記として外に出したもの。
   カード内の10pxではなく、他セクションの注記と同じ12pxにする。 */
.pi-flow-note {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text-muted);
  text-align: center;
}
.pi-arrow {
  flex: 0 0 auto;
  align-self: center;
  font-size: 20px;
  color: var(--color-primary);
  padding: 0 6px;
  margin-top: -24px;
}
@media (max-width: 680px) {
  .pi-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .pi-step { width: 100%; max-width: 360px; }
  .pi-arrow { transform: rotate(90deg); padding: 4px 0; margin: 0; }
}

/* ---------- 機能カードグリッド ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 28px auto 0;
}
.features-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.features-icon {
  font-size: 26px;
  margin-bottom: 8px;
}
.features-card h3,
.features-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.features-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ---------- human-check ---------- */
.human-check-shot {
  max-width: 220px;
  margin: 24px auto 0;
}
.human-check-caption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* 校正チームの体制。**担保しているのは人であってAIではない**という主従を保つため、
   AIの説明(human-check)の後ろに独立した段落として置く。 */
.primary-proofread {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-muted);
}

/* ---------- 利用者インタビュー動画 ---------- */
.voice { text-align: center; }
.voice-video { margin: 0 auto; max-width: 720px; }
.ytfacade {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
}
.ytfacade-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.ytfacade-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease, filter .3s ease;
}
.ytfacade-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .62);
  transition: background .2s ease;
}
.ytfacade-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}
.ytfacade-btn:hover .ytfacade-thumb,
.ytfacade-btn:focus-visible .ytfacade-thumb { filter: brightness(1.05); }
.ytfacade-btn:hover .ytfacade-play,
.ytfacade-btn:focus-visible .ytfacade-play { background: var(--color-primary); }
.ytfacade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.voice-caption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
}
.voice-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 760px;
  margin: 28px auto 0;
}
.voice-quote {
  flex: 1 1 320px;
  margin: 0;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-primary-dark);
}
.voice-quote-note {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--color-text-muted);
}
.voice-transcript {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: left;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.voice-transcript summary {
  cursor: pointer;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}
.voice-transcript-body {
  padding: 4px 18px 16px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-muted);
}
.voice-transcript-body p { margin: 0 0 10px; }
.voice-transcript-body .voice-q {
  font-weight: 700;
  color: var(--color-text);
  margin-top: 16px;
}
.voice-transcript-body .voice-q:first-child { margin-top: 4px; }
.voice-transcript-body .voice-transcript-note {
  margin-top: 14px;
  font-size: 11px;
}

/* --- 追加インタビュー(サムネイル2本横並び) --- */
.voice-more {
  max-width: 940px;
  margin: 44px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: 28px;
}
@media (min-width: 760px) {
  .voice-more {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }
}
.voice-item { text-align: center; }
.voice-item .voice-video { max-width: 100%; }
.voice-item .voice-quotes { margin-top: 18px; }
.voice-item .voice-quote {
  flex-basis: 100%;
  font-size: 15px;
  padding: 14px 16px;
}
.voice-item .voice-transcript { margin-top: 18px; }

/* --- 事例冒頭の要約リード --- */
.case-lead {
  margin: 0 0 28px;
  padding: 20px 22px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}
.case-lead p {
  margin: 0 0 10px;
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.9;
  color: var(--color-text);
}
.case-lead p:last-child { margin-bottom: 0; }

/* --- 事例ページ内の動画セクション(LPの .voice-* を流用) --- */
.case-video {
  margin: 44px 0 0;
  padding-top: 36px;
  border-top: 1px solid var(--color-border);
}
.case-video h2 { text-align: center; }
.case-video-lead {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 15px;
  color: var(--color-text-muted);
}
.case-video .voice-quotes { max-width: 720px; }

/* ---------- 事例 ---------- */
.cases-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 720px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
}
.case-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.case-card .case-meta {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
.case-card blockquote {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--color-text);
}
.case-card .case-pending {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: auto;
}
.case-card--featured {
  border: 2px solid var(--color-primary);
}
.case-card .case-disclaimer {
  font-size: 11px;
  color: var(--color-text-muted);
  margin: 0 0 8px;
}
.case-card .case-link {
  margin: auto 0 0;
  font-size: 14px;
  font-weight: 700;
}
/* 3カード群と注記の間で独立して見えるよう、上下marginを確保する */
.cases-more {
  text-align: center;
  margin: 28px 0 20px;
}
.cases-more a { font-weight: 700; }
/* 375pxは横幅いっぱい、広い画面は中央寄せで左右に余白を残す */
.cases-more .btn-outline { display: block; width: 100%; }
@media (min-width: 600px) {
  .cases-more .btn-outline { display: inline-block; width: auto; min-width: 320px; }
}
.cases-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* ---------- 見つかる仕組み ---------- */
.find-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .find-grid { grid-template-columns: repeat(3, 1fr); }
}
.find-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.find-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--color-accent); }
.find-card .find-term { font-size: 12px; font-weight: 500; color: var(--color-text-muted); margin-left: 2px; }
.find-card p { font-size: 14px; color: var(--color-text-muted); margin: 0; }
.find-card .find-card-link { margin-top: 12px; }
.find-card .find-card-link a { font-weight: 700; white-space: nowrap; }

/* 実績バー本体。2026-07-31にFV直下(.trust)へ移動したが、スタイルは共通なのでここに置いたまま */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.stats-bar .stat-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.stats-bar .stat-value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.stats-bar .stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
}
/* 狭い画面では2×2に固定する。flexのままだと4指標の幅が不揃いで3行に割れる */
@media (max-width: 600px) {
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 18px 12px;
    padding: 20px 16px;
  }
}

/* ---------- 向いているお店 ---------- */
.suited-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 720px;
  display: grid;
  gap: 12px;
}
/* 「向いているお店」＝**塗りだけ**（枠線なし）。
   一覧カードの `.case-badge`(塗り) と `.case-flag`(枠線のみ) と同じ視覚言語で、
   **塗りの有無**で正反対の2ブロックを見分けさせる。
   ⚠️ 主CTAの #E38224 は使わない(クリック先ではないため)。 */
.suited-list li {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 16px;
  line-height: 1.8;
}
/* 「ほかの方法が適している場合」＝**白の塗り＋一段濃い枠線**。
   透明＋`--color-border` では背景 #FFF9F2 から輪郭が浮かず、ブロックの範囲が読めなかった。
   ⚠️ **主従は塗りの温度で保つ**：暖色 `#FFF1E2`（向いている） > 白（ほかの方法）。
   枠線の #D8CCBB は一覧カードの `.case-flag` で使っている色で、**新しい色は足していない**。
   ⚠️ `--color-border` 自体は変えない（事例カード・機能カードなど共有先へ波及するため）。 */
.suited-list-alt li {
  background: var(--color-surface);
  border: 1px solid #D8CCBB;
}
/* 2つの見出しは並列（片方がもう片方の下位区分ではない）なので**同じ h2**にし、
   大きさ・太さ・寄せもLP共通のh2のままそろえる。上に余白だけ足す。 */
.suited-head-alt {
  margin-top: 44px;
}
/* 「→」の行は上の項目に従属する。**別項目に見えないよう**、行を変えたうえで
   字下げ・一段小さい文字・**一段薄い文字色**で区別する(太字・色による強調は使わない)。
   ⚠️ `--color-text-muted` は背景 #FFF9F2 に対して 5.05:1 で 4.5:1 を満たす。 */
.suited-lead-to {
  display: block;
  margin-top: 10px;
  padding-left: 1.4em;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.suited-close {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- 料金 ---------- */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
}
.pricing-card h3 { font-size: 20px; margin-top: 8px; }
.price-main {
  font-size: 34px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 8px 0 2px;
}
.price-main .unit { font-size: 15px; font-weight: 500; }
.price-sub { font-size: 15px; color: var(--color-text-muted); margin-bottom: 4px; }
.price-annotation { font-size: 12px; color: var(--color-text-muted); margin-bottom: 18px; }
.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  text-align: left;
  font-size: 14px;
}
.price-includes li {
  padding: 8px 0;
  border-top: 1px dashed var(--color-border);
}
.price-includes li:first-child { border-top: none; }
.price-other-plans {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}
.price-sample-note {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
}
.price-voice {
  max-width: 480px;
  margin: 24px auto 0;
  text-align: center;
}
.price-voice blockquote {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.7;
}
.price-voice figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 14px;
  font-size: 22px;
  color: var(--color-primary);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
  padding: 0 20px 18px;
  color: var(--color-text-muted);
  font-size: 15px;
}
.faq-item .faq-quote {
  margin: 0 20px 18px;
  padding: 12px 16px;
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-primary-dark);
  font-weight: 700;
}
.faq-item .faq-quote cite {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text-muted);
}
/* 店名から事例ページへ行けるようにする（`cite_url` を持つ引用だけ）。
   ⚠️ **下線は消さない。** 11pxの小さい文字なので、色だけではリンクだと分からない。
   ⚠️ **サイト共通のリンク色 `--color-primary-dark` は使わない。** 引用の背景 `#FFF1E2` に対して
   3.82:1 しかなく、11pxでは 4.5:1 に届かない。`--color-accent` なら **5.23:1**（新しい色は足さない）。 */
.faq-item .faq-quote cite a {
  color: var(--color-accent);
  text-underline-offset: 2px;
}

/* ---------- クロージング + フォーム ---------- */
.closing {
  background: var(--color-bg-alt);
}
.closing h2 { margin-bottom: 12px; }
.closing-lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--color-text-muted);
}

.lead-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
/* フォーム内の .cta-note は第三者提供の説明を兼ねる。**送信前に読める大きさが要る**ため、
   サイト共通の13pxではなく説明文と同じ14pxにする(FVや事例ページ側は13pxのまま)。 */
.lead-form .cta-note {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.form-row .required {
  color: var(--color-primary-dark);
  font-size: 12px;
  margin-left: 4px;
  font-weight: 700;
}
/* 入力欄の見た目は1箇所で決める。
   ⚠️ **type を列挙しないこと。** 以前は text/email/tel だけを並べていたため、
   `type="url"` の欄にだけ何も当たらず、13.33px・高さ21px・幅153pxの素のまま
   本番に出ていた(2026-08-01に発見)。CSSは当たらなくてもエラーにならないので、
   列挙方式は「増やしたtypeだけ漏れる」事故を必ず繰り返す。
   `.form-row` に閉じてあるので、ハニーポット(.form-hp)や隠しフィールド
   (formの直下)には及ばない。checkbox/radio/hidden は形が違うので明示的に外す。 */
.form-row input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 16px;              /* 16px未満だとiOS Safariがフォーカス時に自動ズームする */
  line-height: 1.5;
  min-height: 50px;             /* selectだけ低く見えないよう、タップ領域を揃える */
  font-family: inherit;
  background: var(--color-bg);
  color: var(--color-text);
}
/* 既定色のプレースホルダは背景 #FFF9F2 に対して 4.41:1 で、4.5:1 に届かない。
   入力済みテキスト(#333333)とは明確に差が残る濃さに留める。 */
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 1;                   /* Firefoxは既定で opacity を落とすため戻す */
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}
.form-contact-group { display: grid; gap: 10px; }
@media (min-width: 480px) {
  .form-contact-group { grid-template-columns: 1fr 1fr; }
}
.form-row .optional {
  color: var(--color-text-muted);
  font-size: 12px;
  margin-left: 4px;
  font-weight: 700;
}
/* 項目の説明文。ラベルと入力欄の間に置く(入力してからでは遅いため)。
   小さくしない:Q5の「まいぷれ掲載中ならショップページのURLでよい」等、
   読まれないと入力が止まる情報が入っている。 */
.form-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 400;
  margin: 0 0 6px;
}
.form-error {
  color: #B3261E;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}
.form-row.has-error .form-error { display: block; }
.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea { border-color: #B3261E; }

/* ハニーポット:人には見せず、支援技術からも隠す。display:none だと
   埋めないbotがいるため、画面外へ出す方式にする。 */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 送信そのものが失敗したときの案内(項目単位のエラーとは別) */
.form-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #B3261E;
  border-radius: 8px;
  background: #FDF3F2;
  color: #B3261E;
  font-size: 14px;
  line-height: 1.7;
}
/* 代替連絡先のURLをそのまま出すため、狭い画面では途中で折り返す(枠からはみ出さない) */
.form-alert a { color: #B3261E; overflow-wrap: anywhere; }

/* 送信完了。フォームと入れ替えて出す */
.form-done {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.form-done-head {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 12px;
}
.form-done p { margin: 0; }
.form-done p + p { margin-top: 12px; color: var(--color-text-muted); }

.form-footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 28px 0 40px;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,249,242,0.96);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(4px);
  z-index: 40;
}
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

/* ---------- 事例ページ(/cases/) ---------- */
.breadcrumb {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 24px 0 8px;
}
.breadcrumb a { color: var(--color-text-muted); }

.case-article { padding: 0 0 56px; }
.case-article h1 {
  font-size: clamp(22px, 4.6vw, 30px);
  margin: 8px 0 24px;
}
.case-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 16px 0 0;
}
/* ラベルと値で1組。組の途中では改行させない(狭い画面でラベルが縦に割れるのを防ぐ) */
.case-meta-item {
  display: inline-flex;
  gap: 6px;
  white-space: nowrap;
}
.case-meta-label { white-space: nowrap; }
.case-meta-sep { color: var(--color-border); }
/* 狭い画面では横並びをやめて縦積みにし、区切りの「/」は消す */
@media (max-width: 420px) {
  .case-article-meta {
    display: grid;
    justify-items: start;
    gap: 2px;
  }
  .case-meta-sep { display: none; }
}
/* 一覧ページのカードで使用(事例ページ上部のバッジは重複のため廃止) */
.case-badge {
  display: inline-block;
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
}
.case-summary {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 0 0 28px;
  font-size: 14px;
}
.case-summary dl { margin: 0; display: grid; gap: 6px; }
.case-summary .row { display: flex; gap: 10px; }
.case-summary dt {
  flex: 0 0 108px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.case-summary dd { margin: 0; }
/* 実名掲載の事例だけに出る店名の行。リンク先はまいぷれのショップページ */
.case-summary .case-shop-name a {
  font-weight: 700;
  color: var(--color-primary-dark);
}
/* 店名は固有名詞なので、途中で割らずに見せたい。ラベル(108px)を引いた残り幅では
   「トリミングサロン ELLE-/ONE 南行徳店」のようにハイフンで割れる(375px)。
   **この行だけ** flex-wrap を許すと、収まらない店名のときだけ値が次の行へ落ちて全幅を使う。
   収まる店名(短い店名・広い画面)では折り返しが起きないので、他の実名事例の見た目は変わらない。
   ⚠️ 他の行(課題・取り組み等)は本文が長く、同じ指定をすると全行が2段組みになるので広げない。
   :has() 未対応のブラウザは現状の折り返しに戻るだけで、崩れは起きない。 */
.case-summary .row:has(.case-shop-name) { flex-wrap: wrap; }

/* 店舗写真(実名掲載・許諾済みの事例のみ)。要約表の下、本文の前に置く。
   画像は自己ホストのWebPで、width/heightを属性に出して読み込み中のガタつきを防ぐ。 */
.case-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}
.case-photo { margin: 0; }
.case-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}
.case-photo figcaption {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
/* 写真の直下に付ける出典・許諾の注記。写真ブロックの下余白の内側へ引き上げる */
.case-photos-note {
  margin: -20px 0 28px;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* 本文の後に置く公開日・最終更新日。情報の鮮度の担保なので、注記と同じ控えめな扱い。
   文字サイズは直下の .case-primary-note と必ず揃える(小さい文字が2種類並ぶのを避ける)。 */
.case-article-dates {
  margin: 28px 0 0;
  justify-content: center;
  font-size: 12px;
}
@media (max-width: 420px) {
  .case-article-dates { justify-items: center; }
}
.case-primary-note {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
}
.case-region-site {
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
  color: var(--color-text-muted);
}
.case-region-site a {
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* 事例一覧の実績表示(件数・業種数・都道府県数)。数値はbuild.pyが自動集計 */
.cases-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin: -16px 0 8px;
  padding: 14px 18px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--color-text);
}
.cases-stats .cases-stat,
.cases-stats .cases-stats-sub { white-space: nowrap; }
/* 区切りは直前の項目にぶら下げる(行頭に「/」が落ちないように) */
.cases-stats .cases-stat-sep {
  color: var(--color-text-muted);
  margin-left: 8px;
}
.cases-stats strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.cases-stats .cases-stats-sub,
.cases-stats .cases-stats-date {
  font-size: 13px;
  color: var(--color-text-muted);
}
.cases-stats-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0 0 28px;
}

.cases-group-title {
  font-size: 20px;
  text-align: left;
  margin: 36px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--color-primary);
}
.cases-group-empty {
  color: var(--color-text-muted);
  font-size: 14px;
  margin: 0 0 8px;
}

.case-article h2 {
  font-size: 19px;
  text-align: left;
  margin: 32px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--color-primary);
}
.case-article blockquote {
  margin: 16px 0;
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  color: var(--color-text);
}
.case-article blockquote p { margin: 0 0 8px; }
.case-article blockquote p:last-child { margin-bottom: 0; }
/* 引用ブロックの直後に置く編集注記(言い換えの説明など)。**店主の言葉ではない**ので
   引用の外に出す。文字サイズは .case-photos-note / .case-primary-note と揃える
   (ページ内に小さい文字を2種類作らない)。 */
.case-quote-note {
  margin: -6px 0 16px;
  font-size: 12px;
  color: var(--color-text-muted);
}
/* 本文の強調。色はCTAに集中させるため、太字だけで色は変えない */
.case-article strong,
.case-lead strong { font-weight: 700; }
/* 本文の数値表。横に長い表はページ全体ではなく表の内側だけ横スクロールさせる */
.case-table-wrap {
  margin: 16px 0;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}
.case-table-wrap table {
  border-collapse: collapse;
  width: 100%;
  min-width: 320px;
  font-size: 15px;
}
.case-table-wrap th,
.case-table-wrap td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}
.case-table-wrap thead th {
  background: var(--color-bg-alt);
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
}
.case-table-wrap tbody tr:last-child th,
.case-table-wrap tbody tr:last-child td { border-bottom: 0; }
.case-table-wrap td:first-child { color: var(--color-text-muted); }
.case-table-wrap td strong { color: var(--color-text); }

.case-cta {
  margin: 40px auto 0;
  max-width: 560px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.case-cta-lead { font-weight: 700; margin-bottom: 16px; }
.case-article-footer {
  margin-top: 32px;
  font-size: 14px;
  text-align: center;
}

/* ---------- 事例一覧ページ ---------- */
.cases-index { padding: 0 0 56px; }
.cases-index h1 { font-size: clamp(24px, 5vw, 32px); margin: 8px 0 8px; }
.cases-index-lead { color: var(--color-text-muted); margin-bottom: 28px; }
.case-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 16px;
}
@media (min-width: 720px) {
  .case-list { grid-template-columns: 1fr 1fr; }
}
.case-list-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.case-list-item a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: var(--color-text);
}
.case-list-item .case-badge { margin-bottom: 8px; }
/* カードの属性ラベル(自動算出)。業種×地域の .case-badge と見分けがつくよう、
   あちらの「薄い背景」に対してこちらは「枠線のみ・塗りなし」にする。
   ⚠️ 主CTAの --color-primary とは塗りも文字色も共有しない(クリック先を誤認させない)。 */
.case-flags {
  display: flex;
  flex-wrap: wrap;          /* 狭い画面ではラベルごと次の行へ落とす */
  gap: 6px;
  margin: 0 0 8px;
}
.case-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #D8CCBB;   /* --color-border より一段濃く。枠だけで存在を示すため */
  color: #5C574F;              /* 白背景に対し 7.16:1。--color-text-muted の 5.29:1 では弱かった */
  background: transparent;
  font-size: 12px;             /* 既存の .case-badge と揃える */
  line-height: 1.5;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;      /* ラベルの文言が途中で折り返さないようにする */
}
/* 再生マーク。**装飾なので読み上げから外す**(文言を二重に読ませない)。
   画像ではなく文字なので、拡大しても滲まず追加の通信も発生しない。 */
.case-flag-icon {
  font-size: 9px;
  line-height: 1;
  color: var(--color-primary-dark);
}
.case-list-item h2,
.case-list-item h3 {
  font-size: 16px;
  text-align: left;
  margin: 8px 0;
  color: var(--color-primary-dark);
}
.case-list-item p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 6px;
}
.case-list-item time { font-size: 12px; color: var(--color-text-muted); }
.cases-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: 40px 0;
}

