/* =========================================================
   テンプレートB「やさしい」 1ページ型ホームページ
   色：生成り＋テラコッタ＋若草／角丸／水彩風の背景／手書き風の見出し
   スマホ最優先（375px）→ 768px以上でPCレイアウト
   色を変えるときは :root の変数だけ触ればOK
   ========================================================= */

:root {
  --cream: #faf6ee;        /* 生成り（ページ背景） */
  --cream-deep: #f1e9da;   /* 少し濃い生成り（交互セクション） */
  --terra: #c8623a;        /* テラコッタ（メインボタン・アクセント） */
  --terra-deep: #a94e2b;
  --terra-light: #f7e3d8;
  --green: #7aa64a;        /* 若草（サブアクセント） */
  --green-light: #e8f0da;
  --brown: #4a3b31;        /* 見出し・文字（黒より柔らかい茶） */
  --text: #4a3b31;
  --muted: #7d6f64;
  --line: #e3d8c8;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 8px 22px rgba(120, 90, 60, 0.12);
  --maxw: 1040px;
}

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

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra); }
h1, h2, h3 { line-height: 1.5; margin: 0; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section { padding-block: 56px; position: relative; }
.section-alt { background: var(--cream-deep); }

/* 手書き風の見出し：文字の下に波線マーカー */
.section-title {
  text-align: center;
  font-size: 1.45rem;
  color: var(--brown);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.section-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 10px;
  margin: 6px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M2 6 C 12 1, 22 9, 32 5 S 52 1, 62 5 S 82 9, 92 5 S 112 1, 118 6' fill='none' stroke='%23c8623a' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.85;
}
.section-lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(200, 98, 58, 0.32);
  font-size: 1.05rem;
  width: 100%;
  max-width: 420px;
  flex-direction: column;
  gap: 2px;
  padding: 16px 24px;
}
.btn-primary:hover { background: var(--terra-deep); }
.btn-primary .btn-main { font-size: 1.1rem; }
.btn-primary .btn-sub { font-size: 0.8rem; font-weight: 500; opacity: 0.95; }

.btn-tel {
  background: var(--white);
  color: var(--brown);
  border: 2px solid var(--green);
  font-size: 1.05rem;
  width: 100%;
  max-width: 420px;
}
.btn-tel:hover { background: var(--green-light); }

/* ---------- ①ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.96);
  border-bottom: 2px dashed var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
}
.brand {
  text-decoration: none;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.04em; }
.brand-sub { font-size: 0.7rem; color: var(--muted); }

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-tel svg { width: 16px; height: 16px; fill: currentColor; }
.header-tel .tel-number { display: none; }

/* ---------- ②ヒーロー（水彩風の背景） ---------- */
.hero {
  color: var(--brown);
  padding-block: 44px 44px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 12% 18%, rgba(219, 233, 240, 0.9) 0%, rgba(219, 233, 240, 0) 70%),
    radial-gradient(ellipse 55% 50% at 88% 30%, rgba(247, 227, 216, 0.95) 0%, rgba(247, 227, 216, 0) 70%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(232, 240, 218, 0.95) 0%, rgba(232, 240, 218, 0) 70%),
    var(--cream);
}
/* にじみ模様（SVG） */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cdefs%3E%3Cfilter id='f' x='-30%25' y='-30%25' width='160%25' height='160%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='3' seed='3'/%3E%3CfeDisplacementMap in='SourceGraphic' scale='40'/%3E%3CfeGaussianBlur stdDeviation='6'/%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23f)' opacity='0.55'%3E%3Cellipse cx='120' cy='120' rx='170' ry='120' fill='%23dbe9f0'/%3E%3Cellipse cx='700' cy='170' rx='160' ry='120' fill='%23f3d9c6'/%3E%3Cellipse cx='420' cy='560' rx='260' ry='110' fill='%23d9e8bf'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / cover;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 24px; }
.hero-area {
  display: inline-block;
  background: var(--white);
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 1.65rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
/* 手書き風：店名の下に丸っこいマーカー */
.hero h1 .accent {
  color: var(--terra);
  background: linear-gradient(transparent 62%, rgba(245, 194, 107, 0.55) 62%);
  padding: 0 2px;
}
.hero-lead {
  font-size: 0.98rem;
  margin-bottom: 22px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.hero-tags li {
  background: var(--white);
  color: var(--brown);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
}
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero-note { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* 挿絵の差し替え枠（img/hero.png があれば画像、無ければSVG） */
.hero-art {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.hero-art img { width: 100%; height: 100%; object-fit: contain; }
.hero-art img[hidden] { display: none; }
.hero-art .hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-art img:not([hidden]) ~ .hero-fallback { display: none; }

/* ---------- ③大切にしていること ---------- */
.reasons { display: grid; gap: 16px; }
.reason {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow);
  position: relative;
}
/* 番号を手書き風の丸で */
.reason-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50% 48% 52% 50% / 52% 50% 50% 48%;
  background: var(--terra-light);
  color: var(--terra);
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 10px;
  border: 2px solid var(--terra);
}
.reason h3 { font-size: 1.1rem; color: var(--brown); margin-bottom: 8px; }
.reason p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* ---------- ④対応工事 ---------- */
.menus { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.menu {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}
.menu-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50% 46% 54% 50% / 50% 54% 46% 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.menu h3 { font-size: 1rem; color: var(--brown); margin-bottom: 6px; }
.menu p { margin: 0; font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.menu-price {
  display: inline-block;
  margin-top: 10px;
  background: var(--terra-light);
  color: var(--terra-deep);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}
.menus-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 20px; margin-bottom: 0; }

/* ---------- ⑤対応エリア ---------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.areas li {
  background: var(--white);
  border: 1.5px dashed var(--green);
  color: var(--brown);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.95rem;
}
.areas-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ---------- ⑥施工写真ギャラリー（写真は縦位置 3:4） ---------- */
.gallery { display: grid; gap: 18px; }
.ph {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #f1e9da 0%, #e3d8c8 100%);
  aspect-ratio: 3 / 4;
  width: 100%;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}
.ph::before {
  content: "施工写真（準備中）";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.6;
}
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph img[hidden] { display: none; }
.ph figcaption {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  text-align: center;
}

/* ---------- ⑦代表あいさつ ---------- */
.greeting {
  display: grid;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.face {
  margin: 0 auto;
  width: 180px;
  height: 180px;
  border-radius: 50% 46% 54% 50% / 50% 54% 46% 50%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f1e9da 0%, #e3d8c8 100%);
  border: 5px solid var(--terra-light);
  flex-shrink: 0;
}
.face::before {
  content: "代表写真";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.6;
}
.face img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.face img[hidden] { display: none; }
.greeting-body h3 { color: var(--brown); font-size: 1.1rem; margin-bottom: 6px; }
.greeting-name { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }
.greeting-body p { font-size: 0.95rem; }

/* ---------- ⑧お問い合わせ ---------- */
.contact {
  background:
    radial-gradient(ellipse 60% 50% at 10% 10%, rgba(232, 240, 218, 0.9) 0%, rgba(232, 240, 218, 0) 70%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(247, 227, 216, 0.9) 0%, rgba(247, 227, 216, 0) 70%),
    var(--cream-deep);
}
.contact-box {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
}
.contact-or { color: var(--muted); font-size: 0.85rem; margin: 0; }
.contact-hours {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}
.contact-hours strong { color: var(--terra); }
.contact-steps {
  width: 100%;
  border-top: 2px dashed var(--line);
  padding-top: 16px;
  margin-top: 6px;
}
.contact-steps h3 { font-size: 0.95rem; color: var(--brown); margin-bottom: 8px; text-align: center; }
.contact-steps ol { margin: 0; padding-left: 1.4em; font-size: 0.9rem; color: var(--muted); }
.contact-steps li { margin-bottom: 2px; }

/* ---------- ⑨フッター ---------- */
.site-footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.85);
  padding-block: 32px 28px;
  font-size: 0.85rem;
  text-align: center;
}
.site-footer .footer-name { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.site-footer p { margin: 0 0 6px; }
.site-footer a { color: #f5c26b; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-uketsuke {
  display: inline-block;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.8rem;
}
.footer-copy { margin-top: 16px; font-size: 0.75rem; opacity: 0.7; }

/* ---------- スマホ用 固定ボタン（画面下） ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(250, 246, 238, 0.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 14px rgba(120, 90, 60, 0.12);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 11px 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  line-height: 1.2;
}
.sticky-cta .s-tel { background: var(--green); color: var(--white); }
.sticky-cta .s-ai { background: var(--terra); color: var(--white); }
.sticky-cta svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
body { padding-bottom: 72px; }

/* ---------- PC（768px以上） ---------- */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .sticky-cta { display: none; }

  .section { padding-block: 72px; }
  .section-title { font-size: 1.75rem; }

  .header-tel { font-size: 1rem; padding: 10px 18px; }
  .header-tel .tel-number { display: inline; }
  .brand-name { font-size: 1.3rem; }

  .hero { padding-block: 72px 64px; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-lead { font-size: 1.1rem; max-width: 640px; }
  .btn-primary { width: auto; min-width: 380px; }
  .hero-art { max-width: 420px; margin: 0; justify-self: end; }

  .reasons { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .menus { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .menu { padding: 26px 18px; }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .greeting { grid-template-columns: 200px 1fr; gap: 40px; max-width: 900px; margin: 0 auto; padding: 36px 40px; }
  .face { width: 200px; height: 200px; }

  .contact-box { padding: 36px 40px; }
  .btn-tel { width: auto; min-width: 320px; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
}


/* ---- alias: A_cool variable names mapped to this style ---- */
:root{ --navy: var(--brown); --navy-deep: #3a2d25; --blue: var(--green); --blue-light: var(--green-light); --sky: var(--cream-deep); --orange: var(--terra); --orange-deep: var(--terra-deep); }

   ▼ 12ページ構成用の追加スタイル（ヘッダーナビ・パンくず・
     ページ見出し・記事本文・FAQ・表・末尾CTA・フッターナビ）
   B/C スタイルへ展開するときは、この style.css だけ差し替える
   （HTML側のクラス名は共通）
   ========================================================= */

/* ---------- ヘッダー：2段（店名＋電話／ナビ） ---------- */
.site-header .container { flex-wrap: wrap; }
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 60px;
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-tel { padding: 9px 12px; }

.nav-toggle {
  appearance: none;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  width: 44px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav {
  display: none;
  width: 100%;
  border-top: 1px solid var(--line);
  padding-block: 6px 10px;
}
.site-header.nav-open .site-nav { display: block; }
.site-nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 10px; }
.site-nav a {
  display: block;
  padding: 9px 8px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--line);
}
.site-nav a:hover { background: var(--blue-light); }
.site-nav a[aria-current="page"] { color: var(--orange-deep); border-bottom: 2px solid var(--orange); }

/* 375px幅では店名の副題を隠して1行に収める（ヒーローに同じ文言あり） */
@media (max-width: 479px) { .brand-sub { display: none; } }

/* ---------- パンくず ---------- */
.breadcrumb { background: var(--sky); border-bottom: 1px solid var(--line); }
.breadcrumb ol {
  margin: 0;
  padding: 8px 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 6px;
  font-size: 0.78rem;
  color: var(--muted);
}
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--muted); }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- ページ見出し（挿絵枠つき） ---------- */
.page-head {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-block: 32px 30px;
}
.page-head::before {
  content: "";
  position: absolute;
  right: -30%;
  top: 0;
  width: 55%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-14deg);
}
.page-head .container { position: relative; z-index: 1; display: grid; gap: 20px; }
.page-head .page-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 3px 12px;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.page-head h1 { font-size: 1.5rem; margin-bottom: 10px; }
.page-head h1 .accent { color: #ffd39a; }
.page-head .page-lead { font-size: 0.95rem; opacity: 0.95; margin: 0; }

/* 挿絵枠：img/ill/○○.png（1200×800・透過PNG）があれば画像、無ければSVG装飾
   スマホは幅100%、PCは横最大720pxで中央寄せ */
.page-art {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 3 / 2;
}
.page-art img { width: 100%; height: 100%; object-fit: contain; }
.page-art img[hidden] { display: none; }
.page-art .art-fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-art img:not([hidden]) ~ .art-fallback { display: none; }

/* ---------- 記事本文 ---------- */
.article { padding-block: 40px; }
.article .container { max-width: 860px; }
.article h2 {
  font-size: 1.25rem;
  color: var(--navy);
  border-left: 5px solid var(--orange);
  padding-left: 12px;
  margin: 40px 0 14px;
  line-height: 1.4;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 24px 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--blue-light);
}
.article p { font-size: 0.97rem; }
.article ul, .article ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: 4px; font-size: 0.97rem; }
.article strong { color: var(--navy); }

.lead-box {
  background: var(--sky);
  border: 1px solid var(--line);
  border-left: 5px solid var(--navy);
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.lead-box p:last-child { margin-bottom: 0; }

.note {
  background: #fff8f0;
  border: 1px solid #f5d5b3;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--text);
  margin: 0 0 1.2em;
}
.note strong { color: var(--orange-deep); }

/* 手順（番号つきステップ） */
.steps { list-style: none !important; padding-left: 0 !important; counter-reset: step; display: grid; gap: 10px; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 12px 14px 12px 56px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.steps li strong { display: block; margin-bottom: 2px; }

/* カード（症状別・ポイント） */
.cards { display: grid; gap: 12px; margin-bottom: 1.2em; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 6px; border: 0; padding: 0; font-size: 1rem; }
.card p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* 表 */
.table-wrap { overflow-x: auto; margin: 0 0 1.2em; }
.article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 320px;
}
.article th, .article td {
  border: 1px solid var(--line);
  padding: 9px 10px;
  text-align: left;
  vertical-align: top;
}
.article th { background: var(--blue-light); color: var(--navy); font-weight: 700; }
.article tbody th { width: 34%; }
.tbd { color: var(--orange-deep); font-weight: 700; }

/* FAQ */
.faq { display: grid; gap: 10px; margin-bottom: 1.2em; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 40px 12px 14px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  font-size: 0.97rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; color: var(--orange); font-weight: 800; margin-right: 8px; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 1.3rem;
  color: var(--blue);
}
.faq details[open] summary::after { content: "－"; }
.faq .answer { padding: 0 14px 14px 14px; font-size: 0.93rem; border-top: 1px dashed var(--line); }
.faq .answer p { margin: 10px 0 0; }
.faq .answer p::before { content: "A"; color: var(--navy); font-weight: 800; margin-right: 8px; }

/* 写真4枚チェックリスト（料金ページ） */
.photo-list { list-style: none !important; padding-left: 0 !important; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1.2em; }
.photo-list li {
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  font-size: 0.9rem;
  margin: 0;
}
.photo-list li strong { display: block; color: var(--navy); margin-bottom: 2px; }

/* 施工事例カード */
.cases { display: grid; gap: 18px; margin-bottom: 1.2em; }
.case { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.case .ph { border-radius: 0; box-shadow: none; }
.case-body { padding: 14px 16px 16px; }
.case-body h3 { margin: 0 0 6px; border: 0; padding: 0; font-size: 1rem; }
.case-body p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.case-meta { display: inline-block; font-size: 0.78rem; color: var(--white); background: var(--navy); padding: 2px 10px; margin-bottom: 8px; }

/* エリア別ブロック */
.area-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.area-block h2 { margin: 0 0 8px; font-size: 1.1rem; }
.area-block p { margin: 0; font-size: 0.93rem; }

/* 資格・登録番号の表（会社概要） */
.spec-table th { width: 40%; }

/* 4メニューへの導線（各ページ共通） */
.menu-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1.2em; }
.menu-links a {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--blue);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-align: center;
}
.menu-links a:hover { background: var(--blue-light); }
.menu a.menu-more { display: inline-block; margin-top: 8px; font-size: 0.85rem; font-weight: 700; }

/* 資格の要約（トップ） */
.quals { display: grid; gap: 10px; margin-bottom: 16px; }
.qual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
}
.qual strong { color: var(--navy); display: block; }
.qual span { color: var(--muted); font-size: 0.85rem; }
.center-link { text-align: center; }
.center-link a { font-weight: 700; }

/* ---------- 各ページ末尾の CTA帯 ---------- */
.cta-band { background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%); color: var(--white); padding-block: 40px; }
.cta-band .container { max-width: 860px; }
.cta-band h2 { font-size: 1.25rem; text-align: center; margin-bottom: 6px; }
.cta-band .cta-lead { text-align: center; font-size: 0.92rem; opacity: 0.95; margin-bottom: 18px; }
.cta-band .contact-box { max-width: 560px; }

/* ---------- フッター：全ページリンク ---------- */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 14px;
  margin: 14px 0 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-nav a { color: rgba(255, 255, 255, 0.9); font-size: 0.82rem; }

/* ---------- PC ---------- */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; border-top: 1px solid var(--line); padding-block: 0; }
  .site-nav ul { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0; }
  .site-nav a { border-bottom: 3px solid transparent; padding: 10px 6px; font-size: 0.86rem; }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--orange); }

  .breadcrumb ol { font-size: 0.82rem; }

  .page-head { padding-block: 48px 40px; }
  .page-head .container { gap: 32px; }
  .page-head h1 { font-size: 2.1rem; }
  .page-head .page-lead { font-size: 1.05rem; max-width: 760px; }
  .page-art { max-width: 720px; }

  .article { padding-block: 56px; }
  .article h2 { font-size: 1.45rem; margin-top: 48px; }
  .article h3 { font-size: 1.12rem; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .photo-list { grid-template-columns: repeat(4, 1fr); }
  .cases { grid-template-columns: repeat(3, 1fr); }
  .menu-links { grid-template-columns: repeat(4, 1fr); }
  .quals { grid-template-columns: repeat(3, 1fr); }
  .cta-band { padding-block: 56px; }
  .cta-band h2 { font-size: 1.6rem; }
}

/* theme song */
.song-wrap{max-width:820px;margin:18px auto 0;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:#000;line-height:0}
.song-video{width:100%;height:auto;display:block}
.song-note{text-align:center;color:var(--muted);font-size:.92rem;margin-top:12px}
