@charset "UTF-8";
/* 蜂駆除のハピネス — 共通スタイル（グリーンテーマ）
   モバイルファースト。@import は使わない(直列読み込みでFCPが悪化するため)。
   配色は参考サイト(街のハチ駆除屋さん)のCSSから実測した値を基準にしている。
     緑 #00A158 / #008F4E / #36AF7A / #DBF2EC / #BFE8DB
     CTAオレンジ #FF650F / #F34320  黄 #FFE666  金 #CDAF25
     クリーム #FCF4E3 / #F6F6EA  文字 #333333 */

:root {
  --ink: #333333;
  --ink-2: #4d5a53;
  /* 旧 #6f7d76 は白地 4.31:1 / green-50 上 3.97:1 で WCAG AA(4.5:1)未達だった。
     注記・パンくず・フォーム注記・「任意」バッジまで全て同じトークンを使っているため
     ヒーロー限定にせずトークンごと差し替える。白地 7.56:1 / green-50 上 6.97:1 */
  --muted: #3f5a4c;

  --green: #00a158;
  --green-d: #008f4e;
  --green-dd: #00693a;
  --green-m: #36af7a;
  --green-50: #eef8f3;
  --green-100: #dbf2ec;
  --green-200: #bfe8db;
  --green-300: #a4dbc7;

  --cta: #ff8c04;
  --cta-d: #f34320;
  --cta-sh: #b8300a;

  --gold: #cdaf25;
  --yellow: #ffe666;
  --surface: #fcf4e3;
  --paper: #ffffff;
  --line: #d7e6de;
  --danger: #e31e18;
  --ok: #00a158;

  --radius: 14px;
  --shadow: 0 6px 20px rgba(20, 70, 50, .1);
  --font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;  /* OS標準を優先。Webフォントは読まない(外部往復でLCPが8秒になったため撤去) */
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-size: 16px;
  overflow-wrap: anywhere;
}

img { max-width: 100%; height: auto; }
a { color: var(--green-d); }

.container { width: min(1080px, 100% - 32px); margin-inline: auto; }

.sprite { display: none; }
.ico { fill: currentColor; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-dd); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ===== ヘッダー ===== */
.site-header {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 3px solid var(--green);
  backdrop-filter: blur(6px);
}
.site-header__logo { width: 38px; height: 38px; flex: none; }
.site-header__brand { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.site-header__name { font-weight: 800; font-size: 16px; letter-spacing: .01em; }
.site-header__sub { font-size: 12px; color: var(--green-d); font-weight: 700; }
.site-header__spacer { flex: 1; }
.site-header__tel {
  display: none; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green) 48%, var(--green-d) 48%);
  color: #fff; text-decoration: none;
  font-weight: 800; padding: 8px 16px; border-radius: 999px; font-size: 15px;
}
.site-header__tel .ico { width: 18px; height: 18px; fill: currentColor; }

.hamburger {
  width: 44px; height: 40px; flex: none;
  display: grid; place-content: center; gap: 5px;
  background: none; border: 1px solid var(--green-200); border-radius: 10px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--green-d);
  transition: transform .25s ease, opacity .18s ease;
}
/* 開いている間は×に変形(bar間隔 5px + bar高 2px = 中心が ±7px) */
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* display:none/block は補間できないため、grid の 0fr→1fr で高さをアニメーションさせる。
   中身の高さを CSS 側で知る必要がなく、項目数が違う下層ページでもそのまま動く */
.nav-drawer {
  display: grid; grid-template-rows: 0fr;
  position: sticky; top: 55px; z-index: 89;
  background: var(--paper); border-bottom: 0 solid var(--line);
  padding: 0 14px; overflow: hidden;
  transition: grid-template-rows .28s ease, padding .28s ease, border-bottom-width .28s ease;
}
.nav-drawer.open { grid-template-rows: 1fr; padding: 8px 14px 14px; border-bottom-width: 1px; }
/* 閉じている間はキーボードのフォーカスも入らないようにする(高さ0でもリンクはtab可能なため) */
.nav-drawer__list { overflow: hidden; min-height: 0; visibility: hidden; transition: visibility .28s; }
.nav-drawer.open .nav-drawer__list { visibility: visible; }
.nav-drawer a {
  display: block; padding: 11px 4px; text-decoration: none;
  color: var(--ink); font-weight: 700; border-bottom: 1px dashed var(--line);
  opacity: 0; transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease;
}
.nav-drawer.open a { opacity: 1; transform: none; }
/* 上から順に現れる。5項目目以降は遅延を増やさない(遅すぎると開いた感じがしない) */
.nav-drawer.open a:nth-child(1) { transition-delay: .06s; }
.nav-drawer.open a:nth-child(2) { transition-delay: .11s; }
.nav-drawer.open a:nth-child(3) { transition-delay: .16s; }
.nav-drawer.open a:nth-child(n+4) { transition-delay: .20s; }
.nav-drawer__group { padding-left: 12px; border-left: 3px solid var(--green-200); margin: 6px 0; }

/* ===== ヒーロー ===== */
/* 下端に必ず境界を引く。ヒーロー画像は object-fit: cover なので、画面が広いほど
   縦方向が切り詰められて下端に淡い空〜丘の上部(#e8f7f1 付近)が来る。これが次節の
   --green-50(#eef8f3)とほぼ同色になり、1440px 以上では境界が消えていた。
   画像側の都合に依存しないよう、ヘッダーと同じ 3px の緑罫で固定する */
.hero {
  position: relative; overflow: hidden; background: var(--green-100);
  border-bottom: 3px solid var(--green);
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 40%;
}
.hero__veil {
  position: absolute; inset: 0;
  /* 白を薄くして背景イラストの白飛びを抑える。中央帯は見出しが乗るので他より少しだけ濃く残す */
  background: linear-gradient(180deg, rgba(247, 253, 250, .58) 0%, rgba(247, 253, 250, .34) 46%, rgba(247, 253, 250, .66) 100%);
}
.hero__inner { position: relative; padding: 26px 0 30px; text-align: center; }
.hero__badges { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.hero__badge {
  background: var(--green-d); color: #fff; font-weight: 800; font-size: 12px;
  padding: 6px 12px; border-radius: 999px; letter-spacing: .02em;
}
/* 19px 以上の太字は WCAG の「大きい文字」扱い(基準 3:1)になるため、
   緑 #008F4E(3.89:1)のままで AA を満たす。19px を下回らせないこと */
.hero__catch { margin: 0 0 8px; font-size: 19px; font-weight: 800; color: var(--green-d); }
.hero__title { margin: 0 0 10px; font-size: 27px; line-height: 1.4; font-weight: 900; letter-spacing: .01em; }
.hero__title .accent { color: var(--green); }
.hero__price { margin: 0 0 16px; font-size: 15px; font-weight: 700; color: var(--ink-2); }
.hero__price .num { font-size: 34px; font-weight: 900; color: var(--cta-d); letter-spacing: .01em; }
.hero__note { margin: 10px 0 0; font-size: 13px; color: var(--muted); font-weight: 700; }

/* ===== 電話ボタン ===== */
.btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(180deg, #ffa93a, var(--cta-d));
  color: #fff; text-decoration: none; font-weight: 900;
  padding: 17px 40px; border-radius: 999px; font-size: 21px;
  box-shadow: 0 6px 0 var(--cta-sh), var(--shadow);
  border: 2px solid var(--cta-sh);
  text-shadow: 0 1px 2px rgba(120, 40, 0, .35);
}
.btn-call:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--cta-sh); }
.btn-call .ico { width: 24px; height: 24px; fill: currentColor; flex: none; }
/* 番号はボタン内の第2要素だが、行動そのものなので極端に小さくしない
   (13px ではラベル 21px に対して弱すぎた) */
.btn-call__num { display: block; font-size: 18px; font-weight: 800; letter-spacing: .04em; }

.btn-line {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--paper); color: var(--green-dd); text-decoration: none;
  font-weight: 800; padding: 12px 22px; border-radius: 999px;
  border: 2px solid var(--green-dd); font-size: 15px;
}

/* ===== セクション共通 ===== */
.section { padding: 42px 0; }
.section--tint { background: var(--green-50); }
.section--ink { background: var(--green-dd); color: #eaf7f1; }

.sec-heading { text-align: center; margin: 0 0 36px; }
.sec-heading__en {
  display: block; font-size: 11px; letter-spacing: .22em;
  color: var(--green); font-weight: 800;
}
.sec-heading__ja { display: block; font-size: 22px; font-weight: 900; line-height: 1.45; }
.sec-heading__ja::after {
  content: ""; display: block; width: 52px; height: 4px; border-radius: 2px;
  background: var(--green); margin: 10px auto 0;
}
.section--ink .sec-heading__ja { color: #fff; }
.section--ink .sec-heading__en { color: var(--yellow); }

.lead { text-align: center; margin: -10px auto 24px; max-width: 40em; font-size: 16px; }

/* ===== 3つの安心 ===== */
.merit-list { display: grid; gap: 14px; }
.merit {
  background: var(--paper); border: 2px solid var(--green-200); border-radius: var(--radius);
  padding: 18px 16px; text-align: center; box-shadow: var(--shadow);
}
.merit__ico { width: 52px; height: 52px; margin: 0 auto 8px; display: block; fill: var(--green); }
.merit__ttl { display: block; font-size: 18px; font-weight: 900; margin-bottom: 6px; }
.merit__ttl .big { color: var(--cta-d); font-size: 26px; }
.merit p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ===== お困りごと(吹き出し) ===== */
.trouble-list { display: grid; gap: 12px; }
.trouble {
  position: relative; background: var(--paper); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px 14px 52px;
  font-weight: 700; font-size: 15px;
}
.trouble::before {
  content: "!"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--danger); color: #fff; font-weight: 900;
  display: grid; place-content: center; font-size: 15px;
}
.trouble-foot {
  margin-top: 18px; text-align: center; font-size: 17px; font-weight: 900; color: var(--danger);
}

/* ===== CTAバナー ===== */
.cta-banner {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dd) 100%);
  color: #fff; text-align: center; padding: 32px 16px;
}
.cta-banner__ttl { margin: 0 0 6px; font-size: 20px; font-weight: 900; line-height: 1.5; }
.cta-banner__sub { margin: 0 0 16px; font-size: 14px; color: var(--yellow); font-weight: 700; }
.cta-banner__note { margin: 12px 0 0; font-size: 13px; color: #cdeadd; }

/* ===== 料金 ===== */
.price-table { width: 100%; border-collapse: collapse; background: var(--paper); box-shadow: var(--shadow); }
.price-table caption { caption-side: top; text-align: left; font-size: 13px; color: var(--muted); padding-bottom: 8px; }
.price-table th, .price-table td { border: 1px solid var(--line); padding: 13px 12px; text-align: left; }
.price-table thead th { background: var(--green); color: #fff; font-size: 14px; }
.price-table tbody th { font-weight: 800; font-size: 15px; width: 46%; background: #f6f6ea; }
.price-table td { text-align: right; white-space: nowrap; }
.price-table .amount { font-size: 24px; font-weight: 900; color: var(--cta-d); }
.price-table .yen { font-size: 14px; font-weight: 800; }
.price-table a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--green); }

.price-notes { margin: 16px 0 0; padding-left: 1.2em; font-size: 13px; color: var(--muted); }
.price-notes li { margin-bottom: 4px; }

/* ===== 流れ ===== */
.flow { display: grid; gap: 14px; counter-reset: step; }
.flow__item {
  position: relative; background: var(--paper); border: 2px solid var(--green-200);
  border-radius: var(--radius); padding: 16px 16px 16px 66px;
}
.flow__item::before {
  counter-increment: step; content: "STEP " counter(step);
  position: absolute; left: 12px; top: 16px; width: 44px;
  font-size: 10px; font-weight: 900; color: var(--green-d); line-height: 1.2;
}
.flow__item::after {
  content: ""; position: absolute; left: 22px; top: 42px;
  width: 24px; height: 24px; border-radius: 50%; background: var(--green);
}
.flow__ttl { display: block; font-size: 17px; font-weight: 900; margin-bottom: 4px; }
.flow__item p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ===== 蜂の種類カード ===== */
.bee-grid { display: grid; gap: 18px; }
.bee-card {
  background: var(--paper); border: 2px solid var(--green-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
/* 1カラムになる 900px 未満では、元画像の 640x430 のままだと画像だけで
   390px幅→238px / 768px幅→494px を占め、1画面に1種類しか入らなかった。
   640/350 に切って高さを 19% 削る。中央クロップで残るのは y=40〜390 で、
   原画の蜂は スズメバチ 55-365 / アシナガバチ 63-372 / ミツバチ 95-335 に収まるため
   3種とも欠けず上下に余白も残る(2:1 まで詰めるとスズメバチの翅が上端に接する)。
   背景が放射グラデーションのため object-fit: contain は使えない(余白の色が合わない) */
.bee-card__img { width: 100%; display: block; aspect-ratio: 640 / 350; object-fit: cover; }
.bee-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.bee-card__ttl { margin: 0 0 4px; font-size: 19px; font-weight: 900; }
.bee-card__risk { font-size: 13px; font-weight: 800; padding: 4px 11px; border-radius: 999px; align-self: flex-start; margin-bottom: 8px; }
.bee-card__risk--high { background: #fde5e2; color: var(--danger); }
.bee-card__risk--mid { background: #fff3cf; color: #9a6a04; }
.bee-card__risk--low { background: var(--green-100); color: var(--green-dd); }
.bee-card p { margin: 0 0 12px; font-size: 15px; color: var(--ink-2); }
.bee-card__link {
  margin-top: auto; align-self: flex-start; font-weight: 800; text-decoration: none;
  color: var(--ink); border-bottom: 2px solid var(--green); font-size: 14px;
}

/* ===== 対応場所 ===== */
.place-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.place {
  background: var(--paper); border: 1px solid var(--green-200); border-radius: 10px;
  padding: 12px 10px; text-align: center; font-weight: 700; font-size: 14px;
}
.place__ico { width: 28px; height: 28px; display: block; margin: 0 auto 4px; fill: var(--green); }

/* ===== 危険・注意リスト ===== */
.warn-list { display: grid; gap: 14px; }
.warn {
  background: var(--paper); border-left: 6px solid var(--danger);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 16px;
  box-shadow: var(--shadow);
}
.warn--tip { border-left-color: var(--green); }
.warn__ttl { display: block; font-size: 16px; font-weight: 900; margin-bottom: 6px; }
.warn p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ===== 対応エリア ===== */
.area-block { margin-bottom: 22px; }
.area-block__ttl {
  margin: 0 0 10px; font-size: 16px; font-weight: 900;
  padding-left: 10px; border-left: 5px solid var(--green);
}
.area-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.area-tags li {
  background: var(--paper); border: 1px solid var(--green-200); border-radius: 999px;
  padding: 5px 12px; font-size: 13px; font-weight: 700;
}
.area-tags li.is-base { background: var(--green); color: #fff; border-color: var(--green); }
.area-foot { margin-top: 6px; font-size: 14px; text-align: center; font-weight: 700; }

/* ===== 地図 ===== */
.map-frame {
  width: 100%; height: 300px; border: 0; border-radius: var(--radius);
  box-shadow: var(--shadow); display: block; background: var(--green-100);
}

/* ===== 運営者情報 ===== */
.info-table { width: 100%; border-collapse: collapse; background: var(--paper); box-shadow: var(--shadow); }
.info-table th, .info-table td { border: 1px solid var(--line); padding: 12px; text-align: left; font-size: 15px; vertical-align: top; }
.info-table th { background: #f6f6ea; width: 34%; font-weight: 800; white-space: nowrap; }

.eeat { background: var(--paper); border: 2px solid var(--green-200); border-radius: var(--radius); padding: 18px; }
.eeat h3 { margin: 0 0 6px; font-size: 16px; font-weight: 900; color: var(--green-dd); }
.eeat p { margin: 0 0 14px; font-size: 15px; color: var(--ink-2); }
.eeat ul { margin: 0 0 14px; padding-left: 1.2em; font-size: 15px; color: var(--ink-2); }
.eeat > :last-child { margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 10px; }
.faq-item { background: var(--paper); border: 1px solid var(--green-200); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  list-style: none; cursor: pointer; padding: 14px 44px 14px 44px;
  font-weight: 800; font-size: 16px; position: relative;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::before {
  content: "Q"; position: absolute; left: 14px; top: 13px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--green);
  color: #fff; font-weight: 900; font-size: 13px; display: grid; place-content: center;
}
.faq-q::after {
  content: ""; position: absolute; right: 18px; top: 22px;
  width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: rotate(-135deg); }
.faq-a {
  padding: 0 16px 16px 44px; font-size: 15px; color: var(--ink-2); position: relative;
  border-top: 1px dashed var(--line); padding-top: 14px; margin-top: 0;
}
.faq-a::before {
  content: "A"; position: absolute; left: 14px; top: 14px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--cta);
  color: #fff; font-weight: 900; font-size: 13px; display: grid; place-content: center;
}

/* ===== パンくず ===== */
.breadcrumb { background: var(--green-50); border-bottom: 1px solid var(--line); font-size: 13px; }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 9px 0; list-style: none;
}
.breadcrumb li::after { content: "›"; margin-left: 6px; color: var(--muted); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); display: inline-block; padding: 6px 2px; }

/* ===== フォーム ===== */
.form { background: var(--paper); border: 2px solid var(--green-200); border-radius: var(--radius); padding: 18px; }
.field { margin-bottom: 18px; }
.field__label { display: block; font-weight: 800; font-size: 14px; margin-bottom: 6px; }
.field__req { background: var(--danger); color: #fff; font-size: 12px; padding: 3px 8px; border-radius: 4px; margin-left: 6px; }
.field__any { background: var(--muted); color: #fff; font-size: 12px; padding: 3px 8px; border-radius: 4px; margin-left: 6px; }
.field input[type="text"], .field input[type="tel"], .field textarea, .field select {
  width: 100%; padding: 12px; font-size: 16px; font-family: inherit;
  border: 1px solid var(--line); border-radius: 8px; background: #fbfefc; color: var(--ink);
}
.field textarea { min-height: 110px; resize: vertical; }
.field__note { margin: 6px 0 0; font-size: 12px; color: var(--muted); }
.checks { display: grid; gap: 8px; }
.checks label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-submit {
  width: 100%; padding: 16px; font-size: 17px; font-weight: 900; font-family: inherit;
  color: #fff; background: linear-gradient(180deg, #ffa93a, var(--cta-d));
  border: 2px solid var(--cta-sh); border-radius: 999px; cursor: pointer;
  box-shadow: 0 5px 0 var(--cta-sh);
}
.btn-submit:disabled { opacity: .6; cursor: progress; }
.form-message { margin: 12px 0 0; font-size: 14px; font-weight: 700; text-align: center; min-height: 1.2em; }
.form-message.error { color: var(--danger); }
.form-notes { margin: 14px 0 0; font-size: 12px; color: var(--muted); }
.form-notes p { margin: 0 0 6px; }

/* ===== タップ領域の確保 =====
   行内リンクの上下 padding は行送りを変えずに当たり判定だけ広げられる。
   border-bottom を下線に使っている箇所は padding-top だけ足して下線を動かさない。
   390px 実測で 15〜28px しか無かったものを 30〜38px に引き上げる。
   本文の途中に埋まった参照リンク(FAQ内・注記内)は行組みが崩れるため対象外 */
.price-table a { padding-top: 7px; }
.bee-card__link { padding-top: 8px; }
.area-foot a, .simple-page p a, .eeat p a { display: inline-block; padding: 7px 2px; }
.faq-a a, .info-table a, .prose p a { padding: 7px 1px; }
/* 本文中の電話番号は主要導線。太字+下線で視認性も上げる */
.callout a[href^="tel:"], .prose a[href^="tel:"], .eeat a[href^="tel:"],
.faq-a a[href^="tel:"], .lead a[href^="tel:"] {
  font-weight: 800; text-decoration: underline; padding: 7px 2px;
}

/* ===== フッター ===== */
.site-footer { background: var(--green-dd); color: #e6f5ed; padding: 32px 16px 96px; text-align: center; }
.site-footer__logo { width: 54px; height: 54px; margin: 0 auto 8px; display: block; }
.site-footer__name { margin: 0 0 10px; font-size: 18px; font-weight: 900; color: #fff; }
.site-footer__nap { margin: 0 0 4px; font-size: 14px; }
/* 電話番号はフッター最大の導線。行内リンクのままだと高さ14pxしか無かった */
.site-footer__nap a { color: var(--yellow); font-weight: 800; font-size: 17px; display: inline-block; padding: 6px 2px; }
.site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; margin: 18px 0 14px; }
/* 全ページ共通の副ナビ。高さ24pxではタップしづらいので44pxまで広げる */
.site-footer__nav a { color: #e6f5ed; font-size: 14px; display: inline-block; padding: 10px 6px; }
.site-footer__copy { margin: 0; font-size: 12px; color: #a8ccb9; }

/* ===== スマホ固定CTA ===== */
.sp-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: flex; gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(0, 105, 58, .96);
  transform: translateY(120%); transition: transform .25s;
}
.sp-cta-bar.visible { transform: translateY(0); }
.sp-cta-bar.tucked { transform: translateY(120%); }
.sp-cta-bar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, #ffa93a, var(--cta-d));
  color: #fff; text-decoration: none; font-weight: 900;
  padding: 11px 8px; border-radius: 999px; line-height: 1.25;
}
.sp-cta-bar__ico { width: 22px; height: 22px; fill: currentColor; flex: none; }
.sp-cta-bar__text { display: flex; flex-direction: column; align-items: flex-start; }
.sp-cta-bar__label { font-size: 12px; }
.sp-cta-bar__num { font-size: 17px; letter-spacing: .02em; }

/* ===== 404 / thanks ===== */
.simple-page { padding: 60px 0; text-align: center; }
.simple-page h1 { font-size: 24px; font-weight: 900; margin: 0 0 14px; color: var(--green-dd); }
.simple-page p { font-size: 15px; margin: 0 0 20px; }

/* ===== 記事系(下層ページ本文) ===== */
.prose h2 {
  font-size: 20px; font-weight: 900; margin: 34px 0 12px;
  padding-left: 12px; border-left: 6px solid var(--green);
}
.prose h3 { font-size: 16px; font-weight: 900; margin: 22px 0 8px; }
.prose p { margin: 0 0 14px; font-size: 15px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 1.3em; font-size: 15px; }
.prose li { margin-bottom: 6px; }
.prose strong { background: linear-gradient(transparent 62%, var(--yellow) 62%); font-weight: 800; }
.prose > :first-child { margin-top: 0; }

.callout {
  background: var(--green-50); border: 2px dashed var(--green); border-radius: var(--radius);
  padding: 16px; margin: 0 0 20px;
}
.callout__ttl { display: block; font-weight: 900; margin-bottom: 6px; font-size: 15px; color: var(--green-dd); }
.callout p { margin: 0; font-size: 15px; }

.related { display: grid; gap: 10px; margin-top: 8px; }
.related a {
  display: block; background: var(--paper); border: 1px solid var(--green-200);
  border-radius: 10px; padding: 13px 16px; text-decoration: none;
  color: var(--ink); font-weight: 800; font-size: 15px;
}
.related a::after { content: " →"; color: var(--green); }

/* ===== レスポンシブ ===== */
@media (min-width: 600px) {
  .merit-list { grid-template-columns: repeat(3, 1fr); }
  /* 他のグリッドと同じく600pxで2列にする。1列のままだと768px幅でカードが736pxになり
     画像が過大になっていた(他は .trouble-list / .flow / .warn-list / .related が同じ扱い) */
  .bee-grid { grid-template-columns: repeat(2, 1fr); }
  .trouble-list { grid-template-columns: repeat(2, 1fr); }
  .place-grid { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .warn-list { grid-template-columns: repeat(2, 1fr); }
  .related { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 34px; }
  .hero__catch { font-size: 21px; }
  .hero__inner { padding: 44px 0 48px; }
  .sec-heading__ja { font-size: 27px; }
  .map-frame { height: 380px; }
}

@media (min-width: 900px) {
  body { font-size: 17px; }
  .section { padding: 64px 0; }
  .site-header { padding: 10px 22px; }
  .site-header__tel { display: inline-flex; }
  .hamburger { display: none; }
  /* PCでは常時展開。開閉アニメーション用の指定を全て打ち消す */
  .nav-drawer {
    display: block; position: static; padding: 0; overflow: visible;
    background: var(--paper); border-bottom: 1px solid var(--line);
  }
  .nav-drawer__list {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 4px 22px; width: min(1080px, 100% - 32px); margin-inline: auto;
    visibility: visible; overflow: visible;
  }
  .nav-drawer a {
    border-bottom: 0; padding: 12px 0; font-size: 14px;
    opacity: 1; transform: none; transition-delay: 0s;
  }
  .nav-drawer__group { display: contents; }
  .hero__inner { padding: 64px 0 68px; }
  .hero__title { font-size: 50px; }
  .hero__catch { font-size: 24px; }
  /* PCでは本文を 16px まで戻す。基準 17px に対し 14px は落差が大きすぎた */
  .merit p, .bee-card p, .flow__item p, .warn p,
  .eeat p, .eeat ul, .faq-a, .callout p, .info-table th, .info-table td { font-size: 16px; }
  .faq-q { font-size: 17px; }
  .lead { font-size: 17px; }
  .sec-heading { margin-bottom: 44px; }
  .btn-call { font-size: 23px; padding: 19px 48px; }
  .btn-call__num { font-size: 19px; }
  .bee-grid { grid-template-columns: repeat(3, 1fr); }
  /* 3列になれば1枚あたりが十分小さいので、原画の比率に戻して蜂を大きく見せる */
  .bee-card__img { aspect-ratio: 640 / 430; }
  .place-grid { grid-template-columns: repeat(5, 1fr); }
  .flow { grid-template-columns: repeat(5, 1fr); }
  /* PCでも下部固定CTAを出す(primeroad-service と同じ挙動)。
     ボタンを画面幅いっぱいに伸ばすと不格好なので、中央に寄せて幅を抑える */
  .sp-cta-bar { justify-content: center; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); }
  .sp-cta-bar__btn { flex: 0 1 400px; padding: 13px 24px; }
  .sp-cta-bar__label { font-size: 13px; }
  .sp-cta-bar__num { font-size: 19px; }
  .site-footer { padding-bottom: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
