/* =========================================================
   メンズ垢抜け  共有スタイル v1（ダーク×ゴールド）
   枠＝チャコール×ゴールド（男の清潔感・高級感）
   コンテンツ＝明るい紙（可読性）のハイブリッド構成
   ========================================================= */
:root {
  --ink:      #1c1e22;   /* 基本の文字 */
  --ink-soft: #5c626b;   /* 補助テキスト */
  --charcoal: #14161a;   /* ヘッダー/フッター/ダーク面 */
  --charcoal-2:#1d2026;  /* ダーク面の二段目 */
  --gold:     #c9a87c;   /* ゴールド（主役アクセント） */
  --gold-soft:#e4d3b5;
  --gold-dark:#a8875a;
  --gold-ink: #8a6d3f;   /* 明るい背景で読ませるゴールド */
  --paper:    #faf8f5;   /* ページ背景（暖かい紙） */
  --card:     #ffffff;
  --line:     #e8e4dc;   /* 罫線 */
  --green:    #2f7d5b;   /* チェック・成功系 */
  --price:    #c0392b;   /* 価格・強調の赤 */
  --radius:   14px;
  --shadow:   0 6px 22px rgba(20, 22, 26, 0.08);
  --shadow-lg:0 14px 40px rgba(20, 22, 26, 0.16);
  --wrap: 1080px;
  --font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
          "Yu Gothic", Meiryo, system-ui, sans-serif;
  --serif: "Hiragino Mincho ProN","Yu Mincho",YuMincho,"Noto Serif JP",serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.jpbr { word-break: keep-all; }
.nw { white-space: nowrap; }

/* ---------- ヘッダー ---------- */
.site-header {
  background: var(--charcoal);
  color: #fff;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 14px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(201,168,124,.4);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 62px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: .02em; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand small { display:block; font-size:.58rem; color:var(--gold-soft); font-weight:700; letter-spacing:.16em; }
.logo-mark {
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--charcoal); font-weight:800; font-size:1.1rem; font-family:var(--serif);
  flex:0 0 auto; box-shadow:0 2px 10px rgba(201,168,124,.4);
}
/* ハンバーガー（モバイルのみ表示） */
.nav-toggle{ position:absolute; opacity:0; width:1px; height:1px; pointer-events:none; }
.nav-burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; padding:11px; margin-left:auto;
  background:transparent; border:0; cursor:pointer;
}
.nav-burger span{ display:block; height:2px; background:#fff; border-radius:2px; transition:.25s; }
h2[id], h3[id]{ scroll-margin-top: 76px; }

.nav { display: flex; gap: 4px; flex-wrap: wrap; align-items:center; }
.nav a {
  color: #ddd2c0; padding: 8px 13px; border-radius: 999px;
  font-size: .9rem; font-weight: 700; transition: .15s;
}
.nav a:hover { background: rgba(201,168,124,.18); color:#fff; text-decoration: none; }
.nav a.on { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color:var(--charcoal); }
.nav a.nav-cta {
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color:var(--charcoal);
  border-radius: 8px; padding: 9px 16px; margin-left: 6px;
  box-shadow: 0 3px 12px rgba(201,168,124,.35);
}
.nav a.nav-cta:hover { filter: brightness(1.08); color:var(--charcoal); }

/* ---------- ヒーロー ---------- */
.hero {
  background: linear-gradient(160deg, var(--charcoal), var(--charcoal-2));
  color: #fff; padding: 54px 0 60px; position: relative; overflow: hidden;
  border-bottom: 2px solid var(--gold);
}
.hero .wrap { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--gold-soft); font-weight: 800; letter-spacing:.16em; font-size:.78rem; margin:0 0 14px; }
.hero h1 { font-size: 2.05rem; line-height: 1.4; margin: 0 0 16px; font-weight: 900; }
.hero h1 .hl { color: var(--gold); }
.hero p.lead { color: #d8d2c6; font-size: 1.02rem; max-width: 640px; margin: 0 0 26px; }
.hero .hero-cta {
  display:inline-block; background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--charcoal); font-weight:800; padding:14px 28px; border-radius:10px;
  box-shadow:0 6px 20px rgba(201,168,124,.35);
}
.hero .hero-cta:hover { filter:brightness(1.08); text-decoration:none; }

/* ---------- セクション ---------- */
section { padding: 44px 0; }
.section-head { text-align:center; margin: 0 0 30px; }
.section-head h2 { font-size: 1.5rem; margin: 0 0 8px; font-weight: 900; }
.section-head h2::after { content:""; display:block; width:44px; height:3px; background:var(--gold); margin:10px auto 0; border-radius:3px; }
.section-head p { color: var(--ink-soft); font-size: .95rem; margin:0; }

/* ---------- お悩みチップ ---------- */
.chips { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; max-width:760px; margin:0 auto; }
.chips a {
  background:#fff; border:1px solid var(--line); border-radius:999px;
  padding:9px 18px; font-size:.9rem; font-weight:700; color:var(--ink);
  box-shadow:var(--shadow); transition:.15s;
}
.chips a:hover { border-color:var(--gold); color:var(--gold-ink); text-decoration:none; transform:translateY(-2px); }

/* ---------- クラスターカード ---------- */
.cluster-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.cluster {
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 22px; box-shadow:var(--shadow); transition:.18s; display:block;
}
.cluster:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); text-decoration:none; border-color:var(--gold-soft); }
.cluster .c-num { color:var(--gold-dark); font-family:var(--serif); font-size:1.4rem; font-weight:800; }
.cluster h3 { font-size:1.15rem; margin:8px 0 8px; color:var(--ink); }
.cluster p { font-size:.88rem; color:var(--ink-soft); margin:0; }

/* ---------- 新着記事カード ---------- */
.post-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.post-card {
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow); transition:.18s; display:flex; flex-direction:column;
}
.post-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); text-decoration:none; }
.post-card .pc-thumb { aspect-ratio:16/9; background:linear-gradient(135deg,var(--charcoal),var(--charcoal-2)); display:flex; align-items:center; justify-content:center; color:var(--gold-soft); font-size:.8rem; letter-spacing:.1em; }
.post-card .pc-thumb img { width:100%; height:100%; object-fit:cover; }
.post-card .pc-body { padding:14px 16px 18px; }
.post-card .pc-tag { font-size:.72rem; color:var(--gold-dark); font-weight:800; letter-spacing:.08em; }
.post-card h3 { font-size:1rem; margin:4px 0 6px; color:var(--ink); line-height:1.55; }
.post-card p { font-size:.84rem; color:var(--ink-soft); margin:0; }

/* ---------- CTA ボックス（記事内 無料カウンセリング誘導） ---------- */
.cta-box {
  background:linear-gradient(160deg,var(--charcoal),var(--charcoal-2));
  color:#fff; border-radius:var(--radius); padding:26px 24px; margin:32px 0;
  text-align:center; box-shadow:var(--shadow-lg); border:1px solid rgba(201,168,124,.4);
}
.cta-box h3 { color:#fff; font-size:1.2rem; margin:0 0 8px; }
.cta-box p { color:#d8d2c6; font-size:.9rem; margin:0 0 18px; }
.cta-btn {
  display:inline-block; background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--charcoal); font-weight:800; padding:14px 30px; border-radius:10px;
  box-shadow:0 6px 20px rgba(201,168,124,.35); font-size:1rem;
}
.cta-btn:hover { filter:brightness(1.08); text-decoration:none; }
.cta-note { display:block; margin-top:10px; font-size:.76rem; color:var(--gold-soft); }

/* モバイル追従CTA */
.sticky-cta {
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  background:rgba(20,22,26,.96); padding:10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow:0 -4px 18px rgba(0,0,0,.3); display:none; backdrop-filter:blur(6px);
}
.sticky-cta a {
  display:block; text-align:center; background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--charcoal); font-weight:800; padding:13px; border-radius:10px; font-size:.98rem;
}
.sticky-cta a:hover { text-decoration:none; }

/* ---------- 比較カード（モバイル縦積み・PC横並び） ---------- */
.cmp-card {
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:20px; margin:18px 0; box-shadow:var(--shadow); position:relative;
}
.cmp-card.pick { border:2px solid var(--gold); }
.cmp-card .pick-badge { position:absolute; top:-12px; left:20px; background:var(--gold); color:var(--charcoal); font-weight:800; font-size:.74rem; padding:4px 12px; border-radius:999px; }
.cmp-card h3 { margin:2px 0 12px; font-size:1.15rem; }
.cmp-row { display:flex; justify-content:space-between; gap:12px; padding:8px 0; border-bottom:1px dashed var(--line); font-size:.9rem; }
.cmp-row:last-of-type { border-bottom:0; }
.cmp-row .lbl { color:var(--ink-soft); font-weight:700; }
.cmp-row .val { font-weight:700; text-align:right; }
.cmp-price { color:var(--price); font-weight:800; }
.cmp-was { color:var(--ink-soft); text-decoration:line-through; font-size:.82rem; margin-right:6px; }

/* ---------- 著者ボックス ---------- */
.author-box {
  display:flex; gap:14px; align-items:flex-start;
  background:#fff; border:1px solid var(--line); border-radius:12px;
  padding:16px 18px; margin:36px 0 0; box-shadow:var(--shadow);
}
.author-box .ab-avatar { width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--gold-dark)); flex:0 0 auto; display:flex; align-items:center; justify-content:center; color:var(--charcoal); font-weight:800; font-family:var(--serif); }
.author-box .ab-name { font-weight:800; margin:0 0 4px; font-size:.95rem; }
.author-box .ab-bio { margin:0; font-size:.85rem; color:var(--ink-soft); line-height:1.75; }

/* ---------- 目次 ---------- */
.toc { background:#fff; border:1px solid var(--line); border-radius:12px; padding:14px 18px; margin:24px 0; box-shadow:var(--shadow); }
.toc summary { font-weight:800; cursor:pointer; font-size:.95rem; }
.toc ol { margin:10px 0 2px; padding-left:1.5em; }
.toc li { margin:7px 0; font-size:.92rem; }

/* ---------- PR表記・免責 ---------- */
.disclosure { font-size:.76rem; color:var(--ink-soft); text-align:right; margin:6px 0 0; }
.pr-note { background:#f4efe7; border:1px solid var(--line); border-radius:10px; padding:12px 16px; font-size:.8rem; color:var(--ink-soft); margin:24px 0; }

/* ---------- 記事本文 ---------- */
.article { background:#fff; }
.article-body { max-width:720px; margin:0 auto; padding:8px 0 40px; }
.article-body h2 { font-size:1.4rem; margin:40px 0 14px; padding-bottom:8px; font-weight:900; }
.article-body h3 { font-size:1.12rem; margin:28px 0 10px; padding-left:12px; border-left:4px solid var(--gold); }
.article-body p { margin:0 0 16px; }
.breadcrumb { font-size:.8rem; color:var(--ink-soft); padding:14px 0 0; }
.breadcrumb a { color:var(--ink-soft); }
.meta-row { font-size:.82rem; color:var(--ink-soft); margin:6px 0 18px; }

/* 費用ハイライト（ダーク背景でマーカー不可→淡ボックス/下線で代替） */
.hl-num { border-bottom:3px solid var(--gold-soft); font-weight:800; }
.fact-box { background:#f4efe7; border-left:4px solid var(--gold); border-radius:0 10px 10px 0; padding:14px 18px; margin:20px 0; font-size:.92rem; }

/* FAQ */
.faq { border-top:1px solid var(--line); margin-top:14px; }
.faq details { border-bottom:1px solid var(--line); padding:14px 0; }
.faq summary { font-weight:800; cursor:pointer; }
.faq p { margin:12px 0 0; color:var(--ink-soft); font-size:.92rem; }

/* ---------- トップへ戻る ---------- */
.to-top { position:fixed; right:16px; bottom:16px; width:46px; height:46px; border-radius:50%;
  background:var(--charcoal); color:var(--gold); border:1px solid var(--gold); display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:.25s; z-index:55; font-size:1.2rem; box-shadow:var(--shadow); }
.to-top.show { opacity:1; pointer-events:auto; }

/* ---------- フッター ---------- */
.site-footer { background:var(--charcoal); color:#c9cbd0; padding:40px 0 30px; margin-top:20px; border-top:2px solid var(--gold); }
.site-footer .foot-grid { display:flex; flex-wrap:wrap; gap:30px; justify-content:space-between; }
.site-footer h4 { color:#fff; font-size:.95rem; margin:0 0 12px; }
.site-footer a { color:#c9cbd0; font-size:.86rem; display:block; padding:3px 0; }
.site-footer a:hover { color:var(--gold-soft); }
.site-footer .foot-note { font-size:.74rem; color:#8b8f97; margin-top:26px; line-height:1.8; border-top:1px solid rgba(255,255,255,.1); padding-top:18px; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 860px){
  .cluster-grid, .post-grid { grid-template-columns:1fr; }
}
@media (max-width: 760px){
  .hero h1 { font-size:1.6rem; }
  .site-header { position:static; }
  .nav-burger { display:flex; }
  .nav {
    position:absolute; top:62px; left:0; right:0; flex-direction:column; align-items:stretch;
    background:var(--charcoal); padding:8px 16px 16px; gap:2px; max-height:0; overflow:hidden;
    transition:max-height .3s ease; box-shadow:0 8px 20px rgba(0,0,0,.4);
  }
  .nav-toggle:checked ~ .nav { max-height:520px; }
  .nav a { padding:12px 10px; border-radius:8px; }
  .sticky-cta { display:block; }
  body { padding-bottom:70px; }
}
