/* Free マインドマップ ガイド記事 共通スタイル（本体のデザイントークンと同期） */
:root{
  --accent:#2563eb;
  --accent-hover:#1d4ed8;
  --accent-soft:rgba(59,130,246,.24);
  --line:#8bb8e8;
  --bg:#eef6ff;
  --panel:#ffffff;
  --text:#102033;
  --muted:#5d6f86;
  --border:#d7e5f5;
  --shadow:0 1px 3px rgba(30,64,175,.10),0 1px 2px rgba(30,64,175,.06);
}
*{ box-sizing:border-box; }
html,body{ margin:0; }
body{
  font-family:"Segoe UI","Hiragino Kaku Gothic ProN","Noto Sans JP",Meiryo,sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.85;
}
a{ color:var(--accent); }
a:hover{ color:var(--accent-hover); }

.site-header{
  background:var(--panel);
  border-bottom:1px solid var(--border);
  padding:14px 20px;
}
.site-header-inner{
  max-width:960px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700; font-size:16px; color:var(--text); text-decoration:none;
}
.brand-mark{
  width:32px; height:32px; border-radius:9px; background:var(--accent);
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:15px; font-weight:800;
}
.header-nav{ display:flex; gap:16px; align-items:center; }
.header-nav a{ font-size:14px; text-decoration:none; color:var(--muted); }
.header-nav a:hover{ color:var(--accent); }
.header-nav a.cta{
  background:var(--accent); color:#fff; padding:8px 16px; border-radius:8px; font-weight:600;
}
.header-nav a.cta:hover{ background:var(--accent-hover); color:#fff; }

.page{ max-width:760px; margin:0 auto; padding:32px 20px 56px; }
.breadcrumb{ font-size:13px; color:var(--muted); margin-bottom:18px; }
.breadcrumb a{ color:var(--muted); }

article.post{
  background:var(--panel); border:1px solid var(--border); border-radius:16px;
  box-shadow:var(--shadow); padding:36px 32px;
}
@media (max-width:600px){ article.post{ padding:26px 18px; } }
.post h1{ font-size:26px; line-height:1.5; margin:0 0 10px; }
.post .post-meta{ font-size:13px; color:var(--muted); margin-bottom:26px; }
.post h2{
  font-size:20px; margin:40px 0 14px; padding:10px 14px;
  background:var(--bg); border-left:4px solid var(--accent); border-radius:6px;
}
.post h3{ font-size:16.5px; margin:28px 0 10px; color:var(--accent-hover); }
.post p{ margin:0 0 16px; font-size:15.5px; }
.post ul,.post ol{ padding-left:24px; margin:0 0 16px; }
.post li{ margin-bottom:6px; font-size:15.5px; }
.post table{ width:100%; border-collapse:collapse; margin:0 0 18px; font-size:14.5px; }
.post th,.post td{ border:1px solid var(--border); padding:9px 12px; text-align:left; }
.post th{ background:var(--bg); }
.post .note{
  background:var(--bg); border:1px solid var(--border); border-radius:10px;
  padding:14px 16px; font-size:14px; color:var(--muted); margin:0 0 16px;
}
.cta-box{
  background:linear-gradient(135deg,#f0f6ff,#e7f0ff);
  border:1px solid var(--line); border-radius:14px;
  padding:24px 22px; text-align:center; margin:36px 0 6px;
}
.cta-box strong{ display:block; font-size:17px; margin-bottom:6px; }
.cta-box p{ font-size:14px; color:var(--muted); margin:0 0 14px; }
.cta-box a.btn{
  display:inline-block; background:var(--accent); color:#fff; text-decoration:none;
  padding:12px 26px; border-radius:10px; font-weight:700; font-size:15px;
}
.cta-box a.btn:hover{ background:var(--accent-hover); }

/* 記事内広告枠（AdSense自動広告 or 手動タグ差し替え用） */
.ad-slot{
  width:100%; min-height:96px; border:1px dashed #93c5fd; border-radius:14px;
  background:linear-gradient(135deg, rgba(219,234,254,.92), rgba(255,255,255,.92));
  color:#52667d; display:flex; align-items:center; justify-content:center; text-align:center;
  padding:16px; margin:30px 0;
}
.ad-slot-inner{ max-width:520px; }
.ad-slot .ad-label{
  display:inline-flex; margin:0 0 8px; color:#1d4ed8; background:#fff; border:1px solid #bfdbfe;
  border-radius:999px; padding:4px 9px; font-size:11px; font-weight:800;
}
.ad-slot strong{ display:block; color:#102033; font-size:14px; margin-bottom:4px; }
.ad-slot p{ margin:0; font-size:12.5px; line-height:1.6; }

/* 記事一覧 */
.post-list{ list-style:none; padding:0; margin:24px 0 0; display:grid; gap:16px; }
.post-card{
  background:var(--panel); border:1px solid var(--border); border-radius:14px;
  box-shadow:var(--shadow); padding:22px 24px; transition:border-color .15s;
}
.post-card:hover{ border-color:var(--accent); }
.post-card a.title{ font-size:17.5px; font-weight:700; text-decoration:none; display:block; margin-bottom:6px; }
.post-card .date{ font-size:12.5px; color:var(--muted); }
.post-card p{ margin:8px 0 0; font-size:14px; color:var(--muted); }
.guide-hero h1{ font-size:26px; margin:0 0 8px; }
.guide-hero p{ color:var(--muted); margin:0; }

.related{ margin-top:32px; }
.related h2{ font-size:17px; margin:0 0 12px; }
.related ul{ padding-left:22px; margin:0; }
.related li{ margin-bottom:8px; font-size:14.5px; }

.site-footer{
  border-top:1px solid var(--border); background:var(--panel);
  padding:26px 20px; margin-top:20px;
}
.site-footer-inner{
  max-width:960px; margin:0 auto; display:flex; justify-content:space-between;
  gap:14px; flex-wrap:wrap; font-size:13px; color:var(--muted);
}
.site-footer a{ color:var(--muted); text-decoration:none; margin-right:14px; }
.site-footer a:hover{ color:var(--accent); }
