/*
 * フォントアップグレード専用CSS
 * ① 見出し → Shippori Mincho B1（現行 Noto Serif JP → より格調高い明朝体）
 * ② 本文 → Noto Sans JP（現行 ヒラギノ/メイリオ → Webフォントで統一）
 * ③ 数字・価格はデフォルトのまま変更しない
 * ④ 色・レイアウト・ボタンは一切変更しない
 */

/* ============================================================
   ① 本文フォントをNoto Sans JPに統一
============================================================ */
body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro', Hiragino Kaku Gothic Pro,
               'メイリオ', Meiryo, sans-serif;
}

/* ============================================================
   ② 見出し全般 → Shippori Mincho B1
   （現行 --serif-family: Noto Serif JP を上書き）
============================================================ */
:root {
  --serif-family: 'Shippori Mincho B1', serif;
}

/* ============================================================
   ヘッダー固定によるコンテンツ隠れ対策
   （固定ヘッダーの高さ分だけ main-content を下げる）
============================================================ */
.main-content {
  padding-top: 115px;
}
@media screen and (max-width: 767px) {
  .main-content {
    padding-top: 60px;
  }
}

h1, h2, h3, h4,
.section-ttl,
.section-ttl__inner,
.ttl01,
.item-ttl,
.top-mainvisual__ttl,
.top-reasons__ttl,
.top-comment__ttl,
.top-problems__sub,
.top-voice .item-ttl,
.box-left__ttl,
.box-right__ttl,
.sub-mainvisual__ttl,
.sub-lead__ttl {
  font-family: 'Shippori Mincho B1', serif;
}
