/* Qloog ブログ記事 共通スタイル */
:root { --bg:#FBFAF7; --ink:#1A2E35; --ink-soft:#47555C; --brand:#16697A; --brand-deep:#0E3A46; --gold:#B8912F; --line:#E7E4DC; --tint:#EEF4F4; }
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Noto Sans JP',sans-serif; background:var(--bg); color:var(--ink); line-height:2; font-size:15.5px; }
/* サイト共通ヘッダー。body直下に限定しないと、記事中の目次<nav>まで固定されてしまう */
body > nav { position:sticky; top:0; background:rgba(251,250,247,.95); border-bottom:1px solid var(--line); z-index:10; }
.nav-inner { max-width:760px; margin:0 auto; padding:14px 24px; display:flex; justify-content:space-between; align-items:center; }
.nav-inner img { height:28px; display:block; }
.nav-inner .cta { font-size:13px; font-weight:700; color:#fff; background:var(--gold); padding:9px 18px; border-radius:3px; text-decoration:none; }
main { max-width:760px; margin:0 auto; padding:20px 24px 80px; }
.breadcrumb { font-size:12px; color:#97A09B; margin:20px 0 28px; }
.breadcrumb a { color:var(--brand); text-decoration:none; }
.kw-tag { display:inline-block; font-family:'Outfit',sans-serif; font-size:11px; letter-spacing:.12em; color:var(--gold); border:1px solid var(--gold); padding:4px 12px; border-radius:100px; margin-bottom:18px; }
h1 { font-family:'Zen Kaku Gothic New',sans-serif; font-size:29px; font-weight:900; line-height:1.5; margin-bottom:16px; }
.meta { font-size:12px; color:#97A09B; margin-bottom:40px; padding-bottom:24px; border-bottom:1px solid var(--line); }
.lead { font-size:16px; color:var(--ink-soft); margin-bottom:40px; }
h2 { font-family:'Zen Kaku Gothic New',sans-serif; font-size:22px; font-weight:700; margin:48px 0 18px; padding-left:14px; border-left:4px solid var(--brand); line-height:1.5; }
h3 { font-family:'Zen Kaku Gothic New',sans-serif; font-size:17px; font-weight:700; margin:32px 0 12px; }
p { margin-bottom:18px; color:var(--ink); }
ul, ol { margin:0 0 20px 24px; }
li { margin-bottom:8px; }
strong { font-weight:700; color:var(--brand-deep); }
a { color:var(--brand); }
.note { background:var(--tint); border-radius:6px; padding:18px 22px; margin:24px 0; font-size:14px; }
.note b { display:block; margin-bottom:6px; }
table { width:100%; border-collapse:collapse; font-size:13.5px; margin:20px 0; }
th, td { border:1px solid var(--line); padding:11px 13px; text-align:left; vertical-align:top; }
th { background:#F3F1EA; font-weight:700; }
td { background:#fff; }
.cta-box { background:var(--brand-deep); color:#fff; border-radius:10px; padding:34px 30px; text-align:center; margin:48px 0 20px; }
.cta-box h3 { color:#fff; font-size:19px; margin:0 0 10px; }
.cta-box p { color:rgba(255,255,255,.82); font-size:14px; margin-bottom:22px; }
.cta-box a { display:inline-block; background:var(--gold); color:#fff; font-weight:700; text-decoration:none; padding:13px 30px; border-radius:4px; font-size:15px; }
.related { margin-top:56px; padding-top:32px; border-top:1px solid var(--line); }
.related h2 { border:none; padding:0; font-size:16px; margin-bottom:16px; }
.related a { display:block; padding:12px 0; border-bottom:1px dashed var(--line); text-decoration:none; color:var(--ink); font-size:14px; font-weight:500; }
footer { border-top:1px solid var(--line); padding:32px 24px; }
.footer-inner { max-width:760px; margin:0 auto; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12px; color:#97A09B; }
.footer-inner a { color:#97A09B; text-decoration:none; margin-left:18px; }

/* ============================================================
   ここから記事強化用のパーツ（2026-08 追加）
   上位表示に必要な「目次・図解・要点・手順・FAQ・著者情報」を
   全記事で共通して使えるようにする
   ============================================================ */

/* ---- 読了時間・更新日（h1直下のメタ情報を拡張） ---- */
.meta .sep { margin:0 8px; color:var(--line); }
.meta .updated { color:var(--brand); font-weight:700; }

/* ---- 目次（滞在時間とユーザー体験の改善。上位記事はほぼ全て設置） ---- */
.toc { position:static; z-index:auto; background:#fff; border:1px solid var(--line); border-radius:8px; padding:22px 26px; margin:0 0 44px; }
.toc-head { font-family:'Zen Kaku Gothic New',sans-serif; font-size:15px; font-weight:700; margin-bottom:12px; display:flex; align-items:center; gap:8px; }
.toc-head::before { content:''; width:4px; height:16px; background:var(--gold); border-radius:2px; }
.toc ol { margin:0; padding:0; list-style:none; counter-reset:toc; }
.toc li { margin:0; border-bottom:1px dashed var(--line); }
.toc li:last-child { border-bottom:none; }
.toc a { display:block; padding:9px 0 9px 30px; position:relative; font-size:14px; color:var(--ink); text-decoration:none; line-height:1.7; }
.toc a:hover { color:var(--brand); }
.toc li { counter-increment:toc; }
.toc a::before { content:counter(toc); position:absolute; left:0; top:9px; width:20px; height:20px; border-radius:50%;
  background:var(--tint); color:var(--brand); font-family:'Outfit',sans-serif; font-size:11px; font-weight:700;
  display:flex; align-items:center; justify-content:center; }
/* 見出しへジャンプしたときヘッダーに隠れないようにする */
h2, h3 { scroll-margin-top:80px; }

/* ---- 記事内の画像（キャプション付き） ---- */
figure { margin:32px 0; }
figure img { width:100%; height:auto; display:block; border-radius:8px; border:1px solid var(--line); background:#fff; }
figure figcaption { font-size:12.5px; color:#97A09B; margin-top:10px; text-align:center; line-height:1.7; }
/* 画面キャプチャは影を付けて「実物」であることを強調 */
figure.shot img { border:none; box-shadow:0 14px 34px rgba(14,58,70,.13); }
/* スマホ画面など縦長のキャプチャ。元の幅を超えて引き伸ばすとぼやけるので中央寄せで原寸内に収める */
figure.portrait img { max-width:340px; margin:0 auto; }

/* ---- 要点まとめ（拾い読みするユーザー向け。冒頭や章末に置く） ---- */
.summary { background:var(--tint); border-radius:10px; padding:24px 28px; margin:32px 0; }
.summary-head { font-family:'Zen Kaku Gothic New',sans-serif; font-size:15px; font-weight:700; color:var(--brand-deep); margin-bottom:12px; }
.summary ul { margin:0; padding:0; list-style:none; }
.summary li { position:relative; padding-left:26px; margin-bottom:9px; font-size:14.5px; line-height:1.85; }
.summary li:last-child { margin-bottom:0; }
.summary li::before { content:''; position:absolute; left:2px; top:.62em; width:9px; height:9px; border-radius:50%; background:var(--brand); }

/* ---- チェックリスト ---- */
.checklist { list-style:none; margin:20px 0; padding:0; }
.checklist li { position:relative; padding:10px 0 10px 34px; border-bottom:1px dashed var(--line); margin:0; }
.checklist li:last-child { border-bottom:none; }
.checklist li::before { content:''; position:absolute; left:4px; top:1.05em; width:14px; height:8px;
  border-left:2.5px solid var(--brand); border-bottom:2.5px solid var(--brand); transform:rotate(-45deg); }

/* ---- 手順ステップ（HowTo構造化データと対で使う） ---- */
.steps { counter-reset:step; margin:28px 0; }
.step { position:relative; padding:0 0 26px 60px; }
.step:last-child { padding-bottom:0; }
.step::before { counter-increment:step; content:counter(step); position:absolute; left:0; top:0;
  width:38px; height:38px; border-radius:50%; background:var(--brand); color:#fff;
  font-family:'Outfit',sans-serif; font-size:17px; font-weight:700;
  display:flex; align-items:center; justify-content:center; }
/* ステップ同士を縦線でつなぐ */
.step::after { content:''; position:absolute; left:18.5px; top:44px; bottom:6px; width:1.5px; background:var(--line); }
.step:last-child::after { display:none; }
.step h3 { margin:5px 0 8px; font-size:16.5px; }
.step p:last-child { margin-bottom:0; }

/* ---- 比較表（横スクロール対応。スマホでの表崩れを防ぐ） ---- */
.table-wrap { overflow-x:auto; margin:20px 0; -webkit-overflow-scrolling:touch; }
.table-wrap table { margin:0; min-width:520px; }
td.ok { color:var(--brand); font-weight:700; }
td.ng { color:#B5654F; }

/* ---- 引用・体験談（一次情報を目立たせる。E-E-A-Tの「経験」に効く） ---- */
blockquote { margin:28px 0; padding:20px 24px; background:#fff; border-left:4px solid var(--gold);
  border-radius:0 8px 8px 0; font-size:14.5px; color:var(--ink-soft); }
blockquote p:last-child { margin-bottom:0; }
blockquote cite { display:block; margin-top:10px; font-size:12.5px; color:#97A09B; font-style:normal; }

/* ---- FAQ（FAQPage構造化データと対で使う。検索結果にQ&Aが出る） ---- */
.faq { margin:28px 0; }
.faq details { background:#fff; border:1px solid var(--line); border-radius:8px; margin-bottom:10px; }
.faq summary { padding:16px 46px 16px 20px; font-weight:700; font-size:14.5px; cursor:pointer;
  position:relative; list-style:none; line-height:1.7; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::before { content:'Q'; font-family:'Outfit',sans-serif; color:var(--brand); font-weight:700; margin-right:10px; }
/* 開閉を示す＋/− */
.faq summary::after { content:''; position:absolute; right:20px; top:50%; width:12px; height:2px;
  background:var(--brand); transform:translateY(-50%); }
.faq details[open] summary::after { background:var(--gold); }
.faq summary .plus { position:absolute; right:25px; top:50%; width:2px; height:12px;
  background:var(--brand); transform:translateY(-50%); transition:opacity .2s; }
.faq details[open] summary .plus { opacity:0; }
.faq .faq-body { padding:0 20px 18px; font-size:14px; color:var(--ink-soft); line-height:1.95; }
.faq .faq-body p:last-child { margin-bottom:0; }

/* ---- 執筆者プロフィール（E-E-A-Tの権威性・信頼性） ---- */
.author-box { display:flex; gap:20px; align-items:flex-start; background:#fff; border:1px solid var(--line);
  border-radius:10px; padding:24px 26px; margin:48px 0 0; }
.author-box img { width:72px; height:72px; border-radius:50%; object-fit:cover; flex-shrink:0; background:var(--tint); }
.author-box .a-name { font-family:'Zen Kaku Gothic New',sans-serif; font-size:16px; font-weight:700; }
.author-box .a-role { font-size:12.5px; color:var(--brand); font-weight:700; margin-top:2px; }
.author-box .a-desc { font-size:13.5px; color:var(--ink-soft); margin-top:10px; line-height:1.9; }
.author-box .a-links { margin-top:10px; font-size:12.5px; }
.author-box .a-links a { margin-right:14px; text-decoration:none; }

/* ---- 記事内の補助CTA（本文の途中に置く控えめな導線） ---- */
.inline-cta { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  background:#fff; border:1px solid var(--brand); border-radius:8px; padding:18px 22px; margin:32px 0; }
.inline-cta .t { font-size:14.5px; font-weight:700; }
.inline-cta .s { font-size:12.5px; color:var(--ink-soft); margin-top:3px; }
.inline-cta a { background:var(--brand); color:#fff; text-decoration:none; font-weight:700; font-size:13.5px;
  padding:11px 22px; border-radius:4px; white-space:nowrap; }

/* ---- 最終更新の明示（鮮度シグナル） ---- */
.freshness { font-size:12.5px; color:#97A09B; margin-top:40px; padding-top:18px; border-top:1px solid var(--line); }

/* ---- スマホ最適化 ---- */
@media (max-width:600px) {
  body { font-size:15px; }
  h1 { font-size:24px; }
  h2 { font-size:19px; }
  h3 { font-size:16px; }
  main { padding:16px 18px 64px; }
  .toc { padding:18px 20px; }
  .summary { padding:20px 22px; }
  .step { padding-left:50px; }
  .step::before { width:32px; height:32px; font-size:15px; }
  .step::after { left:15.5px; top:38px; }
  .author-box { flex-direction:column; gap:14px; padding:20px 22px; }
  .inline-cta { flex-direction:column; align-items:flex-start; }
  .inline-cta a { width:100%; text-align:center; }
  .cta-box { padding:28px 22px; }
}
