@charset "UTF-8";

/* =========================================================
   行政書士藤田賢司事務所  共通スタイルシート
   - 配色：白 / 紺(navy) / 深緑(green) / ベージュ(beige)
   - 方針：信頼感・安心感・清潔感／大きめ文字／スマホ最優先
   ※カラーやフォントは下記 :root を変更すれば全ページに反映されます
   ========================================================= */

:root {
  /* ブランドカラー */
  --navy:        #1f3a5c;
  --navy-dark:   #16293f;
  --green:       #2f5d50;
  --green-dark:  #244840;
  --beige:       #f6f1e7;
  --beige-deep:  #efe7d6;
  --white:       #ffffff;

  /* テキスト */
  --text:        #2b2b2b;
  --text-soft:   #555b62;
  --text-muted:  #7a8088;
  --line:        #e3ded2;

  /* アクセント（CTA） */
  --cta:         #c8852e;   /* 落ち着いた金茶 */
  --cta-dark:    #a96f22;
  --line-green:  #06c755;   /* LINE公式カラー */
  --tel-green:   #2f5d50;

  /* レイアウト */
  --maxw: 1120px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(31,58,92,.06);
  --shadow:    0 8px 28px rgba(31,58,92,.10);

  /* タイポ */
  --font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
          "Yu Gothic", "Meiryo", system-ui, sans-serif;
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 2.0;          /* 高齢者の可読性を重視して行間を広めに */
  font-size: 18px;           /* ベース文字を大きめに */
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: .2s; }
a:hover { opacity: .8; }
ul { padding-left: 1.2em; }
h1, h2, h3, h4 { line-height: 1.5; font-weight: 700; }

/* ---------- 共通レイアウト ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }   /* 余白を広めに */
.section--beige { background: var(--beige); }
.section--green { background: var(--green); color: #fff; }
.section--navy  { background: var(--navy); color: #fff; }
.narrow { max-width: 840px; margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .ja {
  display: block; font-size: clamp(25px, 5.4vw, 34px);
  color: var(--navy); margin: 8px 0 0;
}
.section--green .section-head .ja,
.section--navy  .section-head .ja { color: #fff; }
.section-head .en {
  display: block; font-size: 13px; letter-spacing: .25em;
  color: var(--cta); font-weight: 700; text-transform: uppercase;
}
.section-head .lead { margin-top: 18px; color: var(--text-soft); font-size: 18px; }
.section--green .section-head .lead { color: rgba(255,255,255,.85); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 34px; border-radius: 50px; font-weight: 700; font-size: 18px;
  border: 2px solid transparent; cursor: pointer; text-align: center; line-height: 1.45;
  box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s, background .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(31,58,92,.22); opacity: 1; }
.btn:active { transform: translateY(-1px); }
.btn--cta   { background: var(--cta); color: #fff; box-shadow: 0 10px 26px rgba(200,133,46,.38); }
.btn--cta:hover { background: var(--cta-dark); box-shadow: 0 16px 34px rgba(200,133,46,.45); }
.btn--line  { background: var(--line-green); color: #fff; box-shadow: 0 10px 26px rgba(6,199,85,.32); }
.btn--tel   { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 10px 26px rgba(47,93,80,.32); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); box-shadow: none; }
.btn--lg    { padding: 22px 46px; font-size: 21px; }
.btn--block { display: flex; width: 100%; }
.btn small  { font-weight: 500; font-size: 13px; opacity: .9; }

/* 主役CTAをそっと脈打たせて視線を集める（控えめ・誇大演出にしない） */
.btn--cta.btn--lg { animation: ctaPulse 2.6s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(200,133,46,.38); }
  50%      { box-shadow: 0 10px 30px rgba(200,133,46,.55); }
}
@media (prefers-reduced-motion: reduce) {
  .btn--cta.btn--lg { animation: none; }
  .reveal { transition: none; }
}

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ===========================================================
   ヘッダー
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}
/* ※ヘッダーに backdrop-filter / transform を付けると、スマホの固定ナビ
   （position:fixed のドロワー）の包含ブロックがヘッダーになり高さが崩れます。
   ドロワーをヘッダー内に置いている間は、ここに付けないでください。 */
/* ヘッダーは本文より少し広めの幅を確保（ナビが詰まらないように） */
.site-header .container { max-width: 1260px; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__logo { width: 44px; height: 44px; flex: none; }
.brand__name { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.25; white-space: nowrap; }
.brand__name span { display: block; font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: .06em; white-space: nowrap; }

/* PCナビ：横並び・絶対に縦折れさせない（5項目に厳選） */
.gnav { display: flex; align-items: center; gap: 6px; flex: 0 1 auto; justify-content: center; }
.gnav a {
  padding: 10px 15px; font-size: 16px; font-weight: 600; color: var(--text);
  border-radius: 8px; white-space: nowrap;
}
.gnav a:hover { background: var(--beige); opacity: 1; }
.gnav a.is-current { color: var(--green); }

.header-cta { display: flex; align-items: center; gap: 16px; flex: none; }
.header-tel { text-align: right; line-height: 1.15; white-space: nowrap; }
.header-tel a { font-size: 21px; font-weight: 700; color: var(--navy); font-family: var(--serif); white-space: nowrap; }
.header-tel small { display: block; font-size: 11px; color: var(--text-muted); white-space: nowrap; }
.header-cta .btn { padding: 12px 18px; font-size: 15px; white-space: nowrap; line-height: 1.3; text-align: center; }

/* ハンバーガー */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex: none; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 6px 0; transition: .3s; }
.nav-toggle.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ===========================================================
   ヘッダー：1180px以下はハンバーガーメニューに切り替え
   （PCナビを無理に詰めず、第一印象と問い合わせ導線を優先）
   フル幅デスクトップ(>1180px)のみ5項目を横並び表示
   =========================================================== */
@media (max-width: 1180px) {
  .site-header .container { max-width: 100%; }
  .nav-toggle { display: block; }
  .gnav {
    position: fixed; top: 74px; right: 0; bottom: 0; width: 82%; max-width: 340px;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0; justify-content: flex-start;
    padding: 16px; box-shadow: -8px 0 30px rgba(0,0,0,.12);
    transform: translateX(100%); transition: transform .3s; overflow-y: auto;
  }
  .gnav.is-open { transform: translateX(0); }
  .gnav a { padding: 16px 12px; border-bottom: 1px solid var(--line); font-size: 17px; border-radius: 0; }
  /* タブレットは電話番号テキストを隠し、ボタンを優先表示 */
  .header-tel { display: none; }
  .header-cta { gap: 10px; }
  .header-cta .btn { font-size: 14px; padding: 10px 16px; }
}

/* ===========================================================
   ヒーロー（トップ）
   =========================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(47,93,80,.10), transparent 60%),
    linear-gradient(180deg, var(--beige) 0%, #fbf8f1 55%, #fff 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  /* 上下のみ指定（左右は .container の余白を活かす＝スマホで端に張り付かない） */
  padding-top: 40px; padding-bottom: 48px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green); font-weight: 700; font-size: 16px;
  padding: 9px 20px; border-radius: 50px; margin: 0 0 16px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.hero__eyebrow::before { content: "🌿"; }
.hero__copy h1 {
  font-size: clamp(30px, 5.4vw, 46px);
  color: var(--navy); line-height: 1.45; margin: 0 0 18px;
  font-family: var(--serif); letter-spacing: .01em;
}
.hero__copy h1 .accent {
  color: var(--green);
  background: linear-gradient(transparent 68%, rgba(47,93,80,.16) 68%);
}
.hero__lead { font-size: 18px; color: var(--text-soft); margin: 0 0 16px; line-height: 1.85; }

/* 主要CTA（説明文の直後）：2列グリッドで「3つで1セット」に統一
   ・1段目＝予約（1列目）＋電話（2列目）＝完全同幅
   ・2段目＝LINE（1列目〜2列目をまたぐ横長）
   ・高さ・文字サイズ・角丸・アイコン位置・余白はすべて統一。優先度は色のみ */
.hero__cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px; margin: 0 0 16px; max-width: 520px;   /* PCで少しだけ締める（スマホは下の指定で全幅） */
}
.hero__cta .btn {
  width: 100%; min-height: 58px; padding: 10px 20px;
  font-size: 17px; font-weight: 700; border-radius: 50px; gap: 8px;
}
/* 1段目＝予約（全幅・最重要）／2段目＝電話＋LINE（補助・2列同幅） */
.hero__cta .btn--cta {
  grid-column: 1 / -1;
  box-shadow: 0 12px 28px rgba(200,133,46,.45);
  animation: ctaPulse 2.6s ease-in-out infinite;   /* 主役だけさりげなく脈動 */
}
.hero__cta .btn--tel { border-width: 2px; }   /* 白地＋紺枠（補助） */
/* LINEは落ち着いた深緑にして、予約より目立たせない（補助導線） */
.hero__cta .btn--line { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(47,93,80,.26); }
.hero__cta .btn--line:hover { background: var(--green-dark); }
.hero__cta .btn__ico { font-size: 18px; line-height: 1; }
@media (prefers-reduced-motion: reduce){ .hero__cta .btn--cta{ animation: none; } }

/* チェック項目はCTAの下（2点・補助的に） */
.hero__points { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.hero__points li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy); font-size: 16px; }
.hero__points li::before { content: "✓"; color: #fff; background: var(--green); width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; flex: none; }
.hero__visual { position: relative; max-width: 480px; margin-left: auto; margin-right: auto; width: 100%; }
.hero__visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 20px 54px rgba(31,58,92,.20); }
.hero__badge {
  position: absolute; bottom: -18px; left: 0; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 22px;
  font-weight: 700; color: var(--navy); font-size: 15px; line-height: 1.4;
}
.hero__badge strong { color: var(--cta); font-size: 26px; }

.hero__note { font-size: 14.5px; color: #3f464d; margin-top: 14px; line-height: 1.9; }
.hero__note span { display: block; }
.hero__note span + span { margin-top: 2px; }
.hero__note strong { color: var(--green); }

/* 安心バー */
.trustbar { background: var(--navy); color: #fff; }
.trustbar ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 40px; list-style: none; padding: 22px 20px; margin: 0; text-align: center; }
.trustbar li { font-weight: 700; font-size: 17px; }
.trustbar li::before { content: "✓"; color: var(--cta); font-size: 15px; font-weight: 700; vertical-align: middle; margin-right: 8px; }

/* ===========================================================
   お悩み
   =========================================================== */
.worry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.worry-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: center;
}
.worry-card .ico { font-size: 34px; flex: none; }
.worry-card p { margin: 0; font-weight: 700; font-size: 17px; line-height: 1.7; }
.worry-after { text-align: center; margin-top: 44px; }
.worry-after .arrow { font-size: 34px; color: var(--cta); }
.worry-after p { font-size: clamp(19px,3.6vw,26px); font-weight: 700; color: var(--navy); margin-bottom: 24px; }

/* ===========================================================
   選ばれる理由
   =========================================================== */
.reason-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.reason-card {
  background: #fff; border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green); position: relative;
}
.reason-card .num { font-family: var(--serif); font-size: 15px; color: var(--cta); font-weight: 700; letter-spacing: .1em; }
.reason-card h3 { font-size: 22px; color: var(--navy); margin: 8px 0 14px; }
.reason-card p { margin: 0; color: var(--text-soft); font-size: 17px; }

/* ===========================================================
   業務メニュー
   =========================================================== */
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.menu-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card__img { aspect-ratio: 16/10; background: var(--beige-deep); }
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.menu-card h3 { font-size: 21px; color: var(--navy); margin: 0 0 10px; }
.menu-card p { margin: 0 0 18px; color: var(--text-soft); font-size: 16px; flex: 1; }
.menu-card .more { color: var(--green); font-weight: 700; font-size: 16px; }
.menu-card .more::after { content: " →"; }

/* ===========================================================
   相談の流れ
   =========================================================== */
.flow { max-width: 760px; margin: 0 auto; }
.flow__step { display: flex; gap: 22px; padding-bottom: 30px; position: relative; }
.flow__step:not(:last-child)::before {
  content: ""; position: absolute; left: 25px; top: 52px; bottom: 0; width: 2px; background: var(--line);
}
.flow__num {
  width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700; line-height: 1; z-index: 1;
}
.flow__num small { font-size: 9px; opacity: .8; }
.flow__num b { font-size: 20px; font-family: var(--serif); }
.flow__body h3 { margin: 4px 0 6px; font-size: 21px; color: var(--navy); }
.flow__body p { margin: 0; color: var(--text-soft); font-size: 17px; }

/* ===========================================================
   料金表
   =========================================================== */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 17px; }
.price-table th, .price-table td { padding: 20px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--navy); color: #fff; font-size: 16px; }
.price-table thead th:last-child { text-align: right; }
.price-table tbody th { font-weight: 700; color: var(--navy); width: 56%; }
.price-table td.price, .price-table .price { font-weight: 700; color: var(--green); white-space: nowrap; font-size: 21px; text-align: right; }
.price-table tbody tr:nth-child(even) { background: #fbf9f3; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: var(--beige); }
/* 一番人気・おすすめ行を強調 */
.price-table tr.is-recommend { background: #f1f6f2 !important; }
.price-table tr.is-recommend th { color: var(--green-dark); }
.price-table tr.is-recommend th .tag {
  display: inline-block; background: var(--cta); color: #fff; font-size: 12px;
  font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-left: 8px; vertical-align: middle;
}
.price-note { font-size: 15px; color: var(--text-muted); margin-top: 16px; line-height: 1.8; }

.price-cat { margin: 52px 0 16px; font-size: 24px; color: var(--navy); border-left: 6px solid var(--green); padding-left: 16px; }

/* ===========================================================
   代表者紹介
   =========================================================== */
.profile { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.profile__photo { max-width: 300px; margin: 0 auto; }
/* 実写真：全体を表示して頭・顔が切れないように（トリミングなし）。胸上の自然な構図のまま */
.profile__photo img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: #fff; object-fit: cover; object-position: top center; }
.profile__photo .cap { text-align: center; margin-top: 12px; font-weight: 700; color: var(--navy); }
.profile__photo .cap small { display: block; color: var(--text-muted); font-weight: 500; }
.profile__body h3 { font-size: 27px; color: var(--navy); margin: 0 0 6px; line-height: 1.5; }
.profile__body .role { color: var(--green); font-weight: 700; margin-bottom: 18px; font-size: 17px; }
.profile__body p { color: var(--text-soft); font-size: 17px; }
.profile__sign { text-align: right; font-family: var(--serif); font-size: 22px; color: var(--navy); margin-top: 10px; }

/* ===========================================================
   FAQ（アコーディオン）
   =========================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 24px 60px 24px 60px; font-size: 18px; font-weight: 700; color: var(--navy);
  position: relative; line-height: 1.7;
}
.faq-q::before { content: "Q"; position: absolute; left: 22px; top: 22px; color: var(--cta); font-family: var(--serif); font-size: 22px; }
.faq-q::after { content: "+"; position: absolute; right: 24px; top: 20px; font-size: 28px; color: var(--green); transition: .3s; }
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a__inner { padding: 0 26px 26px 60px; color: var(--text-soft); position: relative; font-size: 17px; }
.faq-a__inner::before { content: "A"; position: absolute; left: 22px; top: -2px; color: var(--green); font-family: var(--serif); font-size: 22px; font-weight: 700; }

/* ===========================================================
   CTA帯（最終問い合わせ導線）
   =========================================================== */
.cta-band { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(24px,4.8vw,36px); margin: 0 0 14px; }
.cta-band p { margin: 0 0 30px; color: rgba(255,255,255,.92); font-size: 18px; }
.cta-band .btn-group { margin-bottom: 18px; }
.cta-band .tel-big { font-family: var(--serif); font-size: clamp(30px,6.5vw,44px); font-weight: 700; color: #fff; }
.cta-band .tel-big small { display:block; font-size: 15px; font-family: var(--font); opacity: .9; margin-top: 4px; }

/* ===========================================================
   フォーム（お問い合わせ）
   =========================================================== */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 36px; }
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-row label .req { background: var(--cta); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.form-row label .opt { background: #e3ded2; color: var(--text-soft); font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.form-control {
  width: 100%; padding: 14px 16px; font-size: 16px; font-family: inherit;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fcfaf5; color: var(--text);
}
.form-control:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(47,93,80,.12); }
textarea.form-control { min-height: 150px; resize: vertical; }
.radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-group label { display: inline-flex; align-items: center; gap: 8px; background: var(--beige); padding: 12px 18px; border-radius: 10px; cursor: pointer; font-weight: 600; margin: 0; }
.radio-group input { accent-color: var(--green); width: 18px; height: 18px; }
.form-privacy { background: var(--beige); border-radius: 10px; padding: 16px; font-size: 14px; color: var(--text-soft); margin-bottom: 22px; }
.form-submit { text-align: center; }

.contact-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 40px; }
.contact-method { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.contact-method .ico { font-size: 36px; }
.contact-method h3 { margin: 10px 0 6px; color: var(--navy); }
.contact-method .big { font-size: 24px; font-weight: 700; color: var(--green); font-family: var(--serif); }
.contact-method p { font-size: 14px; color: var(--text-muted); margin: 6px 0 0; }

/* ===========================================================
   下層ページ共通 ページヘッダー
   =========================================================== */
.page-hero { background: var(--navy); color: #fff; padding: 54px 0; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; right:-60px; top:-60px; width:240px; height:240px; border-radius:50%; background: rgba(255,255,255,.05); }
.page-hero .en { color: var(--cta); font-size: 13px; letter-spacing: .25em; font-weight: 700; }
.page-hero h1 { font-size: clamp(26px,5vw,38px); margin: 8px 0 0; }
.breadcrumb { font-size: 13px; color: var(--text-muted); padding: 14px 0; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { margin: 0 6px; }

/* 本文 prose */
.prose h2 { font-size: clamp(24px,4.2vw,30px); color: var(--navy); border-bottom: 2px solid var(--beige-deep); padding-bottom: 12px; margin: 56px 0 24px; }
.prose h3 { font-size: 22px; color: var(--green); margin: 36px 0 14px; }
.prose p { color: var(--text-soft); font-size: 17px; }
.prose ul.check { list-style: none; padding: 0; }
.prose ul.check li { position: relative; padding-left: 34px; margin-bottom: 12px; font-size: 17px; }
.prose ul.check li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 18px; }

.callout { background: var(--beige); border-left: 5px solid var(--cta); border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; margin: 28px 0; font-size: 17px; }
.callout strong { color: var(--navy); }

.note-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin: 28px 0; box-shadow: var(--shadow-sm); font-size: 17px; }
.note-box h4 { margin: 0 0 10px; color: var(--navy); font-size: 19px; }

/* Googleマップ埋め込み（レスポンシブ） */
.map-embed { width: 100%; height: 340px; margin-top: 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 760px) { .map-embed { height: 280px; } }

/* ===========================================================
   フッター
   =========================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 36px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-col h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.8); font-size: 14px; }
.footer-col a:hover { color: var(--cta); opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.6); }

/* ===========================================================
   スマホ固定フッター（電話 / LINE / メール）
   =========================================================== */
.mobile-cta { display: none; }

/* ===========================================================
   レスポンシブ
   =========================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .reason-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .worry-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .profile { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 760px) {
  /* スマホ最優先：本文は読みやすい大きさを維持 */
  body { font-size: 17px; line-height: 2.0; }
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .section-head { margin-bottom: 40px; }
  .section-head .lead { font-size: 16.5px; }

  /* ヘッダーのハンバーガー化は「1024px以下」のブロックで対応済み。
     760px以下では、ヘッダーCTA（電話・ボタン）は画面下部の固定バーに集約するため非表示にする */
  .header-cta { display: none; }

  /* ヒーロー：スマホで相談導線を最優先に（左右余白は .container を維持） */
  .hero__inner { padding-top: 24px; padding-bottom: 40px; gap: 28px; }
  .hero__copy h1 { font-size: clamp(27px, 8vw, 36px); }
  .hero__lead { font-size: 17px; }
  .hero .btn-group { flex-direction: column; gap: 12px; }
  .hero .btn-group .btn { width: 100%; }
  /* スマホ：CTAは1列・全幅・押しやすい高さ（3つとも同一ルール） */
  .hero__cta { grid-template-columns: 1fr; gap: 12px; max-width: none; }
  .hero__cta .btn { width: 100%; min-height: 56px; font-size: 17px; }
  .hero__eyebrow { font-size: 14px; }

  /* CTA帯・ボタンは縦積みで押しやすく */
  .btn-group { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-group .btn { width: 100%; }
  .btn--lg { padding: 20px 24px; font-size: 19px; }

  .worry-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }

  /* 料金表をカード型に：高齢者にも分かりやすく */
  .price-table { box-shadow: none; background: transparent; }
  .price-table thead { display: none; }
  .price-table tbody tr {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    background: #fff !important; border: 1px solid var(--line); border-radius: var(--radius);
    margin-bottom: 14px; padding: 8px 18px; box-shadow: var(--shadow-sm);
  }
  .price-table tbody tr.is-recommend { border: 2px solid var(--green); }
  .price-table tbody th, .price-table tbody td { display: block; width: auto; border-bottom: 0; padding: 8px 0; }
  .price-table tbody th { width: 100%; font-size: 17px; }
  .price-table td.price, .price-table .price { font-size: 23px; width: 100%; text-align: right; }

  .contact-methods { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p, .footer-col a { font-size: 15px; }
  .trustbar ul { gap: 8px 18px; }
  .trustbar li { font-size: 15px; }
  .flow__step { gap: 16px; }
  .profile__body h3 { font-size: 23px; }

  /* スマホ固定CTA表示 */
  .mobile-cta {
    display: grid; grid-template-columns: repeat(3,1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: #fff; box-shadow: 0 -4px 18px rgba(0,0,0,.15);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
  }
  .mobile-cta a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; padding: 12px 4px; font-size: 13px; font-weight: 700; color: #fff;
  }
  .mobile-cta .ico { font-size: 24px; line-height: 1; }
  .mobile-cta .m-tel  { background: var(--tel-green); }
  .mobile-cta .m-line { background: var(--line-green); }
  .mobile-cta .m-mail { background: var(--cta); }

  /* 固定CTA分の余白 */
  body { padding-bottom: 76px; }
  .site-footer { margin-bottom: 0; }
}

/* ---------- アニメーション（スクロール表示） ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- ユーティリティ ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

/* ===========================================================
   パンくず（強化）
   =========================================================== */
.breadcrumb ol { list-style: none; margin: 0; padding: 14px 0; display: flex; flex-wrap: wrap; gap: 4px; font-size: 14px; color: var(--text-muted); }
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before { content: "›"; margin: 0 8px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green); opacity: 1; }
.breadcrumb [aria-current="page"] { color: var(--text-soft); font-weight: 600; }

/* ===========================================================
   トップ：サービス導線（大きめカード）
   =========================================================== */
.service-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 8px; }
.service-nav__card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--cta); transition: transform .15s, box-shadow .15s; color: var(--text);
}
.service-nav__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); opacity: 1; }
.service-nav__card .ico { font-size: 34px; }
.service-nav__card h3 { font-size: 21px; color: var(--navy); margin: 12px 0 8px; }
.service-nav__card p { margin: 0 0 16px; color: var(--text-soft); font-size: 16px; flex: 1; }
.service-nav__card .more { color: var(--green); font-weight: 700; font-size: 16px; }
.service-nav__card .more::after { content: " →"; }

/* ===========================================================
   コラム一覧・カード
   =========================================================== */
.column-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.column-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s; color: var(--text);
}
.column-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); opacity: 1; }
.column-card__img { aspect-ratio: 16/9; background: var(--beige-deep); }
.column-card__img img { width: 100%; height: 100%; object-fit: cover; }
.column-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.column-cat { display: inline-block; align-self: flex-start; background: var(--green); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 50px; margin-bottom: 12px; }
.column-card h3 { font-size: 19px; color: var(--navy); margin: 0 0 10px; line-height: 1.6; }
.column-card p { margin: 0; color: var(--text-soft); font-size: 15px; flex: 1; }
.column-card .more { color: var(--green); font-weight: 700; font-size: 15px; margin-top: 14px; }
.column-card .more::after { content: " →"; }
.column-card.is-coming { opacity: .65; pointer-events: none; }
.column-card.is-coming .column-cat { background: var(--text-muted); }

/* 記事本文の目次 */
.toc { background: var(--beige); border: 1px solid var(--beige-deep); border-radius: var(--radius); padding: 24px 28px; margin: 28px 0 40px; }
.toc h2 { font-size: 18px; color: var(--navy); margin: 0 0 12px; border: 0; padding: 0; }
.toc ol { margin: 0; padding-left: 1.4em; }
.toc li { margin-bottom: 8px; font-size: 16px; }
.toc a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.toc a:hover { color: var(--green); opacity: 1; }

/* 記事メタ */
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; color: var(--text-muted); font-size: 14px; margin-top: 10px; }
.article-meta .cat { background: var(--cta); color: #fff; font-weight: 700; padding: 3px 12px; border-radius: 50px; }

/* 関連リンク・内部リンクボックス */
.related-box { background: var(--beige); border-radius: var(--radius); padding: 28px 30px; margin: 40px 0; }
.related-box h2, .related-box h3 { margin-top: 0; color: var(--navy); border: 0; padding: 0; }
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { border-bottom: 1px dashed var(--line); }
.related-list li:last-child { border-bottom: 0; }
.related-list a { display: flex; align-items: center; gap: 10px; padding: 14px 4px; font-weight: 600; color: var(--navy); font-size: 16px; }
.related-list a::before { content: "📄"; }
.related-list a:hover { color: var(--green); opacity: 1; }

/* 本文中のCTAボックス（コラム→相談誘導） */
.inline-cta { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; border-radius: var(--radius-lg); padding: 32px; margin: 40px 0; text-align: center; }
.inline-cta h3 { color: #fff; margin: 0 0 10px; font-size: 22px; }
.inline-cta p { color: rgba(255,255,255,.92); margin: 0 0 20px; }

/* 地域バッジ */
.area-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--beige); color: var(--green-dark); border: 1px solid var(--beige-deep); font-weight: 700; font-size: 14px; padding: 6px 14px; border-radius: 50px; }
.area-badge::before { content: "📍"; }

@media (max-width: 760px) {
  .service-nav { grid-template-columns: 1fr; }
  .column-grid { grid-template-columns: 1fr; }
  .inline-cta { padding: 26px 20px; }
}

/* ===========================================================
   料金プラン（マーケティング用カード）
   =========================================================== */
.plan-intro { text-align: center; max-width: 760px; margin: 0 auto 12px; color: var(--text-soft); font-size: 17px; }

/* 初回相談バナー */
.consult-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 28px;
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: 24px 28px; margin: 0 0 40px; text-align: center;
}
.consult-banner .lbl { font-weight: 700; font-size: 19px; }
.consult-banner .free { font-family: var(--serif); font-weight: 700; color: #ffd9a0; font-size: clamp(24px,5vw,30px); }
.consult-banner .free small { font-family: var(--font); font-size: 15px; color: #fff; font-weight: 600; }
.consult-banner .after { font-size: 15px; color: rgba(255,255,255,.85); }

/* プランカード */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 26px; box-shadow: var(--shadow-sm);
}
.plan-card__label {
  align-self: flex-start; font-size: 13px; font-weight: 700; padding: 4px 14px;
  border-radius: 50px; margin-bottom: 14px; background: var(--beige-deep); color: var(--green-dark);
}
.plan-card__name { font-size: 20px; color: var(--navy); margin: 0 0 12px; line-height: 1.5; }
.plan-card__price { font-family: var(--serif); font-weight: 700; color: var(--green); font-size: clamp(28px,5vw,34px); line-height: 1.1; }
.plan-card__price small { font-family: var(--font); font-size: 15px; color: var(--text-soft); font-weight: 600; }
.plan-card__tax { font-size: 13px; color: var(--text-muted); margin: 4px 0 16px; }
.plan-card__desc { margin: 0 0 18px; color: var(--text-soft); font-size: 15px; flex: 1; }
.plan-card__desc strong { color: var(--navy); }
.plan-card .btn { width: 100%; }

/* おすすめプランの強調 */
.plan-card.is-best {
  border: 2px solid var(--green); box-shadow: var(--shadow); transform: translateY(-6px);
  background: linear-gradient(180deg, #f3f8f4 0%, #fff 40%);
}
.plan-card.is-best .plan-card__label { background: var(--cta); color: #fff; }
.plan-card.is-best .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cta); color: #fff; font-weight: 700; font-size: 13px;
  padding: 6px 18px; border-radius: 50px; white-space: nowrap; box-shadow: var(--shadow-sm);
}
.plan-card.is-entry .plan-card__label { background: var(--green); color: #fff; }

@media (max-width: 880px) {
  .plan-grid { grid-template-columns: 1fr; gap: 28px; }
  .plan-card.is-best { transform: none; margin-top: 8px; }
}
