/* PCのとなり（empathize Stock）— 共通スタイル
   素のCSSのみ。外部フォント・CDN・フレームワークを使わない（AI社員が直接編集できる状態を保つため）。

   ★2026-08-29 社長のご指摘「前回の方が見やすかった」により、
     明朝体を使った v3「点検票」デザインを取りやめ、この版（v2）に戻しました。
     v3 で足した部品（ヘッダーの電話・トップの実績・ページ見出し）は、
     この版の見た目に合わせ直したうえで残しています（末尾の「v3から残した部品」）。 */

:root {
  --ink:       #14201f;
  --ink-soft:  #4a5a58;
  --ink-faint: #7c8c8a;
  --bg:        #fbfaf7;
  --panel:     #ffffff;
  --line:      #e2e0d8;
  --accent:    #1b6670;
  --accent-dk: #124a52;
  --accent-sf: #e8f1f2;
  --warn:      #8a5a12;
  --warn-sf:   #fbf3e2;
  --maxw:      940px;
  --font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg);
  word-break: normal;
  overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

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

/* ---- ヘッダー ---- */
.site-head {
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  position: sticky; top: 0; z-index: 10;
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px;
}
.brand { font-weight: 700; font-size: 18px; color: var(--ink); text-decoration: none; letter-spacing: .02em; }
.brand span { display: block; font-size: 11px; font-weight: 400; color: var(--ink-faint); letter-spacing: .08em; }
.nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; }
.nav a { color: var(--ink-soft); text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); text-decoration: underline; }

/* ---- ヒーロー ---- */
.hero { background: var(--panel); border-bottom: 1px solid var(--line); padding: 56px 0 48px; }
.hero h1 {
  font-size: clamp(26px, 5vw, 40px); line-height: 1.45; margin: 0 0 18px;
  text-wrap: balance; letter-spacing: .01em;
}
.hero p.sub { font-size: 17px; color: var(--ink-soft); margin: 0 0 28px; max-width: 34em; }

/* ---- ボタン ---- */
.btn {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 3px; font-weight: 700; font-size: 16px;
}
.btn:hover { background: var(--accent-dk); }
.btn.ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn.ghost:hover { background: var(--accent-sf); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- 本文 ---- */
main { padding: 48px 0 64px; }
section.block { margin: 0 0 56px; }
h2 {
  font-size: 22px; margin: 0 0 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--accent); display: inline-block; text-wrap: balance;
}
h3 { font-size: 18px; margin: 32px 0 12px; }
p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 1.4em; }
li { margin-bottom: 8px; }
strong { font-weight: 700; }

/* ---- カード ---- */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 4px;
  padding: 22px 22px 18px;
}
.card h3 { margin: 0 0 10px; font-size: 17px; color: var(--accent-dk); }
.card p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.card .price { font-size: 26px; font-weight: 700; color: var(--ink); display: block; margin: 6px 0 4px; }
.card .price small { font-size: 13px; font-weight: 400; color: var(--ink-faint); }

/* ---- 手順 ---- */
.steps { list-style: none; padding: 0; counter-reset: s; }
.steps li {
  counter-increment: s; position: relative; padding-left: 44px; margin-bottom: 18px;
}
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 2px;
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent-sf); color: var(--accent-dk);
  font-weight: 700; font-size: 14px; display: grid; place-items: center;
}

/* ---- 表 ---- */
.table-frame { overflow-x: auto; border: 1px solid var(--line); border-radius: 4px; background: var(--panel); }
table { border-collapse: collapse; width: 100%; font-size: 15px; min-width: 460px; }
th, td { padding: 11px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--accent-sf); color: var(--accent-dk); font-weight: 700; white-space: nowrap; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
tbody tr:last-child td { border-bottom: none; }

/* ---- 注記 ---- */
.note {
  background: var(--warn-sf); border-left: 3px solid var(--warn); color: var(--warn);
  padding: 14px 18px; font-size: 14px; border-radius: 0 3px 3px 0; margin: 0 0 20px;
}
.note strong { color: var(--warn); }
.lede { font-size: 17px; color: var(--ink-soft); }

/* ---- 記事 ---- */
.post-meta { font-size: 13px; color: var(--ink-faint); margin: 0 0 26px; }
.post-list { list-style: none; padding: 0; }
.post-list li { border-bottom: 1px solid var(--line); padding: 18px 0; margin: 0; }
.post-list a { font-weight: 700; text-decoration: none; font-size: 17px; }
.post-list a:hover { text-decoration: underline; }
.post-list .d { display: block; font-size: 13px; color: var(--ink-faint); margin-bottom: 4px; }
.post-list p { margin: 6px 0 0; font-size: 15px; color: var(--ink-soft); }
article.post { max-width: 40em; }
article.post h2 { font-size: 20px; margin-top: 40px; }

/* ---- CTA ---- */
.cta {
  background: var(--accent-sf); border: 1px solid #cfe0e2; border-radius: 4px;
  padding: 28px 26px; text-align: center;
}
.cta h2 { border: none; display: block; margin-bottom: 10px; }
.cta p { color: var(--ink-soft); }

/* ---- フッター ---- */
.site-foot {
  border-top: 1px solid var(--line); background: var(--panel);
  padding: 32px 0; font-size: 13px; color: var(--ink-faint);
}
.site-foot .fnav { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.site-foot a { color: var(--ink-soft); text-decoration: none; }
.site-foot a:hover { text-decoration: underline; }
.site-foot .legal { line-height: 1.8; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }


/* ==========================================================
   v3 から残した部品（見た目はこの版に合わせ直しています）
   ⚠️ 不要なら、この節ごと削除して生成スクリプトから該当行を消せば消えます。
   ========================================================== */

/* ページ見出し（もともと各ページに直書きしていたものをここに集約しただけ。見た目は同じ） */
.page-title { font-size: clamp(23px, 4.6vw, 30px); margin: 0 0 20px; }
.post-title { font-size: clamp(23px, 4.6vw, 32px); line-height: 1.5; margin: 0 0 10px; text-wrap: balance; }
.post-title span { font-size: .7em; font-weight: 400; }

/* ヘッダー右の電話（この商売はまず電話が来るため。スマホではタップで発信できる） */
.head-tel { text-decoration: none; text-align: right; line-height: 1.35; color: var(--ink); white-space: nowrap; }
.head-tel b { display: block; font-size: 17px; font-variant-numeric: tabular-nums; }
.head-tel span { display: block; font-size: 10.5px; color: var(--ink-faint); letter-spacing: .06em; }
.head-tel:hover b { color: var(--accent); }

/* トップの目印 */
.eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: .12em; font-weight: 700;
  color: var(--accent-dk); background: var(--accent-sf);
  padding: 4px 12px; border-radius: 3px; margin: 0 0 18px;
}

/* トップの実績（すべて自社の運用実績。誇張しないでそのまま出す） */
.proof {
  display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: 30px 0 0; max-width: 680px;
}
.proof div {
  background: var(--panel); border: 1px solid var(--line); border-radius: 4px;
  padding: 14px 16px 12px;
}
.proof dt { font-size: 12px; color: var(--ink-faint); margin: 0 0 2px; font-weight: 400; }
.proof dd {
  margin: 0; font-size: 22px; font-weight: 700; line-height: 1.3;
  font-variant-numeric: tabular-nums; color: var(--ink);
}
.proof dd small { font-size: 12px; font-weight: 400; color: var(--ink-faint); margin-left: 2px; }
.proof-note { font-size: 13px; color: var(--ink-faint); margin: 12px 0 0; }

/* CTA の中の電話 */
.cta .tel-line {
  margin: 18px 0 0; padding-top: 16px; border-top: 1px solid #cfe0e2;
  font-size: 14px; color: var(--ink-soft);
}
.cta .tel-line a {
  font-size: 21px; font-weight: 700; font-variant-numeric: tabular-nums;
  text-decoration: none; color: var(--accent-dk);
}
.cta .tel-line a:hover { text-decoration: underline; }
