/* =========================================================
   テーマ B 「信頼・洗練」
   白基調 × 深緑、明朝見出し、余白広め・落ち着き
   ========================================================= */

:root {
  --bg:            #ffffff;
  --surface:       #ffffff;
  --surface-alt:   #f4f6f5;
  --text:          #232a2b;
  --text-muted:    #6a7376;
  --accent:        #2f6d63;   /* 深い緑（安心・信頼） */
  --accent-contrast:#ffffff;
  --border:        #e6eae9;
  --radius:        8px;
  --shadow:        0 10px 28px rgba(30,45,42,.08);

  --font-head: "Zen Old Mincho", "Noto Serif JP", serif;
  --font-body: "Zen Kaku Gothic New", system-ui, sans-serif;
  --head-weight: 700;

  --header-bg:    rgba(255,255,255,.9);
  --header-text:  #232a2b;
  --header-border:#e6eae9;

  --footer-bg:   #232a2b;
  --footer-text: #f4f6f5;
}

/* ヒーロー：写真を使わず、余白と明朝で静かに */
.hero {
  background:
    radial-gradient(900px 500px at 80% -10%, #eef3f1 0%, transparent 70%),
    var(--bg);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.hero .lead { color: var(--text-muted); }

/* 見出しは細い罫線で上品に区切る */
h2.section-title::after {
  content: ""; display: block; width: 40px; height: 2px;
  background: var(--accent); opacity: .8;
  margin: .8rem auto 0;
}
