@charset "utf-8";
/* ==========================================================================
   株式会社静岡グリーンサービス｜デモサイト
   配色・書体・余白は 13_Web構成.md 第5章に準拠
   影・角丸・グラデーションは使わない（罫線は1pxのヘアラインのみ）
   ========================================================================== */

/* --- トークン ------------------------------------------------------------ */
:root {
  --c-base:        #FFFFFF;
  --c-base-sub:    #F7F6F3;
  --c-accent:      #A05F22;
  --c-accent-pale: #F8E4D1;
  --c-sub:         #246916;
  --c-sub-pale:    #9EC066;
  --c-text:        #1C1C1A;
  --c-text-sub:    #5B5A55;
  --c-rule:        #DDDAD3;

  --font-sans:  "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;

  --w-page:    1200px;
  --w-measure:  680px;

  --sp-section: 120px;
  --sp-panel:    48px;

  --header-h:    88px;
  --header-h-sm: 64px;

  /* 速度は3種類のみ: 150-200ms / 400-700ms / 1000ms以上 */
  --t-fast: 180ms;
  --t-mid:  600ms;
}

/* --- リセット ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-base);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
  text-underline-offset: 0.25em;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: var(--c-accent); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

/* キーボード操作の可視フォーカス（外さない） */
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 0; top: -100px; z-index: 100;
  background: var(--c-accent); color: #fff; padding: 12px 20px; font-size: 15px;
}
.skip-link:focus { top: 0; }

/* --- タイポグラフィ ------------------------------------------------------ */
h1, .h1 { font-family: var(--font-serif); font-size: 40px; line-height: 1.4; font-weight: 600; letter-spacing: 0.01em; }
h2, .h2 { font-family: var(--font-serif); font-size: 30px; line-height: 1.5; font-weight: 600; }
h3, .h3 { font-family: var(--font-sans);  font-size: 21px; line-height: 1.6; font-weight: 700; }

.label {
  font-family: var(--font-sans);
  font-size: 12px; line-height: 1; letter-spacing: 0.15em;
  color: var(--c-text-sub); text-transform: uppercase;
}
.caption { font-size: 14px; line-height: 1.8; color: var(--c-text-sub); }
.note    { font-size: 14px; line-height: 1.8; color: var(--c-text-sub); }
.measure { max-width: var(--w-measure); }
.lead    { font-size: 19px; line-height: 1.9; }

/* --- レイアウト ---------------------------------------------------------- */
.container { width: min(100% - 48px, var(--w-page)); margin-inline: auto; }
.section   { padding: var(--sp-section) 0; }
.section--tint { background: var(--c-base-sub); }
.section__head { margin-bottom: 56px; }
.section__head .label { display: block; margin-bottom: 14px; }

.rule { height: 1px; background: var(--c-accent); border: 0; margin: 0; }
.rule--faint { background: var(--c-rule); }

/* --- ヘッダー ------------------------------------------------------------ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  background: var(--c-base);
  border-bottom: 1px solid var(--c-rule);
  display: flex; align-items: center;
}
.header__inner { display: flex; align-items: center; gap: 32px; width: min(100% - 48px, var(--w-page)); margin-inline: auto; }
.header__logo { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--c-text); text-decoration: none; line-height: 1.3; white-space: nowrap; }
.header__logo span { display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.15em; color: var(--c-text-sub); font-weight: 400; }
.header__nav { margin-left: auto; }
.header__nav ul { display: flex; gap: 28px; }
.header__nav a { color: var(--c-text); text-decoration: none; font-size: 15px; position: relative; padding: 6px 0; display: inline-block; }
.header__nav a[aria-current="page"] { color: var(--c-accent); }
.header__tel {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  background: var(--c-accent); color: #fff; text-decoration: none;
  padding: 10px 20px; line-height: 1.3; min-height: 44px; justify-content: center; white-space: nowrap;
}
.header__tel small { font-size: 11px; letter-spacing: 0.08em; }
.header__tel strong { font-size: 17px; font-weight: 700; }
.header__toggle { display: none; }
body { padding-top: var(--header-h); }

/* スクロール時の縮小（GSAPが .is-compact を付与） */
.header.is-compact { height: var(--header-h-sm); background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); }
.header.is-compact .header__logo span { display: none; }
.header.is-compact .header__tel { padding: 8px 16px; }

/* --- ボタン -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 30px;
  font-size: 16px; font-weight: 700; text-decoration: none; text-align: center;
  border: 1px solid var(--c-accent); cursor: pointer;
  transition: background-color var(--t-fast) ease-out, color var(--t-fast) ease-out;
}
.btn--primary { background: var(--c-accent); color: #fff; }
.btn--primary:hover { background: #8a501c; border-color: #8a501c; }
.btn--ghost { background: transparent; color: var(--c-accent); }
.btn--ghost:hover { background: var(--c-accent-pale); }
.btn__arrow { font-size: 15px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-note { font-size: 14px; color: var(--c-text-sub); }

/* テキストリンク：下線が左から右へ（200ms） */
.tlink {
  display: inline-block; color: var(--c-accent); text-decoration: none;
  font-size: 16px; font-weight: 700; position: relative; padding-bottom: 3px;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast) ease-out;
}
.tlink:hover::after, .tlink:focus-visible::after { transform: scaleX(1); }

.textlink { color: var(--c-accent); text-decoration: none; background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size var(--t-fast) ease-out; }
.textlink:hover { background-size: 100% 1px; }

/* --- 展示パネル（博物館風の共通様式） ------------------------------------ */
.panel { display: flex; flex-direction: column; }
.panel__media { overflow: hidden; }
.panel__media img { width: 100%; transition: transform var(--t-mid) ease-out; }
.panel__rule { height: 1px; background: var(--c-accent); margin-top: 20px; }
.panel__label { display: block; margin-top: 14px; }
.panel__title { margin-top: 10px; font-family: var(--font-serif); font-size: 22px; line-height: 1.5; font-weight: 600; }
.panel__body { margin-top: 12px; font-size: 16px; line-height: 1.85; color: var(--c-text-sub); }
.panel__link { margin-top: 16px; }
.panel__caption { margin-top: 8px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-panel); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-panel); }

/* カードのホバー拡大（1.03倍）：静的な影は使わず、ホバー時のみの一時的な表現 */
.card-hover { transition: transform var(--t-fast) ease-out, box-shadow var(--t-fast) ease-out; will-change: transform; }
.card-hover:hover { transform: scale(1.03); box-shadow: 0 2px 18px rgba(28,28,26,0.10); }

/* 写真のホバーズーム（枠固定・中の画像1.05倍・0.6秒） */
.zoom { overflow: hidden; }
.zoom img { transition: transform var(--t-mid) ease-out; }
a:hover .zoom img, .zoom:hover img { transform: scale(1.05); }

/* --- ファーストビュー ---------------------------------------------------- */
.hero { position: relative; }
.hero__media { position: relative; height: min(78vh, 620px); overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__inner { position: absolute; inset: 0; display: flex; align-items: center; }
.hero__box { background: rgba(255,255,255,0.92); padding: 44px 48px; max-width: 660px; border-left: 3px solid var(--c-accent); }
.hero__badge {
  display: inline-block; border: 1px solid var(--c-accent); color: var(--c-accent);
  font-size: 13px; letter-spacing: 0.04em; padding: 7px 14px; margin-bottom: 20px; line-height: 1.5;
}
.hero__title { margin-bottom: 16px; }
.hero__sub { font-size: 15px; color: var(--c-text-sub); margin-bottom: 28px; line-height: 1.9; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { font-size: 14px; color: var(--c-text-sub); margin-top: 14px; }

/* 下層ページのヘッダー */
.pagehead { position: relative; }
.pagehead__media { height: 300px; overflow: hidden; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead__body { background: var(--c-base); padding: 40px 0 0; }
.pagehead__label { display: block; margin-bottom: 12px; }
.pagehead__lead { margin-top: 18px; color: var(--c-text-sub); max-width: var(--w-measure); }

/* スクロール誘導矢印 */
.scrollcue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); text-align: center; color: var(--c-text-sub); }
.scrollcue span { display: block; font-size: 11px; letter-spacing: 0.15em; margin-bottom: 6px; }
.scrollcue i { display: block; width: 1px; height: 30px; background: var(--c-text-sub); margin: 0 auto; animation: cue 1600ms ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(9px); opacity: 1; } }

/* --- 主役層「水辺がもどるまで」 ------------------------------------------ */
.story { background: var(--c-base-sub); }
.story__pin { position: relative; }
.story__grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
.story__steps { position: relative; }
.story__step {
  display: block; width: 100%; text-align: left;
  padding: 16px 0 16px 22px; border-left: 1px solid var(--c-rule);
  color: var(--c-text-sub); transition: color var(--t-fast) ease-out, border-color var(--t-fast) ease-out;
}
.story__step[aria-selected="true"] { border-left: 1px solid var(--c-accent); color: var(--c-text); }
.story__step-no { font-size: 12px; letter-spacing: 0.15em; display: block; margin-bottom: 4px; }
.story__step[aria-selected="true"] .story__step-no { color: var(--c-accent); }
.story__step-name { font-family: var(--font-serif); font-size: 21px; font-weight: 600; line-height: 1.4; }
.story__stage { position: relative; }
.story__figure { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #e9e7e2; }
.story__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; }
.story__figure img.is-active { opacity: 1; }
.story__text { margin-top: 22px; min-height: 116px; }
.story__text h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 600; line-height: 1.5; }
.story__text p { margin-top: 10px; color: var(--c-text-sub); font-size: 16px; line-height: 1.85; max-width: 620px; }
.story__progress { display: flex; gap: 6px; margin-top: 26px; }
.story__progress i { flex: 1; height: 2px; background: var(--c-rule); }
.story__progress i.is-on { background: var(--c-accent); }
.story__outro { margin-top: 72px; border-top: 1px solid var(--c-rule); padding-top: 40px; text-align: center; }
.story__outro p { font-family: var(--font-serif); font-size: 24px; line-height: 1.6; margin-bottom: 20px; }
.story__outro .btn-row { justify-content: center; }

/* 768px未満・reduced-motion 用の縦積みカード */
.story__cards { display: none; }
.story__card + .story__card { margin-top: 40px; }
.story__card figure { margin: 0; }
.story__card .story__card-body { margin-top: 18px; }
.story__card h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-top: 8px; }
.story__card p { margin-top: 10px; color: var(--c-text-sub); font-size: 16px; }

/* --- 数字 ---------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { border-top: 1px solid var(--c-accent); padding-top: 22px; }
.stat__num { font-family: var(--font-serif); font-size: 46px; line-height: 1.2; font-weight: 600; color: var(--c-text); }
.stat__num small { font-size: 18px; margin-left: 3px; font-family: var(--font-sans); font-weight: 700; }
.stat__label { font-size: 14px; color: var(--c-text-sub); margin-top: 8px; }

/* --- 受賞 ---------------------------------------------------------------- */
.award { border: 1px solid var(--c-accent); padding: 34px 36px; background: var(--c-base); }
.award + .award { margin-top: 24px; }
.award__label { display: block; margin-bottom: 12px; color: var(--c-accent); }
.award__title { font-family: var(--font-serif); font-size: 25px; line-height: 1.5; font-weight: 600; }
.award__body { margin-top: 12px; color: var(--c-text-sub); font-size: 16px; }

/* --- 事例 ---------------------------------------------------------------- */
.works-group + .works-group { margin-top: 88px; }
.works-group__head { display: flex; align-items: baseline; gap: 16px; border-bottom: 1px solid var(--c-accent); padding-bottom: 14px; margin-bottom: 36px; }
.works-group__head h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 600; }
.works-group__count { font-size: 13px; color: var(--c-text-sub); letter-spacing: 0.1em; }

/* --- 事業一覧（service） ------------------------------------------------- */
.svc + .svc { margin-top: 104px; }
.svc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.svc__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 22px; }
.svc__list li { border-bottom: 1px solid var(--c-rule); padding: 10px 0 10px 20px; font-size: 16px; position: relative; }
.svc__list li::before { content: ""; position: absolute; left: 0; top: 21px; width: 8px; height: 1px; background: var(--c-sub); }
.svc__cta { margin-top: 30px; }

/* --- テーブル ------------------------------------------------------------ */
.table th, .table td { border-bottom: 1px solid var(--c-rule); padding: 18px 12px; text-align: left; vertical-align: top; font-size: 16px; line-height: 1.85; }
.table th { width: 210px; font-weight: 700; color: var(--c-text); background: var(--c-base-sub); padding-left: 20px; }
.table--compare th { width: auto; text-align: center; background: var(--c-base-sub); }
.table--compare td { width: 50%; }
.table--compare thead th { border-bottom: 1px solid var(--c-accent); }

/* --- アコーディオン ------------------------------------------------------ */
.acc { border-top: 1px solid var(--c-rule); }
.acc__item { border-bottom: 1px solid var(--c-rule); }
.acc__btn { display: flex; width: 100%; gap: 16px; align-items: flex-start; padding: 22px 0; text-align: left; font-size: 17px; font-weight: 700; line-height: 1.7; min-height: 44px; }
.acc__btn::after { content: "＋"; margin-left: auto; color: var(--c-accent); font-weight: 400; font-size: 20px; line-height: 1.4; }
.acc__btn[aria-expanded="true"]::after { content: "－"; }
.acc__q { color: var(--c-accent); font-size: 14px; letter-spacing: 0.1em; padding-top: 4px; }
.acc__panel { overflow: hidden; }
.acc__panel[hidden] { display: none; }
.acc__panel-inner { padding: 0 0 24px 40px; color: var(--c-text-sub); font-size: 16px; line-height: 1.9; }

/* --- 展示（biotope） ----------------------------------------------------- */
.exhibit + .exhibit { margin-top: 96px; }
.exhibit__head { border-bottom: 1px solid var(--c-accent); padding-bottom: 16px; margin-bottom: 32px; }
.exhibit__head h2 { margin-top: 8px; }
.exhibit__points { background: var(--c-accent-pale); padding: 26px 30px; margin-bottom: 32px; }
.exhibit__points h3 { font-size: 15px; letter-spacing: 0.1em; margin-bottom: 12px; color: var(--c-text); }
.exhibit__points li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.8; color: var(--c-text); }
.exhibit__points li + li { margin-top: 6px; }
.exhibit__points li::before { content: ""; position: absolute; left: 0; top: 14px; width: 10px; height: 1px; background: var(--c-accent); }
.exhibit__body p + p { margin-top: 1.6em; }
.exhibit__figure { margin: 36px 0 0; }
.exhibit__figure figcaption { margin-top: 8px; }

/* --- フォーム ------------------------------------------------------------ */
.form__row + .form__row { margin-top: 28px; }
.form__label { display: block; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.form__label span { color: var(--c-accent); font-size: 13px; margin-left: 8px; font-weight: 400; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form select, .form textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--c-text);
  border: 1px solid var(--c-rule); background: var(--c-base); padding: 13px 14px; min-height: 48px;
}
.form textarea { min-height: 170px; line-height: 1.8; resize: vertical; }
.form__help { font-size: 14px; color: var(--c-text-sub); margin-top: 6px; }
.form__notice { border: 1px solid var(--c-accent); background: var(--c-accent-pale); color: var(--c-text); padding: 16px 20px; font-size: 15px; line-height: 1.8; margin-bottom: 36px; }
.form__submit { margin-top: 36px; }

/* 相談の入口 3つ */
.entry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.entry__item { border: 1px solid var(--c-rule); padding: 30px 26px; }
.entry__icon { width: 40px; height: 40px; margin-bottom: 16px; }
.entry__item h3 { font-size: 18px; }
.entry__item p { margin-top: 8px; font-size: 15px; color: var(--c-text-sub); line-height: 1.8; }

/* 連絡先 */
.contact-lines { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-line { border: 1px solid var(--c-rule); padding: 28px; display: flex; gap: 18px; align-items: flex-start; }
.contact-line img { width: 34px; height: 34px; flex: none; }
.contact-line__label { font-size: 13px; letter-spacing: 0.1em; color: var(--c-text-sub); }
.contact-line__value { font-family: var(--font-serif); font-size: 26px; line-height: 1.4; font-weight: 600; }
.contact-line__value a { color: var(--c-text); text-decoration: none; }
.contact-line__value a:hover { color: var(--c-accent); }

/* --- CTA帯 --------------------------------------------------------------- */
.ctaband { position: relative; overflow: hidden; }
.ctaband__bg { position: absolute; inset: 0; }
.ctaband__bg img { width: 100%; height: 100%; object-fit: cover; }
.ctaband__inner { position: relative; padding: 84px 0; text-align: center; background: rgba(255,255,255,0.86); }
.ctaband__title { font-family: var(--font-serif); font-size: 30px; line-height: 1.5; font-weight: 600; }
.ctaband__lead { margin-top: 12px; color: var(--c-text-sub); font-size: 16px; }
.ctaband .btn-row { justify-content: center; margin-top: 28px; }

/* --- フッター ------------------------------------------------------------ */
.footer { border-top: 1px solid var(--c-rule); padding: 72px 0 40px; background: var(--c-base); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; }
.footer__h { font-size: 13px; letter-spacing: 0.15em; color: var(--c-text-sub); margin-bottom: 16px; }
.footer__name { font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.footer address { font-style: normal; font-size: 15px; line-height: 1.9; color: var(--c-text-sub); }
.footer address a { color: var(--c-text); text-decoration: none; }
.footer__list li { margin-bottom: 10px; }
.footer__list a { color: var(--c-text); text-decoration: none; font-size: 15px; }
.footer__list a:hover { color: var(--c-accent); }
.footer__bottom { margin-top: 56px; border-top: 1px solid var(--c-rule); padding-top: 24px; }
.footer__demo { font-size: 13px; line-height: 1.9; color: var(--c-text-sub); background: var(--c-base-sub); padding: 16px 20px; }
.footer__copy { font-size: 12px; color: var(--c-text-sub); margin-top: 18px; letter-spacing: 0.04em; }

/* --- 404 ----------------------------------------------------------------- */
.nf { padding: 120px 0; text-align: center; }
.nf p { margin-top: 18px; color: var(--c-text-sub); }
.nf .btn-row { justify-content: center; margin-top: 36px; }

/* --- 基礎層アニメーションの初期状態 --------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); }
.js-off .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 1080px) {
  .header__nav ul { gap: 18px; }
  .header__nav a { font-size: 14px; }
  .story__grid { grid-template-columns: 260px 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --sp-section: 80px; --sp-panel: 32px; }
  h1, .h1 { font-size: 32px; }
  h2, .h2 { font-size: 25px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .svc__grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .entry { grid-template-columns: 1fr; }
  .contact-lines { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__box { padding: 32px 30px; }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 36px); }
  body { padding-top: var(--header-h-sm); }
  .header { height: var(--header-h-sm); }
  .header.is-compact { height: var(--header-h-sm); }
  .header__inner { width: calc(100% - 24px); gap: 8px; }
  /* 社名は2行に折り返し、電話CTAを画面内に必ず収める */
  .header__logo { font-size: 13px; line-height: 1.3; white-space: normal; max-width: 132px; flex: 0 1 auto; }
  .header__logo span { display: none; }
  .header__nav {
    position: fixed; inset: var(--header-h-sm) 0 auto 0; background: var(--c-base);
    border-bottom: 1px solid var(--c-rule); padding: 12px 18px 20px; display: none;
  }
  .header__nav.is-open { display: block; }
  .header__nav ul { flex-direction: column; gap: 0; }
  .header__nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--c-rule); font-size: 16px; min-height: 44px; }
  .header__toggle {
    display: flex; align-items: center; justify-content: center; flex: none;
    margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--c-rule);
  }
  .header__toggle span { display: block; width: 18px; height: 1px; background: var(--c-text); position: relative; }
  .header__toggle span::before, .header__toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: var(--c-text); }
  .header__toggle span::before { top: -6px; } .header__toggle span::after { top: 6px; }
  .header__tel { margin-left: 0; padding: 6px 10px; min-height: 44px; flex: none; }
  .header__tel small { display: none; }
  .header__tel strong { font-size: 13px; letter-spacing: -0.01em; }

  /* 連絡先カード：メールアドレスがはみ出さないようにする */
  .contact-line { padding: 22px 18px; gap: 14px; }
  .contact-line img { width: 28px; height: 28px; }
  .contact-line > div { min-width: 0; }
  .contact-line__value { font-size: 19px; overflow-wrap: anywhere; word-break: break-word; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero__media { height: auto; min-height: 0; }
  .hero__inner { position: static; }
  .hero__box { max-width: none; background: var(--c-base); padding: 28px 0 0; border-left: 0; border-top: 3px solid var(--c-accent); margin-top: 0; }
  .hero .container { width: calc(100% - 36px); }
  .scrollcue { display: none; }
  .pagehead__media { height: 190px; }

  /* 主役層：ピン留めを使わず縦積みカードへ */
  .story__pin { display: none; }
  .story__cards { display: block; }
  .story__outro { margin-top: 48px; }
  .story__outro p { font-size: 20px; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat__num { font-size: 36px; }
  .svc__list { grid-template-columns: 1fr; }
  .table th { width: 130px; padding-left: 12px; font-size: 15px; }
  .table td { font-size: 15px; }
  .table--compare th, .table--compare td { font-size: 14px; padding: 12px 8px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .award { padding: 26px 22px; }
  .award__title { font-size: 21px; }
  .ctaband__inner { padding: 56px 0; }
  .ctaband__title { font-size: 23px; }
  .acc__panel-inner { padding-left: 0; }
}

/* ==========================================================================
   prefers-reduced-motion：全アニメーションを無効化
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .card-hover:hover { transform: none; box-shadow: none; }
  .zoom img, a:hover .zoom img, .zoom:hover img { transform: none; }
  .scrollcue i { animation: none; }
  /* 主役層はピン留めを使わず縦積みカードへ */
  .story__pin { display: none; }
  .story__cards { display: block; }
}

@media print {
  .header, .ctaband, .scrollcue { display: none; }
  body { padding-top: 0; }
}
