@charset "UTF-8";
/* =========================================================
   えねっとハウス リデザイン版 スタイルシート
   設計: _analysis/redesign-brief.md
   ブランド: オレンジ #f58220 / 参考デザイン言語: anshinrai 風
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  --color-primary: #f58220;
  --color-primary-light: #f9a14e;
  --color-primary-dark: #d96b0e;
  --color-line: #06c755;
  --color-text: #2a2a2a;
  --color-heading: #373737;
  --color-muted: #6b7280;
  --color-bg: #ffffff;
  --color-cream: #fdf6ec;
  --color-gray: #f5f5f5;
  --color-border: #e8e2d8;
  --shadow-card: 4px 6px 16px rgba(0, 0, 0, .07);
  --shadow-card-hover: 6px 8px 22px rgba(245, 130, 32, .22);
  --radius-btn: 6px;
  --radius-box: 14px;
  --container: 1180px;
  --gutter: 5%;
  --header-h: 132px;
  --header-h-sp: 64px;
  --ease: .25s ease;
  --ff-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --ff-en: "Montserrat", sans-serif;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; scroll-padding-top: var(--header-h-sp); }
body {
  margin: 0;
  font-family: var(--ff-jp);
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--color-text);
  letter-spacing: .04em;
  font-feature-settings: "palt";
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 汎用 ---------- */
.container { width: 90%; max-width: var(--container); margin-inline: auto; }
.section { padding: 80px 0; }
.section--cream { background: var(--color-cream); }
.section--gray { background: var(--color-gray); }
.tac { text-align: center; }

/* 共通見出し: 英字ラベル + 和文見出し */
.headline { text-align: center; margin-bottom: 48px; }
.headline__en {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-en); font-weight: 700; font-style: italic;
  font-size: 1.5rem; letter-spacing: .08em; color: var(--color-primary);
  text-transform: uppercase;
}
.headline__en::before, .headline__en::after {
  content: ""; width: 26px; height: 2px; background: var(--color-primary);
  display: inline-block;
}
.headline__en::before { transform: rotate(60deg); }
.headline__en::after { transform: rotate(-60deg); }
.headline__ja {
  font-size: 3rem; font-weight: 700; line-height: 1.4; color: var(--color-heading);
  letter-spacing: .08em; margin-top: 10px;
}
.headline__lead { margin-top: 16px; color: var(--color-muted); font-size: 1.6rem; }
.headline--light .headline__ja { color: #fff; }
.headline--light .headline__en { color: #fff425; }
.headline--light .headline__en::before,
.headline--light .headline__en::after { background: #fff425; }
.headline--light .headline__lead { color: rgba(255, 255, 255, .92); }

/* ボタン文法: 2トーン斜め分割グラデ + 押し込みhover */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  position: relative;
  min-width: 220px; padding: 16px 38px 16px 28px;
  font-weight: 600; font-size: 1.6rem; color: #fff; text-align: center;
  border-radius: var(--radius-btn);
  background: linear-gradient(170deg, var(--color-primary) 50%, var(--color-primary-light) 50%);
  box-shadow: 0 3px 0 rgba(217, 107, 14, .55);
  transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
}
.btn::after {
  content: ""; position: absolute; right: 16px; top: 50%;
  width: 9px; height: 9px; border-top: 2px solid #fff; border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover { transform: translateY(3px); box-shadow: 0 0 0 rgba(217, 107, 14, 0); opacity: .94; }
.btn--line {
  background: linear-gradient(170deg, var(--color-line) 50%, #2bd673 50%);
  box-shadow: 0 3px 0 rgba(4, 150, 70, .5);
}
.btn--ghost {
  background: #fff; color: var(--color-primary);
  border: 2px solid var(--color-primary); box-shadow: none;
}
.btn--ghost::after { border-color: var(--color-primary); }
.btn--ghost:hover { background: var(--color-cream); transform: translateY(0); }
.btn--lg { min-width: 280px; padding: 20px 44px 20px 32px; font-size: 1.7rem; }

/* =========================================================
   ヘッダー
   ========================================================= */
.header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 1px 6px rgba(0, 0, 0, .06); }
.header__utility {
  display: flex; align-items: center; justify-content: space-between;
  width: 90%; max-width: var(--container); margin-inline: auto; padding: 14px 0;
}
.header__logo img { width: 220px; }
.header__contact { display: flex; align-items: center; gap: 22px; }
.header__tel { text-align: right; line-height: 1.3; }
.header__tel a { font-family: var(--ff-en); font-weight: 700; font-size: 2.6rem; color: var(--color-heading); letter-spacing: .02em; }
.header__tel a::before { content: "\260E"; color: var(--color-primary); margin-right: 6px; font-size: 2.2rem; }
.header__tel span { display: block; font-size: 1.1rem; color: var(--color-muted); letter-spacing: .02em; }
.header__cta { display: flex; gap: 10px; }
.header__cta .btn { min-width: 0; padding: 12px 22px; font-size: 1.4rem; }
.header__cta .btn::after { display: none; }

.gnav__list { display: flex; border-top: 1px solid var(--color-border); }
.gnav__item { flex: 1; text-align: center; border-left: 1px solid var(--color-border); }
.gnav__item:last-child { border-right: 1px solid var(--color-border); }
.gnav__item a { display: flex; flex-direction: column; gap: 3px; padding: 14px 6px; transition: background var(--ease); }
.gnav__item a:hover { background: var(--color-cream); }
.gnav__ja { font-size: 1.5rem; font-weight: 500; color: var(--color-heading); }
.gnav__en { font-family: var(--ff-en); font-size: .95rem; font-weight: 600; letter-spacing: .06em; color: var(--color-primary); text-transform: uppercase; }

/* ハンバーガー(SPのみ) */
.hamburger { display: none; }

/* ドロワー(モバイル専用)— デスクトップでは非表示 */
.drawer, .drawer-backdrop { display: none; }

/* =========================================================
   ヒーロー / ファーストビュー
   ========================================================= */
.hero { position: relative; background: var(--color-cream); }
.hero__img { display: block; width: 100%; height: auto; object-fit: cover; }
.hero__copy { width: 90%; max-width: var(--container); margin: 0 auto; padding: 44px 0 8px; text-align: center; }
.hero__en { font-family: var(--ff-en); font-weight: 600; letter-spacing: .18em; color: var(--color-primary); font-size: 1.4rem; }
.hero__title { font-size: 3.2rem; font-weight: 700; line-height: 1.45; color: var(--color-heading); margin-top: 10px; }
.hero__title strong { color: var(--color-primary); }
.hero__lead { margin-top: 18px; font-size: 1.7rem; color: var(--color-text); }
.hero__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.hero__tags li { font-size: 1.3rem; padding: 6px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--color-primary); color: var(--color-primary-dark); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.hero__cta { position: absolute; left: 19%; bottom: 4.5%; transform: translateX(-50%); margin: 0; display: flex; flex-direction: column; gap: 9px; width: min(31%, 236px); z-index: 2; }
.hero__cta .btn { width: 100%; min-width: 0; padding: 10px 14px; font-size: 1.4rem; box-shadow: 0 5px 14px rgba(0, 0, 0, .16); }
@media (max-width: 768px) {
  .hero__cta { position: static; transform: none; width: auto; left: auto; bottom: auto; padding: 16px 5% 20px; }
  .hero__cta .btn { padding: 14px 16px; font-size: 1.6rem; }
}

/* =========================================================
   お客様の声(高評価)
   ========================================================= */
.voice__note { text-align: center; color: var(--color-muted); font-size: 1.3rem; margin-bottom: 22px; }
/* お客様の声: 縦幅コンパクト＆全幅の自動スクロール（無限ループ） */
#eh-reviews { padding: 32px 0 38px; }
#eh-reviews .headline { margin-bottom: 12px; }
#eh-reviews .headline__ja { margin-top: 6px; }
#eh-reviews .voice__note { margin-bottom: 16px; }
.voice-marquee {
  position: relative; overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.voice-track { display: flex; width: max-content; animation: voice-scroll 40s linear infinite; }
.voice-marquee:hover .voice-track, .voice-marquee:focus-within .voice-track { animation-play-state: paused; }
@keyframes voice-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.voice-card { background: #fff; border-radius: var(--radius-box); box-shadow: var(--shadow-card); padding: 26px; transition: box-shadow var(--ease), transform var(--ease); }
.voice-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.voice-card__head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.voice-card__name { font-weight: 700; font-size: 1.7rem; color: var(--color-heading); }
.voice-card__area { font-size: 1.3rem; color: var(--color-muted); }
.voice-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.voice-card__tags span { font-size: 1.1rem; padding: 3px 12px; border-radius: 999px; border: 1px solid var(--color-primary); color: var(--color-primary-dark); }
.voice-card__stars { color: #f5b400; font-size: 1.6rem; letter-spacing: .1em; }
.voice-card__text { margin-top: 10px; font-size: 1.45rem; line-height: 1.85; }
/* マーキー内カードは固定幅でコンパクトに */
.voice-track .voice-card { flex: 0 0 300px; width: 300px; margin-right: 20px; padding: 18px 22px; }
.voice-track .voice-card:hover { transform: none; }
.voice-track .voice-card__tags { margin: 8px 0; }
.voice-track .voice-card__stars { font-size: 1.5rem; }
.voice-track .voice-card__text { margin-top: 8px; font-size: 1.35rem; line-height: 1.7; }
@media (prefers-reduced-motion: reduce) { .voice-track { animation: none; } }

/* =========================================================
   取扱商品(2つの選び方)
   ========================================================= */
#eh-choice { padding-top: 44px; }
#eh-choice .headline { margin-bottom: 18px; }
.choice__lead { text-align: center; color: var(--color-muted); margin-bottom: 32px; }
.choice__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.choice-card { position: relative; background: #fff; border-radius: var(--radius-box); overflow: hidden; box-shadow: var(--shadow-card); transition: box-shadow var(--ease), transform var(--ease); display: flex; flex-direction: row; align-items: stretch; cursor: pointer; }
.choice-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.choice-card__iconwrap { flex: none; width: 150px; display: flex; align-items: center; justify-content: center; padding: 16px; }
.choice-card__iconwrap--solar { background: #fbecd4; }
.choice-card__iconwrap--window { background: #e3edfa; }
.choice-card__icon-img { width: 100px; height: 100px; }
.choice-card__body { padding: 22px 26px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
.choice-card__title { font-size: 2.2rem; font-weight: 700; color: var(--color-heading); margin: 0; line-height: 1.35; letter-spacing: .01em; }
.choice-card__title small { display: block; font-size: 1.75rem; color: var(--color-primary); font-weight: 700; margin-top: 6px; }
.choice-card--window .choice-card__title small { color: #1b73c9; }
.choice-card__text { font-size: 1.45rem; color: var(--color-text); margin-top: 11px; }
.choice-card__more { margin-top: 14px; font-weight: 600; color: var(--color-primary); align-self: flex-start; }
.choice-card__more--blue { color: #1b73c9; }
.choice-card__more::after { content: " →"; }
/* カード全体をクリック可能に(stretched link) */
.choice-card__more::before { content: ""; position: absolute; inset: 0; z-index: 1; }
@media (max-width: 768px) {
  .choice-card__iconwrap { width: 104px; padding: 12px; }
  .choice-card__icon-img { width: 70px; height: 70px; }
  .choice-card__body { padding: 16px 16px; }
  .choice-card__title { font-size: 1.65rem; }
  .choice-card__text { font-size: 1.3rem; }
}

/* =========================================================
   選ばれる理由(ジグザグ)
   ========================================================= */
.reason-list { display: flex; flex-direction: column; gap: 64px; }
.reason { display: grid; grid-template-columns: 48% 1fr; gap: 48px; align-items: center; }
.reason:nth-child(even) .reason__media { order: 2; }
.reason__media img { width: 100%; border-radius: var(--radius-box); box-shadow: var(--shadow-card); }
.reason__num { font-family: var(--ff-en); font-style: italic; font-weight: 700; font-size: 1.6rem; color: var(--color-primary); letter-spacing: .06em; }
.reason__title { font-size: 2.3rem; font-weight: 700; line-height: 1.5; color: var(--color-heading); margin: 8px 0 14px; }
.reason__title strong { background: linear-gradient(transparent 62%, #ffe49c 62%); }
.reason__text { font-size: 1.5rem; line-height: 1.95; }

/* =========================================================
   暮らしの変化(QOLカード) — 内窓ページ
   ========================================================= */
.qol__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.qol-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-card); padding: 22px 24px 24px; display: flex; flex-direction: column; transition: box-shadow var(--ease), transform var(--ease); }
.qol-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.qol-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.qol-card__num { width: 38px; height: 38px; flex: none; border-radius: 50%; background: #7a5c41; color: #fff; font-family: var(--ff-en); font-weight: 700; font-size: 1.7rem; display: flex; align-items: center; justify-content: center; }
.qol-card__title { font-size: 2.2rem; font-weight: 700; color: #4a3f2f; letter-spacing: .04em; }
.qol-card__ico { margin-left: auto; line-height: 0; }
.qol-card__ico svg { width: 30px; height: 30px; }
.qol-card__viz img { width: 100%; display: block; border-radius: 12px; }
.qol-card__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.qol-col { text-align: center; }
.qol-tag { display: inline-block; color: #fff; font-weight: 700; font-size: 1.3rem; padding: 4px 18px; border-radius: 6px; }
.qol-tag--before { background: #5b7c93; }
.qol-tag--after { background: var(--color-primary); }
.qol-col__cap { margin-top: 9px; font-size: 1.35rem; line-height: 1.6; color: #5b6b78; }
.qol-col--after .qol-col__cap { color: #b5732a; }
.qol-col__metric { margin-top: 8px; font-size: 1.4rem; color: #5b6b78; display: flex; align-items: center; justify-content: center; gap: 6px; line-height: 1.4; }
.qol-col--after .qol-col__metric { color: #d96b0e; font-weight: 700; }
.qol-col__metric svg { width: 22px; height: 22px; flex: none; }
.qol-col__metric b { font-size: 1.35em; }
.qol-card__bar { margin-top: 18px; background: var(--color-primary); color: #fff; font-weight: 700; text-align: center; padding: 11px 8px; border-radius: 8px; font-size: 1.5rem; }
.qol-note { text-align: center; color: var(--color-muted); font-size: 1.25rem; margin-top: 22px; }
@media (max-width: 768px) {
  .qol__grid { grid-template-columns: 1fr; gap: 18px; }
  .qol-card__title { font-size: 2rem; }
  .qol-col__cap { font-size: 1.25rem; }
  .qol-col__metric { font-size: 1.3rem; }
}

/* =========================================================
   ご相談の流れ(ステップ) / 補助金×電気代(W)
   ========================================================= */
.flow { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; }
.flow-step { position: relative; background: #fff; border-radius: 14px; box-shadow: var(--shadow-card); padding: 30px 20px 24px; text-align: center; }
.flow-step:not(:last-child)::after { content: ""; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 14px solid var(--color-primary); border-top: 11px solid transparent; border-bottom: 11px solid transparent; z-index: 2; }
.flow-step__num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--color-primary); color: #fff; font-family: var(--ff-en); font-weight: 700; font-size: 1.6rem; display: flex; align-items: center; justify-content: center; }
.flow-step__icon { display: inline-flex; width: 66px; height: 66px; border-radius: 50%; background: var(--color-cream); align-items: center; justify-content: center; margin-bottom: 12px; }
.flow-step__icon svg { width: 34px; height: 34px; }
.flow-step__title { font-size: 1.65rem; font-weight: 700; color: var(--color-heading); }
.flow-step__text { margin-top: 8px; font-size: 1.35rem; color: var(--color-text); line-height: 1.7; }
@media (max-width: 768px) {
  .flow { grid-template-columns: 1fr; gap: 30px; }
  .flow-step:not(:last-child)::after { right: 50%; top: auto; bottom: -22px; transform: translateX(50%); border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 15px solid var(--color-primary); border-bottom: none; }
}

.weco { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.weco-card { position: relative; background: #fff; border-radius: 16px; box-shadow: var(--shadow-card); padding: 28px 28px 26px; }
.weco-tag { position: absolute; top: 16px; right: 16px; font-size: 1.1rem; font-weight: 700; color: var(--color-muted); background: var(--color-gray); border-radius: 999px; padding: 3px 12px; }
.weco-card__title { font-size: 1.9rem; font-weight: 700; color: var(--color-heading); }
.weco-card__title strong { color: var(--color-primary-dark); }
.weco-card__text { margin-top: 16px; font-size: 1.4rem; color: var(--color-text); line-height: 1.85; }
.weco-bar { margin: 22px 0 4px; }
.weco-bar__track { display: flex; height: 50px; border-radius: 8px; overflow: hidden; }
.weco-bar__seg { display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.3rem; }
.weco-bar__seg--sub { background: var(--color-primary); }
.weco-bar__seg--pay { background: #5b6b78; }
.weco-bar__base { margin-top: 8px; font-size: 1.25rem; color: var(--color-muted); text-align: center; }
.weco-bars { display: flex; align-items: flex-end; justify-content: center; gap: 22px; height: 186px; margin: 16px 0 4px; }
.weco-col { display: flex; flex-direction: column; align-items: center; }
.weco-col__bar { width: 66px; border-radius: 8px 8px 0 0; display: block; }
.weco-col__bar--before { height: 150px; background: #9aa3a8; }
.weco-col__bar--after { height: 92px; background: var(--color-primary); }
.weco-col__label { margin-top: 8px; font-size: 1.35rem; font-weight: 700; color: var(--color-heading); }
.weco-down { align-self: center; color: var(--color-primary-dark); font-weight: 700; font-size: 1.35rem; }
.weco-note { margin-top: 24px; }
/* 補助金 大型バナー */
.subsidy-banner { position: relative; overflow: hidden; text-align: center; color: #fff; border-radius: 18px; padding: 26px 24px 22px; margin-bottom: 30px; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); box-shadow: 0 6px 18px rgba(217, 107, 14, .25); }
.subsidy-banner__pre { font-size: clamp(1.4rem, 1.9vw, 1.9rem); font-weight: 700; letter-spacing: .02em; }
.subsidy-banner__pre span { background: #fff; color: var(--color-primary-dark); border-radius: 6px; padding: 2px 10px; margin-left: 4px; }
.subsidy-banner__main { display: flex; align-items: center; justify-content: center; gap: 6px; line-height: .95; margin: 6px 0 2px; }
.subsidy-banner__label { font-size: clamp(2.4rem, 4.4vw, 4rem); font-weight: 800; letter-spacing: .01em; }
.subsidy-banner__label em { font-style: normal; font-size: .72em; margin-left: .15em; }
.subsidy-banner__num { font-family: var(--ff-en); font-weight: 800; font-size: clamp(6.5rem, 15vw, 12.5rem); color: #ffe21a; letter-spacing: -.03em; text-shadow: 0 5px 0 rgba(0, 0, 0, .12); }
.subsidy-banner__unit { font-size: clamp(2.6rem, 4.6vw, 4.2rem); font-weight: 800; }
.subsidy-banner__excl { font-size: clamp(3rem, 5.4vw, 5rem); font-weight: 800; color: #ffe21a; }
.subsidy-banner__sub { margin-top: 4px; font-size: clamp(1.5rem, 1.9vw, 1.9rem); font-weight: 700; }
.subsidy-banner__sub strong { background: #fff; color: var(--color-primary-dark); border-radius: 6px; padding: 2px 10px; }
.subsidy-banner__note { margin: 14px auto 0; max-width: 820px; font-size: 1.15rem; line-height: 1.65; opacity: .92; }
@media (max-width: 768px) {
  .weco { grid-template-columns: 1fr; gap: 18px; }
  .subsidy-banner__pre { font-size: 1.35rem; }
  .subsidy-banner__pre span { display: inline-block; margin-top: 4px; }
  .subsidy-banner__main { gap: 4px; }
  .subsidy-banner__note { font-size: 1.1rem; text-align: left; }
}

/* 補助金 スリムバー(ロゴ帯直下) */
.subsidy-bar { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #fff; }
.subsidy-bar__inner { width: 90%; max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: clamp(12px, 2vw, 28px); flex-wrap: wrap; padding: 10px 0; }
.subsidy-bar__tag { flex: none; background: #fff; color: var(--color-primary-dark); font-weight: 700; font-size: 1.3rem; padding: 5px 14px; border-radius: 6px; }
.subsidy-bar__main { display: flex; align-items: center; gap: 4px; margin: 0; font-weight: 800; font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1; }
.subsidy-bar__main em { font-style: normal; font-size: .68em; }
.subsidy-bar__main b { font-family: var(--ff-en); color: #ffe21a; font-size: clamp(3.6rem, 6vw, 5.2rem); letter-spacing: -.03em; text-shadow: 0 3px 0 rgba(0, 0, 0, .12); }
.subsidy-bar__excl { color: #ffe21a; }
.subsidy-bar__note { font-size: 1.1rem; opacity: .92; }
@media (max-width: 768px) {
  .subsidy-bar__inner { gap: 6px 14px; padding: 9px 0; }
  .subsidy-bar__note { width: 100%; text-align: center; }
}

/* こんな方におすすめ(チェックリスト) */
.checklist { list-style: none; max-width: 960px; margin: 0 auto; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check-item { display: flex; align-items: center; gap: 18px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-card); padding: 18px 26px; }
.check-item__icon { flex: none; width: 50px; height: 50px; border-radius: 50%; background: var(--color-cream); display: flex; align-items: center; justify-content: center; }
.check-item__icon svg { width: 28px; height: 28px; }
.check-item__text { font-size: 1.55rem; font-weight: 600; color: var(--color-heading); line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
  .checklist { grid-template-columns: 1fr; }
  .check-item { padding: 14px 18px; gap: 14px; }
  .check-item__icon { width: 42px; height: 42px; }
  .check-item__icon svg { width: 24px; height: 24px; }
  .check-item__text { font-size: 1.4rem; }
}

/* 認定・加盟バッジ帯(ヒーロー直下) */
.trust-strip { background: #fff; border-bottom: 1px solid var(--color-border); }
.trust-strip__inner { width: 90%; max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.6vw, 36px); flex-wrap: wrap; padding: 16px 0; }
.trust-strip__label { font-size: 1.3rem; font-weight: 700; color: var(--color-heading); line-height: 1.4; letter-spacing: .02em; }
.trust-group { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; margin: 0; }
.trust-badge img { height: 42px; width: auto; display: block; }
.trust-badge--sq img { height: 50px; }
.trust-badge__cap { font-size: 1.05rem; font-weight: 700; color: var(--color-muted); background: var(--color-gray); border-radius: 999px; padding: 2px 12px; }
.trust-badge__cap--qual { color: var(--color-primary-dark); background: var(--color-cream); }
.trust-badge__cap--empty { background: none; color: transparent; }
.trust-div { width: 1px; align-self: stretch; min-height: 56px; background: var(--color-border); }
@media (max-width: 768px) {
  .trust-strip__inner { gap: 12px 20px; padding: 12px 0; }
  .trust-strip__label { width: 100%; text-align: center; font-size: 1.2rem; }
  .trust-group { gap: 16px; }
  .trust-badge img { height: 32px; }
  .trust-badge--sq img { height: 38px; }
  .trust-badge__cap { font-size: 1rem; padding: 2px 10px; }
  .trust-div { display: none; }
}

/* =========================================================
   アフターフォロー(オレンジ帯)
   ========================================================= */
.after { background: var(--color-primary); color: #fff; position: relative; }
.after__lead { text-align: center; max-width: 760px; margin: 0 auto 40px; font-size: 1.6rem; line-height: 2; }
.after__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 44px; }
/* 白カード＋2色ストロークアイコン（渋谷区風・コラムのジャンルアイコンと同言語） */
.after-item { background: #fff; border-radius: 16px; padding: 26px 16px 22px; text-align: center; box-shadow: 0 6px 20px rgba(0, 0, 0, .12); transition: transform .25s ease, box-shadow .25s ease; }
.after-item:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0, 0, 0, .18); }
.after-item svg { width: 52px; height: 52px; margin: 0 auto 12px; display: block; }
.after-item img { width: 48px; height: 48px; margin-bottom: 12px; }
.after-item__label { font-size: 1.2rem; font-weight: 700; color: var(--color-primary-dark); }
.after-item__title { font-size: 1.7rem; font-weight: 700; margin-top: 2px; color: var(--color-heading); }
.after__btnwrap { text-align: center; }
.after .btn--ghost { background: #fff; }

/* =========================================================
   施工事例
   ========================================================= */
.case__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.case-card { background: #fff; border-radius: var(--radius-box); overflow: hidden; box-shadow: var(--shadow-card); transition: box-shadow var(--ease), transform var(--ease); }
.case-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.case-card__img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.case-card__body { padding: 18px 20px 22px; }
.case-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.case-card__tags span { font-size: 1.1rem; padding: 2px 10px; border-radius: 999px; background: var(--color-cream); color: var(--color-primary-dark); }
.case-card__title { font-size: 1.55rem; font-weight: 600; line-height: 1.5; color: var(--color-heading); }

/* =========================================================
   情報発信(コラム・お知らせ)
   ========================================================= */
/* 情報発信（お役立ちコラム / お知らせ）：洗練カード */
.info-sec { padding-top: 52px; }
.info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-box); box-shadow: var(--shadow-card); padding: 24px 30px 18px; }
.info-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; padding-bottom: 15px; margin-bottom: 4px; border-bottom: 1px solid var(--color-border); }
.info-card__title { flex-shrink: 0; }
.info-card__icon { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--color-cream); }
.info-card__icon svg { width: 22px; height: 22px; }
.info-card__title { display: flex; align-items: baseline; gap: 10px; font-size: 1.9rem; font-weight: 700; color: var(--color-heading); }
.info-card__en { font-family: var(--ff-en); font-size: 1.15rem; font-weight: 600; letter-spacing: .04em; color: var(--color-primary); }
.info-card__more { margin-left: auto; font-family: var(--ff-en); font-size: 1.2rem; font-weight: 600; color: var(--color-primary); white-space: nowrap; transition: color .2s ease; }
.info-card__more::after { content: " ›"; }
.info-card__more:hover { color: var(--color-primary-dark); }
.info-feed { display: flex; flex-direction: column; }
.info-feed li + li { border-top: 1px solid var(--color-gray); }
.info-feed a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 15px 10px; border-radius: 10px; transition: background .2s ease; }
.info-feed a:hover { background: rgba(245, 130, 32, .06); }
.info-feed time { font-family: var(--ff-en); font-weight: 600; font-size: 1.2rem; color: var(--color-primary-dark); background: var(--color-cream); border-radius: 999px; padding: 4px 12px; white-space: nowrap; }
.info-feed__txt { font-size: 1.45rem; font-weight: 500; line-height: 1.6; color: var(--color-text); }
.info-feed a:hover .info-feed__txt { color: var(--color-primary-dark); }
.info-feed a::after {
  content: ""; width: 18px; height: 18px; background: var(--color-primary-light);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M9 6l6 6-6 6'/%3E%3C/svg%3E") center/12px no-repeat;
  transition: transform .2s ease, background .2s ease;
}
.info-feed a:hover::after { transform: translateX(3px); background: var(--color-primary); }
.info-card__empty { padding: 15px 10px; font-size: 1.35rem; color: var(--color-muted); }
@media (max-width: 560px) {
  .info-card { padding: 18px 18px 12px; }
  .info-feed a { grid-template-columns: auto 1fr; gap: 10px; padding: 13px 6px; }
  .info-feed a::after { display: none; }
  .info-feed__txt { font-size: 1.35rem; }
}

/* =========================================================
   最終CTA帯
   ========================================================= */
.cta { background: var(--color-cream); text-align: center; }
.cta__title { font-size: 2.4rem; font-weight: 700; color: var(--color-heading); }
.cta__lead { margin: 14px 0 28px; color: var(--color-text); }
.cta__tel { font-family: var(--ff-en); font-weight: 700; font-size: 3.4rem; color: var(--color-heading); display: inline-block; margin-bottom: 6px; }
.cta__tel::before { content: "\260E"; color: var(--color-primary); margin-right: 8px; }
.cta__hours { font-size: 1.3rem; color: var(--color-muted); margin-bottom: 24px; }
.cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* =========================================================
   フッター
   ========================================================= */
.footer { background: #2a2a2a; color: #d7d7d7; padding: 56px 0 0; }
.footer__top { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.footer__logo { background: #fff; padding: 10px 16px; border-radius: 8px; display: inline-block; }
.footer__logo img { width: 200px; }
.footer__company { margin-top: 18px; font-size: 1.35rem; line-height: 1.9; }
.footer__tel { font-family: var(--ff-en); font-weight: 700; font-size: 2.4rem; color: #fff; }
.footer__sitemap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 24px; }
.footer__sitemap a { display: block; padding: 7px 0; font-size: 1.35rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer__sitemap a:hover { color: var(--color-primary-light); }
.footer__column-btn { margin-top: 24px; }
.footer__column-btn .btn { min-width: 260px; }
@media (max-width: 768px) { .footer__column-btn .btn { width: 100%; } }
.footer__bottom { text-align: center; margin-top: 48px; padding: 18px 0; font-size: 1.2rem; background: rgba(0, 0, 0, .25); }

/* =========================================================
   SP下部固定CTAバー
   ========================================================= */
.sp-cta { display: none; }

/* =========================================================
   レスポンシブ(768px)
   ========================================================= */
@media (max-width: 768px) {
  :root { --header-h: var(--header-h-sp); }
  .section { padding: 48px 0; }
  .headline__ja { font-size: 2.1rem; }
  .hero__title { font-size: 2.2rem; }
  .hero__lead { font-size: 1.5rem; }

  /* ヘッダー */
  .header__utility { padding: 10px 0; }
  .header__logo img { width: 150px; }
  .header__contact { display: none; }
  .gnav { display: none; }
  .hamburger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; z-index: 120;
  }
  .hamburger span { display: block; width: 26px; height: 2px; background: var(--color-heading); transition: var(--ease); margin: 0 auto; }
  .is-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .is-open .hamburger span:nth-child(2) { opacity: 0; }
  .is-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ドロワー */
  .drawer {
    display: block;
    position: fixed; inset: 0 0 0 auto; width: 80%; max-width: 320px;
    background: #fff; transform: translateX(100%); transition: transform .3s ease;
    z-index: 110; padding: 80px 24px 40px; overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .15);
  }
  .is-open .drawer { transform: translateX(0); }
  .drawer__tel { font-family: var(--ff-en); font-weight: 700; font-size: 2.4rem; color: var(--color-heading); display: block; text-align: center; margin-bottom: 16px; }
  .drawer__cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .drawer__cta .btn { width: 100%; min-width: 0; }
  .drawer__nav a { display: block; padding: 14px 6px; border-bottom: 1px solid var(--color-border); }
  .drawer__nav .en { font-family: var(--ff-en); font-size: 1rem; color: var(--color-primary); margin-left: 8px; }
  .drawer-backdrop { display: block; position: fixed; inset: 0; background: rgba(0, 0, 0, .45); opacity: 0; visibility: hidden; transition: var(--ease); z-index: 105; }
  .is-open .drawer-backdrop { opacity: 1; visibility: visible; }

  /* グリッド類を1カラム */
  .voice__grid, .choice__grid, .case__grid, .info__grid { grid-template-columns: 1fr; gap: 18px; }
  .after__grid { grid-template-columns: repeat(2, 1fr); }
  .reason { grid-template-columns: 1fr; gap: 18px; }
  .reason:nth-child(even) .reason__media { order: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__sitemap { grid-template-columns: 1fr 1fr; }
  .cta__tel { font-size: 2.6rem; }

  /* SP固定CTAバー */
  .sp-cta {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .15);
  }
  .sp-cta a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 9px 4px; font-size: 1.1rem; font-weight: 600; color: #fff; }
  .sp-cta__tel { background: var(--color-heading); }
  .sp-cta__line { background: var(--color-line); }
  .sp-cta__form { background: var(--color-primary); }
  .sp-cta svg { width: 20px; height: 20px; fill: currentColor; }
  body { padding-bottom: 56px; }
}

/* 大画面でヒーロー画像が大きすぎないように（左下CTA分の余白を確保しつつ拡大） */
@media (min-width: 769px) {
  .hero__img { max-height: 540px; }
}

/* =========================================================
   下層ページ共通(ページタイトル帯・パンくず・本文プロース)
   ========================================================= */
.page-head {
  position: relative; text-align: center; color: #fff;
  padding: 34px 0; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}
.page-head__en { font-family: var(--ff-en); font-weight: 700; font-size: 1.4rem; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.page-head__ja { font-size: 2.8rem; font-weight: 700; letter-spacing: .08em; margin-top: 6px; }

/* 全幅ヒーロー(二重窓リフォーム・バナー型) */
.reno-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #eef5fc 0%, #dcebfa 58%, #cfe3f8 100%); }
/* 右上の装飾三角 */
.reno-hero::before, .reno-hero::after { content: ""; position: absolute; top: 0; right: 0; width: 0; height: 0; z-index: 2; pointer-events: none; border-style: solid; }
.reno-hero::before { border-width: 0 150px 150px 0; border-color: transparent #1c3f7c transparent transparent; }
.reno-hero::after { border-width: 0 88px 88px 0; border-color: transparent #3f78c9 transparent transparent; }

.reno-hero__inner { display: grid; grid-template-columns: 1.04fr 0.96fr; align-items: stretch; position: relative; z-index: 1; min-height: 480px; }
.reno-hero__content { padding: 40px clamp(20px, 3vw, 44px) 38px clamp(24px, 5vw, 68px); display: flex; flex-direction: column; }

.reno-hero__tag { align-self: flex-start; background: #1c3f7c; color: #fff; font-weight: 700; font-size: clamp(1.4rem, 1.5vw, 1.85rem); padding: 9px 22px; border-radius: 6px; }
.reno-hero__title { margin-top: 16px; font-weight: 800; font-size: clamp(3rem, 4.4vw, 5rem); line-height: 1.2; letter-spacing: .02em; color: #283a4d; }
.reno-hero__title .c-blue { color: #1f4ea0; }
.reno-hero__title .c-orange { color: var(--color-primary); position: relative; }
.reno-hero__lead { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(31, 78, 160, .22); font-size: clamp(1.5rem, 1.7vw, 2.1rem); font-weight: 700; line-height: 1.65; color: #34465c; }
.reno-hero__lead .c-orange { color: var(--color-primary); }
.reno-hero__lead .c-blue { color: #1f4ea0; }

.reno-hero__benefits { display: flex; gap: clamp(8px, 1.4vw, 22px); margin-top: 24px; }
.reno-hero__benefits .rb { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.rb__icon { width: 66px; height: 66px; border-radius: 50%; background: rgba(255, 255, 255, .75); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(31, 78, 160, .12); }
.rb__icon svg { width: 40px; height: 40px; }
.rb__title { margin-top: 10px; font-weight: 700; font-size: clamp(1.4rem, 1.5vw, 1.7rem); color: #1f4ea0; }
.rb__desc { margin-top: 4px; font-size: clamp(1.1rem, 1.15vw, 1.3rem); color: #59687c; line-height: 1.5; }

.reno-hero__note { display: flex; align-items: center; gap: 14px; margin-top: 34px; background: #fff; border-radius: 12px; padding: 13px 22px; box-shadow: 0 3px 12px rgba(31, 78, 160, .1); font-size: clamp(1.25rem, 1.3vw, 1.55rem); color: #34465c; line-height: 1.5; }
.reno-hero__note b { font-weight: 700; }
.reno-hero__note em { font-style: normal; color: var(--color-primary); font-weight: 800; font-size: 1.55em; }
.reno-hero__note svg { width: 34px; height: 34px; flex: none; }

.reno-hero__media { position: relative; align-self: stretch; }
.reno-hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 76% 50%; }
.reno-hero__badge { position: absolute; left: -74px; top: 12%; width: 186px; height: 186px; border-radius: 50%; background: #fff; border: 2px dashed #9cc0ea; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; line-height: 1.45; font-weight: 700; font-size: 1.65rem; color: #1f4ea0; box-shadow: 0 4px 14px rgba(31, 78, 160, .2); z-index: 3; }
.reno-hero__badge b { color: var(--color-primary); font-weight: 800; }

@media (max-width: 768px) {
  .reno-hero__inner { display: block; position: relative; min-height: 0; }
  .reno-hero__content { position: relative; z-index: 1; padding: 30px 6% 28px; }
  .reno-hero::before { border-width: 0 84px 84px 0; }
  .reno-hero::after { border-width: 0 50px 50px 0; }
  .reno-hero__tag { align-self: center; font-size: 1.35rem; }
  .reno-hero__title { text-align: center; font-size: 2.7rem; }
  .reno-hero__lead { text-align: center; font-size: 1.5rem; }
  .reno-hero__benefits { gap: 6px; margin-top: 20px; }
  .rb__icon { width: 52px; height: 52px; }
  .rb__icon svg { width: 30px; height: 30px; }
  .rb__title { font-size: 1.35rem; }
  .rb__desc { font-size: 1.1rem; }
  .reno-hero__note { font-size: 1.25rem; margin-top: 22px; gap: 10px; padding: 12px 16px; }
  .reno-hero__media { position: absolute; inset: 0; z-index: 0; }
  .reno-hero__media img { height: 100%; object-position: 68% 30%; }
  .reno-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(238, 245, 252, .85) 0%, rgba(221, 236, 250, .7) 55%, rgba(207, 227, 248, .64) 100%); }
  .reno-hero__badge { display: none; }
}

/* パンくずは視覚的に非表示（HTML・構造化データはSEO/支援技術向けに残す） */
.breadcrumb { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

/* 本文プロース(下層ページの記事本文を新デザインで整形) */
.prose { width: 90%; max-width: 880px; margin-inline: auto; padding: 64px 0; }
/* 導入見出し(トップページと同じ中央寄せ headline スタイル) */
.intro-headline { padding-top: 52px; }
.intro-headline .headline { margin-bottom: 40px; }
.intro-headline .headline__lead { max-width: 880px; margin-inline: auto; }
.intro-headline .headline__lead strong { color: var(--color-primary-dark); }
/* 導入リード下の図・本文(横幅を直下のセクションと揃える) */
.prose--intro { max-width: var(--container); padding: 0 0 28px; }
.prose--intro > :first-child { margin-top: 0; }
@media (max-width: 768px) { .intro-headline { padding-top: 36px; } }
.prose--intro > p { font-size: 1.75rem; line-height: 1.95; }
@media (max-width: 768px) { .prose--intro > p { font-size: 1.55rem; } }
.prose > * + * { margin-top: 1.4em; }
.prose h1 { font-size: 2.6rem; font-weight: 700; color: var(--color-heading); line-height: 1.5; letter-spacing: .04em; }
.prose h2 {
  font-size: 2.2rem; font-weight: 700; color: var(--color-heading);
  margin-top: 2em; padding: 4px 0 4px 16px; border-left: 5px solid var(--color-primary); line-height: 1.5;
}
.prose h3 { font-size: 1.8rem; font-weight: 600; color: var(--color-heading); margin-top: 1.8em; padding-bottom: 6px; border-bottom: 2px dotted var(--color-border); }
.prose h4 { font-size: 1.6rem; font-weight: 600; color: var(--color-primary-dark); margin-top: 1.6em; }
.prose p { line-height: 2; }
.prose a { color: var(--color-primary-dark); text-decoration: underline; }
.prose a:hover { color: var(--color-primary); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: .5em; line-height: 1.9; }
.prose img { border-radius: var(--radius-box); box-shadow: var(--shadow-card); }
.prose figure { margin: 1.4em 0; }
.prose strong { color: var(--color-primary-dark); }
.prose blockquote { border-left: 4px solid var(--color-primary-light); background: var(--color-cream); padding: 16px 22px; border-radius: 0 8px 8px 0; color: #555; }
.prose hr { border: none; border-top: 1px solid var(--color-border); margin: 2.4em 0; }
/* テーブル */
.prose table { width: 100%; border-collapse: collapse; font-size: 1.45rem; box-shadow: var(--shadow-card); border-radius: var(--radius-box); overflow: hidden; }
.prose th, .prose td { padding: 14px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--color-border); }
.prose th { background: var(--color-cream); font-weight: 600; white-space: nowrap; width: 30%; }
.prose tr:last-child th, .prose tr:last-child td { border-bottom: none; }
/* 本文内ボタン */
.prose .btn { color: #fff; text-decoration: none; }
.prose .btn--ghost { color: var(--color-primary); }
.prose .prose-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.6em; }
/* 施工写真ギャラリー(均一サイズで整列) */
/* メイン写真: 縦横どちらの写真でも全体を見せる(切り抜かず高さ上限で中央寄せ) */
.prose .case-main { text-align: center; margin: 1.4em 0; }
.prose .case-main img { width: auto; max-width: 100%; max-height: 480px; border-radius: var(--radius-box); box-shadow: var(--shadow-card); display: inline-block; }
/* 横長インフォグラフィック(全幅・大きめ表示) */
.prose .infographic { text-align: center; margin: 1.8em 0; }
.prose .infographic img { width: 100%; max-width: 1040px; border-radius: var(--radius-box); box-shadow: var(--shadow-card); display: inline-block; }
.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 1.6em 0; }
.photo-grid figure { margin: 0; }
.photo-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-box); box-shadow: var(--shadow-card); display: block; transition: transform var(--ease); }
.photo-grid a { display: block; }
.photo-grid img:hover { transform: scale(1.03); }
.photo-grid--3 { grid-template-columns: repeat(3, 1fr); }
.photo-grid--3 img { object-position: center 40%; }
@media (max-width: 768px) { .photo-grid { gap: 10px; } }
@media (max-width: 600px) { .photo-grid--3 { grid-template-columns: 1fr; } }

/* FAQ(dl/details) */
.prose details { border: 1px solid var(--color-border); border-radius: var(--radius-box); padding: 0; overflow: hidden; box-shadow: var(--shadow-card); }
.prose details + details { margin-top: 14px; }
.prose summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; background: #fff; position: relative; padding-right: 48px; }
.prose summary::-webkit-details-marker { display: none; }
.prose summary::before { content: "Q."; color: var(--color-primary); font-family: var(--ff-en); font-weight: 700; margin-right: 10px; }
.prose summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--color-primary); font-size: 2.2rem; line-height: 1; }
.prose details[open] summary::after { content: "−"; }
.prose details .answer { padding: 18px 22px; background: #fafafa; line-height: 2; }

@media (max-width: 768px) {
  .page-head { padding: 24px 0; }
  .page-head__ja { font-size: 2rem; }
  .prose { padding: 40px 0; }
  .prose h1 { font-size: 2.1rem; }
  .prose h2 { font-size: 1.8rem; }
  .prose th, .prose td { padding: 10px 12px; font-size: 1.35rem; }
  .prose th { width: auto; white-space: normal; }
}

/* =========================================================
   お問い合わせフォーム
   ========================================================= */
.contact-form { max-width: 720px; margin: 0 auto; }
.form-row { margin-bottom: 22px; }
.form-label { display: block; font-weight: 600; font-size: 1.5rem; color: var(--color-heading); margin-bottom: 8px; }
.required { display: inline-block; font-size: 1.1rem; font-weight: 700; color: #fff; background: var(--color-primary); border-radius: 4px; padding: 2px 8px; margin-left: 6px; vertical-align: middle; }
.form-input {
  width: 100%; padding: 13px 16px; font-size: 1.5rem; font-family: inherit;
  border: 1px solid var(--color-border); border-radius: 8px; background: #fff; color: var(--color-text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(245,130,32,.15); }
textarea.form-input { resize: vertical; min-height: 120px; line-height: 1.8; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f58220' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.form-radio { display: inline-flex; align-items: center; gap: 6px; font-size: 1.5rem; cursor: pointer; }
.form-radio input { accent-color: var(--color-primary); width: 18px; height: 18px; }
.form-row--privacy { margin: 28px 0; text-align: center; }
.form-privacy { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 1.45rem; }
.form-privacy__checkbox { accent-color: var(--color-primary); width: 18px; height: 18px; }
.form-privacy__text a { color: var(--color-primary-dark); text-decoration: underline; }
.contact-form .btn--block { width: 100%; max-width: 360px; margin: 8px auto 0; display: flex; }
.form-note { text-align: center; color: var(--color-muted); font-size: 1.3rem; margin-top: 16px; }
/* 問い合わせフォームの種類切替 */
.form-switch { display: flex; gap: 12px; flex-wrap: wrap; max-width: 720px; margin: 8px auto 26px; }
.form-switch__opt { flex: 1; min-width: 200px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 14px; border: 2px solid var(--color-border); border-radius: 12px; font-weight: 700; font-size: 1.55rem; color: var(--color-heading); background: #fff; cursor: pointer; transition: border-color var(--ease), background var(--ease), color var(--ease); }
.form-switch__opt:hover { border-color: var(--color-primary-light); }
.form-switch__opt input { accent-color: var(--color-primary); width: 18px; height: 18px; }
.form-switch__opt.is-selected { border-color: var(--color-primary); background: var(--color-cream); color: var(--color-primary-dark); }
/* 内窓リノベ選択時は青系で差別化 */
.form-switch__opt--uchimado:hover { border-color: #7fb0e0; }
.form-switch__opt--uchimado.is-selected { border-color: #1b73c9; background: #eef5fc; color: #1565b8; }
#form-uchimado .form-label { color: #1565b8; }
#form-uchimado .required { background: #1b73c9; }
#form-uchimado .form-input:focus { border-color: #1b73c9; box-shadow: 0 0 0 3px rgba(27, 115, 201, .15); }
#form-uchimado .form-privacy__checkbox { accent-color: #1b73c9; }
#form-uchimado .form-privacy__text a { color: #1565b8; }
#form-uchimado .btn--block { background: #1b73c9; }
#form-uchimado .btn--block:hover { background: #1565b8; opacity: 1; }
/* V2H選択時は緑系で差別化 */
.form-switch__opt--v2h:hover { border-color: #7cc79a; }
.form-switch__opt--v2h.is-selected { border-color: #12a150; background: #eafaf1; color: #0c7d3d; }
#form-v2h .form-label { color: #0c7d3d; }
#form-v2h .required { background: #12a150; }
#form-v2h .form-input:focus { border-color: #12a150; box-shadow: 0 0 0 3px rgba(18, 161, 80, .15); }
#form-v2h .form-radio input { accent-color: #12a150; }
#form-v2h .form-privacy__checkbox { accent-color: #12a150; }
#form-v2h .form-privacy__text a { color: #0c7d3d; }
#form-v2h .btn--block { background: #12a150; }
#form-v2h .btn--block:hover { background: #0c7d3d; opacity: 1; }

/* 施工事例カードのfigure（レイアウトは従来どおり維持） */
.case-card__fig { display: contents; margin: 0; }
/* 関連コンテンツ（回遊性） */
.related-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-grid a { display: flex; flex-direction: column; gap: 5px; height: 100%; background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 18px 18px; font-weight: 700; font-size: 1.6rem; color: var(--color-heading); transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease); }
.related-grid a:hover { border-color: var(--color-primary); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.related-grid a span { font-weight: 400; font-size: 1.25rem; color: var(--color-muted); line-height: 1.6; }
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr 1fr; gap: 10px; } .related-grid a { font-size: 1.45rem; padding: 14px; } }
/* トップページのFAQ（.proseのアコーディオンを流用・余白調整） */
.prose--faq { padding: 0; max-width: 820px; margin-inline: auto; }

/* 太陽光＋蓄電池ページ用の補助スタイル */
.qol-card > p { font-size: 1.45rem; line-height: 1.85; color: var(--color-text); margin: 0; }
.qol-card__lead { font-size: 1.45rem; line-height: 1.85; color: var(--color-text); margin: 0 0 10px; }
.qol-card ul.qol-card__list { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.qol-card__list li { position: relative; padding-left: 26px; font-size: 1.4rem; line-height: 1.7; color: var(--color-text); }
.qol-card__list li::before { content: ""; position: absolute; left: 4px; top: .5em; width: 12px; height: 7px; border-left: 3px solid var(--color-primary); border-bottom: 3px solid var(--color-primary); transform: rotate(-45deg); }
/* 比較カード（蓄電池の選び方） */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cmp + .cmp { margin-top: 24px; }
.cmp-card { background: #fff; border: 1px solid var(--color-border); border-radius: 14px; box-shadow: var(--shadow-card); padding: 24px 24px 22px; }
.cmp-card__art { display: block; background: var(--color-cream); border-radius: 10px; padding: 12px; margin-bottom: 14px; }
.cmp-card__art svg { display: block; width: 100%; max-width: 168px; height: auto; margin: 0 auto; }
.cmp-card__art img { display: block; width: 100%; height: auto; border-radius: 6px; }
.cmp-card__art.cmp-card__art--wide svg { max-width: 236px; }
/* 画像カードは枠なしでカード幅いっぱいに拡大 */
.cmp-card__art--img { background: none; padding: 0; margin: -24px -24px 18px; border-radius: 13px 13px 0 0; overflow: hidden; }
.cmp-card__art--img img { border-radius: 0; }

/* 取扱メーカー：ロゴ帯（横スクロール・無限ループ） */
.sb-makers .sb-makers__note { margin-bottom: 8px; }
.logo-marquee { overflow: hidden; width: 100%; margin-top: 10px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.logo-track { display: flex; align-items: center; width: max-content; animation: logo-scroll 45s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item { flex: 0 0 auto; margin-right: 44px; display: flex; align-items: center; justify-content: center; }
.logo-item img { height: 32px; width: auto; display: block; }
.logo-item--label { font-weight: 700; font-size: 1.5rem; color: var(--color-primary-dark); white-space: nowrap; letter-spacing: .04em; }
/* ロゴ帯：FV直下にべた付け（見出し・余白なしの細帯） */
.sb-makers-band { background: #fff; padding: 14px 0; border-bottom: 1px solid var(--color-border); }
.sb-makers-band .logo-marquee { margin-top: 0; }

/* 設置条件：屋根材の写真バンド（角丸＋キャプション） */
.sb-roof { position: relative; margin: 26px auto 6px; max-width: 820px; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.sb-roof img { display: block; width: 100%; height: 170px; object-fit: cover; }
.sb-roof figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 16px 10px; color: #fff; font-weight: 700; font-size: 1.4rem; text-align: center; background: linear-gradient(transparent, rgba(0, 0, 0, .55)); }
@media (max-width: 768px) { .sb-roof img { height: 124px; } .sb-roof figcaption { font-size: 1.25rem; padding: 18px 12px 9px; } }
/* 設置条件：チェック項目をチップ化（長文の煩雑さを解消） */
/* ============ 事例カード：声の抜粋 ============ */
.case-card__quote { margin: 8px 0 0; font-family: "Zen Kurenaido", var(--ff-jp); font-size: 1.38rem; line-height: 1.65; color: #4a4030; }
.case-card__quote span { display: block; color: #f5a623; font-size: 1.15rem; letter-spacing: .12em; margin-bottom: 2px; }

/* ============ 事例詳細：この事例の要点（AIO/LLMO向けサマリー） ============ */
.case-summary { background: #fff; border: 1px solid var(--color-border); border-left: 5px solid var(--color-primary); border-radius: var(--radius-box); box-shadow: var(--shadow-card); padding: 20px 26px 16px; }
.prose .case-summary h2 { margin: 0 0 6px; padding: 0 0 10px; border-bottom: 1px solid var(--color-gray); font-size: 1.7rem; color: var(--color-heading); }
.prose .case-summary ul { list-style: none; padding: 0; margin: 0; }
.prose .case-summary li { margin: 0; padding: 9px 0; line-height: 1.8; font-size: 1.45rem; }
.prose .case-summary li + li { border-top: 1px dashed var(--color-border); }
.case-summary li b { display: inline-block; min-width: 92px; color: var(--color-primary-dark); }
@media (max-width: 600px) { .case-summary { padding: 16px 16px 12px; } .case-summary li b { display: block; min-width: 0; } }

/* ============ 事例詳細：FV（写真＋直筆風の声）・Q&A・担当者より ============ */
.case-fv { display: grid; grid-template-columns: 1.1fr 1fr; gap: 22px; align-items: stretch; }
.case-fv__photo { position: relative; margin: 0; border: 1px solid var(--color-border); border-radius: var(--radius-box); overflow: hidden; box-shadow: var(--shadow-card); background: #fff; display: flex; flex-direction: column; }
.case-fv__photo img { display: block; width: 100%; height: 100%; min-height: 260px; object-fit: cover; flex: 1; border-radius: 0; box-shadow: none; }
.case-fv__photo svg { display: block; width: 100%; height: auto; flex: 1; }
.case-fv__photo figcaption { padding: 10px 14px; font-size: 1.25rem; color: var(--color-muted); background: #fff; border-top: 1px solid var(--color-gray); }
.voice-note { position: relative; border: 1px solid #e7d9b8; border-radius: 4px; padding: 34px 26px 24px;
  background: repeating-linear-gradient(transparent 0px, transparent 31px, #efe3c6 31px, #efe3c6 32px), linear-gradient(#fffdf4, #fffdf4);
  box-shadow: var(--shadow-card); }
.voice-note__tape { position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-2deg); width: 110px; height: 24px; background: rgba(245, 166, 35, .45); box-shadow: 0 1px 3px rgba(0, 0, 0, .12); }
.voice-note__label { font-size: 1.15rem; font-weight: 700; letter-spacing: .1em; color: var(--color-primary-dark); margin-bottom: 6px; }
.voice-note__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; }
.voice-note__name { font-family: "Zen Kurenaido", var(--ff-jp); font-size: 2rem; font-weight: 700; color: var(--color-heading); }
.voice-note__meta { font-size: 1.25rem; color: var(--color-muted); }
.voice-note__stars { color: #f5a623; font-size: 1.6rem; letter-spacing: .12em; margin-top: 2px; }
.voice-note__text { font-family: "Zen Kurenaido", var(--ff-jp); font-size: 1.72rem; line-height: 32px; color: #3c3427; margin-top: 8px; }
.prose .case-qa { margin-top: 1.2em; }
.case-qa__item { background: #fff; border: 1px solid var(--color-border); border-radius: 12px; box-shadow: var(--shadow-card); padding: 18px 22px; }
.case-qa__item + .case-qa__item { margin-top: 14px; }
.case-qa__q, .case-qa__a { position: relative; padding-left: 40px; line-height: 1.9; }
.case-qa__q { font-weight: 700; color: var(--color-heading); }
.case-qa__a { margin-top: 10px; font-family: "Zen Kurenaido", var(--ff-jp); font-size: 1.62rem; }
.case-qa__q::before, .case-qa__a::before { content: "Q"; position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-en); font-weight: 700; font-size: 1.4rem; color: #fff; background: var(--color-primary); }
.case-qa__a::before { content: "A"; background: #1d9e75; }
.case-staff { position: relative; background: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius-box); padding: 26px 26px 22px; }
.prose > .case-staff { margin-top: 2.4em; }
.case-staff__label { position: absolute; top: -13px; left: 18px; font-size: 1.15rem; font-weight: 700; letter-spacing: .08em; color: #fff; background: var(--color-primary); padding: 3px 16px; border-radius: 999px; }
.case-staff__text { line-height: 2; }
@media (max-width: 768px) {
  .case-fv { grid-template-columns: 1fr; gap: 16px; }
  .case-fv__photo img { min-height: 200px; }
  .voice-note { padding: 30px 18px 20px; }
  .voice-note__text { font-size: 1.58rem; line-height: 30px; }
  .case-qa__item { padding: 15px 16px; }
  .case-qa__q, .case-qa__a { padding-left: 36px; }
}

/* 停電時比較イラスト（特定負荷／全負荷） */
.sb-choice { max-width: 820px; margin: 26px auto 6px; }
.sb-choice__title { text-align: center; font-weight: 700; font-size: 1.6rem; color: var(--color-heading); letter-spacing: .2em; margin-bottom: 12px; }
.sb-choice__panels { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sb-choice__panels svg { display: block; width: 100%; height: auto; }
@media (max-width: 640px) { .sb-choice__panels { grid-template-columns: 1fr; gap: 12px; } }

.cond-intro { text-align: center; font-size: 1.5rem; color: var(--color-text); margin-bottom: 16px; }
.cond-tags { list-style: none; margin: 0 auto 4px; padding: 0; max-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cond-tags li { background: var(--color-cream); border: 1px solid var(--color-border); border-radius: 10px; padding: 13px 14px; font-weight: 700; font-size: 1.45rem; color: var(--color-heading); text-align: center; }
.cond-tags li::before { content: "✓"; color: var(--color-primary); font-weight: 900; margin-right: 7px; }
@media (max-width: 768px) { .cond-tags { gap: 8px; } .cond-tags li { font-size: 1.35rem; padding: 11px 6px; } .cond-tags li::before { margin-right: 4px; } }
/* 蓄電池選びの3つのポイント（横並びチップ） */
.cond-tags--inline { display: flex; flex-wrap: wrap; justify-content: center; max-width: 760px; }
.cond-tags--inline li { flex: 0 1 auto; }
@media (max-width: 768px) { .cond-tags--inline { flex-direction: column; } .cond-tags--inline li { width: 100%; } }

/* 蓄電池の選び方：カードをコンパクト化 */
.cmp { gap: 16px; }
.cmp + .cmp { margin-top: 16px; }
.cmp-card { padding: 16px; }
.cmp-card__art { padding: 8px; margin-bottom: 12px; }
.cmp-card__art svg { max-width: 124px; }
.cmp-card__art--img { margin: -16px -16px 12px; }
.cmp-card__type { font-size: 1.2rem; padding: 3px 14px; }
.cmp-card__title { font-size: 1.6rem; margin: 9px 0 6px; }
.cmp-card__text { font-size: 1.3rem; line-height: 1.7; }
.cmp-card__for { font-size: 1.25rem; padding: 8px 12px; margin-top: 9px; }
.cmp-h { margin: 6px 0 12px; font-size: 1.7rem; }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* このページの縦余白を圧縮（テンプレ的な余りを調整） */
body.p-sb .section { padding-top: 54px; padding-bottom: 54px; }
body.p-sb .headline { margin-bottom: 30px; }
.cmp-card__type { display: inline-block; font-weight: 700; font-size: 1.3rem; color: #fff; background: var(--color-primary); border-radius: 999px; padding: 4px 16px; }
.cmp-card__type--alt { background: #5b7c93; }
.cmp-card__title { font-size: 1.9rem; font-weight: 700; color: var(--color-heading); margin: 12px 0 8px; }
.cmp-card__text { font-size: 1.4rem; line-height: 1.85; color: var(--color-text); }
.cmp-card__for { margin-top: 12px; font-size: 1.35rem; font-weight: 700; color: var(--color-primary-dark); background: var(--color-cream); border-radius: 8px; padding: 10px 14px; }
.cmp-h { text-align: center; font-size: 1.8rem; font-weight: 700; color: var(--color-heading); margin: 8px 0 16px; }
.cmp-h::before { content: "▎"; color: var(--color-primary); }
.sim-note { text-align: center; color: var(--color-muted); font-size: 1.25rem; line-height: 1.7; margin-top: 18px; }

/* =========================================================
   太陽光＋蓄電池ページ 専用LPデザイン（テンプレ脱却）
   ========================================================= */
body.p-sb { --sb-blue: #1f7fd1; --sb-blue-d: #14568f; --sb-ink: #23303c; }

/* --- ヒーロー：オレンジ配色（reno-heroのオレンジ版・内窓には影響しない） --- */
.reno-hero--orange { background: linear-gradient(120deg, #fff7ee 0%, #ffe9d3 56%, #ffe1c2 100%); }
.reno-hero--orange::before { border-color: transparent #c2620f transparent transparent; }
.reno-hero--orange::after { border-color: transparent #f9a64f transparent transparent; }
.reno-hero--orange .reno-hero__tag { background: var(--color-primary-dark); }
.reno-hero--orange .reno-hero__title .c-blue { color: #a8500c; }
.reno-hero--orange .reno-hero__lead { border-top-color: rgba(217, 107, 14, .28); }
.reno-hero--orange .reno-hero__lead .c-blue { color: #a8500c; }
.reno-hero--orange .reno-hero__note { box-shadow: 0 3px 12px rgba(217, 107, 14, .14); }
.reno-hero--orange .reno-hero__badge { border-color: #f3b676; color: var(--color-primary-dark); }

/* --- 実績バッジ帯 --- */
.sb-stats { background: linear-gradient(135deg, var(--sb-blue) 0%, var(--sb-blue-d) 100%); color: #fff; }
.sb-stats__inner { max-width: var(--container); margin: 0 auto; padding: clamp(24px,3vw,38px) 5%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.sb-stat__num { font-family: var(--ff-en); font-weight: 800; font-size: clamp(3.2rem, 5vw, 4.6rem); line-height: 1; color: #ffe21a; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.sb-stat__num small { font-size: .42em; color: #fff; margin-left: 3px; letter-spacing: 0; }
.sb-stat__label { margin-top: 8px; font-size: clamp(1.3rem,1.5vw,1.55rem); font-weight: 700; line-height: 1.45; }
.sb-stat + .sb-stat { border-left: 1px solid rgba(255,255,255,.25); }

/* --- 取扱メーカー帯（プレースホルダー） --- */
.sb-makers { text-align: center; }
.sb-makers__note { color: var(--color-muted); font-size: 1.4rem; line-height: 1.8; }
.sb-makers__slots { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 18px; }
.sb-makers__slot { width: 150px; height: 64px; border: 1px dashed var(--color-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #b3b3b3; font-size: 1.2rem; background: #fafafa; }

/* --- 節約グラフ --- */
.sb-sim { display: grid; grid-template-columns: 280px 1fr; gap: clamp(20px,3vw,40px); align-items: center; background: #fff; border-radius: 18px; box-shadow: var(--shadow-card); padding: clamp(22px,3vw,36px); max-width: 860px; margin: 0 auto; }
.sb-donut { position: relative; width: 240px; height: 240px; margin: 0 auto; }
.sb-donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.sb-donut__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.sb-donut__pct { font-family: var(--ff-en); font-weight: 800; font-size: 4.6rem; line-height: 1; color: var(--color-primary-dark); }
.sb-donut__cap { font-size: 1.4rem; font-weight: 700; color: var(--sb-ink); margin-top: 4px; }
.sb-bars__row { margin-bottom: 18px; }
.sb-bars__head { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; font-size: 1.45rem; color: var(--sb-ink); margin-bottom: 7px; }
.sb-bars__track { height: 30px; border-radius: 7px; background: var(--color-gray); overflow: hidden; }
.sb-bars__fill { height: 100%; border-radius: 7px; display: flex; align-items: center; justify-content: flex-end; padding-right: 10px; color: #fff; font-weight: 700; font-size: 1.3rem; }
.sb-bars__fill--before { background: #5b7c93; width: 100%; }
.sb-bars__fill--after { background: var(--color-primary); }
.sb-save { margin-top: 14px; background: var(--color-cream); border-radius: 10px; padding: 12px 16px; text-align: center; font-weight: 700; font-size: 1.55rem; color: var(--color-primary-dark); }

/* --- 比較表 --- */
.sb-table-wrap { max-width: 900px; margin: 0 auto; overflow-x: auto; }
.sb-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); font-size: 1.45rem; }
.sb-table th, .sb-table td { padding: 16px 18px; border-bottom: 1px solid var(--color-border); text-align: left; vertical-align: top; line-height: 1.7; }
.sb-table thead th { background: var(--sb-blue); color: #fff; font-weight: 700; text-align: center; }
.sb-table thead th:first-child { background: var(--sb-blue-d); }
.sb-table tbody th { background: var(--color-cream); font-weight: 700; color: var(--color-heading); white-space: nowrap; width: 24%; }
.sb-table tr:last-child th, .sb-table tr:last-child td { border-bottom: none; }
.sb-table .rec { color: var(--color-primary-dark); font-weight: 700; }

/* --- セクションCTA共通 --- */
.sb-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }

/* --- 追従CTA：このページはPCでも表示 --- */
body.p-sb .sp-cta { display: grid; grid-template-columns: repeat(3, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; box-shadow: 0 -2px 10px rgba(0,0,0,.18); }
body.p-sb .sp-cta a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 11px 4px; font-size: 1.3rem; font-weight: 700; color: #fff; }
body.p-sb .sp-cta__tel { background: var(--color-heading); }
body.p-sb .sp-cta__line { background: var(--color-line); }
body.p-sb .sp-cta__form { background: var(--color-primary); }
body.p-sb .sp-cta svg { width: 22px; height: 22px; fill: currentColor; }
body.p-sb { padding-bottom: 64px; }

@media (max-width: 880px) {
  .sb-stats__inner { grid-template-columns: 1fr 1fr; gap: 22px 12px; }
  .sb-stat:nth-child(3) { border-left: none; }
  .sb-stat:nth-child(odd) { border-left: none; }
  .sb-sim { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body.p-sb .sp-cta a { font-size: 1.1rem; padding: 9px 4px; }
  body.p-sb { padding-bottom: 56px; }
}
@media (max-width: 768px) { .cmp { grid-template-columns: 1fr; gap: 14px; } }

/* =========================================================
   安心サポート：4本柱の安心保証カード（/support/・共通）
   「誰が担保するか」を明示し、仕組みで支える安心を可視化
   ========================================================= */
/* 実績数字バンド（オレンジ）：ページ冒頭で信頼を数字で掴む */
.guar-stats { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #fff; }
.guar-stats__inner { max-width: var(--container); margin: 0 auto; padding: clamp(26px,3vw,40px) 5%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
/* page-head内に統合する場合（帯の二重化を防ぐ）：背景は親のグラデをそのまま使う */
.page-head--stats { padding-bottom: 18px; }
.guar-stats--bare { background: none; }
.guar-stats--bare .guar-stats__inner { padding: clamp(20px,2.6vw,30px) 5% 4px; }
.guar-stat__num { font-family: var(--ff-en); font-weight: 800; font-size: clamp(3.2rem, 5vw, 4.6rem); line-height: 1; color: #ffe21a; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.guar-stat__num small { font-size: .42em; color: #fff; margin-left: 3px; letter-spacing: 0; }
.guar-stat__label { margin-top: 8px; font-size: clamp(1.3rem,1.5vw,1.55rem); font-weight: 700; line-height: 1.45; }
.guar-stat + .guar-stat { border-left: 1px solid rgba(255,255,255,.25); }
@media (max-width: 880px) {
  .guar-stats__inner { grid-template-columns: 1fr 1fr; gap: 22px 12px; }
  .guar-stat:nth-child(odd) { border-left: none; }
}
.guar-lead { text-align: center; max-width: 660px; margin: 0 auto 34px; font-size: 1.6rem; line-height: 1.95; color: var(--color-text); }
.guar-lead strong { color: var(--color-primary-dark); font-weight: 700; }
.guar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin: 0 auto; }
.guar-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; box-shadow: var(--shadow-card); padding: 26px 26px 22px; transition: transform .28s ease, box-shadow .28s ease; }
.guar-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light)); transform: scaleX(0); transform-origin: left; transition: transform .32s ease; }
.guar-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(217, 107, 14, .16); }
.guar-card:hover::before { transform: scaleX(1); }
.guar-card__num { position: absolute; top: 2px; right: 14px; font-family: var(--ff-en); font-style: italic; font-weight: 800; font-size: 6.4rem; line-height: 1; color: var(--color-cream); pointer-events: none; user-select: none; }
.guar-card:hover .guar-card__num { color: #fdeede; }
.guar-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.guar-card__icon { flex: none; width: 54px; height: 54px; border-radius: 14px; background: var(--color-cream); color: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.guar-card__icon svg { width: 30px; height: 30px; display: block; }
.guar-card__by { display: inline-flex; align-items: center; gap: 7px; font-size: 1.2rem; font-weight: 700; color: var(--color-primary-dark); background: #fdeede; border-radius: 999px; padding: 6px 14px; white-space: nowrap; }
.guar-card__by::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary); }
.guar-card__title { font-size: 2rem; font-weight: 700; color: var(--color-heading); line-height: 1.45; margin: 0 0 8px; }
.guar-card__text { font-size: 1.4rem; line-height: 1.85; color: var(--color-text); margin: 0 0 14px; }
.guar-card__specs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.guar-card__specs li { font-size: 1.25rem; font-weight: 700; color: var(--color-heading); background: var(--color-gray); border-radius: 7px; padding: 5px 11px; }
.guar-card__specs li::before { content: "✓"; color: var(--color-primary); font-weight: 900; margin-right: 5px; }
.guar-note { max-width: 940px; margin: 20px auto 0; font-size: 1.2rem; line-height: 1.8; color: var(--color-muted); }

/* 遠隔モニタリングサービス：保証とは別軸の見守りサービス（4本柱の下・＋αの上） */
.guar-monitor { position: relative; max-width: 940px; margin: 30px auto 0; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; box-shadow: var(--shadow-card); padding: 28px 30px 24px; display: flex; gap: 26px; align-items: center; }
.guar-monitor__badge { position: absolute; top: -13px; left: 24px; background: #5b7c93; color: #fff; font-family: var(--ff-en); font-weight: 700; font-size: 1.2rem; letter-spacing: .14em; text-transform: uppercase; border-radius: 999px; padding: 5px 16px; }
.guar-monitor__art { flex: none; width: 104px; }
.guar-monitor__art svg { width: 100%; height: auto; display: block; }
.guar-monitor__title { font-size: 2rem; font-weight: 700; color: var(--color-heading); margin: 0 0 8px; }
.guar-monitor__title em { font-style: normal; font-family: var(--ff-en); color: var(--color-primary-dark); margin-left: 8px; }
.guar-monitor__text { font-size: 1.4rem; line-height: 1.85; color: var(--color-text); margin: 0 0 12px; }
@media (max-width: 768px) {
  .guar-monitor { flex-direction: column; text-align: center; gap: 14px; padding: 26px 18px 20px; }
  .guar-monitor__art { width: 84px; }
  .guar-monitor .guar-card__specs { justify-content: center; }
}

/* ＋α：保証ではない付加価値（下段・格下げ／別ページへ誘導） */
.plus-alpha { max-width: 940px; margin: 34px auto 0; border: 1px dashed var(--color-border); border-radius: 16px; padding: 22px 24px; background: var(--color-cream); }
.plus-alpha__label { font-size: 1.25rem; letter-spacing: .06em; color: var(--color-muted); font-weight: 700; margin: 0 0 14px; }
.plus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.plus-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 16px 18px; text-decoration: none; transition: box-shadow .2s ease, transform .2s ease; }
.plus-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.plus-card__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--color-cream); color: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.plus-card__icon svg { width: 25px; height: 25px; display: block; }
.plus-card__title { font-size: 1.6rem; font-weight: 700; color: var(--color-heading); margin: 0; display: flex; align-items: center; gap: 6px; }
.plus-card__title::after { content: "›"; color: var(--color-primary); font-size: 1.9rem; line-height: 1; }
.plus-card__text { font-size: 1.25rem; color: var(--color-muted); line-height: 1.6; margin: 3px 0 0; }
@media (max-width: 768px) {
  .guar-grid { grid-template-columns: 1fr; gap: 14px; }
  .guar-card { padding: 20px; }
  .guar-card__title { font-size: 1.8rem; }
  .guar-card__icon { width: 48px; height: 48px; border-radius: 12px; }
  .guar-card__icon svg { width: 26px; height: 26px; }
  .guar-card__num { font-size: 5.2rem; right: 10px; }
  .plus-grid { grid-template-columns: 1fr; }
}

/* SPのみ表示の改行ヘルパー */
.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* スクロール出現（.js-reveal）
   JSが対応時のみ html.js-anim を付与して隠す（旧JS・JS無効でも表示が壊れない） */
.js-anim .js-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--reveal-delay, 0s); }
.js-anim .js-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-anim .js-reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   施工事例 詳細ページ：雛形コンポーネント（.case-*）
   数字→写真→ポイント→表→写真→写真1枚診断→CV型CTA の順
   ========================================================= */
/* 実績数字（3項目）：事例の要点を数字で先に掴む */
.case-stats, .prose .case-stats { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 1.6em 0 0; padding: 0; }
.case-stats li { background: var(--color-cream); border: 1px solid #f6c592; border-radius: 12px; padding: 16px 8px 13px; text-align: center; }
.case-stat__num { display: block; font-family: var(--ff-en); font-weight: 800; font-size: clamp(2.2rem, 3.4vw, 3.2rem); line-height: 1.1; color: var(--color-primary-dark); letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.case-stat__num small { font-size: .52em; margin-left: 2px; letter-spacing: 0; }
.case-stat__label { display: block; margin-top: 5px; font-size: 1.25rem; font-weight: 700; color: var(--color-heading); line-height: 1.4; }
@media (max-width: 768px) { .case-stats { gap: 8px; } .case-stats li { padding: 12px 4px 10px; } }

/* メイン写真：ブロック全幅で見せる（メイン写真は横長推奨。
   縦長しか無い場合も max-height＋cover で横長バンドに収まる） */
.prose .case-main { background: var(--color-cream); border-radius: var(--radius-box); padding: 14px 14px 12px; text-align: center; }
.prose .case-main img { width: 100%; max-height: 560px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-card); display: block; }
.prose .case-main figcaption { margin-top: 10px; font-size: 1.3rem; color: var(--color-muted); }

/* 施工のポイント：提案力の見せ場を1ボックスに */
.case-point { background: #fff; border: 2px solid var(--color-primary-light); border-radius: 14px; padding: 20px 22px 18px; position: relative; }
.case-point__label { position: absolute; top: -13px; left: 18px; background: var(--color-primary); color: #fff; font-family: var(--ff-en); font-weight: 700; font-size: 1.25rem; letter-spacing: .1em; border-radius: 999px; padding: 4px 16px; }
.case-point p { margin: 0; line-height: 1.95; }
.case-point strong { color: var(--color-primary-dark); }

/* 施工写真のキャプション（写真が「何か」を伝える） */
.photo-grid figure { position: relative; overflow: hidden; border-radius: var(--radius-box); }
.photo-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 9px; color: #fff; font-size: 1.3rem; font-weight: 700; text-align: center; background: linear-gradient(transparent, rgba(0, 0, 0, .6)); pointer-events: none; }
@media (max-width: 768px) { .photo-grid figcaption { font-size: 1.15rem; padding: 16px 8px 7px; } }

/* =========================================================
   お役立ちコラム一覧：ピックアップ横スクロール＋ジャンルアイコン
   ========================================================= */
/* ピックアップ（横スクロール・スナップ） */
.col-pickup { display: flex; gap: 16px; overflow-x: auto; padding: 4px 4px 14px; margin: 0 -4px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.col-pickup::-webkit-scrollbar { height: 8px; }
.col-pickup::-webkit-scrollbar-track { background: var(--color-gray); border-radius: 999px; }
.col-pickup::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 999px; }
.col-pick-card { flex: 0 0 280px; scroll-snap-align: start; background: #fff; border: 1px solid var(--color-border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.col-pick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.col-pick-card__art { display: block; height: 130px; }
.col-pick-card__art svg { display: block; width: 100%; height: 100%; }
.col-pick-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.col-pick-card__tag { align-self: flex-start; font-size: 1.1rem; font-weight: 700; color: var(--color-primary-dark); background: var(--color-cream); border-radius: 999px; padding: 3px 12px; }
.col-pick-card__title { font-size: 1.5rem; font-weight: 700; line-height: 1.55; color: var(--color-heading); margin: 0; }
.col-pick-card__date { margin: auto 0 0; font-family: var(--ff-en); font-size: 1.2rem; color: var(--color-muted); }
@media (max-width: 768px) { .col-pick-card { flex-basis: 240px; } .col-pick-card__art { height: 112px; } }

/* ジャンル・お悩みアイコン（渋谷区風の白カード） */
.col-genres, .prose .col-genres { list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin: 0; padding: 0; }
.prose .col-genres li { margin-top: 0; }
.col-genres a { display: flex; flex-direction: column; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; box-shadow: var(--shadow-card); padding: 22px 8px 16px; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.col-genres a:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.col-genres svg { width: 44px; height: 44px; display: block; }
.col-genres .col-genre__label { font-size: 1.3rem; font-weight: 700; color: var(--color-heading); text-align: center; line-height: 1.4; }
@media (max-width: 880px) { .col-genres, .prose .col-genres { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 480px) { .col-genres svg { width: 36px; height: 36px; } .col-genres .col-genre__label { font-size: 1.15rem; } }

/* ジャンル別一覧ページ：カードグリッド（ピックアップカードを格子配置で再利用） */
.col-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.col-grid .col-pick-card { flex: none; }
@media (max-width: 880px) { .col-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .col-grid { grid-template-columns: 1fr; } }
.col-cat__related { font-size: 1.3rem; color: var(--color-muted); margin-top: 8px; }

/* コラム記事：挿絵つきスプリット（本文リスト＋フラットイラスト） */
.prose .split-fig { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 20px 40px; align-items: center; }
.split-fig__txt > * + * { margin-top: 1.2em; }
.split-fig__art { margin: 0; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-box); box-shadow: var(--shadow-card); padding: 12px; }
.split-fig__art svg { display: block; width: 100%; height: auto; }
@media (max-width: 820px) {
  .prose .split-fig { grid-template-columns: 1fr; gap: 18px; }
  .split-fig__art { width: 100%; max-width: 400px; margin-inline: auto; }
}

/* ============ 新着コラム（TOP：ブログ情報風カード） ============ */
.blog-sec {
  padding-bottom: 44px;
  background:
    linear-gradient(var(--color-border) 1px, transparent 1px) 0 0 / 100% 28px,
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px) 0 0 / 28px 100%,
    var(--color-cream);
  background-blend-mode: soft-light, soft-light, normal;
}
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.post-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-box);
  overflow: hidden; box-shadow: var(--shadow-card); text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.post-card__art { position: relative; display: block; height: 150px; overflow: hidden; }
.post-card__art svg { display: block; width: 100%; height: 100%; }
/* 参考デザイン踏襲：日付を画像左端に縦置き */
.post-card__date {
  position: absolute; top: 0; left: 12px; z-index: 2;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--ff-en); font-weight: 600; font-size: 1.15rem; letter-spacing: .06em;
  color: #fff; background: var(--color-primary-dark);
  padding: 10px 5px 12px; border-radius: 0 0 6px 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .18);
}
.post-card__body { display: flex; flex-direction: column; gap: 8px; padding: 16px 16px 18px; flex: 1; }
.post-card__tag {
  align-self: flex-start; font-size: 1.1rem; font-weight: 700; color: var(--color-primary-dark);
  background: var(--color-cream); border: 1px solid var(--color-border); border-radius: 999px; padding: 3px 12px;
}
.post-card__title {
  font-size: 1.5rem; font-weight: 700; line-height: 1.55; color: var(--color-heading); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card__more {
  margin: auto 0 0; padding-top: 4px; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-en); font-size: 1.2rem; font-weight: 600; color: var(--color-primary);
}
.post-card__more::after {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-primary); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 6l6 6-6 6' stroke='white' stroke-width='2'/%3E%3C/svg%3E") center/9px no-repeat;
  transition: transform .25s ease;
}
.post-card:hover .post-card__more::after { transform: translateX(3px); }
@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .post-card { flex-direction: row; }
  .post-card__art { flex: 0 0 40%; height: auto; min-height: 118px; }
  .post-card__body { padding: 12px 14px 14px; }
  .post-card__title { -webkit-line-clamp: 2; font-size: 1.4rem; }
}

/* =========================================================
   規約ページ（プライバシーポリシー等）：番号付き見出し＋目次
   ========================================================= */
.policy { counter-reset: pol; }
.policy-lead { background: var(--color-cream); border: 1px solid var(--color-border); border-radius: 14px; padding: 20px 24px; font-size: 1.5rem; line-height: 1.95; color: var(--color-text); }
.policy-meta { font-size: 1.3rem; color: var(--color-muted); margin-top: .8em; }
.policy-meta strong { color: var(--color-heading); }

/* 目次 */
.policy-toc { background: #fff; border: 1px solid var(--color-border); border-radius: 14px; box-shadow: var(--shadow-card); padding: 20px 26px 22px; margin: 1.8em 0; }
.policy-toc__ttl { font-size: 1.55rem; font-weight: 700; color: var(--color-heading); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.policy-toc__ttl::before { content: ""; width: 5px; height: 20px; background: var(--color-primary); border-radius: 3px; }
.policy-toc ol { counter-reset: toc; list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 34px; }
.policy-toc li { counter-increment: toc; margin: 0 0 9px; break-inside: avoid; }
.policy-toc a { display: flex; gap: 9px; align-items: baseline; font-size: 1.4rem; line-height: 1.5; color: var(--color-text); text-decoration: none; }
.policy-toc a::before { content: counter(toc); font-family: var(--ff-en); font-weight: 700; font-size: 1.3rem; color: var(--color-primary); flex: none; min-width: 16px; }
.policy-toc a:hover { color: var(--color-primary-dark); }
.policy-toc a:hover::before { text-decoration: none; }

/* 番号付き見出し */
.policy > h2 { counter-increment: pol; border-left: none; padding: 0; margin-top: 2.2em; display: flex; align-items: center; gap: 12px; scroll-margin-top: 96px; }
.policy > h2::before { content: counter(pol); font-family: var(--ff-en); font-size: 1.8rem; font-weight: 800; line-height: 1; color: #fff; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)); width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; flex: none; }

/* 事業者情報カード（連絡先） */
.policy-contact { background: var(--color-cream); border: 1px solid var(--color-border); border-radius: 14px; padding: 6px 24px; margin: 1em 0; }
.policy-contact table { box-shadow: none; border-radius: 0; }
.policy-contact th { background: none; }

@media (max-width: 768px) {
  .policy-toc ol { columns: 1; }
  .policy > h2 { gap: 10px; }
  .policy > h2::before { width: 30px; height: 30px; font-size: 1.5rem; }
}

/* 写真プレースホルダ（後日差し替え：枠に「調整中」表示） */
.img-ph { display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(45deg, var(--color-gray), var(--color-gray) 12px, #efefef 12px, #efefef 24px); color: var(--color-muted); font-weight: 700; font-size: 1.5rem; letter-spacing: .12em; border: 1px dashed #cfcabf; border-radius: var(--radius-box); text-align: center; }
.case-main .img-ph { aspect-ratio: 900 / 560; border-radius: 10px; }
.photo-grid .img-ph { aspect-ratio: 4 / 3; box-shadow: none; }
.case-card .img-ph { aspect-ratio: 4 / 3; border-radius: 0; border: none; border-bottom: 1px dashed #cfcabf; font-size: 1.35rem; }

/* 導入サービスのタグチップ（aは同サービスの事例一覧へ、spanはリンクなし） */
.case-svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.case-svc-tags a, .case-svc-tags span { display: inline-block; border-radius: 999px; padding: 4px 13px; font-size: 1.25rem; font-weight: 700; }
.prose .case-svc-tags a { background: var(--color-cream); border: 1px solid #f3b676; color: var(--color-primary-dark); text-decoration: none; transition: background .2s ease; }
.prose .case-svc-tags a::after { content: " ›"; }
.prose .case-svc-tags a:hover { background: #fdeede; color: var(--color-primary-dark); }
.case-svc-tags span { background: var(--color-gray); border: 1px solid var(--color-border); color: var(--color-muted); }

/* 事例一覧：サービス別ナビ */
.case-tag-nav { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 1.4em 0; }
.case-tag-nav__label { font-size: 1.35rem; font-weight: 700; color: var(--color-muted); }
.prose .case-tag-nav a { background: #fff; border: 2px solid var(--color-primary-light); color: var(--color-primary-dark); border-radius: 999px; padding: 8px 20px; font-size: 1.4rem; font-weight: 700; text-decoration: none; transition: background .2s ease; }
.prose .case-tag-nav a:hover { background: var(--color-cream); color: var(--color-primary-dark); }

/* 写真1枚診断バナー：このページ固有の強オファーを昇格 */
.case-cta { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); border-radius: 16px; padding: 30px 24px 26px; text-align: center; color: #fff; }
.case-cta__title { font-size: clamp(1.9rem, 2.6vw, 2.3rem); font-weight: 700; line-height: 1.5; color: #fff; }
.case-cta__title em { font-style: normal; color: #ffe21a; }
.case-cta__text { margin: 10px auto 18px; max-width: 560px; font-size: 1.4rem; line-height: 1.85; color: rgba(255,255,255,.95); }
.case-cta .btn--line { min-width: 260px; }
.case-cta__micro { margin: 12px 0 0; font-size: 1.2rem; color: rgba(255,255,255,.85); }
@media (max-width: 768px) { .case-cta { padding: 24px 16px 20px; } .case-cta .btn--line { width: 100%; min-width: 0; } }

/* コンバージョン設計CTA：不安除去チップ＋LINE主導線（.ctaはクリーム背景） */
.cta-chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 24px; padding: 0; }
.cta-chips li { background: #fff; border: 1px solid #f3b676; border-radius: 999px; padding: 8px 18px; font-size: 1.35rem; font-weight: 700; color: var(--color-primary-dark); box-shadow: 0 2px 8px rgba(217,107,14,.08); }
.cta-chips li::before { content: "✓"; color: var(--color-primary); font-weight: 900; margin-right: 6px; }
.cta__micro { margin-top: 14px; font-size: 1.25rem; color: var(--color-muted); }
.cta__hours a { color: var(--color-muted); text-decoration: underline; text-underline-offset: 3px; }
.cta__hours a:hover { color: var(--color-primary-dark); }
@media (max-width: 768px) { .cta-chips li { font-size: 1.2rem; padding: 7px 13px; } }
