@charset "UTF-8";
/* =========================================================
   植鉄光華園 — サイト共通スタイル
   ベースカラー #ffffff / メインカラー #cce198 / アクセント 山吹色
   ========================================================= */

/* ---------- 1. デザイントークン ---------- */
:root {
  /* Base */
  --white: #ffffff;

  /* Main（若草色）とその階調 */
  --main: #cce198;
  --main-700: #8fb04e;
  --main-600: #b0cf6d;
  --main-300: #e0edc4;
  --main-100: #eff5de;
  --main-050: #f8fbef;

  /* 深緑（見出し・フッター） */
  --deep: #3b5a24;
  --deep-700: #2c4419;

  /* アクセント（山吹色）— 既存販促物の黄色マーカーを継承 */
  --accent: #e8a400;
  --accent-soft: #ffe98a;

  /* 文字 */
  --ink: #1e2a17;
  --ink-2: #55614c;
  --ink-3: #8a9382;

  /* 罫線・影 */
  --line: #e5ead9;
  --line-2: #f0f3e8;
  --shadow-s: 0 2px 10px rgba(30, 42, 23, .06);
  --shadow-m: 0 10px 30px rgba(30, 42, 23, .09);
  --shadow-l: 0 24px 60px rgba(30, 42, 23, .13);

  /* レイアウト */
  --wrap: 1140px;
  --wrap-narrow: 860px;
  --pad: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-l: 24px;

  /* タイポ */
  --font-serif: "Zen Old Mincho", "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --font-sans: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  --header-h: 76px;
}

@media (max-width: 900px) {
  :root { --header-h: 62px; }
}

/* ---------- 2. リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink);
  background: var(--white);
  font-feature-settings: "palt" 1;
  overflow-wrap: anywhere;
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s, opacity .25s; }
h1, h2, h3, h4 { margin: 0; line-height: 1.5; font-weight: 500; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
:focus-visible { outline: 3px solid var(--main-700); outline-offset: 3px; border-radius: 4px; }

/* ---------- 3. 汎用ユーティリティ ---------- */
.wrap { width: min(100% - var(--pad) * 2, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - var(--pad) * 2, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 118px); position: relative; }
.section--tint { background: var(--main-050); }
.section--main {
  background:
    linear-gradient(180deg, var(--main-100) 0%, var(--main-050) 100%);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
@media (max-width: 700px) { .pc-only { display: none; } }
@media (min-width: 701px) { .sp-only { display: none; } }

/* 黄色マーカー（既存の販促物の表現を踏襲） */
.mk {
  background: linear-gradient(transparent 62%, var(--accent-soft) 62%);
  padding-inline: .1em;
  font-weight: 500;
}
/* 薄緑マーカー */
.mk-g { background: linear-gradient(transparent 62%, var(--main) 62%); padding-inline: .1em; }

/* ---------- 4. 見出し ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-serif);
  font-size: 13px; letter-spacing: .22em; color: var(--main-700);
  text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; display: block;
}

.h-lead {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.62;
  letter-spacing: .04em;
  color: var(--deep);
}
.h-lead .sub {
  display: block; font-family: var(--font-sans); font-size: 14px;
  letter-spacing: .18em; color: var(--main-700); margin-top: 12px; font-weight: 500;
}
.h-sec {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.2vw, 31px);
  line-height: 1.6; letter-spacing: .05em; color: var(--deep);
}
.txt { color: var(--ink-2); font-size: 15.5px; line-height: 2.1; }
.txt + .txt { margin-top: 1.2em; }
.center { text-align: center; }
.section-head { margin-bottom: clamp(34px, 5vw, 58px); }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- 5. ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  padding: 16px 34px; border-radius: 999px;
  font-weight: 500; font-size: 15px; letter-spacing: .08em;
  transition: transform .25s, box-shadow .25s, background-color .25s, color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--main { background: var(--main); color: var(--ink); box-shadow: var(--shadow-s); }
.btn--main:hover { background: var(--main-600); box-shadow: var(--shadow-m); }
.btn--deep { background: var(--deep); color: #fff; }
.btn--deep:hover { background: var(--deep-700); box-shadow: var(--shadow-m); }
.btn--ghost { border: 1px solid var(--main-600); color: var(--deep); background: var(--white); }
.btn--ghost:hover { background: var(--main-050); }
.btn--lg { padding: 20px 46px; font-size: 16px; }
.btn .arw { transition: transform .25s; }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- 6. ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.header__inner {
  width: min(100% - 32px, 1320px); margin-inline: auto;
  height: var(--header-h); display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand__name {
  font-family: var(--font-serif); font-size: 19px; letter-spacing: .13em; color: var(--ink);
  line-height: 1.2;
}
.brand__sub { display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: .14em; color: var(--main-700); margin-top: 3px; }

.gnav > ul { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.gnav a {
  position: relative; font-size: 14.5px; letter-spacing: .06em; padding-block: 8px; color: var(--ink);
}
.gnav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--main-600); transform: scaleX(0); transform-origin: right; transition: transform .3s;
}
.gnav a:hover::after, .gnav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.gnav a[aria-current="page"] { color: var(--deep); font-weight: 500; }

.header__cta { display: flex; align-items: center; gap: 14px; }
.header__tel { text-align: right; line-height: 1.25; }
.header__tel .lbl { display: block; font-size: 10px; letter-spacing: .16em; color: var(--main-700); }
.header__tel .num { font-family: var(--font-serif); font-size: 20px; letter-spacing: .02em; color: var(--deep); }
.header__cta .btn { padding: 12px 24px; font-size: 14px; }

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span {
  position: absolute; left: 11px; width: 22px; height: 1.6px; background: var(--ink);
  transition: transform .3s, opacity .25s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .header__tel { display: none; }
}
@media (max-width: 900px) {
  .burger { display: block; }
  .header__cta .btn { display: none; }
  .gnav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 30px;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .28s, transform .28s, visibility .28s;
    max-height: calc(100dvh - var(--header-h)); overflow: auto;
    box-shadow: var(--shadow-m);
  }
  .gnav.is-open { transform: none; opacity: 1; visibility: visible; }
  .gnav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav a { display: block; padding: 17px 4px; border-bottom: 1px solid var(--line-2); font-size: 16px; }
  .gnav a::after { display: none; }
  .gnav__tel {
    margin-top: 22px; display: flex; flex-direction: column; gap: 10px;
  }
  .gnav__tel .btn { width: 100%; }
}
@media (min-width: 901px) { .gnav__tel { display: none; } }

/* ---------- 7. ヒーロー（トップ） ---------- */
.hero { position: relative; background: var(--main-050); overflow: hidden; }
.hero__media { position: relative; height: clamp(430px, 76vh, 720px); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.72) 32%, rgba(255,255,255,0) 62%);
}
@media (max-width: 900px) {
  .hero__media::after {
    background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.55) 45%, rgba(255,255,255,.1) 100%);
  }
}
.hero__body {
  position: absolute; inset: 0; display: flex; align-items: center;
  width: min(100% - var(--pad) * 2, var(--wrap)); margin-inline: auto;
}
.hero__copy { max-width: 560px; }
.hero__tag {
  display: inline-block; font-family: var(--font-serif); font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: .34em; color: var(--deep);
  background: linear-gradient(transparent 58%, var(--accent-soft) 58%);
  padding: 2px 6px 2px 10px; margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 6.2vw, 58px);
  line-height: 1.5; letter-spacing: .06em; color: var(--ink);
  text-shadow: 0 1px 14px rgba(255,255,255,.7);
}
.hero__title .accentline { position: relative; display: inline-block; }
.hero__title .accentline::after {
  content: ""; position: absolute; left: 0; bottom: .08em; width: 100%; height: 7px;
  background: var(--main); z-index: -1; border-radius: 4px;
}
.hero__lead {
  margin-top: 26px; font-size: clamp(14px, 1.6vw, 16px); line-height: 2.05; color: var(--ink-2);
  max-width: 30em; text-shadow: 0 1px 10px rgba(255,255,255,.8);
}
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }

/* 創業年バッジ */
.hero__since {
  position: absolute; right: 0; bottom: 34px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border-radius: 999px 0 0 999px; padding: 12px 26px 12px 22px; box-shadow: var(--shadow-s);
}
.hero__since .n { font-family: var(--font-serif); font-size: 30px; color: var(--deep); line-height: 1; }
.hero__since .t { font-size: 11.5px; letter-spacing: .14em; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 760px) { .hero__since { display: none; } }

/* 帯（サービス4本柱） */
.pillars {
  background: var(--deep); color: #fff;
}
.pillars ul {
  display: grid; grid-template-columns: repeat(4, 1fr);
  width: min(100% - var(--pad) * 2, var(--wrap)); margin-inline: auto;
}
.pillars li {
  text-align: center; padding: 22px 6px; font-family: var(--font-serif);
  letter-spacing: .18em; font-size: clamp(13px, 1.6vw, 17px);
  position: relative;
}
.pillars li + li::before {
  content: ""; position: absolute; left: 0; top: 28%; bottom: 28%; width: 1px;
  background: rgba(255,255,255,.24);
}
.pillars .en { display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: .2em; color: var(--main); margin-top: 4px; }
@media (max-width: 560px) {
  .pillars ul { grid-template-columns: repeat(2, 1fr); }
  .pillars li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
}

/* ---------- 8. ページヘッダー（下層） ---------- */
.pagehead { position: relative; background: var(--main-100); overflow: hidden; }
.pagehead::before {
  content: ""; position: absolute; right: -60px; top: -70px; width: 320px; height: 320px;
  border-radius: 50%; background: var(--main); opacity: .5;
}
.pagehead__inner {
  position: relative; padding-block: clamp(50px, 8vw, 90px); text-align: center;
}
.pagehead h1 {
  font-family: var(--font-serif); font-size: clamp(26px, 4.4vw, 40px);
  letter-spacing: .1em; color: var(--deep);
}
.pagehead .en {
  display: block; font-size: 11.5px; letter-spacing: .3em; color: var(--main-700); margin-top: 10px;
}
.breadcrumb { font-size: 12px; color: var(--ink-3); padding-block: 14px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li + li::before { content: "／"; margin-right: 8px; color: var(--line); }
.breadcrumb a:hover { color: var(--main-700); }

/* ---------- 9. サービスカード ---------- */
.cards {
  display: grid; gap: clamp(16px, 2.2vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 34px);
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: var(--main); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: var(--main-300); }
.card:hover::before { transform: scaleX(1); }
.card__no {
  font-family: var(--font-serif); font-size: 12px; letter-spacing: .2em; color: var(--main-700);
}
.card h3 {
  font-family: var(--font-serif); font-size: 19.5px; letter-spacing: .05em;
  color: var(--deep); margin: 8px 0 14px; line-height: 1.6;
}
.card p { font-size: 14.5px; line-height: 2.05; color: var(--ink-2); }
.card__note { display: block; margin-top: 12px; font-size: 12.5px; color: var(--ink-3); }
.card__icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--main-100);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; stroke: var(--deep); fill: none; stroke-width: 1.4; }

/* ---------- 10. 選ばれる理由 ---------- */
.reasons { display: grid; gap: clamp(28px, 4vw, 46px); }
.reason {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center;
}
.reason:nth-child(even) .reason__media { order: 2; }
.reason__media { position: relative; }
.reason__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}
.reason__media .badge {
  position: absolute; left: -14px; top: -18px;
  width: 74px; height: 74px; border-radius: 50%; background: var(--main);
  display: grid; place-content: center; text-align: center; line-height: 1.15;
  font-family: var(--font-serif); color: var(--deep); box-shadow: var(--shadow-s);
}
.reason__media .badge b { display: block; font-size: 24px; font-weight: 500; }
.reason__media .badge span { font-size: 9.5px; letter-spacing: .14em; }
.reason h3 {
  font-family: var(--font-serif); font-size: clamp(20px, 2.6vw, 27px);
  color: var(--deep); letter-spacing: .04em; margin-bottom: 16px; line-height: 1.65;
}
@media (max-width: 780px) {
  .reason { grid-template-columns: 1fr; }
  .reason:nth-child(even) .reason__media { order: 0; }
  .reason__media .badge { left: -6px; top: -14px; width: 62px; height: 62px; }
  .reason__media .badge b { font-size: 20px; }
}

/* ---------- 11. ギャラリー ---------- */
.gallery {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.gitem {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  background: var(--main-100); box-shadow: var(--shadow-s);
  aspect-ratio: 4 / 3; cursor: zoom-in;
}
.gitem--tall { aspect-ratio: 3 / 4; }
.gitem img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1), filter .4s;
}
.gitem:hover img { transform: scale(1.05); }
.gitem figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px; color: #fff; font-size: 13px; letter-spacing: .06em;
  background: linear-gradient(transparent, rgba(24, 34, 18, .78));
}
.gitem .tag {
  position: absolute; left: 10px; top: 10px; z-index: 1;
  background: var(--white); color: var(--deep); font-size: 11px; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 999px; box-shadow: var(--shadow-s);
}
.gitem .tag--before { background: var(--ink); color: #fff; }
.gitem .tag--after { background: var(--main); color: var(--ink); }

/* Before/After 組 */
.ba-set { display: grid; gap: clamp(22px, 3vw, 34px); }
.ba-row {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: clamp(18px, 2.6vw, 28px);
}
.ba-row > h3 {
  font-family: var(--font-serif); font-size: 19px; color: var(--deep);
  letter-spacing: .05em; margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.ba-row > h3::before { content: ""; width: 6px; height: 22px; background: var(--main); border-radius: 3px; }
.ba-pair {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center;
}
.ba-arrow { color: var(--main-700); font-size: 26px; line-height: 1; }
@media (max-width: 640px) {
  .ba-pair { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); text-align: center; }
}

/* ライトボックス */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(20, 28, 15, .92); place-items: center; padding: 24px;
}
.lightbox.is-open { display: grid; animation: fade .25s ease both; }
.lightbox img { max-width: min(96vw, 1100px); max-height: 86vh; object-fit: contain; border-radius: 6px; }
.lightbox__cap { color: #fff; text-align: center; font-size: 13.5px; margin-top: 14px; letter-spacing: .08em; }
.lightbox__close {
  position: absolute; top: 18px; right: 20px; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; font-size: 22px; display: grid; place-items: center;
}
.lightbox__close:hover { background: rgba(255,255,255,.26); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff;
  display: grid; place-items: center; font-size: 22px;
}
.lightbox__nav:hover { background: rgba(255,255,255,.26); }
.lightbox__nav.prev { left: 14px; }
.lightbox__nav.next { right: 14px; }
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }

/* ---------- 12. 動画 ---------- */
.movies { display: grid; gap: clamp(22px, 3vw, 34px); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.movie-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l);
  overflow: hidden; box-shadow: var(--shadow-s);
}
.movie-card .frame { aspect-ratio: 16 / 9; background: var(--ink); }
.movie-card iframe { width: 100%; height: 100%; border: 0; }

/* YouTube ファサード（サムネイル → クリックで再生）
   ※ ファイルを直接開いた場合（file://）YouTubeの埋め込みはエラー153になるため、
      その場合は YouTube のページを新しいタブで開く。 */
.yt { position: relative; width: 100%; height: 100%; background: var(--ink); }
.yt > img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1), filter .35s; }
.yt::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,28,15,.05), rgba(20,28,15,.35));
  transition: opacity .35s;
}
.yt:hover > img { transform: scale(1.04); filter: brightness(1.04); }
.yt__play {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center; width: 100%; height: 100%;
}
.yt__play i {
  display: grid; place-items: center;
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255, 255, 255, .93); box-shadow: var(--shadow-m);
  transition: transform .3s, background-color .3s;
}
.yt__play i::before {
  content: ""; width: 0; height: 0; margin-left: 5px;
  border-style: solid; border-width: 13px 0 13px 21px;
  border-color: transparent transparent transparent var(--deep);
}
.yt__play:hover i { transform: scale(1.09); background: var(--main); }
.yt__badge {
  position: absolute; left: 12px; bottom: 12px; z-index: 2; display: none;
  background: rgba(255,255,255,.92); color: var(--deep);
  font-size: 11.5px; letter-spacing: .08em; padding: 5px 13px; border-radius: 999px;
}
.yt.is-external .yt__badge { display: block; }
.yt.is-playing::after, .yt.is-playing .yt__play { display: none; }
.yt iframe { width: 100%; height: 100%; border: 0; }
.movie-card__body { padding: 20px 24px 24px; }
.movie-card__body h3 { font-family: var(--font-serif); font-size: 18px; color: var(--deep); letter-spacing: .05em; }
.movie-card__body p { font-size: 14px; color: var(--ink-2); margin-top: 8px; }

/* ---------- 13. テーブル（会社概要） ---------- */
.table-info { width: 100%; border-collapse: collapse; }
.table-info th, .table-info td {
  text-align: left; padding: 20px 8px; border-bottom: 1px solid var(--line);
  font-size: 15.5px; vertical-align: top;
}
.table-info th {
  width: 190px; font-weight: 500; color: var(--deep); font-family: var(--font-serif); letter-spacing: .1em;
}
.table-info td { color: var(--ink-2); }
.table-info td ol { counter-reset: n; }
.table-info td ol li { counter-increment: n; padding-left: 1.7em; position: relative; }
.table-info td ol li::before {
  content: counter(n); position: absolute; left: 0; top: .45em;
  width: 1.45em; height: 1.45em; border-radius: 50%; background: var(--main-100); color: var(--deep);
  font-size: 11px; display: grid; place-items: center; line-height: 1;
}
@media (max-width: 640px) {
  .table-info th, .table-info td { display: block; width: auto; padding: 0; border: 0; }
  .table-info th { padding-top: 20px; }
  .table-info td { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .table-info tr { display: block; }
}

/* 地図 */
.map { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-s); border: 1px solid var(--line); }
.map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- 14. お問い合わせ ---------- */
.contact-grid { display: grid; gap: clamp(24px, 4vw, 48px); grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.tel-panel {
  background: var(--main-050); border: 1px solid var(--main-300);
  border-radius: var(--radius-l); padding: clamp(26px, 3.4vw, 38px);
}
.tel-panel h2 { font-family: var(--font-serif); font-size: 21px; color: var(--deep); letter-spacing: .06em; }
/* 左：代表（固定電話） ／ 右：モバイル */
.tel-lines {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px;
  margin-top: 24px;
}
.tel-line {
  display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
a.tel-line:hover { border-color: var(--main-600); box-shadow: var(--shadow-s); transform: translateY(-2px); }
.tel-line .lbl {
  font-size: 11.5px; letter-spacing: .16em; color: var(--main-700); display: block; margin-bottom: 2px;
}
.tel-line .num {
  font-family: var(--font-serif); font-size: clamp(20px, 2.1vw, 25px); color: var(--deep);
  letter-spacing: 0; line-height: 1.35; display: inline-block; white-space: nowrap;
}
a.tel-line:hover .num { color: var(--main-700); }
@media (max-width: 420px) { .tel-lines { grid-template-columns: 1fr; } }
.tel-panel .fax { margin-top: 20px; font-size: 14px; color: var(--ink-2); }

.form { display: grid; gap: 20px; }
.field label {
  display: block; font-size: 14px; letter-spacing: .06em; color: var(--deep); margin-bottom: 8px; font-weight: 500;
}
.req {
  display: inline-block; margin-left: 8px; font-size: 10.5px; letter-spacing: .08em;
  background: var(--accent-soft); color: #7a5a00; padding: 2px 8px; border-radius: 999px; vertical-align: 2px;
}
.opt {
  display: inline-block; margin-left: 8px; font-size: 10.5px; letter-spacing: .08em;
  background: var(--line-2); color: var(--ink-3); padding: 2px 8px; border-radius: 999px; vertical-align: 2px;
}
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 170px; resize: vertical; line-height: 1.9; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--main-600); box-shadow: 0 0 0 4px var(--main-100);
}
.form__note { font-size: 13px; color: var(--ink-3); line-height: 1.9; }
.form__msg {
  display: none; padding: 16px 18px; border-radius: 10px; font-size: 14.5px; line-height: 1.9;
  background: var(--main-100); border: 1px solid var(--main-300); color: var(--deep);
}
.form__msg.is-shown { display: block; }

/* ---------- 15. CTA帯 ---------- */
.cta-band { position: relative; background: var(--deep); color: #fff; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(204,225,152,.22), transparent 55%);
}
.cta-band__inner { position: relative; padding-block: clamp(56px, 7vw, 88px); text-align: center; }
.cta-band h2 {
  font-family: var(--font-serif); font-size: clamp(22px, 3.4vw, 33px); letter-spacing: .08em; line-height: 1.65;
}
.cta-band p { margin-top: 16px; color: rgba(255,255,255,.8); font-size: 15px; }
.cta-band__tels {
  margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
}
.cta-band__tels a { display: block; }
.cta-band__tels .lbl { font-size: 11px; letter-spacing: .2em; color: var(--main); }
.cta-band__tels .num { font-family: var(--font-serif); font-size: clamp(26px, 3.6vw, 34px); letter-spacing: .02em; }
.cta-band__tels a:hover .num { color: var(--main); }
.cta-band .btn { margin-top: 30px; }

/* ---------- 16. フッター ---------- */
.footer { background: var(--main-050); border-top: 1px solid var(--line); padding-block: clamp(46px, 6vw, 70px) 0; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .footer__top { grid-template-columns: 1fr; gap: 30px; } }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand img { width: 54px; height: 54px; object-fit: contain; }
.footer__brand .n { font-family: var(--font-serif); font-size: 21px; letter-spacing: .12em; }
.footer address { font-style: normal; font-size: 14px; color: var(--ink-2); margin-top: 18px; line-height: 2; }
.footer h3 {
  font-family: var(--font-serif); font-size: 14px; letter-spacing: .16em; color: var(--deep);
  padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 14px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 14px; color: var(--ink-2); }
.footer__links a:hover { color: var(--main-700); }
.footer__bottom {
  margin-top: 40px; padding-block: 20px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}
.to-top {
  position: fixed; right: 18px; bottom: 96px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; background: var(--white); color: var(--deep);
  box-shadow: var(--shadow-m); display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; transform: translateY(8px);
}
.to-top.is-shown { opacity: 1; pointer-events: auto; transform: none; }
@media (min-width: 901px) { .to-top { bottom: 26px; } }

/* ---------- 17. モバイル固定アクションバー ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; grid-template-columns: 1fr 1fr;
  background: var(--white); box-shadow: 0 -4px 20px rgba(30,42,23,.12);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 6px; border-radius: 999px; font-size: 14px; letter-spacing: .06em; font-weight: 500;
}
.mobile-bar .call { background: var(--main); color: var(--ink); }
.mobile-bar .mail { background: var(--deep); color: #fff; }
.mobile-bar svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
@media (max-width: 900px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 74px; }
}

/* ---------- 18. スクロール演出 ---------- */
/* 既定では表示。JavaScript が有効なときだけ、いったん隠してフェードインさせる
   （JS無効の環境でも内容が必ず読める） */
.rv { transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
html.js .rv { opacity: 0; transform: translateY(22px); }
html.js .rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .09s } .rv-d2 { transition-delay: .18s } .rv-d3 { transition-delay: .27s }
.rv-d4 { transition-delay: .36s } .rv-d5 { transition-delay: .45s } .rv-d6 { transition-delay: .54s }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html.js .rv, .rv { opacity: 1; transform: none; }
}

/* ---------- 19. 小物 ---------- */
.leaf-divider { display: flex; align-items: center; gap: 14px; color: var(--main-600); justify-content: center; }
.leaf-divider::before, .leaf-divider::after { content: ""; height: 1px; background: var(--line); flex: 1; max-width: 130px; }
.notice {
  background: var(--main-050); border-left: 3px solid var(--main); border-radius: 0 10px 10px 0;
  padding: 16px 20px; font-size: 14px; color: var(--ink-2); line-height: 1.95;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--main-100); color: var(--deep); border-radius: 999px;
  padding: 8px 18px; font-size: 13.5px; letter-spacing: .06em;
}
.flow { display: grid; gap: 18px; counter-reset: f; }
.flow li {
  counter-increment: f; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px 22px 76px; position: relative;
}
.flow li::before {
  content: counter(f); position: absolute; left: 24px; top: 22px;
  width: 34px; height: 34px; border-radius: 50%; background: var(--main); color: var(--deep);
  font-family: var(--font-serif); font-size: 16px; display: grid; place-items: center;
}
.flow h3 { font-family: var(--font-serif); font-size: 17.5px; color: var(--deep); letter-spacing: .05em; }
.flow p { font-size: 14.5px; color: var(--ink-2); margin-top: 6px; }
