/* =============================================================
   株式会社リード オフィシャルサイト 改修見本
   デザインコンセプト：「信頼できそう」「相談しやすそう」「人を大切にしている」
   ベース：白 / メイン：やや鮮やかなグリーン / アクセント：アンティークゴールド / 差し色：淡いピンク
   ============================================================= */

:root {
  /* カラーパレット */
  --white: #ffffff;
  --base: #fbfaf7;            /* 温かみのあるオフホワイト */
  --green: #5f9954;           /* メイン：やや鮮やかなグリーン（カーキより明るめ） */
  --green-dark: #40693b;      /* 濃緑（フッター・見出し） */
  --green-deep: #33552f;      /* 最濃緑 */
  --green-soft: #eef4e9;      /* 薄緑（セクション背景） */
  --green-tint: #f4f8f0;      /* ごく薄い緑 */
  --gold: #b39a62;            /* アンティークゴールド */
  --gold-light: #cdbb8d;      /* 細ライン用ゴールド */
  --pink: #f2dbd7;            /* 淡いピンク（少量の差し色） */
  --pink-deep: #d9a8a0;
  --ink: #3a3a35;             /* 本文 */
  --ink-soft: #6f6f66;        /* 補足文 */
  --line: #e7e5dd;

  --radius-l: 28px;
  --radius-m: 16px;
  --radius-s: 10px;

  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;

  --header-h: 76px;
  --shadow: 0 6px 24px rgba(64, 105, 59, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.03em;
}

img, svg { max-width: 100%; vertical-align: middle; }
a { color: var(--green-dark); text-decoration: none; transition: opacity .25s; }
a:hover { opacity: .75; }
ul { list-style: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ---------------- ヘッダー ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  background: var(--green); color: #fff;
  border-radius: 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
}
.brand-text { line-height: 1.3; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); }
.brand-tag { font-size: 10.5px; color: var(--gold); letter-spacing: .06em; }

.global-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 500; font-size: 14.5px; color: var(--ink);
  background: transparent; border: none; cursor: pointer;
}
.nav-item:hover > .nav-link, .nav-item.open > .nav-link { background: var(--green-soft); color: var(--green-dark); }
.nav-link .caret { width: 8px; height: 8px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(45deg) translateY(-2px); transition: transform .25s; }
.nav-item:hover .caret, .nav-item.open .caret { transform: rotate(225deg) translateY(-2px); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; padding: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: all .25s ease;
}
.dropdown::before { /* 吹き出しの矢印 */
  content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--white);
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.nav-item:hover .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: var(--radius-s);
  font-size: 14px; color: var(--ink);
}
.dropdown a:hover { background: var(--green-tint); color: var(--green-dark); opacity: 1; }
.dropdown a::before { content: "＋ "; color: var(--gold); font-size: 12px; }

.header-cta {
  display: inline-block; padding: 11px 22px; border-radius: 999px;
  background: var(--green); color: #fff !important;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 14px rgba(95, 153, 84, .35);
}
.header-cta:hover { opacity: .85; }

/* ハンバーガー（モバイル） */
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all .3s; }
.nav-toggle span:nth-child(1) { top: 15px; } .nav-toggle span:nth-child(2) { top: 22px; } .nav-toggle span:nth-child(3) { top: 29px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .global-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    padding: 12px 20px 24px;
  }
  body.nav-open .global-nav { display: flex; }
  .nav-item { border-bottom: 1px dashed var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 14px 6px; border-radius: 0; font-size: 15.5px; }
  .dropdown {
    position: static; transform: none; min-width: 0; box-shadow: none; border: none;
    padding: 0 0 10px 14px; display: none; opacity: 1; visibility: visible;
  }
  .dropdown::before { display: none; }
  .nav-item.open .dropdown { display: block; }
  .header-cta { display: none; }
  .header-cta.in-nav { display: block; text-align: center; margin: 16px 6px 0; }
}
@media (min-width: 981px) { .header-cta.in-nav { display: none; } }

/* ---------------- ヒーロー（TOP） ---------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--green-tint) 0%, #fff 55%, #fdf6f4 100%);
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 64px 24px 90px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  position: relative; z-index: 2;
}
.hero-copy .catch {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.35; color: var(--green-deep);
}
.hero-copy .catch em { font-style: normal; color: var(--gold); }
.hero-copy .catch-en {
  display: inline-block; margin-top: 18px; padding: 8px 22px;
  border: 1.5px solid var(--gold-light); border-radius: 999px;
  color: var(--gold); font-size: clamp(15px, 1.8vw, 19px); letter-spacing: .12em;
  font-family: var(--font-head); font-weight: 500; background: rgba(255,255,255,.7);
}
.hero-copy .lede { margin-top: 22px; color: var(--ink-soft); font-size: 15.5px; max-width: 34em; }

.hero-visual { position: relative; }
.hero-photo {
  aspect-ratio: 4 / 3; border-radius: 36px 120px 36px 36px;
  overflow: hidden; box-shadow: var(--shadow); position: relative;
}
.hero-banner {
  position: absolute; left: 18px; bottom: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  background: rgba(255, 255, 255, .95); border: 1.5px solid var(--gold);
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--green-deep);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.hero-banner .arrow { color: var(--gold); }

/* 写真プレースホルダー（実素材差し替え前提） */
.ph {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 219, 215, .55) 0 18%, transparent 20%),
    radial-gradient(circle at 12% 85%, rgba(95, 153, 84, .16) 0 22%, transparent 24%),
    linear-gradient(150deg, #f2f6ee, #faf7f0);
  color: var(--ink-soft); text-align: center; padding: 20px;
}
.ph .ph-icon { color: var(--green); opacity: .8; }
.ph .ph-label { font-family: var(--font-head); font-weight: 500; font-size: 13.5px; }
.ph .ph-note { font-size: 11.5px; color: #a3a396; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 44px 24px 64px; }
}

/* 背景の植物線画・ゴールドライン */
.deco { position: absolute; pointer-events: none; z-index: 1; }

/* ---------------- 下層ページヒーロー ---------------- */
.page-hero { position: relative; overflow: hidden; }
.page-hero .ph, .page-hero .page-hero-bg { height: clamp(220px, 32vw, 340px); min-height: 0; border-radius: 0; }
.page-hero .ph { justify-content: flex-start; align-items: flex-start; text-align: left; padding: 18px 24px; } /* 素材ラベルは左上に寄せ、テロップ・まちなみバンドとの重なりを回避 */
.page-hero .telop {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  padding: 16px 44px; border-radius: 999px;
  background: rgba(255, 255, 255, .92); border: 1.5px solid var(--gold-light);
  font-family: var(--font-head); font-weight: 700; font-size: clamp(20px, 3vw, 28px); color: var(--green-deep);
  letter-spacing: .12em; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
.page-hero .telop small { display: block; text-align: center; font-size: 11px; color: var(--gold); font-weight: 500; letter-spacing: .18em; }

/* ページ内メニューバー */
.section-menu { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: var(--header-h); z-index: 50; }
.section-menu ul { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; padding: 12px 16px; }
.section-menu a {
  display: inline-block; padding: 9px 20px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--ink);
  border: 1px solid transparent;
}
.section-menu a:hover { background: var(--green-soft); color: var(--green-dark); opacity: 1; }
.section-menu a small { color: var(--gold); font-size: 11.5px; margin-left: 4px; }

/* ---------------- セクション共通 ---------------- */
.section { padding: 84px 0; position: relative; }
.section.alt { background: var(--base); }
.section.green { background: var(--green-soft); }

.sec-head { text-align: center; margin-bottom: 56px; position: relative; }
.sec-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(28px, 4.4vw, 44px); color: var(--green-deep); letter-spacing: .08em;
}
.sec-sub { margin-top: 10px; color: var(--gold); font-size: 13px; letter-spacing: .14em; font-family: var(--font-head); }
.sec-head .goldline {
  width: 72px; height: 2px; margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.lead-text { text-align: center; color: var(--ink); max-width: 42em; margin: 0 auto; }
.note-soft { font-size: 12.5px; color: #a3a396; }

/* つながりを表すゴールドの細ライン */
.connect-line { display: block; width: 2px; height: 64px; margin: 0 auto;
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent); }

/* ---------------- ボタン・バナー ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 36px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .25s;
}
.btn-green { background: var(--green); color: #fff !important; box-shadow: 0 5px 16px rgba(95,153,84,.3); }
.btn-green:hover { background: var(--green-dark); opacity: 1; }
.btn-outline { background: #fff; border-color: var(--gold); color: var(--green-deep) !important; }
.btn-outline:hover { background: #fdfbf5; opacity: 1; }
.btn .arrow { color: var(--gold); }
.btn-green .arrow { color: #fff; }

/* 大バナー（リードについてもっと知る等） */
.banner-wide {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  max-width: 720px; margin: 0 auto; padding: 26px 36px;
  background: #fff; border: 1.5px solid var(--gold-light); border-radius: var(--radius-l);
  font-family: var(--font-head); font-weight: 700; font-size: clamp(16px, 2.2vw, 20px); color: var(--green-deep);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.banner-wide::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: linear-gradient(180deg, var(--green), var(--gold-light)); }
.banner-wide .chev { color: var(--gold); letter-spacing: -2px; }
.banner-wide:hover { transform: translateY(-2px); opacity: 1; box-shadow: 0 10px 28px rgba(64,105,59,.16); }

/* ページジャンプ用バナー群 */
.jump-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.jump-card {
  flex: 1 1 220px; max-width: 300px; padding: 24px 20px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  font-family: var(--font-head); font-weight: 700; font-size: 16.5px; color: var(--green-deep);
  box-shadow: 0 3px 12px rgba(64,105,59,.07); position: relative;
}
.jump-card small { display: block; margin-top: 4px; font-size: 11.5px; color: var(--gold); font-weight: 500; }
.jump-card::after { content: "→"; position: absolute; right: 16px; bottom: 10px; color: var(--gold); font-size: 14px; }
.jump-card:hover { transform: translateY(-3px); opacity: 1; border-color: var(--gold-light); }

/* 製品サイトバナー（HRM369） */
.product-banner {
  display: block; max-width: 880px; margin: 0 auto;
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  border-radius: var(--radius-l); padding: 36px 40px; color: #fff;
  position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(64,105,59,.28);
}
.product-banner:hover { opacity: .92; }
.product-banner .pb-sub { font-size: 13px; opacity: .92; letter-spacing: .05em; }
.product-banner .pb-title { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 4vw, 38px); margin: 8px 0 6px; }
.product-banner .pb-title .gold { color: #e8d9ac; }
.product-banner .pb-copy { font-size: 13.5px; opacity: .92; }
.product-banner .pb-btn {
  position: absolute; right: 36px; top: 50%; transform: translateY(-50%);
  padding: 13px 26px; background: #fff; color: var(--green-dark); border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; white-space: nowrap;
}
.product-banner .pb-leaf { position: absolute; right: -30px; bottom: -40px; opacity: .14; width: 220px; }
@media (max-width: 760px) {
  .product-banner { padding: 28px 24px 76px; }
  .product-banner .pb-btn { right: auto; left: 24px; top: auto; bottom: 20px; transform: none; }
}

/* ---------------- カード・その他パーツ ---------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 32px; box-shadow: 0 3px 12px rgba(64,105,59,.06);
}

/* 定義テーブル（会社概要・募集要項） */
.def-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-m); overflow: hidden; box-shadow: 0 3px 12px rgba(64,105,59,.06); }
.def-table th, .def-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.def-table th { width: 190px; background: var(--green-tint); font-family: var(--font-head); font-weight: 700; color: var(--green-deep); white-space: nowrap; }
.def-table tr:last-child th, .def-table tr:last-child td { border-bottom: none; }
@media (max-width: 640px) {
  .def-table th, .def-table td { display: block; width: 100%; }
  .def-table th { padding-bottom: 6px; }
  .def-table td { padding-top: 6px; }
}

/* 沿革タイムライン */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 32px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--gold-light), var(--green-soft)); border-radius: 2px; }
.timeline li { position: relative; padding: 0 0 26px 18px; }
.timeline li::before { content: ""; position: absolute; left: -30px; top: 9px; width: 12px; height: 12px;
  border-radius: 50%; background: #fff; border: 2.5px solid var(--gold); }
.timeline .t-date { font-family: var(--font-head); font-weight: 700; color: var(--green-dark); font-size: 15px; display: block; }
.timeline .t-body { color: var(--ink); font-size: 15px; }

/* マップ・アクセス */
.access-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; box-shadow: 0 3px 12px rgba(64,105,59,.06); }
.access-card .map-ph { height: 240px; }
.access-card .access-body { padding: 22px 26px 26px; }
.access-card h3 { font-family: var(--font-head); color: var(--green-deep); font-size: 18px; margin-bottom: 6px; }
.access-card .badge-main { display: inline-block; margin-left: 8px; padding: 2px 12px; border-radius: 999px; background: var(--pink); color: #9c6b62; font-size: 11.5px; font-weight: 700; vertical-align: middle; }
.access-card p { font-size: 14.5px; color: var(--ink-soft); }
.access-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

/* 吹き出し（社員の声） */
.voice-item { display: flex; gap: 18px; align-items: flex-start; }
.voice-avatar { flex: none; width: 76px; text-align: center; }
.voice-avatar .avatar-circle { width: 68px; height: 68px; margin: 0 auto 6px; border-radius: 50%;
  background: var(--green-soft); border: 2px solid var(--gold-light); display: grid; place-items: center; color: var(--green-dark); }
.voice-avatar .avatar-name { font-size: 12px; font-family: var(--font-head); font-weight: 700; color: var(--green-dark); }
.voice-bubble { position: relative; flex: 1; background: #fff; border: 1.5px solid var(--line);
  border-radius: 20px; padding: 20px 26px; font-size: 14.5px; box-shadow: 0 3px 10px rgba(64,105,59,.06); }
.voice-bubble::before { content: ""; position: absolute; left: -9px; top: 26px; width: 16px; height: 16px;
  background: #fff; border-left: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); transform: rotate(45deg); }
.voice-bubble .voice-role { font-family: var(--font-head); font-weight: 700; color: var(--green-dark); display: block; margin-bottom: 4px; }

/* 魅力アイコン（円形） */
.merit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; max-width: 980px; margin: 0 auto; }
.merit-item { text-align: center; }
.merit-circle {
  width: 168px; height: 168px; margin: 0 auto 14px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--gold-light); background: #fff;
  display: grid; place-items: center; position: relative;
}
.merit-circle .ph { border-radius: 50%; }
.merit-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--green-deep); }
.merit-sub { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.merit-tag { display: inline-block; margin-top: 8px; padding: 3px 14px; border-radius: 999px; background: var(--pink); color: #9c6b62; font-size: 12px; font-weight: 700; }

/* ギャラリー */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.gallery-grid .g-item { aspect-ratio: 4/3; border-radius: var(--radius-m); overflow: hidden; }

/* もっと見るリンク */
.more-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--green-dark); font-size: 15.5px; }
.more-link .chev { color: var(--gold); letter-spacing: -2px; }

/* noteカード（MVV記事バナー） */
.note-card {
  display: block; max-width: 560px; margin: 0 auto;
  border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); background: #fff;
}
.note-card:hover { transform: translateY(-3px); opacity: 1; }
.note-card .note-visual {
  padding: 44px 36px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(circle at 85% 10%, #dcead2 0 34%, transparent 36%), linear-gradient(140deg, #eaf2e2, #f7faf3);
}
.note-card .note-visual .q { font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 2.6vw, 22px); color: var(--green-deep); letter-spacing: .1em; }
.note-card .note-visual .a { margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); letter-spacing: .16em; }
.note-card .note-visual .tag { position: absolute; left: 18px; bottom: 12px; font-size: 11px; color: var(--gold); font-style: italic; }
.note-card .note-meta { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; font-size: 13px; color: var(--ink-soft); }
.note-card .note-meta b { color: var(--ink); font-weight: 700; }

/* ---------------- フッター ---------------- */
.site-footer { background: var(--green-deep); color: #eef2ea; margin-top: 0; position: relative; }
.footer-topline { height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); opacity: .8; }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 56px 24px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.f-brand .brand-mark { background: #fff; color: var(--green-deep); }
.f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.f-brand .brand-name { color: #fff; }
.f-brand .brand-tag { color: var(--gold-light); }
.f-product-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 6px;
  padding: 11px 22px; border: 1.5px solid var(--gold-light); border-radius: 999px;
  color: #fff !important; font-family: var(--font-head); font-weight: 700; font-size: 13.5px;
}
.f-iso { margin-top: 22px; display: flex; align-items: center; gap: 12px; font-size: 11.5px; color: #c9d4c2; }
.f-iso .iso-mark { flex: none; width: 62px; height: 44px; border-radius: 8px; background: #fff; color: var(--green-deep);
  display: grid; place-items: center; font-size: 9px; font-weight: 700; text-align: center; line-height: 1.3; }

.f-head { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--gold-light); letter-spacing: .1em; margin-bottom: 12px; }
.f-info p { font-size: 14px; line-height: 1.9; color: #e2e9dc; }
.f-info a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.f-links li { margin-bottom: 10px; }
.f-links a { color: #e2e9dc; font-size: 14px; }
.f-links a:hover { color: #fff; }

.sns-row { display: flex; gap: 12px; margin-top: 14px; }
.sns-row a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
}
.sns-row a:hover { background: var(--gold); border-color: var(--gold); opacity: 1; }
.sns-row svg { width: 18px; height: 18px; fill: currentColor; }

.f-disclaimer-banner {
  display: block; margin-top: 8px; padding: 13px 20px; border-radius: var(--radius-s);
  background: rgba(255,255,255,.08); border: 1px dashed rgba(205,187,141,.5);
  color: #eef2ea !important; font-size: 13px; text-align: center;
}
.f-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); text-align: center; }
.f-note { font-size: 11px; color: #b9c6b1; line-height: 1.8; }
.f-copy { margin-top: 10px; font-size: 12px; color: #cfd9c8; letter-spacing: .08em; }

/* ---------------- フォーム（お問い合わせ） ---------------- */
.form-grid { display: grid; gap: 20px; }
.form-row label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--green-deep); margin-bottom: 6px; }
.form-row label .req { margin-left: 8px; padding: 2px 10px; border-radius: 999px; background: var(--pink); color: #9c6b62; font-size: 11px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-s);
  font-family: var(--font-body); font-size: 15px; background: #fff; color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--green); }

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

/* ふわっと表示（控えめ） */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; transition: none; } }

/* =============================================================
   V2 大胆リデザイン：巨大タイポ＋まちなみイラストバンド構成
   ============================================================= */

/* ---------------- ヒーロー（TOP・V2） ---------------- */
.hero2 { position: relative; overflow: hidden; background: linear-gradient(170deg, #fff 0%, var(--green-tint) 68%, #eef4e9 100%); }
.hero2-inner { max-width: 1240px; margin: 0 auto; padding: clamp(56px, 9vw, 110px) 24px 12px; text-align: center; position: relative; z-index: 2; }
.hero2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(13px, 1.6vw, 16px);
  color: var(--green-dark); letter-spacing: .2em;
  padding: 8px 22px; border-radius: 999px; background: #fff; border: 1px solid var(--gold-light);
}
.hero2-eyebrow::before, .hero2-eyebrow::after { content: ""; width: 22px; height: 1.5px; background: var(--gold-light); }
.hero2-catch {
  margin-top: 30px;
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(40px, 6.8vw, 92px); line-height: 1.28; letter-spacing: .06em;
  color: var(--green-deep);
}
@media (min-width: 760px) { .hero2-catch { white-space: nowrap; } }
.hero2-catch em { font-style: normal; color: var(--gold); position: relative; }
.hero2-catch em::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: .04em; height: .14em; border-radius: 999px; background: var(--pink); z-index: -1; }
.hero2-sub { margin-top: 26px; color: var(--ink-soft); font-size: clamp(14.5px, 1.8vw, 17px); line-height: 2.1; }
.hero2-band { position: relative; margin-top: clamp(8px, 3vw, 28px); }
.hero2-band img.town { display: block; width: min(1600px, 118%); max-width: none; margin: 0 auto; transform: translateX(-4%); }
@media (min-width: 1620px) { .hero2-band img.town { transform: none; width: 100%; max-width: 1600px; } }
.hero2-band .hero-banner { position: absolute; left: auto; right: max(20px, 4vw); bottom: 22px; }

/* ---------------- マーキー（タグラインの帯・ゆっくり） ---------------- */
.marquee { overflow: hidden; padding: clamp(20px, 3.4vw, 36px) 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 46s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 64px; white-space: nowrap;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .06em;
  font-size: clamp(30px, 5vw, 58px); color: var(--green-deep);
}
.marquee-track .ghost { color: transparent; -webkit-text-stroke: 1.5px var(--gold-light); }
.marquee-track .leaf-dot { display: inline-block; width: .55em; height: .55em; border-radius: 50% 50% 50% 4px; background: var(--pink); transform: rotate(45deg); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------------- 数字で見るリード（統計タイル） ---------------- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; max-width: 1040px; margin: 0 auto; }
.stat-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 30px 24px 26px; text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 3px 12px rgba(64,105,59,.06);
}
.stat-tile::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--gold-light)); }
.stat-label { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--ink-soft); letter-spacing: .1em; }
.stat-value { margin-top: 10px; font-weight: 700; font-size: clamp(38px, 4.6vw, 54px); line-height: 1.1; color: var(--green-deep); letter-spacing: .02em; }
.stat-value small { font-size: .38em; font-family: var(--font-head); color: var(--gold); margin-left: 4px; letter-spacing: .08em; }
.stat-note { margin-top: 8px; font-size: 12.5px; color: var(--ink-soft); }

/* ---------------- サービスカード（大型タイル） ---------------- */
.svc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; max-width: 980px; margin: 0 auto; }
.svc-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 40px 36px 34px; position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(64,105,59,.08);
}
.svc-card:hover { transform: translateY(-4px); opacity: 1; border-color: var(--gold-light); box-shadow: 0 12px 30px rgba(64,105,59,.16); }
.svc-card .svc-tag { display: inline-block; padding: 4px 16px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .12em; background: var(--green-soft); color: var(--green-dark); }
.svc-card .svc-logo { margin-top: 18px; font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 3.4vw, 34px); color: var(--green-deep); letter-spacing: .04em; }
.svc-card .svc-logo .gold { color: var(--gold); }
.svc-card .svc-desc { margin-top: 12px; font-size: 14px; color: var(--ink-soft); line-height: 2; }
.svc-card .svc-arrow { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--green-dark); }
.svc-card .svc-arrow::after { content: "→"; color: var(--gold); }
.svc-card .svc-deco { position: absolute; right: -24px; bottom: -30px; width: 150px; opacity: .16; pointer-events: none; }

/* ---------------- しめのメッセージ帯 ---------------- */
.statement { padding: clamp(80px, 12vw, 140px) 24px; text-align: center; background:
  radial-gradient(circle at 12% 20%, rgba(242,219,215,.5) 0 12%, transparent 14%),
  radial-gradient(circle at 88% 78%, rgba(169,201,155,.35) 0 14%, transparent 16%),
  #fff; }
.statement p.big {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(26px, 4.6vw, 48px); color: var(--green-deep); letter-spacing: .1em; line-height: 1.8;
}
.statement p.small { margin-top: 18px; color: var(--gold); font-family: var(--font-head); letter-spacing: .18em; font-size: clamp(13px, 1.6vw, 16px); }

/* ---------------- CTAバンド（フッター前・全ページ共通） ---------------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 90%); color: #fff; text-align: center; padding: clamp(64px, 9vw, 104px) 24px clamp(120px, 15vw, 170px); }
.cta-band .cta-title { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px, 3.4vw, 34px); letter-spacing: .1em; line-height: 1.9; }
.cta-band .cta-sub { margin-top: 12px; font-size: 14px; opacity: .92; }
.cta-band .cta-actions { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; position: relative; z-index: 2; }
.cta-band .btn-white { background: #fff; color: var(--green-dark) !important; border-color: #fff; }
.cta-band .btn-ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.7); }
.cta-band .cta-town { position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%); width: min(1600px, 130%); max-width: none; opacity: .8; pointer-events: none; }

/* ---------------- フッター巨大ロゴ ---------------- */
.f-giant { margin-top: 44px; text-align: center; overflow: hidden; }
.f-giant .f-giant-text {
  font-family: var(--font-head); font-weight: 700; line-height: .95;
  font-size: clamp(88px, 17vw, 230px); letter-spacing: .04em;
  color: rgba(255,255,255,.96); display: block;
}
.f-giant .f-giant-tag { display: block; margin-bottom: 6px; color: var(--gold-light); font-family: var(--font-head); font-size: clamp(12px, 1.6vw, 15px); letter-spacing: .3em; }

/* ---------------- 下層ヒーローにもまちなみバンド ---------------- */
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: clamp(80px, 12vw, 130px);
  background: url("../img/town.svg") bottom center / auto 100% repeat-x; opacity: .55; pointer-events: none;
}
.page-hero .telop { top: 42%; }

/* ---------------- コラージュ写真（左右にちりばめ） ---------------- */
.collage-wrap { position: relative; }
.collage-item { position: absolute; width: clamp(120px, 15vw, 200px); aspect-ratio: 4/3; border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow); border: 4px solid #fff; }
.collage-item.c-left { left: max(-40px, -4vw); top: 8%; transform: rotate(-5deg); }
.collage-item.c-right { right: max(-40px, -4vw); bottom: 4%; transform: rotate(4deg); }
@media (max-width: 960px) { .collage-item { display: none; } }
