/* css/style.css — 全ページ共通スタイル
   2026-09-10（第2版）静かな和モダン：淡いグレーの紙、明朝、縦書きの題字、余白、雲。
   飾りは薄い線と小さな朱印だけ。太い縁取り・ベタ影・グラデーションは使わない。
   （HTMLの構造とクラス名はテンプレのまま。見た目だけをここで差し替えている） */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
  --paper: #ECEAE4;        /* 地の色：淡い暖かいグレー */
  --paper-2: #E2DFD7;      /* 帯・交互の背景 */
  --paper-white: #FAF9F6;  /* 面（カード） */
  --ink: #3B3A37;          /* 文字 */
  --ink-soft: #47453F;     /* 本文（2026-09-20 高齢の方にも読めるよう濃く。地に対して約7:1） */
  --muted: #6B675F;        /* 補足・英字ラベル（同上。約4.6:1） */
  --line: #CFCBC2;         /* 罫線 */
  --seal: #B7473A;         /* 朱印（少しくすんだ朱） */
  --seal-pale: #F1E1DC;
  --olive: #8E9A5B;        /* 参考画像のバスの緑 */
  --olive-dark: #6F7D4C;
  --olive-pale: #E6E8DA;
  --terracotta: #C4704F;   /* 弁当の煮物の色 */
  --mustard: #D2A64A;
  --kin-light: #FBEFD2;
  --white: #FFFFFF;

  /* テンプレ由来の変数名は残し、新しい色に付け替える（各ページの <style> が参照している） */
  --primary-color: var(--olive-dark);
  --primary-dark: #4E5A33;
  --primary-pale: var(--olive-pale);
  --secondary-color: var(--ink);
  --accent-color: var(--terracotta);
  --accent-pale: #F1E3DA;
  --bg-color: var(--paper);
  --text-color: var(--ink-soft);
  --light-gray: var(--paper-2);
  --border-color: var(--line);
  --shu: var(--seal);
  --shu-dark: #9A3A2F;
  --shu-pale: var(--seal-pale);
  --matsu: var(--olive-dark);
  --matsu-dark: #4E5A33;
  --radius: 2px;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-ink: none;
  --font-serif: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
  --font-sans: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-heading: var(--font-serif);
  --font-body: var(--font-serif);
  --font-brush: var(--font-serif);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background-color: var(--paper);
  line-height: 2;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 500; line-height: 1.6; color: var(--ink); letter-spacing: 0.12em; }
h1 { font-size: 30px; }

/* 見出し：明朝、ゆったりした字間、下に短い一本線 */
h2 { font-size: 26px; margin-bottom: 48px; text-align: center; position: relative; padding-bottom: 22px; letter-spacing: 0.22em; }
h2::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 36px; height: 1px; background: var(--ink); }
h3 { font-size: 20px; margin-bottom: 14px; }

/* 見出し上の英字ラベル：小さく、字間を広く */
.sec-en { display: block; font-family: var(--font-sans); font-size: 12px; font-weight: 500; letter-spacing: 0.45em; color: var(--muted); margin-bottom: 14px; text-transform: uppercase; }

img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.bg-light { background-color: var(--paper-2); }
.bg-cool { background: var(--paper-2); color: var(--ink-soft); }
.bg-cool h2 { color: var(--ink); }
.text-center { text-align: center; }
.text-primary { color: var(--olive-dark); }

/* ふわっと表示アニメーション */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* 雲：CSSだけで描く（白い丸を重ねる） */
.hero::before, .hero::after, .cta-panel::before, footer::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 40px;
  background: var(--white);
  border-radius: 40px;
  box-shadow: 30px -20px 0 4px var(--white), 68px -12px 0 12px var(--white), 104px -4px 0 4px var(--white);
  opacity: 0.85;
  pointer-events: none;
}

/* Buttons：白地に細い線。押し感は色の反転だけ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 24px;
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--ink);
  background: var(--paper-white);
  color: var(--ink);
  cursor: pointer;
  margin-bottom: 14px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { background: var(--ink); color: var(--paper-white); }

.btn-phone { background: var(--terracotta); border-color: var(--terracotta); color: #fff; font-size: 20px; padding: 18px 24px; flex-direction: column; white-space: nowrap; }
.btn-phone:hover { background: #A85A3C; border-color: #A85A3C; }
.fixed-bottom .btn-phone { flex-direction: row; }
@media (min-width: 768px) { a[href^="tel:"] { pointer-events: none; cursor: default; } }

.btn-line { background-color: #06C755; border-color: #06C755; color: #fff; }
.btn-line:hover { background-color: #05A847; border-color: #05A847; color: #fff; }

.btn-price-detail { max-width: 360px; margin: 0 auto; }
.btn-outline { background: transparent; }

/* Header：紙の上に静かに。細い線だけ */
header {
  background-color: rgba(236, 234, 228, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-text-group { display: flex; flex-direction: column; }
.header-site-name { font-size: 20px; color: var(--ink); white-space: nowrap; }
.header-site-sub { font-size: 12px; color: var(--muted); letter-spacing: 0.15em; white-space: nowrap; }
.header-logo { height: 48px; width: auto; display: block; }
/* フルロゴ：この世界観では控えめな大きさで */
.header-logo-full { height: 60px; width: auto; }
@media (max-width: 420px) { .header-logo-full { height: 56px; } }

/* Navigation Menu */
.menu-toggle { display: block; background: none; border: 1px solid var(--ink); border-radius: 2px; width: 42px; height: 42px; font-size: 20px; cursor: pointer; color: var(--ink); }
.main-nav { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: var(--paper-white); border-bottom: 1px solid var(--line); }
.main-nav.active { display: block; }
.main-nav ul { list-style: none; display: flex; flex-direction: column; }
.main-nav li { border-bottom: 1px solid var(--line); }
.main-nav a { display: block; padding: 15px 24px; text-decoration: none; color: var(--ink); font-size: 15px; letter-spacing: 0.2em; transition: color 0.2s; }
.main-nav a:hover { color: var(--seal); }
.nav-contact-btn { color: var(--seal) !important; }

/* ===== Hero：中央に縦書きの題字と天狗、雲が流れる ===== */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 24px 72px;
  min-height: 92vh;
  justify-content: center;
}
/* .hero-inner の中身を .hero 直下の並びとして扱い、題字→絵→文の順に並べ替える */
.hero-inner { display: contents; }
.hero-badge { order: 1; }
.hero-catch { order: 2; }
.hero-bg { order: 3; }
.hero-sub { order: 4; }
.hero-cta-row { order: 5; }
.hero-points { order: 6; }

.hero::before { left: -30px; top: 16%; transform: scale(1.1); }
.hero::after  { right: 24px; top: 58%; transform: scale(0.8); box-shadow: -30px -20px 0 4px var(--white), -68px -12px 0 12px var(--white), -104px -4px 0 4px var(--white); }

/* SCROLL DOWN */
.hero-inner::after {
  content: "SCROLL DOWN";
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--muted);
}

/* 題字の上の小さな肩書き：朱印つき */
.hero-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: "天狗";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--seal);
  color: var(--seal);
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1;
  transform: rotate(-8deg);
}

/* 縦書きの題字。<br> ごとに1列になり、右から読む */
.hero-catch {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-size: clamp(34px, 8.6vw, 54px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.16em;
  margin: 0 auto 28px;
  height: auto;
  max-height: 340px;
}
.hero-catch .accent { color: var(--seal); }

/* 中央の絵（天狗の草刈り） */
.hero-bg { position: relative; width: 100%; display: flex; justify-content: center; padding: 8px 0 28px; }
.hero-bg img { width: min(72vw, 330px); height: auto; object-fit: contain; }

.hero-sub { position: relative; z-index: 1; font-size: 15px; line-height: 2.2; letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 26px; max-width: 30em; }

/* LINEボタンを吹き出しにして、隣に鴉天狗 */
.hero-cta-row { position: relative; display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 26px; }
.hero-cta-row::before { content: ""; width: 74px; height: 68px; background: url("../images/brand/karasu-tengu.png") center / contain no-repeat; flex-shrink: 0; }
.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--paper-white);
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.hero-btn::before { content: ""; position: absolute; left: -9px; top: 50%; width: 8px; height: 8px; background: var(--paper-white); border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: translateY(-50%) rotate(45deg); }
.hero-btn-line::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #06C755; }
.hero-btn:hover { background: #06C755; color: #fff; border-color: #06C755; }
.hero-btn:hover::before { background: #06C755; border-color: #06C755; }
.hero-btn:hover::after { background: #fff; }
.hero-btn-phone { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.hero-btn-phone small { display: block; font-size: 13px; }

.hero-points { position: relative; z-index: 1; list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; font-size: 14px; letter-spacing: 0.14em; color: var(--muted); }
.hero-points li { padding: 0 14px; position: relative; }
.hero-points li + li::before { content: ""; position: absolute; left: 0; top: 50%; width: 1px; height: 12px; background: var(--line); transform: translateY(-50%); }

/* ===== Problems ===== */
#services .container { max-width: 1000px; }
.problems-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
@media (min-width: 680px) { .problems-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.problem-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 44px 18px 18px;
  text-decoration: none;
  transition: border-color 0.25s;
}
.problem-item:hover { border-color: var(--ink); }
.problem-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.problem-text { flex: 1; min-width: 0; font-size: 16px; color: var(--ink); line-height: 1.6; letter-spacing: 0.08em; }
.problem-arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 14px; }
.problem-footer { font-size: 16px; letter-spacing: 0.12em; color: var(--ink); text-align: center; margin-top: 36px; }

/* ===== Services ===== */
.service-category { margin-bottom: 20px; background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.service-category h3 { font-size: 21px; letter-spacing: 0.18em; color: var(--ink); padding-left: 14px; border-left: 2px solid var(--seal); line-height: 1.3; }
.service-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 18px; }
@media (min-width: 480px) { .service-list { grid-template-columns: repeat(2, 1fr); } }
.service-list li { position: relative; padding-left: 18px; font-size: 15px; letter-spacing: 0.08em; }
.service-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--seal); position: absolute; left: 3px; top: 13px; }

/* ===== Price ===== */
.price-calc-container { display: flex; flex-direction: column; align-items: center; gap: 22px; margin-top: 16px; }
.price-box { border-radius: var(--radius); padding: 30px 16px; width: 100%; max-width: 280px; flex: 1; color: #fff; position: relative; }
.price-box-orange { background: var(--mustard); }
.price-box-blue { background: #A85E40; } /* 白文字が読めるよう terracotta を一段濃く */
.price-box-green { background: var(--olive-dark); } /* 同上 */
.price-box-title { font-size: 17px; letter-spacing: 0.22em; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 10px; }
.price-box-amount { font-size: 34px; font-weight: 500; margin-bottom: 14px; line-height: 1.2; white-space: nowrap; letter-spacing: 0.08em; }
.price-box-amount span { font-size: 15px; }
.price-box-desc { font-size: 14px; letter-spacing: 0.1em; white-space: nowrap; opacity: 1; }
.price-plus { font-size: 30px; color: var(--muted); }
.price-box-bubble {
  position: absolute; top: -14px; right: -10px;
  background-color: var(--paper-white); color: var(--ink);
  width: 66px; height: 66px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; letter-spacing: 0.05em; line-height: 1.3; text-align: center; transform: rotate(8deg);
}

/* Price Detail Table */
.price-table { width: 100%; max-width: 760px; margin: 0 auto; background-color: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-table-header { background: var(--paper-2); color: var(--ink); font-size: 18px; letter-spacing: 0.2em; padding: 16px 24px; border-bottom: 1px solid var(--line); }
.price-table-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.price-table-row:last-child { border-bottom: none; }
.price-table-cell.service-name { font-size: 16px; color: var(--ink); letter-spacing: 0.1em; }
.price-table-cell.service-price { font-size: 26px; color: var(--seal); letter-spacing: 0.06em; }
.price-table-cell.service-price span { font-size: 15px; margin-left: 4px; }

/* ===== Reasons ===== */
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.reason-item { background: var(--paper-white); padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.reason-item h3 { color: var(--ink); font-size: 18px; margin-bottom: 8px; letter-spacing: 0.12em; }
.reason-item p { font-size: 15px; }

/* ===== Greeting ===== */
.greeting-content { display: flex; flex-direction: column; align-items: center; gap: 28px; background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 28px; }
.greeting-img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 6px solid var(--white); outline: 1px solid var(--line); flex-shrink: 0; }
.greeting-text { text-align: left; font-size: 15px; }

/* Qualification */
.qualification-box { margin-top: 24px; background: var(--paper); border-radius: var(--radius); padding: 20px; }
.qualification-title { font-size: 15px; letter-spacing: 0.2em; color: var(--ink); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.qualification-title::before { content: ""; width: 14px; height: 1px; background: var(--ink); }
.qualification-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.qualification-list li { background: var(--paper-white); border: 1px solid var(--line); color: var(--ink); font-size: 14px; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 2px; }

/* ===== Flow ===== */
.flow-step { display: flex; align-items: center; background: var(--paper-white); padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); }
.step-num { width: 38px; height: 38px; background: var(--seal); color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; margin-right: 16px; flex-shrink: 0; }
.step-text { font-size: 17px; color: var(--ink); letter-spacing: 0.1em; }
.flow-arrow { text-align: center; font-size: 15px; color: var(--muted); padding: 4px 0; }

/* ===== FAQ ===== */
.faq-item { margin-bottom: 14px; background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { background: var(--paper-2); color: var(--ink); padding: 16px 20px; font-size: 16px; letter-spacing: 0.08em; display: flex; gap: 12px; }
.faq-q .faq-icon { color: var(--seal); }
.faq-a { padding: 16px 20px; font-size: 15px; display: flex; gap: 12px; }
.faq-icon { flex-shrink: 0; font-size: 16px; }

/* ===== Area ===== */
.area-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 16px; }
.area-badge { background: var(--paper-white); padding: 9px 22px; border-radius: 2px; border: 1px solid var(--line); color: var(--ink); font-size: 15px; letter-spacing: 0.14em; }

/* ===== Final CTA：白い面に雲 ===== */
.cta-panel { position: relative; overflow: hidden; background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 64px 24px 56px; color: var(--ink); }
.cta-panel::before { right: 20px; top: 22px; transform: scale(0.7); opacity: 1; background: var(--paper); box-shadow: -30px -20px 0 4px var(--paper), -68px -12px 0 12px var(--paper), -104px -4px 0 4px var(--paper); }
.cta-panel h2 { color: var(--ink); position: relative; }
.cta-panel p { color: var(--ink-soft); position: relative; font-size: 15px; }
.cta-panel .btn { position: relative; max-width: 360px; margin-left: auto; margin-right: auto; }

/* ===== Footer & Fixed Bottom Bar ===== */
footer { position: relative; overflow: hidden; background: var(--paper-2); color: var(--ink-soft); padding: 56px 20px 120px; text-align: center; border-top: 1px solid var(--line); font-size: 14px; letter-spacing: 0.12em; }
footer::before { left: -40px; bottom: 30px; top: auto; transform: scale(0.6); opacity: 0.7; }
.footer-info { margin-bottom: 20px; position: relative; }
.footer-logo-wrapper { display: flex; justify-content: center; margin-bottom: 18px; position: relative; }
.footer-logo-full { height: 84px; width: auto; display: block; background: transparent; padding: 0; border: none; }
.fixed-bottom { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(236, 234, 228, 0.96); backdrop-filter: blur(6px); padding: 10px 16px; border-top: 1px solid var(--line); z-index: 1000; display: flex; gap: 10px; }
.fixed-bottom .btn { margin-bottom: 0; font-size: 15px; padding: 12px; border-radius: 30px; }
.fixed-bottom .btn-phone { flex: 2; font-size: 17px; }
.fixed-bottom .btn-line { flex: 1; }

/* ===== PC ===== */
@media (min-width: 900px) {
  body { font-size: 17px; } /* 以前は広い画面で小さくしていたが、読みやすさ優先でスマホと同じ17pxに（2026-09-20） */
  .header-sub, .menu-toggle { display: none; }
  .main-nav { display: block; position: static; width: auto; background: transparent; border: none; }
  .main-nav ul { flex-direction: row; align-items: center; gap: 30px; }
  .main-nav li { border-bottom: none; }
  .main-nav a { padding: 6px 0; font-size: 14px; letter-spacing: 0.24em; position: relative; }
  .main-nav a:not(.nav-contact-btn)::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
  .main-nav a:not(.nav-contact-btn):hover::after { transform: scaleX(1); }
  .nav-contact { margin-left: 6px; }
  .header-logo-full { height: 68px; }

  .hero { min-height: 100vh; padding: 96px 24px 80px; }
  .hero-catch { font-size: 56px; max-height: 560px; }
  .hero-bg img { width: 400px; }
  .hero::before { left: 4%; top: 22%; transform: scale(1.5); }
  .hero::after  { right: 8%; top: 34%; transform: scale(1.1); }

  .greeting-content { flex-direction: row; padding: 44px; }
  .greeting-text { flex: 1; }
  .service-list { grid-template-columns: repeat(3, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .price-calc-container { flex-direction: row; justify-content: center; align-items: stretch; gap: 16px; }
  .price-plus { display: flex; align-items: center; }
  .fixed-bottom { display: none; }
  footer { padding-bottom: 56px; }
}

/* 広い画面のトップだけ：ヘッダーを透明にして、ロゴを右上・メニューを左上に置く（参考画像の配置） */
@media (min-width: 1180px) {
  body:has(.hero) header { position: fixed; top: 0; left: 0; right: 0; background: transparent; backdrop-filter: none; border: none; padding: 0; pointer-events: none; }
  body:has(.hero) header > div { position: fixed; right: 36px; top: 26px; pointer-events: auto; }
  body:has(.hero) .main-nav { position: fixed; left: 40px; top: 44px; pointer-events: auto; }
  body:has(.hero) .main-nav ul { flex-direction: column; align-items: flex-start; gap: 12px; }
  body:has(.hero) .main-nav a { font-size: 14px; letter-spacing: 0.28em; color: var(--ink-soft); }
  body:has(.hero) .hero { padding-top: 120px; }
}

/* ===== Mobile fixes ===== */
@media (max-width: 576px) {
  .price-table-row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 20px; }
  .price-table-cell.service-price { align-self: flex-end; font-size: 24px; }
  .price-box { max-width: 100%; }
  .greeting-content { text-align: center; }
  .greeting-text { text-align: left; }
  h2 { font-size: 23px; }
  .section { padding: 72px 0; }
}

/* ===== News ===== */
.news-section { padding: 64px 0 48px; background-color: var(--paper); }
.news-section h2 { margin-bottom: 28px; }
.news-list { list-style: none; max-width: 720px; margin: 0 auto; border-top: 1px solid var(--line); }
.news-item { border-bottom: 1px solid var(--line); }
.news-item-inner { display: flex; align-items: baseline; gap: 16px; padding: 16px 8px; color: var(--ink-soft); text-decoration: none; }
a.news-item-inner:hover .news-title { color: var(--seal); }
.news-date { flex-shrink: 0; font-family: var(--font-sans); font-size: 14px; color: var(--muted); letter-spacing: 0.1em; font-variant-numeric: tabular-nums; }
.news-tag { flex-shrink: 0; align-self: center; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.2em; line-height: 1; padding: 5px 9px; border: 1px solid var(--line); color: var(--ink-soft); white-space: nowrap; }
.news-title { font-size: 15px; line-height: 1.8; }
@media (max-width: 600px) { .news-item-inner { flex-wrap: wrap; gap: 8px 12px; padding: 14px 4px; } .news-title { width: 100%; font-size: 15px; } }
.news-more { display: inline-block; margin-left: 10px; font-size: 14px; letter-spacing: 0.14em; color: var(--seal); white-space: nowrap; }
@media (min-width: 990px) { .problems-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ===== 天狗イラストの配置 ===== */
.service-category.has-illust { display: grid; grid-template-columns: 1fr 110px; column-gap: 18px; align-items: center; }
.service-category.has-illust h3, .service-category.has-illust .service-list { grid-column: 1; }
.service-category.has-illust .svc-illust { grid-column: 2; grid-row: 1 / 3; width: 110px; justify-self: end; align-self: center; }
.mascot-inline { height: 60px; width: auto; display: block; margin: 0 auto 8px; }
.svc-photo.illust { object-fit: contain; background: var(--paper-white); padding: 14px; }
.quote-mascot { width: 76px; display: block; margin: 0 auto 10px; }
.intro-illust { float: right; width: 100px; margin: 0 0 8px 14px; }
@media (max-width: 420px) {
  .intro-illust { width: 80px; }
  .service-category.has-illust { grid-template-columns: 1fr 88px; column-gap: 12px; padding: 24px 18px; }
  .service-category.has-illust .svc-illust { width: 88px; }
}

/* ===== 下層ページ（作業内容・事例・草刈り）=====
   各ページの <style> より後に効かせるため body を付けて優先度を上げている */
body .svc-hero, body .works-hero, body .mowing-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: 64px 20px 56px; position: relative; overflow: hidden; }
body .svc-hero::before, body .works-hero::before, body .mowing-hero::before {
  content: ""; position: absolute; width: 150px; height: 40px; background: var(--white); border-radius: 40px;
  box-shadow: 30px -20px 0 4px var(--white), 68px -12px 0 12px var(--white), 104px -4px 0 4px var(--white);
  opacity: 0.85; right: 24px; top: 26px; transform: scale(0.7); pointer-events: none;
  box-shadow: -30px -20px 0 4px var(--white), -68px -12px 0 12px var(--white), -104px -4px 0 4px var(--white);
}
body .svc-hero h1, body .works-hero h1, body .mowing-hero h1 { color: var(--ink); font-size: 28px; font-weight: 500; letter-spacing: 0.2em; position: relative; margin-bottom: 14px; }
body .svc-hero p, body .works-hero p, body .mowing-hero p { color: var(--ink-soft); font-weight: 400; font-size: 15px; letter-spacing: 0.1em; position: relative; }
@media (max-width: 768px) { body .svc-hero h1, body .works-hero h1, body .mowing-hero h1 { font-size: 23px; } }

body .breadcrumb { background: var(--paper); border-bottom: 1px solid var(--line); font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.1em; }
body .breadcrumb a { color: var(--ink-soft); font-weight: 400; }

body .intro-box, body .case-card, body .svc-card, body .service-card, body .photo-quote-box { background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: none; }
body .intro-box p { font-size: 15px; }
body .photo-quote-box h3 { color: var(--ink); font-size: 19px; letter-spacing: 0.14em; }
body .photo-quote-box p { font-size: 15px; }

/* 事例カード */
body .case-header { background: var(--paper-2); color: var(--ink); border-bottom: 1px solid var(--line); }
body .case-header .case-num { color: var(--seal); font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.3em; }
body .case-header h3 { color: var(--ink); font-size: 19px; letter-spacing: 0.08em; }
body .ba-item { border-radius: 2px; border: 6px solid var(--white); outline: 1px solid var(--line); box-shadow: none; }
body .ba-label { border-radius: 2px; font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.2em; padding: 4px 12px; box-shadow: none; }
body .ba-label.before { background: var(--ink); }
body .ba-label.after { background: var(--seal); }
body .ba-arrow { color: var(--muted); font-size: 18px; }
body .case-desc p { font-size: 15px; color: var(--ink-soft); }
body .case-tag { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 2px; font-size: 14px; font-weight: 400; letter-spacing: 0.1em; }
body .case-point { background: var(--paper); border-left: 2px solid var(--seal); border-radius: 0; }
body .case-point .case-point-title { color: var(--seal); font-weight: 500; font-size: 15px; letter-spacing: 0.2em; }
body .case-point p { font-size: 15px; }
body .case-link a { color: var(--ink); font-weight: 400; letter-spacing: 0.1em; border-bottom: 1px solid var(--line); }
body .works-note { color: var(--muted); font-size: 14px; }

/* 作業内容カード */
body .svc-body h3 { font-size: 21px; letter-spacing: 0.14em; }
body .svc-body p { font-size: 16px; }
body .svc-price { background: transparent; color: var(--seal); border: 1px solid var(--seal); border-radius: 2px; font-weight: 500; font-size: 17px; letter-spacing: 0.06em; }
body .svc-price small { color: var(--seal); }
body .svc-link { background: var(--paper-white); color: var(--ink); border: 1px solid var(--ink); border-radius: 2px; font-weight: 500; letter-spacing: 0.18em; font-size: 15px; box-shadow: none; }
body .svc-link:hover { background: var(--ink); color: var(--paper-white); }
body .svc-link.svc-link-sub { border-color: var(--line); }
body .svc-link.svc-link-sub:hover { background: var(--paper-2); color: var(--ink); }

/* 草刈りページのカード */
body .service-card-header { background: var(--paper-2); color: var(--ink); font-size: 20px; font-weight: 500; letter-spacing: 0.16em; border-bottom: 1px solid var(--line); }
body .service-card h4 { border-left: 2px solid var(--seal); color: var(--ink); font-size: 17px; letter-spacing: 0.1em; }
body .service-card p { font-size: 15px; }
body .recommend-list { background: var(--paper); border: none; border-radius: 0; }
body .recommend-list li { color: var(--ink); font-weight: 400; font-size: 15px; }
body .flow-card { background: var(--paper-white); border: 1px solid var(--line); border-left: 2px solid var(--seal); border-radius: var(--radius); box-shadow: none; }
body .flow-card-num { background: var(--seal); border-radius: 50%; }
body .flow-card-content h4 { color: var(--ink); font-size: 16px; }

/* ===== 雑草アイコン（2026-09-16 絵文字🌾から差し替え） ===== */
.problem-icon img { width: 30px; height: 30px; display: block; }
.h3-icon { width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -0.2em; margin-right: 0.3em; }

/* Threads の見出し飾り（2026-09-16） */
.h2-threads { width: 0.85em; height: 0.85em; display: inline-block; vertical-align: -0.1em; margin: 0 0.45em; opacity: 0.9; }

/* ===== 料金ボックスの単価表（2026-09-16） ===== */
.price-rate { margin-bottom: 14px; }
.price-rate-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 9px 2px; border-bottom: 1px solid rgba(255,255,255,0.3); }
.price-rate-row:last-child { border-bottom: none; }
.price-rate-name { font-size: 15px; letter-spacing: 0.06em; white-space: nowrap; }
.price-rate-val { font-size: 22px; letter-spacing: 0.02em; white-space: nowrap; }
.price-rate-val small { font-size: 14px; margin-left: 2px; }

/* ===== お客様へのお願い（2026-09-16） ===== */
.request-box { background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; margin-top: 40px; text-align: left; }
.request-box h3 { font-size: 20px; letter-spacing: 0.18em; margin-bottom: 22px; padding-left: 14px; border-left: 2px solid var(--seal); line-height: 1.3; }
.request-group { margin-bottom: 22px; }
.request-group:last-child { margin-bottom: 0; }
.request-group-title { font-family: var(--font-sans); font-size: 14px; font-weight: 500; letter-spacing: 0.2em; color: var(--seal); margin-bottom: 6px; }
.request-list { list-style: none; }
.request-list li { position: relative; padding-left: 18px; font-size: 15px; line-height: 1.9; }
.request-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--line); position: absolute; left: 3px; top: 13px; }
@media (max-width: 420px) { .request-box { padding: 24px 20px; } .price-rate-val { font-size: 20px; } }

/* ===== 店長のつぶやき：Threadsカード（2026-09-16） ===== */
.threads-card { display: block; max-width: 480px; margin: 0 auto; background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px 28px; text-decoration: none; transition: border-color .2s; }
.threads-card:hover { border-color: var(--ink-soft); }
.threads-profile { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; }
.threads-avatar { position: relative; flex-shrink: 0; width: 72px; height: 72px; }
.threads-avatar > img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; display: block; }
/* プロフィール写真の右下にThreadsの印を小さく重ねる（SNSのアイコンらしく） */
.threads-badge { position: absolute; right: -3px; bottom: -1px; width: 28px; height: 28px; border-radius: 50%; background: var(--paper-white); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.threads-badge img { width: 16px; height: 16px; display: block; }
.threads-id { text-align: left; }
.threads-handle { display: block; font-size: 18px; color: var(--ink); line-height: 1.3; letter-spacing: 0.04em; }
.threads-role { display: block; font-size: 14px; color: var(--muted); letter-spacing: 0.08em; margin-top: 4px; }
.threads-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: var(--paper-white); font-size: 15px; letter-spacing: 0.18em; padding: 12px 32px; border-radius: var(--radius); }
.threads-btn img { width: 18px; height: 18px; filter: invert(1) brightness(1.1); }
@media (max-width: 480px) {
  .threads-card { padding: 26px 18px 24px; }
  .threads-profile { gap: 12px; }
  .threads-avatar, .threads-avatar > img { width: 64px; height: 64px; }
  .threads-btn { padding: 12px 22px; font-size: 15px; letter-spacing: 0.12em; }
}

/* ===== 木の伐採・溝掃除の追加（2026-09-20） ===== */
.price-rate-val.is-text { font-size: 15px; letter-spacing: 0.1em; }
.price-table-cell.service-price.is-text { font-size: 15px; color: var(--ink-soft); letter-spacing: 0.1em; }
/* ページ内リンクで飛んだとき、上に張り付くヘッダーに隠れないようにする */
.svc-card[id], .price-table-row[id] { scroll-margin-top: 96px; }

/* 2026-09-20：料金は税込のみ表示（本人指示）。税込額の併記用クラス .tax-in は同日中に廃止 */

/* ===== 読みやすさ（2026-09-20）：文字サイズを一段ずつ底上げ、本文を500ウェイト、地味色を濃くした。見た目の階層は変えていない ===== */
