/* =========================================================
   A041 株式会社Green Support広島 style.css
   v2（2026-09-06 site-polisher）: オーナー指定の参考UI（DESIGN.md）に沿って見た目を作り直し
   - 白地に写真が主役。色面で塗らない。写真が来るまでは .ph 枠（若草〜濃紺のグラデ＋自作SVGの草シルエット）
   - 配色: 濃紺 #2a2352（本人ロゴの実測値。文字・ヘッダー電話・電話CTAの塗り・フッター）
           若草 #6b8a2e（英字ラベル・細枠ボタン・アクセント。白地で 3.96:1 → 大きなラベルと枠線のみ）
           若草の濃い字色 #4f6a1f（小さな文字に若草系が必要なとき。6.1:1）
           土の茶 #8b5a2b（FARM と細部のみ。5.9:1）
           生成り #f4f1ea（テキストパネル・交互セクションの地）
   - 書体: Noto Sans JP 400 / 900、Oswald 700（英字ラベル・電話番号・番号）。Google Fonts 3 面
   - 本文 16px 以上、行間 1.8〜1.9
   ========================================================= */

/* ---------- 1. 変数 ---------- */
:root {
  --c-navy: #2a2352;           /* 本人ロゴの実測値 */
  --c-navy-deep: #1d1840;      /* hover */
  --c-leaf: #6b8a2e;           /* 若草。ラベル・枠線・アクセント */
  --c-leaf-light: #9db553;     /* .ph のグラデ用 */
  --c-leaf-pale: #e3ecc8;      /* .ph のグラデ用（薄い若草） */
  --c-leaf-text: #4f6a1f;      /* 白地で小さな文字に使うときの若草（6.1:1） */
  --c-soil: #8b5a2b;           /* 土の茶。FARM と細部 */
  --c-soil-pale: #f5efe4;      /* FARM のパネル地 */
  --c-paper: #f4f1ea;          /* 生成り。テキストパネル・交互セクション */
  --c-paper-line: #e2ddd0;
  --c-text: #23233a;
  --c-text-muted: #5c5c6e;     /* 白地で 6.3:1 */
  --c-white: #fff;
  --c-tbd-bg: #fbf3d8;
  --c-tbd-text: #6b5a1e;

  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", Meiryo, system-ui, sans-serif;
  --font-num: "Oswald", "Arial Narrow", Impact, sans-serif;

  --container: 1120px;
  --radius: 4px;
  --header-h: 64px;
  --fixed-bar-h: 64px;
  --gap-photo: 6px;            /* 写真と写真の間の白い隙間 */
}

/* ---------- 2. リセット・ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text);
  background: var(--c-white);
  overflow-wrap: anywhere;
  line-break: strict;
  padding-bottom: calc(var(--fixed-bar-h) + env(safe-area-inset-bottom));
}

img, svg { max-width: 100%; display: block; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
a { color: var(--c-navy); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
h1, h2, h3 { line-height: 1.35; font-weight: 900; letter-spacing: .01em; color: var(--c-navy); }
.section-title, .trouble-answer-text, .reason-title, .service-title, .flow-title { text-wrap: balance; }
table { border-collapse: collapse; width: 100%; }
strong, th, b { font-weight: 900; }   /* 読み込むウェイトは 400/900 のみ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute; top: -100px; left: 8px;
  background: var(--c-navy); color: #fff; padding: 8px 12px; z-index: 1000;
}
.skip-link:focus { top: 8px; }

.nobr { white-space: nowrap; }
.pc-br { display: none; }
p, li, td, dd, figcaption { text-wrap: pretty; }

/* 数字・英字は Oswald */
.num { font-family: var(--font-num); font-weight: 700; letter-spacing: .02em; font-feature-settings: "tnum"; }

/* 小さなアイコン（インライン） */
.ico { width: 1em; height: 1em; display: inline-block; vertical-align: -.12em; fill: currentColor; }

/* 【要確認】の仮置き: 見れば分かるが、うるさくない。文言は「○○：確認中」だけ */
.tbd {
  display: inline;
  padding: .05em .45em;
  background: var(--c-tbd-bg);
  border-radius: 3px;
  color: var(--c-tbd-text);
  font-size: 1em;
  font-weight: 400;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

/* 写真枠の仮置き（.tbd とは区別する）
   写真が来るまでは「薄い若草〜若草のグラデ＋濃紺の草シルエット（自作SVG）」。
   中のコメントの <img> を有効にすると、写真が上に重なって仮絵を隠す */
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-leaf-pale) 0%, #c9d99a 40%, var(--c-leaf-light) 72%, var(--c-leaf) 100%);
  color: var(--c-text-muted);
  font-weight: 400;
}
.ph > img, .ph > .ph-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ph > img { z-index: 2; }

/* 実写真の枠（本人提供写真を入れた枠。2026-09-06）。.ph と同じ配置ルールで、仮絵なし */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--c-paper);
}
.photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo > img.pos-right { object-position: 100% 50%; }   /* 被写体が右端にある写真（service-mowing） */
.photo > img.photo-inset {                              /* 小さく添える 2 枚目（FARM の畑） */
  inset: 12px auto auto 12px;
  width: 34%; height: auto;
  aspect-ratio: 4 / 3;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .28);
}
.ph-label {
  position: absolute; left: 50%; bottom: 12px; z-index: 1;
  transform: translateX(-50%);
  max-width: calc(100% - 16px);
  text-align: center;
  line-height: 1.4;
  font-size: .8rem; font-weight: 900;
  color: var(--c-navy);
  background: rgba(255, 255, 255, .9);
  padding: 4px 10px; border-radius: 3px;
}

.note {
  margin-top: 22px;
  font-size: 1rem;
  color: var(--c-text-muted);
}

/* ---------- 3. ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45em;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn:hover { text-decoration: none; }

/* 電話: 濃紺の塗り */
.btn-tel {
  flex-direction: column;
  gap: 2px;
  background: var(--c-navy);
  color: #fff;
  padding: 12px 32px;
}
.btn-tel:hover { background: var(--c-navy-deep); color: #fff; }
.btn-tel-label { display: block; font-size: .88rem; font-weight: 900; }
.btn-tel-number { display: block; font-size: 2rem; line-height: 1.15; white-space: nowrap; }
.btn-tel-number .ico { font-size: .8em; margin-right: .2em; }

/* Instagram: 若草の細枠（文字は濃紺）。ブランド色・公式ロゴは使わない */
.btn-insta, .btn-insta-outline, .btn-outline {
  background: #fff;
  color: var(--c-navy);
  border: 1.5px solid var(--c-leaf);
  padding: 12px 22px;
  font-size: 1rem;
}
.btn-insta:hover, .btn-insta-outline:hover, .btn-outline:hover { background: var(--c-leaf); border-color: var(--c-leaf); color: #fff; }
.btn-insta .ico, .btn-insta-outline .ico { font-size: 1.25em; }

/* 細枠ボタン（各セクション入口の「＞ ○○」） */
.btn-more {
  background: transparent;
  color: var(--c-navy);
  border: 1.5px solid var(--c-leaf);
  padding: 12px 26px;
  font-size: 1rem;
  min-width: 220px;
}
.btn-more::before { content: "›"; font-weight: 900; color: var(--c-leaf); font-size: 1.2em; line-height: 1; }
.btn-more:hover { background: var(--c-leaf); color: #fff; }
.btn-more:hover::before { color: #fff; }

/* ---------- 4. ヘッダー（白帯・ロゴ＋社名＋ナビ＋電話） ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-paper-line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 10px; line-height: 1.2; margin-right: auto; min-width: 0; color: var(--c-navy); }
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-logo { flex-shrink: 0; width: 40px; height: 40px; }
.brand:hover { text-decoration: none; }
.brand-name { font-size: 1.1rem; font-weight: 900; white-space: nowrap; letter-spacing: .01em; }
.brand-co { font-size: .7em; margin-right: .3em; color: var(--c-text-muted); }
.brand-sub {
  font-size: .72rem; color: var(--c-text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 200px;
}

/* ヘッダー右の電話（濃紺の塗り） */
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 4px 12px;
  line-height: 1.15;
  color: #fff;
  background: var(--c-navy);
  border-radius: var(--radius);
}
.header-tel:hover { text-decoration: none; background: var(--c-navy-deep); }
.header-tel-label { font-size: .68rem; white-space: nowrap; }
.header-tel-number { font-size: 1.3rem; white-space: nowrap; }

/* ハンバーガー */
.nav-toggle {
  width: 44px; height: 44px;
  padding: 0; border: 0; background: transparent; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav-toggle-bar {
  display: block; width: 24px; height: 3px;
  background: var(--c-navy);
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ナビ（スマホ: ドロワー） */
.global-nav {
  position: fixed;
  top: calc(var(--header-h) + 1px);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 3px solid var(--c-leaf);
  box-shadow: 0 8px 24px rgba(42, 35, 82, .18);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility .2s;
}
.global-nav.is-open { transform: none; opacity: 1; visibility: visible; }
.global-nav ul { padding: 8px 20px 16px; }
.global-nav li a {
  display: block; padding: 13px 4px;
  border-bottom: 1px solid var(--c-paper-line);
  color: var(--c-navy); font-weight: 900;
}
.global-nav li:last-child a { border-bottom: 0; }

/* ---------- 5. ヒーロー（白帯の下に写真3枚のモザイク。文字はその下の白面） ---------- */
.hero { background: #fff; }
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-photo);
  background: #fff;
}
.hero-tile { aspect-ratio: 1 / 1; }
.hero-tile:first-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }

.hero-text { text-align: center; padding: 40px 0 8px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 900; letter-spacing: .06em;
  color: var(--c-leaf-text);
  margin-bottom: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 22px; height: 2px; background: var(--c-leaf); }
.hero-title {
  font-size: 1.85rem;
  line-height: 1.35;
  color: var(--c-navy);
  margin-bottom: 14px;
}
.hero-title-line { display: block; }
.hero-title .kp { display: inline-block; }
.hero-sub { font-size: 1rem; font-weight: 900; color: var(--c-text-muted); margin-bottom: 26px; }

/* ヒーロー 3 点（除草 / 防草シート / 土木施工） */
.hero-points {
  display: grid; gap: 12px;
  max-width: 900px; margin: 0 auto 28px;
  text-align: left;
}
.hero-points li {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--c-paper-line);
  border-left: 3px solid var(--c-leaf);
  background: var(--c-paper);
  padding: 10px 14px;
}
.hero-points .ico { flex-shrink: 0; width: 2em; height: 2em; color: var(--c-leaf); }
.hero-points strong { display: block; font-size: 1.05rem; line-height: 1.3; color: var(--c-navy); }
.hero-points small { display: block; font-size: 1rem; color: var(--c-text-muted); line-height: 1.5; }
.hero-points small .tbd { font-size: 1em; }
.hero-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.hero-hours { font-size: 1rem; margin-top: 16px; }
.hero-lead { font-size: 1rem; color: var(--c-text-muted); margin-top: 6px; }

/* ---------- 6. セクション共通 ---------- */
.section { padding: 64px 0; }
.sec-white { background: var(--c-white); }
.sec-paper { background: var(--c-paper); }

.section-head { text-align: center; margin-bottom: 36px; }
/* 大きな英字ラベル（コンデンス体・若草）。白地で 3.96:1 なので大きく使う */
.sec-label {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: .06em;
  color: var(--c-leaf);
  line-height: 1;
  margin-bottom: 8px;
}
.section-title {
  font-size: 1.5rem;
  letter-spacing: .02em;
  color: var(--c-navy);
  line-height: 1.35;
}
.section-head .section-title::after {
  content: ""; display: block;
  width: 36px; height: 2px; background: var(--c-leaf);
  margin: 14px auto 0;
}
.section-lead { margin: 18px auto 0; max-width: 720px; color: var(--c-text-muted); font-size: 1rem; }

/* 写真主体の全幅バンド（テキストパネル ＋ 写真）。PC で左右交互 */
.band { display: grid; grid-template-columns: 1fr; gap: var(--gap-photo); background: #fff; }
.band + .band { margin-top: var(--gap-photo); }
.band-photo { min-height: 240px; aspect-ratio: 4 / 3; }
.band-panel {
  background: var(--c-paper);
  padding: 44px 22px 46px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.band-panel .sec-label { font-size: 3.4rem; margin-bottom: 4px; }
.band-panel .btn-more { margin-top: 22px; align-self: stretch; }

/* ---------- 7. お困りごと ---------- */
.trouble-list { display: grid; gap: 0 32px; max-width: 900px; margin: 0 auto; }
.trouble-item {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--c-paper-line);
  font-size: 1rem;
}
.trouble-item::before {
  content: "";
  position: absolute; left: 4px; top: 22px;
  width: 14px; height: 14px;
  border: 2px solid var(--c-leaf);
  border-radius: 50%;
}
.trouble-item::after {
  content: "";
  position: absolute; left: 9px; top: 27px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--c-leaf);
}
.trouble-answer {
  text-align: center;
  margin: 44px auto 0;
  max-width: 800px;
}
.trouble-answer-icon { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--c-leaf); }
.trouble-answer-label { color: var(--c-text-muted); font-size: 1rem; }
.trouble-answer-text { font-size: 1.25rem; font-weight: 900; color: var(--c-navy); line-height: 1.5; margin-top: 8px; }

/* ---------- 8. サービス（MOWING / SHEET / CIVIL の 3 バンド） ---------- */
.section-service { padding-bottom: 0; }
.section-service .section-head { margin-bottom: 44px; }
.service-head { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.service-icon { flex-shrink: 0; width: 40px; height: 40px; color: var(--c-leaf); }
.service-icon svg { width: 100%; height: 100%; }
.service-title { font-size: 1.35rem; color: var(--c-navy); line-height: 1.3; }
.service-body { margin-top: 18px; }
.service-body dt {
  font-size: .9rem; font-weight: 900; color: var(--c-leaf-text);
  letter-spacing: .06em;
  margin-top: 14px;
  line-height: 1.4;
}
.service-body dt:first-child { margin-top: 0; }
.service-body dd { font-size: 1rem; margin-top: 4px; }
.service-body dd.service-price { font-weight: 900; color: var(--c-navy); }

.price-policy {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 20px 64px;
  text-align: center;
}
.price-policy-title { font-size: 1.25rem; color: var(--c-navy); margin-bottom: 12px; }
.price-policy-title::before {
  content: "PRICE";
  display: block;
  font-family: var(--font-num); font-weight: 700;
  font-size: 2.6rem; letter-spacing: .06em; line-height: 1;
  color: var(--c-leaf);
  margin-bottom: 6px;
}
.price-policy p { font-size: 1rem; text-align: left; }

/* ---------- 9. 選ばれる理由（白地・大きな番号） ---------- */
.reason-photo { max-width: 720px; margin: -8px auto 32px; aspect-ratio: 2 / 1; }
.reason-grid { display: grid; gap: 28px; max-width: 900px; margin: 0 auto; }
.reason-card {
  border-top: 2px solid var(--c-leaf);
  padding-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  align-content: start;
}
.reason-num {
  grid-row: 1 / span 2;
  font-size: 2.8rem; line-height: 1;
  color: var(--c-leaf);
  align-self: start;
}
.reason-title { font-size: 1.2rem; color: var(--c-navy); line-height: 1.45; }
.reason-text { font-size: 1rem; margin-top: 8px; }

/* ---------- 10. 施工の流れ ---------- */
.flow-list { display: grid; gap: 20px; max-width: 800px; margin: 0 auto; }
.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2px 16px;
  align-content: start;
  background: #fff;
  border: 1px solid var(--c-paper-line);
  padding: 20px 20px 20px 18px;
}
.flow-num {
  grid-row: 1 / span 2;
  font-size: 2.4rem; line-height: 1;
  color: var(--c-leaf);
  padding-top: 2px;
}
.flow-title { font-size: 1.2rem; color: var(--c-navy); }
.flow-text { font-size: 1rem; margin-top: 4px; }
.flow-step + .flow-step::before {
  content: "";
  position: absolute; left: 50%; top: -20px;
  width: 2px; height: 20px;
  background: var(--c-leaf);
  transform: translateX(-50%);
}

/* ---------- 11. 施工事例（ビフォーアフター。写真枠は .photo）
   3 組とも施工前/施工後の 2 枚組（.works-pair）。2026-09-12 に本人提供写真で全組そろった。
   768px〜: 2 列（pair が 2 列ぶん）、1024px〜: 4 列で写真 4 枚が同じ幅に並ぶ（列間は写真の隙間と同じ 6px） ---------- */
.works-grid { display: grid; gap: 28px; }
.works-item { background: #fff; margin: 0; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-photo); }
.ba-cell { position: relative; }
.ba-label {
  position: absolute; top: 8px; left: 8px; z-index: 3;
  font-weight: 900; font-size: .9rem; line-height: 1;
  color: #fff; background: var(--c-soil);
  padding: 6px 10px; border-radius: 3px;
}
.ba-label-after { background: var(--c-navy); }
.works-frame { aspect-ratio: 4 / 3; }
.works-frame .ph-label { bottom: 8px; font-size: .74rem; padding: 3px 8px; }
.works-item figcaption { padding: 12px 8px 4px; }
.works-item figcaption strong { display: inline-block; color: var(--c-leaf-text); margin-right: 8px; font-family: var(--font-num); letter-spacing: .04em; }
.works-item figcaption > span { font-size: 1rem; color: var(--c-text-muted); }
.works-item figcaption .tbd { display: inline-block; }
.works-more { text-align: center; margin-top: 32px; }
.section-works .note:last-child { text-align: center; }

/* ---------- 12. Farmながささ（写真 ＋ 生成りパネル。土の茶をここだけ効かせる） ---------- */
.section-farm { padding: 0; }
.farm-panel { background: var(--c-soil-pale); }
.farm-panel .sec-label { color: var(--c-soil); }
.farm-head { display: flex; align-items: center; gap: 16px; }
.farm-icon {
  flex-shrink: 0;
  width: 88px; height: 88px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid var(--c-soil);
  padding: 4px;
  overflow: hidden;
}
.farm-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.farm-panel .section-title { font-size: 1.3rem; }
.farm-name { display: block; font-size: 1.05em; color: var(--c-soil); margin-top: 6px; }
.farm-body { margin: 16px 0 0; font-size: 1rem; }
.farm-panel .btn-insta { margin-top: 22px; background: transparent; }

/* ---------- 13. 会社案内・対応エリア（背景に里山の写真を薄く。上から白を被せて文字を優先） ---------- */
.section-about { position: relative; overflow: hidden; }
.about-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  pointer-events: none;
}
.section-about::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, .94) 36%, #fff 64%);
}
.about-inner { position: relative; z-index: 2; }
.about-grid { display: grid; gap: 28px; }
.info-table th, .info-table td {
  padding: 12px 6px;
  border-bottom: 1px solid var(--c-paper-line);
  text-align: left;
  vertical-align: top;
  font-size: 1rem;
}
.info-table tr:first-child th, .info-table tr:first-child td { border-top: 2px solid var(--c-navy); }
.info-table a[href^="tel:"] { display: inline-block; padding: 8px 0; margin: -8px 0; font-size: 1.25rem; white-space: nowrap; }
.info-table th { width: 30%; font-weight: 900; color: var(--c-navy); white-space: nowrap; }

.about-side { display: grid; gap: 20px; align-content: start; }
.about-access-card {
  background: var(--c-paper);
  color: var(--c-navy);
  padding: 28px 22px;
  text-align: center;
}
.about-pin { width: 52px; height: 52px; margin: 0 auto 10px; color: var(--c-leaf); }
.about-access-address { font-size: 1.05rem; font-weight: 900; line-height: 1.6; }
.about-access { margin: 12px 0 18px; font-size: 1rem; color: var(--c-text); }
.about-access-card .btn-outline { min-width: 220px; background: #fff; }

.area-card {
  border: 1px solid var(--c-paper-line);
  border-top: 2px solid var(--c-leaf);
  padding: 20px 22px 22px;
}
.area-title { font-size: 1.1rem; color: var(--c-navy); display: flex; align-items: center; gap: 8px; }
.area-title .ico { color: var(--c-leaf); font-size: 1.3em; }
.area-lead { font-size: 1.3rem; font-weight: 900; color: var(--c-navy); margin: 6px 0 12px; }
.area-list { display: flex; flex-wrap: wrap; gap: 8px; }
.area-list li {
  background: var(--c-paper);
  border-radius: 3px;
  padding: 4px 12px;
  font-size: 1rem; font-weight: 900;
  color: var(--c-navy);
}
.area-note { margin-top: 14px; font-size: 1rem; }

/* ---------- 14. お問い合わせ（生成り地・電話は濃紺の塗り） ---------- */
.section-contact .section-title { font-size: 1.4rem; }
.contact-grid { display: grid; gap: 18px; max-width: 900px; margin: 0 auto; }
.contact-box {
  background: #fff;
  color: var(--c-text);
  border: 1px solid var(--c-paper-line);
  padding: 26px 20px 24px;
  text-align: center;
}
.contact-box-tel { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.contact-label { font-weight: 900; font-size: 1.1rem; color: var(--c-navy); display: inline-flex; align-items: center; gap: 6px; }
.contact-box-tel .contact-label { color: #fff; }
.contact-tel {
  display: block;
  font-size: 2.6rem;
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
  margin: 6px 0 4px;
}
.contact-tel:hover { text-decoration: none; color: var(--c-leaf-pale); }
.contact-hours { font-size: 1rem; }
.contact-note { margin-top: 14px; font-size: 1rem; color: rgba(255, 255, 255, .85); }
.contact-text { font-size: 1rem; margin: 8px 0 16px; text-align: left; }

/* ---------- 15. フッター（濃紺） ---------- */
.site-footer {
  background: var(--c-navy);
  color: rgba(255, 255, 255, .85);
  padding: 44px 0 28px;
  font-size: 1rem;
}
.site-footer a { color: #fff; }
.footer-top { display: grid; gap: 24px; margin-bottom: 28px; }
.footer-name { font-weight: 900; font-size: 1.1rem; color: #fff; display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 36px; height: 36px; border-radius: 4px; background: #fff; padding: 2px; }
.footer-tel a { display: inline-block; padding: 8px 0; font-size: 1.3rem; white-space: nowrap; }
.footer-insta a { display: inline-flex; align-items: center; gap: 6px; padding: 4px 0; }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-nav a { display: inline-block; padding: 4px 0; color: rgba(255, 255, 255, .85); font-size: 1rem; }

/* 見本表記: 消さない・薄くしすぎない */
.sample-notice {
  background: #fff;
  border-left: 4px solid var(--c-leaf);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.sample-notice strong { color: var(--c-navy); }

.copyright { margin-top: 20px; font-size: .85rem; color: rgba(255, 255, 255, .65); text-align: center; }

/* ---------- 16. スマホ固定バー（電話＝濃紺の塗り ＋ Instagram＝白） ---------- */
.fixed-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: var(--fixed-bar-h);
  box-shadow: 0 -2px 12px rgba(42, 35, 82, .18);
  padding-bottom: env(safe-area-inset-bottom);
  background: #fff;
  border-top: 2px solid var(--c-leaf);
}
.fixed-tel, .fixed-insta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  font-weight: 900;
  line-height: 1.1;
}
.fixed-tel { background: var(--c-navy); color: #fff; }
.fixed-insta { background: #fff; color: var(--c-navy); }
.fixed-tel:hover, .fixed-insta:hover { text-decoration: none; }
.fixed-bar .ico { font-size: 1.5rem; flex-shrink: 0; }
.fixed-insta .ico { color: var(--c-leaf-text); }
.fixed-text { display: flex; flex-direction: column; }
.fixed-text small { font-size: .72rem; font-weight: 900; opacity: .85; }
.fixed-text strong { font-size: 1.3rem; white-space: nowrap; }
.fixed-insta .fixed-text strong { font-size: 1.05rem; }

/* ---------- 17. 360px 前後の小さいスマホ ---------- */
@media (max-width: 400px) {
  .header-tel-label { display: none; }
  .header-tel-number { font-size: 1.05rem; }
  .header-tel { padding: 4px 10px; }
  .brand-name { font-size: .9rem; white-space: normal; line-height: 1.15; }
  .brand-co { display: block; font-size: .64rem; margin: 0; }
  .brand-logo { width: 34px; height: 34px; }
  .brand { gap: 8px; }
  .brand-sub { display: none; }
  .hero-title { font-size: 1.65rem; }
  .sec-label { font-size: 2.2rem; }
  .band-panel .sec-label { font-size: 3rem; }
  .btn-tel-number { font-size: 1.8rem; }
  .contact-tel { font-size: 2.2rem; }
  .fixed-text strong { font-size: 1.15rem; }
  .fixed-insta .fixed-text strong { font-size: .95rem; }
}

/* スマホ全般 */
@media (max-width: 767px) {
  .btn-tel, .hero-cta .btn-insta { width: 100%; }
}

/* ---------- 18. タブレット 768px〜 ---------- */
@media (min-width: 768px) {
  .pc-br { display: inline; }

  .hero-mosaic { grid-template-columns: repeat(3, 1fr); }
  .hero-tile, .hero-tile:first-child { grid-column: auto; aspect-ratio: auto; height: clamp(360px, 46vw, 600px); }
  .hero-text { padding: 56px 0 8px; }
  .hero-title { font-size: 2.2rem; }
  .hero-points { grid-template-columns: repeat(2, 1fr); }
  .hero-points li { flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px 16px; }
  .hero-cta { flex-direction: row; justify-content: center; align-items: center; flex-wrap: wrap; gap: 14px; }
  .hero-lead { font-size: 1.05rem; }

  .section { padding: 88px 0; }
  .section-title { font-size: 1.9rem; }
  .sec-label { font-size: 3.2rem; }
  .section-contact .section-title { font-size: 1.7rem; }

  /* バンド: パネル 1 / 写真 2 の 3 分割。偶数番は写真が左 */
  .band { grid-template-columns: 1fr 1fr; }
  .band-photo { aspect-ratio: auto; min-height: 420px; }
  .band-panel { padding: 56px 40px; }
  .band-panel .sec-label { font-size: 3.6rem; }
  .band-panel .btn-more { align-self: flex-start; }
  .band-rev .band-photo { order: -1; }

  .trouble-list { grid-template-columns: 1fr 1fr; }
  .trouble-answer-text { font-size: 1.45rem; }

  .reason-grid { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .reason-card { grid-template-columns: 1fr; gap: 0; }
  .reason-num { grid-row: auto; font-size: 3.2rem; margin-bottom: 12px; }

  .flow-list { grid-template-columns: repeat(2, 1fr); max-width: none; gap: 20px; }
  .flow-step + .flow-step::before { display: none; }

  .works-grid { grid-template-columns: 1fr; gap: 34px; }

  /* FARM: 写真 1 / パネル 1 */
  .band-farm { grid-template-columns: 1fr 1fr; }
  .farm-icon { width: 110px; height: 110px; }
  .farm-panel .section-title { font-size: 1.5rem; }

  .about-grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
  .contact-grid { grid-template-columns: 1.1fr 1fr; align-items: stretch; }
  .footer-top { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-nav ul { justify-content: flex-end; }
}

/* ---------- 19. PC 1024px〜 ---------- */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .fixed-bar { display: none; }
  .nav-toggle { display: none; }

  .header-inner { gap: 20px; max-width: 1280px; }
  .brand { margin-right: 0; flex-shrink: 0; }
  .brand-sub { max-width: 260px; }
  .header-tel { flex-shrink: 0; order: 3; }
  .global-nav {
    position: static;
    transform: none; opacity: 1; visibility: visible;
    background: transparent; box-shadow: none; border: 0;
    margin-left: auto;
  }
  .global-nav ul { display: flex; flex-wrap: nowrap; gap: 0; padding: 0; }
  .global-nav li a {
    padding: 8px 10px;
    border: 0;
    font-size: .9rem;
    white-space: nowrap;
    position: relative;
  }
  .global-nav li a::after {
    content: "";
    position: absolute; left: 10px; right: 10px; bottom: 2px;
    height: 2px; background: var(--c-leaf);
    transform: scaleX(0); transform-origin: left;
    transition: transform .2s;
  }
  .global-nav li a:hover { text-decoration: none; }
  .global-nav li a:hover::after { transform: scaleX(1); }

  .hero-text { padding: 64px 0 8px; }
  .hero-title { font-size: clamp(2.3rem, 3vw, 2.8rem); line-height: 1.3; }
  .hero-sub { font-size: 1.1rem; }
  .hero-lead { font-size: 1.1rem; }

  .section { padding: 104px 0; }
  .section-title { font-size: 2.1rem; }
  .section-contact .section-title { font-size: 1.9rem; }

  .band { grid-template-columns: 2fr 3fr; }
  .band-rev { grid-template-columns: 3fr 2fr; }
  .band-farm, .band-farm.band-rev { grid-template-columns: 1fr 1fr; }
  .band-panel { padding: 64px 56px; }
  .band-panel .sec-label { font-size: 4.6rem; }

  .flow-list { grid-template-columns: repeat(4, 1fr); }
  .flow-step { grid-template-columns: 1fr; padding: 24px 22px 26px; }
  .flow-num { grid-row: auto; margin-bottom: 10px; }
  .flow-title { font-size: 1.2rem; }
  .flow-step + .flow-step::before {
    display: block;
    left: -14px; top: 40px;
    width: 0; height: 0;
    background: transparent;
    border: 7px solid transparent;
    border-left: 10px solid var(--c-leaf);
    border-right: 0;
    transform: none;
  }

  .works-grid { grid-template-columns: 1fr 1fr; gap: 36px var(--gap-photo); }
  /* 2列のとき、5件目が片側に取り残されないよう横いっぱいに置き、中央で幅を抑える */
  .works-item-wide { grid-column: 1 / -1; }
  .works-item-wide .ba-pair,
  .works-item-wide figcaption { max-width: 780px; margin-inline: auto; }
  .ba-label { font-size: .78rem; padding: 5px 8px; }
  .works-frame .ph-label { font-size: .7rem; }
  .reason-photo { margin-bottom: 40px; }

  .farm-icon { width: 128px; height: 128px; }
}

/* 1024〜1199px: 社名が長いので、ナビ 6 項目＋電話を 1 行に収める */
@media (min-width: 1024px) and (max-width: 1199px) {
  .header-inner { gap: 10px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1rem; }
  .brand-logo { width: 34px; height: 34px; }
  .header-tel-label { display: none; }
  .header-tel-number { font-size: 1.15rem; }
  .header-tel { padding: 6px 10px; }
  .global-nav li a { font-size: .84rem; padding: 8px 7px; }
}

/* ---------- 20. 動き（控えめ） ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .trouble-item, .band-panel, .reason-card, .flow-step, .works-item, .area-card {
      animation: fade-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 30%;
    }
  }
}

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

@media print {
  .site-header, .fixed-bar, .nav-toggle { display: none; }
  body { padding-bottom: 0; }
}
/* 見本表記は白地なので、リンクは地の色に合わせる（白文字だと読めない） */
.sample-notice a { color: #2a2352; text-decoration: underline; }

/* ヒーロー3点: カードの高さを揃え、アイコンと文字の base を合わせる */
.hero-points { align-items: stretch; }
.hero-points li { height: 100%; }
.hero-points .ico { width: 2.2em; height: 2.2em; stroke: currentColor; }
.hero-points strong { letter-spacing: .02em; }
.hero-points small { min-height: 1.5em; }
@media (min-width: 768px) {
  .hero-points li { flex-direction: row; align-items: center; gap: 12px; padding: 13px 16px; }
  .hero-points small { white-space: nowrap; }
}
/* 日本語を文節で折り返す（対応ブラウザのみ。未対応でも従来どおり） */
body, p, li, td, th, dd, dt, .hero-sub, .hero-points small, .works-cap, .service-body { word-break: auto-phrase; }
/* 固有名詞は途中で切らない */
.nobr { white-space: nowrap; }
/* ヘッダーの社名は幅が限られるので、折り返し禁止を解除（電話ボタンと重なるため） */
/* スマホではヘッダーの電話番号を小さくして、社名「Green Support広島」を1行に収める
   （電話は画面下の固定バーにもあるので、ヘッダーは補助） */
@media (max-width: 480px) {
  .header-tel { padding: 5px 9px; }
  .header-tel-label { display: none; }
  .header-tel-number { font-size: .86rem; letter-spacing: 0; }
  .brand-logo { width: 34px; height: 34px; }
  .brand-name { font-size: .92rem; line-height: 1.25; }
  .brand-co { font-size: .72rem; }
  .brand-sub { font-size: .66rem; }
}
/* 並列カードの高さを揃える（中身の量が違っても枠は同じ高さに） */
.reason-grid, .flow-list { align-items: stretch; }
.reason-card, .flow-item { height: 100%; }
/* ボタンの文字は途中で折らない（最後の1文字だけ次行に落ちるのを防ぐ） */
.btn, .btn-insta, .nav-cta { white-space: nowrap; }
@media (max-width: 600px) { .btn, .btn-insta { white-space: normal; } }
/* 長いアカウント名を含むボタンは、どの幅でも折り返してよい */
.btn-insta-outline { white-space: normal; }

/* ヒーロー4点: 768〜1199px は 2×2、1200px 以上で横 4 つ（コンテナいっぱいまで広げる） */
@media (min-width: 1200px) {
  .hero-points { grid-template-columns: repeat(4, 1fr); max-width: var(--container); }
  .hero-points li { padding: 13px 14px; gap: 10px; }
  .hero-points .ico { width: 2em; height: 2em; }
}
