/* =========================================================================
   Home Assist Corporate Top Page
   すべてのスタイルは .ha-home-page またはフル幅解除用の
   body.ha-home-fullwidth の内側に限定して適用する。
   ========================================================================= */

/* ---------- デザイントークン ---------- */
.ha-home-page {
	--ha-home-green: #173d32;
	--ha-home-green-dark: #0f2a22;
	--ha-home-green-light: #eaf1ee;
	--ha-home-orange: #d96f20;
	--ha-home-orange-dark: #b95412;
	--ha-home-ivory: #f8f7f2;
	--ha-home-text: #252a28;
	--ha-home-muted: #66706b;
	--ha-home-border: #dde3df;
	--ha-home-white: #ffffff;

	--ha-home-maxw: 1240px;
	--ha-home-gutter: 24px;
	--ha-home-radius: 14px;
	--ha-home-radius-sm: 10px;
	--ha-home-shadow: 0 10px 30px rgba(23, 61, 50, 0.08);
	--ha-home-shadow-hover: 0 16px 40px rgba(23, 61, 50, 0.14);

	--ha-home-header-h: 88px;

	--ha-home-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
		"Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;

	font-family: var(--ha-home-font);
	color: var(--ha-home-text);
	line-height: 1.8;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	background: var(--ha-home-white);
	/* overflow-x: clip はスクロールコンテナを作らないため、
	   フルブリード（100vw）による横スクロールを抑えつつ、
	   子要素の position: sticky（ヘッダー）を壊さない。 */
	overflow-x: clip;
}

/* リセット（ページ内スコープに限定） */
.ha-home-page *,
.ha-home-page *::before,
.ha-home-page *::after {
	box-sizing: border-box;
}
/* 固定表示要素は JS によって <body> 直下へ移動する場合があり、その際
   .ha-home-page 経由のリセットを継承できなくなるため、ID指定で保険をかける。 */
#ha-home-header, #ha-home-header *, #ha-home-header *::before, #ha-home-header *::after,
#ha-home-drawer, #ha-home-drawer *, #ha-home-drawer *::before, #ha-home-drawer *::after,
#ha-home-privacy-modal, #ha-home-privacy-modal *, #ha-home-privacy-modal *::before, #ha-home-privacy-modal *::after,
#ha-home-totop, #ha-home-totop *,
#ha-home-contact-toast, #ha-home-contact-toast * {
	box-sizing: border-box;
}
.ha-home-page img { max-width: 100%; height: auto; display: block; }
.ha-home-page ul,
.ha-home-page ol { margin: 0; padding: 0; list-style: none; }
.ha-home-page a { color: inherit; text-decoration: none; }
.ha-home-page h1,
.ha-home-page h2,
.ha-home-page h3 { margin: 0; line-height: 1.4; font-weight: 700; text-wrap: balance; }

/* 見出しの改行位置を「意味のまとまり」単位に固定するためのフレーズ単位。
   単語の途中で改行されるのを防ぐため、この単位の内部では絶対に改行しない
   （フレーズ同士の境界がそのまま行の区切りになる）。 */
.ha-home-phrase { display: inline-block; white-space: nowrap; }
.ha-home-page p { margin: 0; }
.ha-home-page button { font-family: inherit; cursor: pointer; }

/* ---------- インナー（読みやすい最大幅） ---------- */
.ha-home-inner {
	width: min(100% - (var(--ha-home-gutter) * 2), var(--ha-home-maxw));
	margin-inline: auto;
}

/* =========================================================================
   フル幅（フルブリード）対応
   対象ページ（body.ha-home-fullwidth）だけで Lightning のコンテンツ幅を解除。
   他ページの .container などには一切影響させない。
   ========================================================================= */
body.ha-home-fullwidth .site-body,
body.ha-home-fullwidth .site-body-container,
body.ha-home-fullwidth .main-section,
body.ha-home-fullwidth .entry-body,
body.ha-home-fullwidth .entry-content,
body.ha-home-fullwidth main.site-body-main,
body.ha-home-fullwidth #main-section {
	max-width: none !important;
	width: auto !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	/* 100vw フルブリードのスクロールバー差分による横スクロールを抑える。
	   clip はスクロールコンテナを作らないため sticky ヘッダーを壊さない。 */
	overflow-x: clip;
}

/* Lightning の .container を対象ページ本文でだけ解除 */
body.ha-home-fullwidth .site-body .container,
body.ha-home-fullwidth .entry-content .container {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* 固定ページタイトル・パンくず・不要な上下余白を対象ページだけ非表示/解除 */
body.ha-home-fullwidth .page-header,
body.ha-home-fullwidth .entry-header,
body.ha-home-fullwidth .breadcrumb,
body.ha-home-fullwidth #breadcrumb,
body.ha-home-fullwidth .lightning-page-title,
body.ha-home-fullwidth .entry-title.page-title {
	display: none !important;
}
body.ha-home-fullwidth .site-body,
body.ha-home-fullwidth .entry-content {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
/* テーマ側のカラム（サイドバー）を対象ページで単一カラムに */
body.ha-home-fullwidth .row > .col.main-section {
	flex: 0 0 100% !important;
	max-width: 100% !important;
}

/* ページ本体を確実に画面幅いっぱいに（横スクロールは出さない） */
.ha-home-page {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
/* テーマのラッパーに閉じ込められた場合のフルブリード脱出 */
body.ha-home-fullwidth .ha-home-page {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* =========================================================================
   ボタン
   ========================================================================= */
.ha-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 26px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.98rem;
	line-height: 1.4;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
	text-align: center;
}
.ha-home-btn__arrow { transition: transform .2s ease; }
.ha-home-btn:hover .ha-home-btn__arrow { transform: translateX(3px); }
.ha-home-btn__icon { display: inline-flex; }

.ha-home-btn--primary { background: var(--ha-home-green); color: #fff; }
.ha-home-btn--primary:hover { background: var(--ha-home-green-dark); transform: translateY(-2px); box-shadow: var(--ha-home-shadow); }

.ha-home-btn--accent { background: var(--ha-home-orange); color: #fff; }
.ha-home-btn--accent:hover { background: var(--ha-home-orange-dark); transform: translateY(-2px); box-shadow: var(--ha-home-shadow); }

.ha-home-btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.8); }
.ha-home-btn--ghost:hover { background: #fff; color: var(--ha-home-green); }

/* 明るい背景（白いパネル等）の上に置く、ゴーストボタンの代替 */
.ha-home-btn--outline { background: transparent; color: var(--ha-home-green); border-color: var(--ha-home-green); }
.ha-home-btn--outline:hover { background: var(--ha-home-green); color: #fff; }

.ha-home-btn--lg { min-height: 56px; padding: 14px 32px; font-size: 1.05rem; }
.ha-home-btn--block { width: 100%; }

/* 汎用スクロール誘導（濃色ヒーロー用。ボタンを置かないヒーローで使う） */
.ha-home-hero-scroll {
	margin-top: 40px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	transition: color .2s ease;
}
.ha-home-hero-scroll:hover,
.ha-home-hero-scroll:focus-visible { color: #fff; }
.ha-home-hero-scroll__label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
}
.ha-home-hero-scroll__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.55);
	animation: ha-home-solarcare-scroll-bounce 1.8s ease-in-out infinite;
}

/* =========================================================================
   ヘッダー
   ========================================================================= */
.ha-home-header {
	/* fixed にして、テーマ親要素の overflow 等に影響されず常に上部固定にする */
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255,255,255,0.96);
	border-bottom: 1px solid var(--ha-home-border);
	backdrop-filter: saturate(1.2) blur(6px);
	transition: box-shadow .25s ease, background-color .25s ease;
}
/* 管理バー表示時でも固定ヘッダーが隠れないように */
.admin-bar .ha-home-header { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .ha-home-header { top: 46px; }
}
.ha-home-header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }

/* 固定ヘッダーの高さ分、本文を下げてファーストビューが隠れないようにする */
.ha-home-main { padding-top: var(--ha-home-header-h); }

/* 他ページ（施工事例など）で使う統一ヘッダー／フッターのラッパー。
   テーマのコンテンツ幅に関わらず画面幅いっぱいに表示する。 */
.ha-home-chrome {
	/* ② 施工事例ページなど（.ha-home-chrome を使うページ）だけ、配色を
	   紺（青系）に上書き。トップページ（.ha-home-page#ha-home-top）は緑のまま。 */
	--ha-home-green: #0b2338;
	--ha-home-green-dark: #071a2b;
	--ha-home-green-light: #e9eef3;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
/* 固定ヘッダー分のスペーサー（本文が隠れないように） */
.ha-home-header-spacer { height: var(--ha-home-header-h); }

/* ① class が特定できないテーマのメニューボタン対策。
   施工事例ページの統一ヘッダーを不透明・最前面にして、左上に残るボタンを
   ヘッダーの背後に確実に隠す（WordPress 管理バー 99999 より下に収める）。
   ドロワーはヘッダーより前面を保つ。 */
.ha-home-chrome .ha-home-header {
	z-index: 99000;
	background: #fff;
	backdrop-filter: none;
}
.ha-home-chrome .ha-home-drawer { z-index: 99500; }

.ha-home-header__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: var(--ha-home-header-h);
}

.ha-home-logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ha-home-green); }
/* 親クラスを付けてリセット（.ha-home-page img{height:auto}）より詳細度を高くする */
.ha-home-header .ha-home-logo__img {
	height: 56px;
	width: auto;
	display: block;
	/* ロゴ画像の白背景を、ほぼ白のヘッダー背景になじませる */
	mix-blend-mode: multiply;
}
.ha-home-logo__name {
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--ha-home-green);
	letter-spacing: .02em;
	line-height: 1.3;
	white-space: nowrap;
}

/* テーマ（.entry-content a 等）のリンク装飾に負けないようボタン色を固定 */
.ha-home-page a.ha-home-btn { text-decoration: none; }
.ha-home-page a.ha-home-btn--primary,
.ha-home-page a.ha-home-btn--primary:hover,
.ha-home-page a.ha-home-btn--accent,
.ha-home-page a.ha-home-btn--accent:hover { color: #fff; }
.ha-home-page a.ha-home-btn--ghost { color: #fff; }
.ha-home-page a.ha-home-btn--ghost:hover { color: var(--ha-home-green); }
.ha-home-page a.ha-home-btn--outline { color: var(--ha-home-green); }
.ha-home-page a.ha-home-btn--outline:hover { color: #fff; }
.ha-home-page a.ha-home-card__link { text-decoration: none; }
.ha-home-logo__mark { display: inline-flex; color: var(--ha-home-green); }
.ha-home-logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.ha-home-logo__en { font-size: 1.25rem; font-weight: 800; letter-spacing: .02em; color: var(--ha-home-green); }
.ha-home-logo__ja { font-size: 0.72rem; color: var(--ha-home-muted); letter-spacing: .04em; }

.ha-home-nav { margin-left: auto; }
.ha-home-nav__list { display: flex; align-items: center; gap: 26px; }
.ha-home-nav__list a {
	position: relative;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ha-home-text);
	padding: 6px 0;
	transition: color .2s ease;
}
.ha-home-nav__list a::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 0; height: 2px;
	background: var(--ha-home-orange);
	transition: width .2s ease;
}
.ha-home-nav__list a:hover { color: var(--ha-home-green); }
.ha-home-nav__list a:hover::after { width: 100%; }

.ha-home-header__actions { display: flex; align-items: center; gap: 14px; }

.ha-home-tel { display: inline-flex; align-items: center; gap: 8px; color: var(--ha-home-green); }
.ha-home-tel__icon { display: inline-flex; }
.ha-home-tel__body { display: flex; flex-direction: column; line-height: 1.15; }
.ha-home-tel__num { font-size: 1.2rem; font-weight: 800; letter-spacing: .01em; }
.ha-home-tel__hours { font-size: 0.68rem; color: var(--ha-home-muted); }

/* ハンバーガー */
.ha-home-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px; height: 46px;
	border: 1px solid var(--ha-home-border);
	border-radius: 10px;
	background: #fff;
	padding: 0 11px;
}
.ha-home-burger__bar {
	display: block; height: 2px; width: 100%;
	background: var(--ha-home-green);
	border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}
.ha-home-burger[aria-expanded="true"] .ha-home-burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ha-home-burger[aria-expanded="true"] .ha-home-burger__bar:nth-child(2) { opacity: 0; }
.ha-home-burger[aria-expanded="true"] .ha-home-burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   ドロワー（スマホメニュー）
   ========================================================================= */
.ha-home-drawer {
	position: fixed;
	inset: 0;
	z-index: 1100;
	visibility: hidden;
	pointer-events: none;
}
.ha-home-drawer.is-open { visibility: visible; pointer-events: auto; }
.ha-home-drawer__overlay {
	position: absolute; inset: 0;
	z-index: 1; /* パネルより背面に置く（暗いオーバーレイがメニューに被らないように） */
	background: rgba(15, 42, 34, 0.5);
	border: 0; padding: 0; margin: 0;
	opacity: 0; transition: opacity .3s ease;
}
.ha-home-drawer.is-open .ha-home-drawer__overlay { opacity: 1; }
.ha-home-drawer__panel {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	z-index: 2; /* オーバーレイより前面。白背景を確実に不透明表示 */
	width: min(86vw, 360px);
	background: #fff;
	box-shadow: -8px 0 30px rgba(0,0,0,0.15);
	transform: translateX(100%);
	transition: transform .3s ease;
	display: flex;
	flex-direction: column;
	padding: 88px 26px 32px;
	overflow-y: auto;
}
.ha-home-drawer.is-open .ha-home-drawer__panel { transform: translateX(0); }
.ha-home-drawer__nav ul { display: flex; flex-direction: column; }
.ha-home-drawer__nav a {
	display: block;
	padding: 15px 4px;
	font-size: 1.05rem;
	font-weight: 600;
	border-bottom: 1px solid var(--ha-home-border);
	color: var(--ha-home-text);
}
.ha-home-drawer__foot { margin-top: auto; padding-top: 26px; text-align: center; }
.ha-home-drawer__tel { display: block; font-size: 1.5rem; font-weight: 800; color: var(--ha-home-green); }
.ha-home-drawer__hours { display: block; font-size: 0.78rem; color: var(--ha-home-muted); margin-bottom: 14px; }

/* =========================================================================
   ファーストビュー
   ========================================================================= */
.ha-home-hero {
	position: relative;
	min-height: clamp(560px, 72vh, 780px);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.ha-home-hero__media { position: absolute; inset: 0; z-index: 0; }
.ha-home-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ha-home-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(15,42,34,0.78) 0%, rgba(15,42,34,0.55) 45%, rgba(15,42,34,0.20) 100%);
}
.ha-home-hero__inner { position: relative; z-index: 1; width: min(100% - 48px, var(--ha-home-maxw)); }
.ha-home-hero__copy { max-width: 640px; color: #fff; padding: 40px 0; }
.ha-home-hero__eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .12em;
	color: #fff;
	background: rgba(217, 111, 32, 0.9);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 20px;
}
.ha-home-hero__title {
	font-size: clamp(1.9rem, 4.4vw, 3.1rem);
	line-height: 1.35;
	letter-spacing: .01em;
	text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}
.ha-home-hero__lead {
	margin-top: 20px;
	font-size: clamp(1rem, 1.6vw, 1.18rem);
	line-height: 1.9;
	text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.ha-home-hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   安心材料
   ========================================================================= */
.ha-home-assurance { background: var(--ha-home-green-light); }
.ha-home-assurance__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	padding: 30px 0;
}
.ha-home-assurance__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 12px 18px;
	position: relative;
}
.ha-home-assurance__item + .ha-home-assurance__item::before {
	content: "";
	position: absolute; left: 0; top: 14px; bottom: 14px;
	width: 1px; background: var(--ha-home-border);
}
.ha-home-assurance__icon {
	flex: none;
	color: var(--ha-home-green);
	display: inline-flex;
}
.ha-home-assurance__text { display: flex; flex-direction: column; gap: 2px; }
.ha-home-assurance__text strong { font-size: 0.98rem; color: var(--ha-home-text); }
.ha-home-assurance__text span { font-size: 0.82rem; color: var(--ha-home-muted); line-height: 1.6; }

/* =========================================================================
   共通セクション / 見出し
   ========================================================================= */
.ha-home-section { padding: clamp(56px, 8vw, 100px) 0; }
.ha-home-section:nth-of-type(even) { background: var(--ha-home-ivory); }
.ha-home-values { background: var(--ha-home-white) !important; }
.ha-home-cases { background: var(--ha-home-ivory) !important; }
.ha-home-flow { background: var(--ha-home-white) !important; }
.ha-home-voices { background: var(--ha-home-green-light) !important; }
.ha-home-company { background: var(--ha-home-white) !important; }
.ha-home-faq { background: var(--ha-home-ivory) !important; }

.ha-home-heading { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.ha-home-heading__en {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ha-home-orange);
	margin-bottom: 10px;
}
.ha-home-heading__ja {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	color: var(--ha-home-green);
	position: relative;
	padding-bottom: 18px;
}
.ha-home-heading__ja::after {
	content: "";
	position: absolute; left: 50%; bottom: 0;
	transform: translateX(-50%);
	width: 48px; height: 3px;
	background: var(--ha-home-orange);
	border-radius: 3px;
}
.ha-home-heading__lead { margin-top: 20px; color: var(--ha-home-muted); font-size: 1rem; }

/* =========================================================================
   事業案内（2カード）
   ========================================================================= */
.ha-home-business__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}
.ha-home-card {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	overflow: hidden;
	box-shadow: var(--ha-home-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex;
	flex-direction: column;
}
.ha-home-card:hover { transform: translateY(-4px); box-shadow: var(--ha-home-shadow-hover); }
.ha-home-card__media { position: relative; aspect-ratio: 8 / 5; overflow: hidden; }
.ha-home-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ha-home-card:hover .ha-home-card__media img { transform: scale(1.05); }
.ha-home-card__badge {
	position: absolute; left: 18px; top: 18px;
	background: var(--ha-home-green);
	color: #fff;
	font-size: 0.82rem; font-weight: 700;
	padding: 6px 16px; border-radius: 999px;
}
.ha-home-card__badge--reno { background: var(--ha-home-orange); }
.ha-home-card__body { padding: 28px clamp(20px, 3vw, 32px) 30px; display: flex; flex-direction: column; flex: 1; }
.ha-home-card--solar .ha-home-card__title,
.ha-home-card--pest .ha-home-card__title { color: var(--ha-home-green); }
.ha-home-card--reno .ha-home-card__title,
.ha-home-card--clean .ha-home-card__title { color: var(--ha-home-orange-dark); }
.ha-home-card__title { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 12px; }
.ha-home-card__desc { color: var(--ha-home-text); font-size: 0.98rem; line-height: 1.9; margin-bottom: 20px; }
.ha-home-card__services {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
	margin-bottom: 26px;
}
.ha-home-card__services li {
	position: relative;
	padding-left: 22px;
	font-size: 0.9rem;
	color: var(--ha-home-text);
}
.ha-home-card__services li::before {
	content: "";
	position: absolute; left: 0; top: 0.55em;
	width: 8px; height: 8px; border-radius: 50%;
}
.ha-home-card--solar .ha-home-card__services li::before,
.ha-home-card--pest .ha-home-card__services li::before { background: var(--ha-home-green); }
.ha-home-card--reno .ha-home-card__services li::before,
.ha-home-card--clean .ha-home-card__services li::before { background: var(--ha-home-orange); }
.ha-home-card__sublinks {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin-bottom: 22px;
}
.ha-home-card__sublinks li a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ha-home-text);
	background: var(--ha-home-ivory);
	border: 1px solid var(--ha-home-border);
	border-radius: 999px;
	padding: 6px 14px;
	transition: background .2s ease, border-color .2s ease;
}
.ha-home-card__sublinks li a:hover {
	background: var(--ha-home-green-light);
	border-color: var(--ha-home-green);
}
.ha-home-card__link {
	margin-top: auto;
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 700;
	color: var(--ha-home-green);
	padding: 12px 0;
}
.ha-home-card--reno .ha-home-card__link,
.ha-home-card--clean .ha-home-card__link { color: var(--ha-home-orange-dark); }
.ha-home-card__link span { transition: transform .2s ease; }
.ha-home-card__link:hover span { transform: translateX(4px); }

/* =========================================================================
   大切にしていること / 選ばれる理由グリッド
   ========================================================================= */
.ha-home-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.ha-home-values__item { text-align: center; padding: 0 8px; }
.ha-home-values__icon {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 76px; height: 76px;
	border-radius: 50%;
	background: var(--ha-home-green-light);
	color: var(--ha-home-green);
	margin-bottom: 18px;
}
.ha-home-values__item h3 { font-size: 1.08rem; color: var(--ha-home-green); margin-bottom: 10px; }
.ha-home-values__item p { font-size: 0.9rem; color: var(--ha-home-muted); line-height: 1.8; }

/* =========================================================================
   施工事例
   ========================================================================= */
.ha-home-cases__filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
}
.ha-home-chip {
	min-height: 44px;
	padding: 8px 22px;
	border: 1px solid var(--ha-home-border);
	background: #fff;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ha-home-text);
	transition: all .2s ease;
}
.ha-home-chip:hover { border-color: var(--ha-home-green); color: var(--ha-home-green); }
.ha-home-chip.is-active { background: var(--ha-home-green); border-color: var(--ha-home-green); color: #fff; }

.ha-home-cases__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.ha-home-case { transition: opacity .3s ease, transform .3s ease; }
.ha-home-case.is-hidden { display: none; }
.ha-home-case__link {
	display: flex; flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}
.ha-home-case__link:hover { transform: translateY(-4px); box-shadow: var(--ha-home-shadow-hover); }
.ha-home-case__media { position: relative; aspect-ratio: 10 / 7; overflow: hidden; }
.ha-home-case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ha-home-case__link:hover .ha-home-case__media img { transform: scale(1.06); }
.ha-home-case__cat {
	position: absolute; left: 10px; top: 10px;
	background: rgba(23,61,50,0.9);
	color: #fff; font-size: 0.72rem; font-weight: 700;
	padding: 4px 12px; border-radius: 999px;
}
.ha-home-case__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ha-home-case__title { font-size: 1rem; color: var(--ha-home-text); line-height: 1.5; }
.ha-home-case__area { font-size: 0.82rem; color: var(--ha-home-muted); }
.ha-home-case__excerpt { font-size: 0.84rem; color: var(--ha-home-muted); line-height: 1.7; }
.ha-home-case__more { margin-top: auto; padding-top: 8px; font-size: 0.84rem; font-weight: 700; color: var(--ha-home-green); }

.ha-home-cases__empty { text-align: center; color: var(--ha-home-muted); padding: 30px 0; }
.ha-home-note {
	margin-top: 26px;
	text-align: center;
	font-size: 0.82rem;
	color: var(--ha-home-muted);
	background: rgba(255,255,255,0.6);
	border: 1px dashed var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	padding: 12px 16px;
}

/* =========================================================================
   流れ
   ========================================================================= */
.ha-home-flow__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	counter-reset: flow;
}
.ha-home-flow__item {
	position: relative;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	padding: 24px 22px;
}
.ha-home-flow__num {
	flex: none;
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--ha-home-green);
	color: #fff;
	font-weight: 800;
	font-size: 1.05rem;
}
.ha-home-flow__content h3 { font-size: 1.08rem; color: var(--ha-home-green); margin-bottom: 6px; }
.ha-home-flow__content p { font-size: 0.9rem; color: var(--ha-home-muted); line-height: 1.8; }

/* =========================================================================
   お客様の声
   ========================================================================= */
.ha-home-voices__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.ha-home-voice {
	position: relative;
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	padding: 30px 26px 26px;
	box-shadow: var(--ha-home-shadow);
}
.ha-home-voice__quote {
	font-size: 3rem; line-height: 1;
	color: var(--ha-home-green-light);
	font-weight: 800;
	position: absolute; top: 14px; right: 20px;
}
.ha-home-voice__text { font-size: 0.95rem; color: var(--ha-home-text); line-height: 1.9; margin-bottom: 16px; position: relative; z-index: 1; }
.ha-home-voice__meta { font-size: 0.86rem; color: var(--ha-home-muted); font-weight: 600; }

/* =========================================================================
   会社紹介
   ========================================================================= */
.ha-home-company__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(30px, 5vw, 64px);
	align-items: start;
}
.ha-home-company__lead { font-size: 1.05rem; font-weight: 700; color: var(--ha-home-green); margin: 6px 0 20px; }
.ha-home-company__text { color: var(--ha-home-text); line-height: 2; margin: 0 0 20px; font-size: 0.98rem; }
.ha-home-company__text:last-of-type { margin-bottom: 28px; }
.ha-home-company__figure { display: flex; justify-content: center; }
.ha-home-company__logo {
	display: flex; align-items: center; justify-content: center;
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	padding: 40px 36px;
	width: 100%;
	max-width: 360px;
	box-shadow: var(--ha-home-shadow);
}
.ha-home-company__logo img { width: 100%; max-width: 260px; height: auto; }

/* =========================================================================
   FAQ
   ========================================================================= */
.ha-home-faq__inner { max-width: 860px; }
.ha-home-faq__list { display: flex; flex-direction: column; gap: 14px; }
.ha-home-faq__item {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	overflow: hidden;
}
.ha-home-faq__q { margin: 0; }
.ha-home-faq__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	background: none;
	border: 0;
	text-align: left;
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--ha-home-text);
	min-height: 44px;
}
.ha-home-faq__q-text::before {
	content: "Q";
	display: inline-flex;
	margin-right: 12px;
	color: var(--ha-home-orange);
	font-weight: 800;
}
.ha-home-faq__mark {
	flex: none;
	position: relative;
	width: 18px; height: 18px;
}
.ha-home-faq__mark::before,
.ha-home-faq__mark::after {
	content: "";
	position: absolute;
	background: var(--ha-home-green);
	border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}
.ha-home-faq__mark::before { left: 0; top: 8px; width: 18px; height: 2px; }
.ha-home-faq__mark::after { left: 8px; top: 0; width: 2px; height: 18px; }
.ha-home-faq__trigger[aria-expanded="true"] .ha-home-faq__mark::after { transform: scaleY(0); opacity: 0; }
.ha-home-faq__a { padding: 0 22px; }
.ha-home-faq__a p {
	padding: 0 0 20px 30px;
	color: var(--ha-home-muted);
	line-height: 1.9;
	font-size: 0.95rem;
	position: relative;
}
.ha-home-faq__a p::before {
	content: "A";
	position: absolute; left: 0; top: 0;
	color: var(--ha-home-green);
	font-weight: 800;
}

/* =========================================================================
   最終相談セクション
   ========================================================================= */
.ha-home-cta { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0; }
.ha-home-cta__media { position: absolute; inset: 0; z-index: 0; }
.ha-home-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.ha-home-cta__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,42,34,0.9), rgba(15,42,34,0.7)); }
.ha-home-cta__inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	align-items: center;
}
.ha-home-cta__title { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.5; }
.ha-home-cta__lead { color: rgba(255,255,255,0.9); margin-top: 18px; line-height: 1.9; }
.ha-home-cta__panel {
	background: #fff;
	border-radius: var(--ha-home-radius);
	padding: 32px;
	text-align: center;
	box-shadow: var(--ha-home-shadow);
}
.ha-home-cta__tel { display: inline-flex; align-items: center; gap: 10px; color: var(--ha-home-green); }
.ha-home-cta__tel-icon { display: inline-flex; }
.ha-home-cta__tel-num { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: .01em; }
.ha-home-cta__hours { color: var(--ha-home-muted); font-size: 0.86rem; margin: 4px 0 20px; }

/* =========================================================================
   フッター
   ========================================================================= */
.ha-home-footer { background: var(--ha-home-green); color: rgba(255,255,255,0.86); }
.ha-home-footer__inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding: clamp(48px, 6vw, 72px) 0 40px;
}
.ha-home-footer__logo {
	display: inline-flex;
	background: #fff;
	padding: 10px 16px;
	border-radius: 10px;
}
.ha-home-footer__logo img { height: 46px; width: auto; display: block; }
.ha-home-footer__name { display: block; font-size: 1.2rem; font-weight: 800; color: #fff; margin: 12px 0 10px; }
.ha-home-footer__desc { font-size: 0.86rem; line-height: 1.8; color: rgba(255,255,255,0.72); }
.ha-home-footer__offices { display: flex; flex-wrap: wrap; gap: 20px 40px; margin-top: 20px; }
.ha-home-footer__office {
	font-style: normal;
	font-size: 0.84rem;
	line-height: 1.85;
	color: rgba(255,255,255,0.78);
}
.ha-home-footer__office-name {
	display: table;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
	padding-bottom: 2px;
	border-bottom: 2px solid var(--ha-home-orange);
}
.ha-home-footer__office a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.ha-home-footer__office a:hover { color: #fff; }
.ha-home-footer__heading { font-size: 0.95rem; color: #fff; margin-bottom: 16px; font-weight: 700; }
.ha-home-footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.ha-home-footer__col a { font-size: 0.9rem; color: rgba(255,255,255,0.82); transition: color .2s ease; }
.ha-home-footer__col a:hover { color: #fff; text-decoration: underline; }
.ha-home-footer__tel { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.ha-home-footer__hours { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.ha-home-footer__contact .ha-home-btn { margin-top: 4px; }
.ha-home-footer__bottom { border-top: 1px solid rgba(255,255,255,0.15); }
.ha-home-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
}
.ha-home-footer__legal { display: flex; gap: 20px; }
.ha-home-footer__legal a { font-size: 0.82rem; color: rgba(255,255,255,0.78); }
.ha-home-footer__legal a:hover { color: #fff; text-decoration: underline; }
.ha-home-footer__legal-btn {
	background: none;
	border: 0;
	padding: 0;
	font-size: 0.82rem;
	font-family: inherit;
	color: rgba(255,255,255,0.78);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.ha-home-footer__legal-btn:hover { color: #fff; }

/* =========================================================================
   プライバシーポリシー ポップアップ（モーダル）
   ========================================================================= */
.ha-home-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	visibility: hidden;
	pointer-events: none;
}
.ha-home-modal.is-open { visibility: visible; pointer-events: auto; }
.ha-home-modal__overlay {
	position: absolute; inset: 0;
	z-index: 1;
	background: rgba(15, 42, 34, 0.6);
	border: 0; padding: 0; margin: 0;
	opacity: 0; transition: opacity .25s ease;
}
.ha-home-modal.is-open .ha-home-modal__overlay { opacity: 1; }
.ha-home-modal__panel {
	position: absolute;
	top: 50%; left: 50%;
	z-index: 2;
	width: min(92vw, 720px);
	max-height: min(86vh, 900px);
	background: #fff;
	border-radius: var(--ha-home-radius);
	box-shadow: 0 24px 60px rgba(0,0,0,0.25);
	display: flex;
	flex-direction: column;
	transform: translate(-50%, -48%);
	opacity: 0;
	transition: opacity .25s ease, transform .25s ease;
}
.ha-home-modal.is-open .ha-home-modal__panel { opacity: 1; transform: translate(-50%, -50%); }
.ha-home-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	border-bottom: 1px solid var(--ha-home-border);
	flex: none;
}
.ha-home-modal__title { font-size: 1.15rem; color: var(--ha-home-green); }
.ha-home-modal__close {
	flex: none;
	width: 40px; height: 40px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--ha-home-border);
	border-radius: 50%;
	background: #fff;
	color: var(--ha-home-text);
}
.ha-home-modal__close:hover { background: var(--ha-home-green-light); }
.ha-home-modal__body {
	padding: 24px;
	overflow-y: auto;
	font-size: 0.92rem;
	line-height: 1.9;
	color: var(--ha-home-text);
}
.ha-home-modal__body h3 { font-size: 1rem; color: var(--ha-home-green); margin: 24px 0 10px; }
.ha-home-modal__body h3:first-child { margin-top: 0; }
.ha-home-modal__body p { margin-bottom: 12px; }
.ha-home-modal__body ul { margin: 0 0 12px; padding-left: 4px; }
.ha-home-modal__body ul li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 6px;
}
.ha-home-modal__body ul li::before {
	content: "";
	position: absolute; left: 2px; top: 0.65em;
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--ha-home-orange);
}
.ha-home-modal__contact {
	background: var(--ha-home-ivory);
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	padding: 16px 18px;
	line-height: 1.9;
}
.ha-home-modal__contact a { color: var(--ha-home-green); text-decoration: underline; }

@media (max-width: 640px) {
	.ha-home-modal__panel { width: min(94vw, 720px); max-height: 88vh; }
	.ha-home-modal__head { padding: 16px 18px; }
	.ha-home-modal__body { padding: 18px; }
}
.ha-home-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.66); }

/* =========================================================================
   ページ上部へ戻る
   ========================================================================= */
.ha-home-totop {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 900;
	width: 50px; height: 50px;
	border-radius: 50%;
	border: 0;
	background: var(--ha-home-green);
	color: #fff;
	display: inline-flex;
	align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
}
.ha-home-totop.is-visible { opacity: 1; transform: translateY(0); }
.ha-home-totop:hover { background: var(--ha-home-green-dark); }

/* =========================================================================
   スクロール表示アニメーション
   ========================================================================= */
/* スクロール表示アニメーションは JS 有効時（.ha-home-anim）だけ有効化する。
   JS が読み込まれない／初期化されない場合は非表示にせず、必ず内容が見える。 */
.ha-home-anim [data-ha-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
	will-change: opacity, transform;
}
.ha-home-anim [data-ha-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* フォーカス可視化 */
.ha-home-page a:focus-visible,
.ha-home-page button:focus-visible,
.ha-home-drawer__overlay:focus-visible {
	outline: 3px solid var(--ha-home-orange);
	outline-offset: 3px;
	border-radius: 4px;
}

/* =========================================================================
   スクロール停止（メニュー表示中）
   ========================================================================= */
body.ha-home-no-scroll { overflow: hidden; }

/* =========================================================================
   レスポンシブ
   ========================================================================= */
@media (max-width: 1024px) {
	.ha-home-assurance__list { grid-template-columns: repeat(2, 1fr); gap: 6px 20px; }
	.ha-home-assurance__item + .ha-home-assurance__item::before { display: none; }
	.ha-home-values__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
	.ha-home-cases__grid { grid-template-columns: repeat(2, 1fr); }
	.ha-home-flow__list { grid-template-columns: repeat(2, 1fr); }
	.ha-home-voices__grid { grid-template-columns: 1fr; }
	.ha-home-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	:root { }
	.ha-home-nav,
	.ha-home-header__cta,
	.ha-home-tel { display: none; }
	.ha-home-burger { display: flex; }
	.ha-home-header__actions { margin-left: auto; }
	.ha-home-business__grid { grid-template-columns: 1fr; gap: 24px; }
	.ha-home-company__inner { grid-template-columns: 1fr; }
	.ha-home-company__figure { order: -1; }
	.ha-home-cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.ha-home-page { --ha-home-header-h: 72px; --ha-home-gutter: 18px; }
	.ha-home-header .ha-home-logo__img { height: 44px; }
	.ha-home-logo { gap: 8px; }
	.ha-home-logo__name { font-size: 0.8rem; }
	.ha-home-hero { min-height: clamp(500px, 78vh, 640px); }
	.ha-home-hero__overlay {
		background: linear-gradient(180deg, rgba(15,42,34,0.55) 0%, rgba(15,42,34,0.72) 100%);
	}
	.ha-home-hero__copy { padding: 30px 0; }
	.ha-home-hero__actions { flex-direction: column; align-items: stretch; }
	.ha-home-hero__actions .ha-home-btn { width: 100%; }
	.ha-home-assurance__list { grid-template-columns: 1fr; gap: 4px; }
	.ha-home-values__grid { grid-template-columns: 1fr; }
	.ha-home-cases__grid { grid-template-columns: 1fr; }
	.ha-home-flow__list { grid-template-columns: 1fr; }
	.ha-home-card__services { grid-template-columns: 1fr; }
	.ha-home-footer__inner { grid-template-columns: 1fr; gap: 30px; }
	.ha-home-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
	.ha-home-cta__panel { padding: 26px 20px; }
}

/* =========================================================================
   お問い合わせページ（[home_assist_contact]）
   ========================================================================= */
.ha-home-contact-hero {
	background: var(--ha-home-green);
	color: #fff;
	padding: clamp(48px, 7vw, 80px) 0;
}
.ha-home-contact-hero h1 {
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
	margin: 10px 0 16px;
}
.ha-home-contact-hero__lead {
	max-width: 640px;
	color: rgba(255,255,255,0.88);
	line-height: 1.9;
}

.ha-home-contact-body { background: var(--ha-home-ivory); }
.ha-home-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

.ha-home-contact-info {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	padding: 28px 26px;
	box-shadow: var(--ha-home-shadow);
}
.ha-home-contact-info h2 { font-size: 1.1rem; color: var(--ha-home-green); margin-bottom: 10px; }
.ha-home-contact-info__tel { display: block; font-size: 1.7rem; font-weight: 800; color: var(--ha-home-green); }
.ha-home-contact-info__hours { font-size: 0.82rem; color: var(--ha-home-muted); margin: 4px 0 20px; }
.ha-home-contact-info__points { margin-bottom: 24px; }
.ha-home-contact-info__points li {
	position: relative;
	padding-left: 20px;
	font-size: 0.88rem;
	color: var(--ha-home-text);
	line-height: 1.8;
	margin-bottom: 6px;
}
.ha-home-contact-info__points li::before {
	content: "";
	position: absolute; left: 0; top: 0.6em;
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--ha-home-orange);
}
.ha-home-contact-info__office { border-top: 1px solid var(--ha-home-border); padding-top: 18px; }
.ha-home-contact-info__office h3 { font-size: 0.92rem; color: var(--ha-home-green); margin: 14px 0 4px; }
.ha-home-contact-info__office h3:first-child { margin-top: 0; }
.ha-home-contact-info__office p { font-size: 0.85rem; color: var(--ha-home-muted); line-height: 1.8; }
.ha-home-contact-info__office a { color: var(--ha-home-green); text-decoration: underline; }

.ha-home-contact-form-wrap {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	padding: clamp(24px, 3vw, 36px);
	box-shadow: var(--ha-home-shadow);
}

.ha-home-notice {
	border-radius: var(--ha-home-radius-sm);
	padding: 18px 20px;
	font-size: 0.9rem;
	line-height: 1.8;
}
.ha-home-notice--success {
	background: var(--ha-home-green-light);
	border: 1px solid var(--ha-home-green);
	color: var(--ha-home-green);
}
.ha-home-notice--success h2 { font-size: 1.05rem; margin-bottom: 6px; color: var(--ha-home-green); }
.ha-home-notice--error {
	background: #fdf1ec;
	border: 1px solid var(--ha-home-orange);
	color: var(--ha-home-orange-dark);
	margin-bottom: 20px;
}
.ha-home-notice--error ul { margin-top: 6px; padding-left: 18px; list-style: disc; }
.ha-home-notice--error li { margin-bottom: 4px; }

.ha-home-contact-form { display: flex; flex-direction: column; gap: 18px; }
.ha-home-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ha-home-form-field { display: flex; flex-direction: column; gap: 6px; }
.ha-home-form-field label,
.ha-home-form-legend {
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--ha-home-text);
}
.ha-home-form-required {
	display: inline-block;
	margin-left: 6px;
	font-size: 0.7rem;
	font-weight: 700;
	color: #fff;
	background: var(--ha-home-orange);
	border-radius: 999px;
	padding: 1px 8px;
	vertical-align: middle;
}
.ha-home-form-field input[type="text"],
.ha-home-form-field input[type="email"],
.ha-home-form-field input[type="tel"],
.ha-home-form-field select,
.ha-home-form-field textarea {
	width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--ha-home-text);
	background: #fff;
}
.ha-home-form-field textarea { min-height: 140px; resize: vertical; }
.ha-home-form-field input:focus-visible,
.ha-home-form-field select:focus-visible,
.ha-home-form-field textarea:focus-visible {
	outline: 2px solid var(--ha-home-green);
	outline-offset: 1px;
}
.ha-home-form-field input[aria-invalid="true"],
.ha-home-form-field select[aria-invalid="true"],
.ha-home-form-field textarea[aria-invalid="true"] {
	border-color: var(--ha-home-orange);
}
.ha-home-form-radios { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.ha-home-form-radio { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--ha-home-text); }
.ha-home-form-checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: var(--ha-home-text); line-height: 1.7; }
.ha-home-form-checkbox input { margin-top: 3px; }
.ha-home-inline-link {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	color: var(--ha-home-green);
	text-decoration: underline;
	cursor: pointer;
}
/* ハニーポット（スパム対策）。人には見せない。 */
.ha-home-hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
	.ha-home-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.ha-home-form-row { grid-template-columns: 1fr; }
}

/* =========================================================================
   送信完了トースト通知（邪魔にならない控えめな表示）
   ========================================================================= */
.ha-home-toast {
	position: fixed;
	top: calc(var(--ha-home-header-h) + 16px);
	right: 16px;
	z-index: 100050;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: min(92vw, 380px);
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-left: 4px solid var(--ha-home-green);
	border-radius: var(--ha-home-radius-sm);
	box-shadow: 0 14px 34px rgba(0,0,0,0.18);
	padding: 14px 16px;
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
	transition: opacity .3s ease, transform .3s ease;
}
.ha-home-toast.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ha-home-toast__icon {
	flex: none;
	display: inline-flex;
	margin-top: 2px;
	color: var(--ha-home-green);
}
.ha-home-toast__text { flex: 1; margin: 0; font-size: 0.86rem; line-height: 1.7; color: var(--ha-home-text); }
.ha-home-toast__close {
	flex: none;
	width: 26px; height: 26px;
	display: inline-flex; align-items: center; justify-content: center;
	background: none;
	border: 0;
	border-radius: 50%;
	color: var(--ha-home-muted);
}
.ha-home-toast__close:hover { background: var(--ha-home-green-light); color: var(--ha-home-text); }

@media (max-width: 640px) {
	.ha-home-toast {
		left: 16px;
		right: 16px;
		top: auto;
		bottom: 16px;
		width: auto;
		transform: translateY(10px);
	}
	.ha-home-toast.is-visible { transform: translateY(0); }
}

/* =========================================================================
   事業内容ページ（[home_assist_business]）
   ========================================================================= */
.ha-home-business-hero {
	position: relative;
	min-height: clamp(420px, 52vh, 560px);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.ha-home-business-hero__media { position: absolute; inset: 0; z-index: 0; }
.ha-home-business-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.ha-home-business-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(160deg, rgba(11,35,56,0.88) 0%, rgba(11,35,56,0.62) 45%, rgba(11,35,56,0.85) 100%);
}
.ha-home-business-hero__inner { position: relative; z-index: 1; text-align: center; color: #fff; padding: 40px 0; }
.ha-home-business-hero__eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(217, 111, 32, 0.92);
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.ha-home-business-hero__title {
	font-size: clamp(2.1rem, 4.8vw, 3.2rem);
	line-height: 1.3;
	letter-spacing: .01em;
	text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.ha-home-business-hero__lead {
	margin: 20px auto 0;
	max-width: 640px;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	color: rgba(255,255,255,0.92);
	text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}

/* 結び（控えめな案内。強い訴求のボタン・帯は使わない） */
.ha-home-business-note__inner {
	text-align: center;
}
.ha-home-business-note__text {
	color: var(--ha-home-muted);
	font-size: 0.98rem;
	margin-bottom: 14px;
}
.ha-home-business-note__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	color: var(--ha-home-green);
	padding: 4px 0;
	border-bottom: 1px solid var(--ha-home-green);
}
.ha-home-business-note__link:hover { color: var(--ha-home-orange-dark); border-color: var(--ha-home-orange-dark); }

/* =========================================================================
   太陽光パネル洗浄・コーティングページ（[home_assist_solar_care]）
   ========================================================================= */
.ha-home-solarcare-hero {
	position: relative;
	min-height: clamp(480px, 62vh, 660px);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.ha-home-solarcare-hero__media { position: absolute; inset: 0; z-index: 0; }
.ha-home-solarcare-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.ha-home-solarcare-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(160deg, rgba(11,35,56,0.88) 0%, rgba(11,35,56,0.62) 45%, rgba(11,35,56,0.85) 100%);
}
.ha-home-solarcare-hero__inner { position: relative; z-index: 1; text-align: center; color: #fff; padding: 40px 0; }
.ha-home-solarcare-hero__eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(217, 111, 32, 0.92);
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.ha-home-solarcare-hero__badge {
	display: inline-block;
	background: rgba(255,255,255,0.14);
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 999px;
	padding: 6px 18px;
	font-size: 0.85rem;
	font-weight: 700;
	margin: 0 0 16px;
}
.ha-home-solarcare-hero__title {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	font-size: clamp(1.9rem, 4.4vw, 3rem);
	line-height: 1.38;
	letter-spacing: .01em;
	text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.ha-home-solarcare-hero__title-line {
	display: block;
	text-align: justify;
	text-align-last: justify;
	text-justify: inter-character;
}
.ha-home-solarcare-hero__lead {
	margin-top: 20px;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	color: rgba(255,255,255,0.92);
	text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.ha-home-solarcare-hero__scroll {
	margin-top: 40px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	transition: color .2s ease;
}
.ha-home-solarcare-hero__scroll:hover,
.ha-home-solarcare-hero__scroll:focus-visible { color: #fff; }
.ha-home-solarcare-hero__scroll-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
}
.ha-home-solarcare-hero__scroll-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.55);
	animation: ha-home-solarcare-scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes ha-home-solarcare-scroll-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

/* お悩みグリッド */
.ha-home-solarcare-worries { background: #fff; }
.ha-home-solarcare-worries__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.ha-home-solarcare-worry {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	padding: 30px 24px;
	text-align: center;
	box-shadow: var(--ha-home-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
}
.ha-home-solarcare-worry:hover { transform: translateY(-4px); box-shadow: var(--ha-home-shadow-hover); }
.ha-home-solarcare-worry__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--ha-home-green-light);
	color: var(--ha-home-green);
	margin-bottom: 16px;
}
.ha-home-solarcare-worry h3 { font-size: 1.02rem; color: var(--ha-home-green); margin-bottom: 8px; }
.ha-home-solarcare-worry p { font-size: 0.86rem; color: var(--ha-home-muted); line-height: 1.7; }

/* 汚れの種類 */
.ha-home-solarcare-dirt { background: var(--ha-home-ivory); }
.ha-home-solarcare-dirt__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}
.ha-home-solarcare-dirt__card {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	overflow: hidden;
	box-shadow: var(--ha-home-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
}
.ha-home-solarcare-dirt__card:hover { transform: translateY(-4px); box-shadow: var(--ha-home-shadow-hover); }
.ha-home-solarcare-dirt__media { aspect-ratio: 10 / 7; overflow: hidden; }
.ha-home-solarcare-dirt__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ha-home-solarcare-dirt__card:hover .ha-home-solarcare-dirt__media img { transform: scale(1.06); }
.ha-home-solarcare-dirt__card h3 { font-size: 0.98rem; color: var(--ha-home-green); margin: 14px 16px 6px; }
.ha-home-solarcare-dirt__card p { font-size: 0.82rem; color: var(--ha-home-muted); line-height: 1.7; margin: 0 16px 16px; }

.ha-home-solarcare-alert {
	background: var(--ha-home-green-light);
	border: 1px solid var(--ha-home-green);
	border-radius: var(--ha-home-radius);
	padding: 24px 28px;
}
.ha-home-solarcare-alert h3 { font-size: 1.02rem; color: var(--ha-home-green); margin-bottom: 12px; }
.ha-home-solarcare-alert ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
.ha-home-solarcare-alert li {
	position: relative;
	padding-left: 20px;
	font-size: 0.88rem;
	color: var(--ha-home-text);
}
.ha-home-solarcare-alert li::before {
	content: "";
	position: absolute; left: 0; top: 0.6em;
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--ha-home-orange);
}

/* AD-Tech COAT */
.ha-home-solarcare-coat { background: #fff; }
.ha-home-solarcare-video { margin-bottom: 40px; }
.ha-home-solarcare-video video {
	width: 100%;
	height: auto;
	border-radius: var(--ha-home-radius);
	box-shadow: var(--ha-home-shadow);
	display: block;
	pointer-events: none;
}
.ha-home-solarcare-video video::-webkit-media-controls,
.ha-home-solarcare-video video::-webkit-media-controls-panel,
.ha-home-solarcare-video video::-webkit-media-controls-start-playback-button {
	display: none !important;
	-webkit-appearance: none;
}
.ha-home-solarcare-coat__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.ha-home-solarcare-coat__card {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-top: 3px solid var(--ha-home-green);
	border-radius: var(--ha-home-radius-sm);
	padding: 26px 22px;
	box-shadow: var(--ha-home-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
}
.ha-home-solarcare-coat__card:hover { transform: translateY(-4px); box-shadow: var(--ha-home-shadow-hover); }
.ha-home-solarcare-coat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ha-home-green-light);
	color: var(--ha-home-green);
	margin-bottom: 16px;
}
.ha-home-solarcare-coat__card h3 { font-size: 1rem; color: var(--ha-home-green); margin-bottom: 8px; }
.ha-home-solarcare-coat__card p { font-size: 0.85rem; color: var(--ha-home-muted); line-height: 1.75; }

/* 比較表 */
.ha-home-solarcare-compare { background: var(--ha-home-ivory); }
.ha-home-solarcare-compare__table-wrap {
	overflow-x: auto;
	border-radius: var(--ha-home-radius);
	box-shadow: var(--ha-home-shadow);
}
.ha-home-solarcare-compare__table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	min-width: 480px;
}
.ha-home-solarcare-compare__table th,
.ha-home-solarcare-compare__table td {
	padding: 15px 18px;
	text-align: center;
	border-bottom: 1px solid var(--ha-home-border);
	font-size: 0.9rem;
}
.ha-home-solarcare-compare__table thead th {
	background: var(--ha-home-green);
	color: #fff;
	font-size: 0.88rem;
}
.ha-home-solarcare-compare__table tbody th {
	text-align: left;
	font-weight: 700;
	color: var(--ha-home-text);
	background: var(--ha-home-ivory);
}
.ha-home-solarcare-compare__table tbody tr:last-child th,
.ha-home-solarcare-compare__table tbody tr:last-child td { border-bottom: none; }
.ha-home-solarcare-compare__table tbody tr:hover td,
.ha-home-solarcare-compare__table tbody tr:hover th { background: var(--ha-home-green-light); }
.ha-home-solarcare-compare__ok { color: var(--ha-home-green); font-weight: 800; font-size: 1.05rem; }
.ha-home-solarcare-compare__ng { color: var(--ha-home-muted); font-weight: 800; font-size: 1.05rem; }
.ha-home-solarcare-compare__maybe { color: var(--ha-home-orange); font-weight: 800; font-size: 1.05rem; }

/* 施工事例導線 */
.ha-home-solarcare-works { background: #fff; text-align: center; }
.ha-home-solarcare-works__list { display: inline-flex; flex-direction: column; gap: 10px; margin: 0 auto 28px; text-align: left; }
.ha-home-solarcare-works__list li {
	position: relative;
	padding-left: 26px;
	font-size: 0.92rem;
	color: var(--ha-home-text);
}
.ha-home-solarcare-works__list li::before {
	content: "✓";
	position: absolute; left: 0; top: 0;
	color: var(--ha-home-green);
	font-weight: 800;
}

/* 最終CTAのチェックリスト（.ha-home-cta は既存トップページのCTAスタイルを流用） */
.ha-home-solarcare-cta__points { margin-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
.ha-home-solarcare-cta__points li {
	position: relative;
	padding-left: 20px;
	font-size: 0.86rem;
	color: rgba(255,255,255,0.92);
}
.ha-home-solarcare-cta__points li::before {
	content: "✓";
	position: absolute; left: 0; top: 0;
	color: #fff;
	font-weight: 800;
}

@media (max-width: 1024px) {
	.ha-home-solarcare-worries__grid { grid-template-columns: repeat(2, 1fr); }
	.ha-home-solarcare-dirt__grid { grid-template-columns: repeat(2, 1fr); }
	.ha-home-solarcare-coat__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.ha-home-solarcare-worries__grid { grid-template-columns: 1fr; }
	.ha-home-solarcare-dirt__grid { grid-template-columns: 1fr; }
	.ha-home-solarcare-coat__grid { grid-template-columns: 1fr; }
	.ha-home-solarcare-alert ul { grid-template-columns: 1fr; }
	.ha-home-solarcare-cta__points { grid-template-columns: 1fr; }

	.ha-home-solarcare-compare__table-wrap { overflow-x: visible; }
	.ha-home-solarcare-compare__table {
		min-width: 0;
		table-layout: fixed;
	}
	.ha-home-solarcare-compare__table th,
	.ha-home-solarcare-compare__table td {
		padding: 10px 6px;
		font-size: 0.72rem;
		line-height: 1.4;
		word-break: break-word;
	}
	.ha-home-solarcare-compare__table thead th:first-child,
	.ha-home-solarcare-compare__table tbody th { width: 40%; }
	.ha-home-solarcare-compare__table thead th:not(:first-child),
	.ha-home-solarcare-compare__table td { width: 30%; }
	.ha-home-solarcare-compare__ok,
	.ha-home-solarcare-compare__ng,
	.ha-home-solarcare-compare__maybe { font-size: 0.95rem; }
}

/* =========================================================================
   太陽光パネル・蓄電池 販売ページ（[home_assist_solar_sales]）
   ========================================================================= */
.ha-home-sales-hero {
	position: relative;
	min-height: clamp(480px, 62vh, 660px);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.ha-home-sales-hero__media { position: absolute; inset: 0; z-index: 0; }
.ha-home-sales-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.ha-home-sales-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(160deg, rgba(11,35,56,0.88) 0%, rgba(11,35,56,0.62) 45%, rgba(11,35,56,0.85) 100%);
}
.ha-home-sales-hero__inner { position: relative; z-index: 1; text-align: center; color: #fff; padding: 40px 0; }
.ha-home-sales-hero__eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(217, 111, 32, 0.92);
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.ha-home-sales-hero__title {
	font-size: clamp(1.9rem, 4.4vw, 3rem);
	line-height: 1.38;
	letter-spacing: .01em;
	text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.ha-home-sales-hero__lead {
	margin: 20px auto 0;
	max-width: 720px;
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	line-height: 1.9;
	color: rgba(255,255,255,0.92);
	text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.ha-home-sales-hero__points {
	margin: 28px auto 0;
	max-width: 640px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 18px;
}
.ha-home-sales-hero__points li {
	position: relative;
	padding-left: 20px;
	font-size: 0.86rem;
	color: rgba(255,255,255,0.92);
}
.ha-home-sales-hero__points li::before {
	content: "✓";
	position: absolute; left: 0; top: 0;
	color: var(--ha-home-orange);
	font-weight: 800;
}

/* よくある悩み */
.ha-home-sales-worries { background: #fff; }
.ha-home-sales-worries__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 20px;
	margin-bottom: 28px;
}
.ha-home-sales-worry {
	position: relative;
	padding: 16px 20px 16px 44px;
	background: var(--ha-home-ivory);
	border-radius: var(--ha-home-radius-sm);
	font-size: 0.92rem;
	color: var(--ha-home-text);
}
.ha-home-sales-worry::before {
	content: "";
	position: absolute; left: 18px; top: 50%;
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--ha-home-orange);
	transform: translateY(-50%);
}
.ha-home-sales-worries__note { color: var(--ha-home-muted); font-size: 0.9rem; line-height: 1.9; }

/* できること（3ステップ） */
.ha-home-sales-flow { background: var(--ha-home-ivory); }
.ha-home-sales-flow__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.ha-home-sales-flow__step {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	padding: 28px 24px;
	box-shadow: var(--ha-home-shadow);
}
.ha-home-sales-flow__num { font-size: 1.6rem; font-weight: 800; color: var(--ha-home-green); opacity: 0.5; margin-bottom: 8px; }
.ha-home-sales-flow__step h3 { font-size: 1.05rem; color: var(--ha-home-green); margin-bottom: 10px; }
.ha-home-sales-flow__step p { font-size: 0.88rem; color: var(--ha-home-muted); line-height: 1.8; }

/* 導入パターン */
.ha-home-sales-equipment { background: #fff; }
.ha-home-sales-equipment__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.ha-home-sales-equipment__card {
	text-align: center;
	background: var(--ha-home-ivory);
	border-radius: var(--ha-home-radius);
	padding: 30px 20px;
}
.ha-home-sales-equipment__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--ha-home-green-light);
	color: var(--ha-home-green);
	margin-bottom: 16px;
}
.ha-home-sales-equipment__card h3 { font-size: 1rem; color: var(--ha-home-green); margin-bottom: 8px; }
.ha-home-sales-equipment__card p { font-size: 0.85rem; color: var(--ha-home-muted); line-height: 1.75; }

/* 検討時に確認すること */
.ha-home-sales-check { background: var(--ha-home-ivory); }
.ha-home-sales-check__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 20px;
}
.ha-home-sales-check__grid li {
	position: relative;
	padding: 16px 20px 16px 44px;
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	font-size: 0.92rem;
	color: var(--ha-home-text);
}
.ha-home-sales-check__grid li::before {
	content: "";
	position: absolute; left: 18px; top: 50%;
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--ha-home-green);
	transform: translateY(-50%);
}
.ha-home-sales-check__note { margin-top: 20px; font-size: 0.88rem; color: var(--ha-home-muted); line-height: 1.85; }

@media (max-width: 1024px) {
	.ha-home-sales-flow__list { grid-template-columns: 1fr; }
	.ha-home-sales-equipment__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.ha-home-sales-worries__grid { grid-template-columns: 1fr; }
	.ha-home-sales-equipment__grid { grid-template-columns: 1fr; }
	.ha-home-sales-check__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   太陽光設備点検ページ（[home_assist_solar_inspection]）
   ========================================================================= */
.ha-home-inspect-hero {
	position: relative;
	min-height: clamp(480px, 62vh, 660px);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.ha-home-inspect-hero__media { position: absolute; inset: 0; z-index: 0; }
.ha-home-inspect-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.ha-home-inspect-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(160deg, rgba(11,35,56,0.88) 0%, rgba(11,35,56,0.62) 45%, rgba(11,35,56,0.85) 100%);
}
.ha-home-inspect-hero__inner { position: relative; z-index: 1; text-align: center; color: #fff; padding: 40px 0; }
.ha-home-inspect-hero__eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(217, 111, 32, 0.92);
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.ha-home-inspect-hero__title {
	font-size: clamp(1.9rem, 4.4vw, 3rem);
	line-height: 1.38;
	letter-spacing: .01em;
	text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.ha-home-inspect-hero__lead {
	margin: 20px auto 0;
	max-width: 680px;
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	line-height: 1.9;
	color: rgba(255,255,255,0.92);
	text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.ha-home-inspect-hero__points {
	margin: 28px auto 0;
	max-width: 620px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 24px;
}
.ha-home-inspect-hero__points li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.86rem;
	color: rgba(255,255,255,0.92);
}
.ha-home-inspect-hero__point-icon { display: inline-flex; color: var(--ha-home-orange); }

/* よくある悩み */
.ha-home-inspect-worries { background: #fff; }
.ha-home-inspect-worries__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 20px;
	margin-bottom: 28px;
}
.ha-home-inspect-worry {
	position: relative;
	padding: 16px 20px 16px 44px;
	background: var(--ha-home-ivory);
	border-radius: var(--ha-home-radius-sm);
	font-size: 0.92rem;
	color: var(--ha-home-text);
}
.ha-home-inspect-worry::before {
	content: "";
	position: absolute; left: 18px; top: 50%;
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--ha-home-orange);
	transform: translateY(-50%);
}
.ha-home-inspect-worries__note { color: var(--ha-home-muted); font-size: 0.9rem; line-height: 1.9; }

/* 点検する箇所 */
.ha-home-inspect-points { background: var(--ha-home-ivory); }
.ha-home-inspect-point {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	box-shadow: var(--ha-home-shadow);
	overflow: hidden;
	margin-bottom: 32px;
}
.ha-home-inspect-point--reverse { direction: rtl; }
.ha-home-inspect-point--reverse > * { direction: ltr; }
.ha-home-inspect-point__media { aspect-ratio: 9 / 7; overflow: hidden; }
.ha-home-inspect-point__media img { width: 100%; height: 100%; object-fit: cover; }
.ha-home-inspect-point__body { padding: 30px 34px 30px 0; }
.ha-home-inspect-point--reverse .ha-home-inspect-point__body { padding: 30px 0 30px 34px; }
.ha-home-inspect-point__num { font-size: 1.3rem; font-weight: 800; color: var(--ha-home-green); opacity: 0.5; margin-bottom: 6px; }
.ha-home-inspect-point__body h3 { font-size: 1.2rem; color: var(--ha-home-green); margin-bottom: 14px; }
.ha-home-inspect-point__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 16px;
	margin-bottom: 14px;
}
.ha-home-inspect-point__list li {
	position: relative;
	padding-left: 18px;
	font-size: 0.86rem;
	color: var(--ha-home-text);
}
.ha-home-inspect-point__list li::before {
	content: "";
	position: absolute; left: 0; top: 0.6em;
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--ha-home-green);
}
.ha-home-inspect-point__note { font-size: 0.84rem; color: var(--ha-home-muted); line-height: 1.8; }

.ha-home-inspect-point-mini__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 32px;
}
.ha-home-inspect-point-mini {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	padding: 22px 20px;
	box-shadow: var(--ha-home-shadow);
}
.ha-home-inspect-point-mini__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--ha-home-green-light);
	color: var(--ha-home-green);
	margin-bottom: 10px;
}
.ha-home-inspect-point-mini__num { font-size: 0.78rem; font-weight: 800; color: var(--ha-home-orange); }
.ha-home-inspect-point-mini h3 { font-size: 0.94rem; color: var(--ha-home-green); margin: 4px 0 10px; }
.ha-home-inspect-point-mini ul li {
	position: relative;
	padding-left: 14px;
	font-size: 0.78rem;
	color: var(--ha-home-muted);
	line-height: 1.8;
}
.ha-home-inspect-point-mini ul li::before { content: "・"; position: absolute; left: 0; }

/* 点検で分かること */
.ha-home-inspect-result { background: #fff; }
.ha-home-inspect-result__note {
	max-width: 760px;
	margin: 0 auto;
	background: var(--ha-home-ivory);
	border-radius: var(--ha-home-radius);
	padding: 28px 32px;
	text-align: center;
}
.ha-home-inspect-result__note p { font-size: 0.95rem; color: var(--ha-home-text); line-height: 1.9; }

/* 実際の劣化・変化 */
.ha-home-inspect-cases { background: var(--ha-home-ivory); }
.ha-home-inspect-cases__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.ha-home-inspect-cases__card {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius-sm);
	overflow: hidden;
	box-shadow: var(--ha-home-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
}
.ha-home-inspect-cases__card:hover { transform: translateY(-4px); box-shadow: var(--ha-home-shadow-hover); }
.ha-home-inspect-cases__media { aspect-ratio: 10 / 7; overflow: hidden; }
.ha-home-inspect-cases__media img { width: 100%; height: 100%; object-fit: cover; }
.ha-home-inspect-cases__body { padding: 18px 18px 20px; }
.ha-home-inspect-cases__body h3 { font-size: 1rem; color: var(--ha-home-green); margin-bottom: 10px; }
.ha-home-inspect-cases__body p { font-size: 0.8rem; color: var(--ha-home-muted); line-height: 1.75; margin-bottom: 4px; }
.ha-home-inspect-cases__body p strong { color: var(--ha-home-text); }

/* 点検の流れ */
.ha-home-inspect-flow { background: #fff; }
.ha-home-inspect-flow__list { display: flex; flex-direction: column; gap: 20px; }
.ha-home-inspect-flow__step {
	position: relative;
	display: flex;
	align-items: stretch;
	background: var(--ha-home-ivory);
	border-radius: var(--ha-home-radius);
	overflow: hidden;
}
.ha-home-inspect-flow__media { flex: 0 0 240px; aspect-ratio: 4 / 3; overflow: hidden; }
.ha-home-inspect-flow__media img { width: 100%; height: 100%; object-fit: cover; }
.ha-home-inspect-flow__body {
	position: relative;
	flex: 1;
	min-width: 0;
	padding: 24px 28px 24px 100px;
}
.ha-home-inspect-flow__body--full { padding-left: 100px; }
.ha-home-inspect-flow__num {
	position: absolute; left: 24px; top: 24px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: .06em;
	color: #fff;
	background: var(--ha-home-green);
	padding: 6px 12px;
	border-radius: 999px;
}
.ha-home-inspect-flow__body h3 { font-size: 1.05rem; color: var(--ha-home-green); margin-bottom: 10px; }
.ha-home-inspect-flow__body p { font-size: 0.88rem; color: var(--ha-home-muted); line-height: 1.85; }
.ha-home-inspect-flow__note { margin-top: 8px; font-size: 0.8rem; color: var(--ha-home-muted); font-style: italic; }
.ha-home-inspect-flow__substeps { margin-top: 4px; display: flex; flex-direction: column; gap: 6px; }
.ha-home-inspect-flow__substeps li {
	position: relative;
	padding-left: 20px;
	font-size: 0.86rem;
	color: var(--ha-home-muted);
	line-height: 1.8;
}
.ha-home-inspect-flow__substeps li::before {
	content: "";
	position: absolute; left: 0; top: 0.6em;
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--ha-home-orange);
}
.ha-home-inspect-flow__photos {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.ha-home-inspect-flow__photos li { text-align: center; }
.ha-home-inspect-flow__photos img {
	width: 100%;
	aspect-ratio: 7 / 5;
	object-fit: cover;
	border-radius: var(--ha-home-radius-sm);
	box-shadow: var(--ha-home-shadow);
	margin-bottom: 8px;
}
.ha-home-inspect-flow__photos span { font-size: 0.78rem; color: var(--ha-home-muted); }

/* 点検概要 */
.ha-home-inspect-overview { background: var(--ha-home-ivory); }
.ha-home-inspect-overview__table-wrap {
	background: #fff;
	border-radius: var(--ha-home-radius);
	box-shadow: var(--ha-home-shadow);
	overflow: hidden;
}
.ha-home-inspect-overview__table { width: 100%; border-collapse: collapse; }
.ha-home-inspect-overview__table th,
.ha-home-inspect-overview__table td {
	padding: 16px 22px;
	border-bottom: 1px solid var(--ha-home-border);
	font-size: 0.9rem;
	text-align: left;
}
.ha-home-inspect-overview__table th {
	width: 30%;
	color: var(--ha-home-green);
	font-weight: 700;
	background: var(--ha-home-green-light);
}
.ha-home-inspect-overview__table td { color: var(--ha-home-text); }
.ha-home-inspect-overview__table tr:last-child th,
.ha-home-inspect-overview__table tr:last-child td { border-bottom: none; }
.ha-home-inspect-overview__note { margin-top: 16px; font-size: 0.84rem; color: var(--ha-home-muted); line-height: 1.85; }

/* ホームアシストの方針 */
.ha-home-inspect-policy { background: #fff; }
.ha-home-inspect-policy__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.ha-home-inspect-policy__item {
	background: var(--ha-home-ivory);
	border-radius: var(--ha-home-radius);
	padding: 26px 24px;
}
.ha-home-inspect-policy__num {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 800;
	color: #fff;
	background: var(--ha-home-orange);
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.ha-home-inspect-policy__item h3 { font-size: 1rem; color: var(--ha-home-green); margin-bottom: 8px; }
.ha-home-inspect-policy__item p { font-size: 0.85rem; color: var(--ha-home-muted); line-height: 1.8; }

/* 安全面の補足（控えめに掲載） */
.ha-home-inspect-safety { background: var(--ha-home-ivory); }
.ha-home-inspect-safety__inner {
	max-width: 760px;
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-left: 4px solid var(--ha-home-orange);
	border-radius: var(--ha-home-radius);
	padding: 28px 32px;
}
.ha-home-inspect-safety__title { font-size: 1.1rem; color: var(--ha-home-green); margin-bottom: 14px; }
.ha-home-inspect-safety__text { font-size: 0.9rem; color: var(--ha-home-text); line-height: 1.9; margin-bottom: 16px; }
.ha-home-inspect-safety__list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-bottom: 8px; }
.ha-home-inspect-safety__list li {
	position: relative;
	padding-left: 18px;
	font-size: 0.84rem;
	color: var(--ha-home-muted);
}
.ha-home-inspect-safety__list li::before {
	content: "";
	position: absolute; left: 0; top: 0.6em;
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--ha-home-orange);
}
.ha-home-inspect-safety__ref { margin-top: 14px; font-size: 0.82rem; }
.ha-home-inspect-safety__ref a { color: var(--ha-home-green); text-decoration: underline; }

.ha-home-inspect-works { background: #fff; text-align: center; }
.ha-home-inspect-works__cta { margin-top: 28px; }

@media (max-width: 1024px) {
	.ha-home-inspect-point { grid-template-columns: 1fr; }
	.ha-home-inspect-point__body,
	.ha-home-inspect-point--reverse .ha-home-inspect-point__body { padding: 26px; }
	.ha-home-inspect-point-mini__grid { grid-template-columns: repeat(2, 1fr); }
	.ha-home-inspect-cases__grid { grid-template-columns: repeat(2, 1fr); }
	.ha-home-inspect-policy__grid { grid-template-columns: 1fr; }
	.ha-home-inspect-flow__photos { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.ha-home-inspect-worries__grid { grid-template-columns: 1fr; }
	.ha-home-inspect-point__list { grid-template-columns: 1fr; }
	.ha-home-inspect-point-mini__grid { grid-template-columns: 1fr; }
	.ha-home-inspect-cases__grid { grid-template-columns: 1fr; }
	.ha-home-inspect-safety__list { grid-template-columns: 1fr; }
	.ha-home-inspect-safety__inner { padding: 22px 20px; }
	.ha-home-inspect-result__note { padding: 22px 20px; }
	.ha-home-inspect-flow__step { flex-direction: column; }
	.ha-home-inspect-flow__media { flex-basis: auto; aspect-ratio: 16 / 9; }
	.ha-home-inspect-flow__body,
	.ha-home-inspect-flow__body--full { padding: 50px 20px 20px; }
	.ha-home-inspect-flow__num { left: 20px; top: 16px; }
}

/* =========================================================================
   太陽光ソリューション（分岐ページ、[home_assist_solar_hub]）
   ========================================================================= */
.ha-home-hub-hero {
	position: relative;
	min-height: clamp(360px, 46vh, 480px);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.ha-home-hub-hero__media { position: absolute; inset: 0; z-index: 0; }
.ha-home-hub-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.ha-home-hub-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(160deg, rgba(11,35,56,0.88) 0%, rgba(11,35,56,0.62) 45%, rgba(11,35,56,0.85) 100%);
}
.ha-home-hub-hero__inner { position: relative; z-index: 1; text-align: center; color: #fff; padding: 40px 0; }
.ha-home-hub-hero__eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(217, 111, 32, 0.92);
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.ha-home-hub-hero__title {
	font-size: clamp(1.9rem, 4.4vw, 3rem);
	line-height: 1.38;
	letter-spacing: .01em;
	text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.ha-home-hub-hero__lead {
	margin: 20px auto 0;
	max-width: 620px;
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	line-height: 1.9;
	color: rgba(255,255,255,0.92);
	text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}

.ha-home-hub-services { background: #fff; }
.ha-home-hub-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
@media (max-width: 1024px) {
	.ha-home-hub-services__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   会社案内ページ（[home_assist_company]）
   ========================================================================= */
.ha-home-company-hero {
	background: var(--ha-home-green);
	padding: clamp(56px, 8vw, 88px) 0 clamp(40px, 6vw, 56px);
}
.ha-home-company-hero__inner { text-align: center; color: #fff; }
.ha-home-company-hero__eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(217, 111, 32, 0.92);
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.ha-home-company-hero__title { font-size: clamp(1.8rem, 3.6vw, 2.4rem); }

.ha-home-company-overview { background: var(--ha-home-ivory); }
.ha-home-company-table-wrap {
	background: #fff;
	border-radius: var(--ha-home-radius);
	box-shadow: var(--ha-home-shadow);
	overflow: hidden;
}
.ha-home-company-table { width: 100%; border-collapse: collapse; }
.ha-home-company-table th,
.ha-home-company-table td {
	padding: 20px 24px;
	border-bottom: 1px solid var(--ha-home-border);
	font-size: 0.94rem;
	line-height: 1.8;
	text-align: left;
	vertical-align: top;
}
.ha-home-company-table th {
	width: 26%;
	color: var(--ha-home-green);
	font-weight: 700;
	background: var(--ha-home-green-light);
	white-space: nowrap;
}
.ha-home-company-table td { color: var(--ha-home-text); }
.ha-home-company-table td a { color: var(--ha-home-green); text-decoration: underline; }
.ha-home-company-table tr:last-child th,
.ha-home-company-table tr:last-child td { border-bottom: none; }
@media (max-width: 640px) {
	.ha-home-company-table th,
	.ha-home-company-table td { padding: 14px 16px; font-size: 0.86rem; }
	.ha-home-company-table th { width: 34%; white-space: normal; }
}

/* =========================================================================
   住宅リフォーム（分岐ページ、[home_assist_reform_hub]）
   ========================================================================= */
.ha-home-hub-services__grid--2col { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-inline: auto; }
@media (max-width: 1024px) {
	.ha-home-hub-services__grid--2col { grid-template-columns: 1fr; }
}

/* =========================================================================
   汎用パーツ（リフォーム工事・外壁塗装ページ共通）
   ========================================================================= */

/* --- 濃色ヒーロー（画像＋オーバーレイ＋ボタン） --- */
.ha-home-reform-hero,
.ha-home-exterior-hero {
	position: relative;
	min-height: clamp(460px, 62vh, 680px);
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: var(--ha-home-header-h);
}
.ha-home-reform-hero__media,
.ha-home-exterior-hero__media { position: absolute; inset: 0; z-index: 0; }
.ha-home-reform-hero__media img,
.ha-home-exterior-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.ha-home-reform-hero__overlay,
.ha-home-exterior-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(160deg, rgba(11,35,56,0.86) 0%, rgba(11,35,56,0.58) 45%, rgba(11,35,56,0.82) 100%);
}
.ha-home-reform-hero__inner,
.ha-home-exterior-hero__inner { position: relative; z-index: 1; max-width: 720px; color: #fff; padding: 40px 0; }
.ha-home-reform-hero__eyebrow,
.ha-home-exterior-hero__eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .1em;
	color: #fff;
	background: rgba(217, 111, 32, 0.92);
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 20px;
}
.ha-home-reform-hero__title,
.ha-home-exterior-hero__title {
	font-size: clamp(1.7rem, 3.6vw, 2.6rem);
	line-height: 1.5;
	text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.ha-home-reform-hero__lead,
.ha-home-exterior-hero__lead {
	margin-top: 22px;
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	line-height: 1.95;
	color: rgba(255,255,255,0.92);
	text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}

/* --- 悩み・症状グリッド --- */
.ha-home-reform-worries__grid,
.ha-home-exterior-worries__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 20px;
}
.ha-home-reform-worry,
.ha-home-exterior-worry {
	position: relative;
	padding: 16px 20px 16px 44px;
	background: var(--ha-home-ivory);
	border-radius: var(--ha-home-radius-sm);
	font-size: 0.92rem;
	line-height: 1.7;
}
.ha-home-reform-worry::before,
.ha-home-exterior-worry::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 19px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ha-home-orange);
}

/* --- 導入文（引用リスト＋本文） --- */
.ha-home-reform-intro__quotes {
	max-width: 640px;
	margin: 0 auto 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}
.ha-home-reform-intro__quotes li {
	font-size: 1rem;
	font-weight: 700;
	color: var(--ha-home-green);
}
.ha-home-reform-intro__text,
.ha-home-exterior-intro__text,
.ha-home-exterior-substrate__text {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	color: var(--ha-home-muted);
	line-height: 1.95;
}

/* --- リフォーム工事タイプ（番号＋本文＋工事一覧） --- */
.ha-home-reform-types__list { display: flex; flex-direction: column; gap: 20px; }
.ha-home-reform-type {
	position: relative;
	display: flex;
	gap: 24px;
	padding: 32px clamp(20px, 4vw, 40px);
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
}
.ha-home-reform-type__num {
	flex: 0 0 auto;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--ha-home-orange);
	line-height: 1;
}
.ha-home-reform-type__body h3 { font-size: 1.15rem; color: var(--ha-home-green); margin-bottom: 10px; }
.ha-home-reform-type__desc { font-size: 0.92rem; color: var(--ha-home-muted); line-height: 1.85; margin-bottom: 18px; }
.ha-home-reform-type__jobs-label {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--ha-home-muted);
	letter-spacing: .06em;
	margin-bottom: 10px;
}
.ha-home-reform-type__jobs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px 20px;
}
.ha-home-reform-type__jobs li {
	position: relative;
	padding-left: 16px;
	font-size: 0.86rem;
	color: var(--ha-home-text);
}
.ha-home-reform-type__jobs li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ha-home-orange);
}

/* --- チェックリスト（決定前・塗料選び等） --- */
.ha-home-section.ha-home-reform-decide { background: var(--ha-home-ivory); }
.ha-home-reform-decide__list,
.ha-home-exterior-paint__grid {
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ha-home-reform-decide__list li,
.ha-home-exterior-paint__grid li {
	position: relative;
	padding: 14px 20px 14px 40px;
	background: #fff;
	border-radius: var(--ha-home-radius-sm);
	font-size: 0.92rem;
}
.ha-home-reform-decide__list li::before,
.ha-home-exterior-paint__grid li::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 19px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ha-home-green);
}
.ha-home-reform-decide__note,
.ha-home-exterior-paint__note { margin-top: 20px; text-align: center; font-size: 0.88rem; color: var(--ha-home-muted); line-height: 1.85; }

/* --- 番号付き価値観・方針グリッド（5項目） --- */
.ha-home-reform-values__grid,
.ha-home-exterior-policy__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.ha-home-reform-values__item,
.ha-home-exterior-policy__item {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	padding: 28px 24px;
}
.ha-home-reform-values__num,
.ha-home-exterior-policy__num {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 800;
	color: #fff;
	background: var(--ha-home-green);
	border-radius: 999px;
	padding: 3px 12px;
	margin-bottom: 14px;
}
.ha-home-reform-values__item h3,
.ha-home-exterior-policy__item h3 { font-size: 1rem; color: var(--ha-home-green); margin-bottom: 8px; }
.ha-home-reform-values__item p,
.ha-home-exterior-policy__item p { font-size: 0.85rem; color: var(--ha-home-muted); line-height: 1.8; }

/* --- ステップフロー（写真なし、番号＋本文のみ） --- */
.ha-home-reform-flow__list,
.ha-home-exterior-process__list,
.ha-home-exterior-consult__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.ha-home-reform-flow__step,
.ha-home-exterior-process__step,
.ha-home-exterior-consult__step {
	background: var(--ha-home-ivory);
	border-radius: var(--ha-home-radius);
	padding: 26px 22px;
}
.ha-home-reform-flow__num,
.ha-home-exterior-process__num,
.ha-home-exterior-consult__num {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: .08em;
	color: var(--ha-home-orange);
	margin-bottom: 10px;
}
.ha-home-reform-flow__step h3,
.ha-home-exterior-process__step h3,
.ha-home-exterior-consult__step h3 { font-size: 0.98rem; color: var(--ha-home-green); margin-bottom: 8px; }
.ha-home-reform-flow__step p,
.ha-home-exterior-process__step p,
.ha-home-exterior-consult__step p { font-size: 0.84rem; color: var(--ha-home-muted); line-height: 1.75; }

/* --- 工事前説明・確認リスト（2列） --- */
.ha-home-reform-notes__grid,
.ha-home-exterior-life__grid,
.ha-home-exterior-roof__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 24px;
	max-width: 780px;
	margin: 0 auto;
}
.ha-home-reform-notes__grid li,
.ha-home-exterior-life__grid li,
.ha-home-exterior-roof__grid li {
	position: relative;
	padding: 12px 16px 12px 30px;
	background: var(--ha-home-ivory);
	border-radius: var(--ha-home-radius-sm);
	font-size: 0.88rem;
}
.ha-home-reform-notes__grid li::before,
.ha-home-exterior-life__grid li::before,
.ha-home-exterior-roof__grid li::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 17px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ha-home-orange);
}
.ha-home-exterior-roof__label { text-align: center; font-size: 0.8rem; font-weight: 700; color: var(--ha-home-muted); letter-spacing: .06em; margin-bottom: 14px; }
.ha-home-exterior-life__note { margin-top: 20px; text-align: center; font-size: 0.88rem; color: var(--ha-home-muted); line-height: 1.85; }

/* --- 劣化症状・現地確認ポイント（番号カード） --- */
.ha-home-exterior-damage__grid,
.ha-home-exterior-check__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.ha-home-exterior-damage__card,
.ha-home-exterior-check__card {
	background: #fff;
	border: 1px solid var(--ha-home-border);
	border-radius: var(--ha-home-radius);
	padding: 24px 22px;
}
.ha-home-exterior-damage__num,
.ha-home-exterior-check__num {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--ha-home-orange);
	margin-bottom: 10px;
}
.ha-home-exterior-damage__card h3,
.ha-home-exterior-check__card h3 { font-size: 0.98rem; color: var(--ha-home-green); margin-bottom: 8px; }
.ha-home-exterior-damage__card p,
.ha-home-exterior-check__card p { font-size: 0.84rem; color: var(--ha-home-muted); line-height: 1.75; }

/* --- 放置リスク（ivory背景の安全喚起ブロック） --- */
.ha-home-section.ha-home-exterior-risk { background: var(--ha-home-ivory); }
.ha-home-exterior-risk__inner {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border-radius: var(--ha-home-radius);
	padding: clamp(28px, 4vw, 44px);
	box-shadow: var(--ha-home-shadow);
}
.ha-home-exterior-risk__title { font-size: 1.1rem; color: var(--ha-home-green); margin-bottom: 14px; }
.ha-home-exterior-risk__text { font-size: 0.9rem; color: var(--ha-home-text); line-height: 1.9; margin-bottom: 16px; }
.ha-home-exterior-risk__list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-bottom: 8px; }
.ha-home-exterior-risk__list li {
	position: relative;
	padding-left: 18px;
	font-size: 0.86rem;
	color: var(--ha-home-text);
}
.ha-home-exterior-risk__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ha-home-orange);
}
.ha-home-exterior-risk__note { margin-top: 14px; font-size: 0.82rem; color: var(--ha-home-muted); }

/* --- 関連サービス（クロスリンク） --- */
.ha-home-section.ha-home-cross-link { background: var(--ha-home-green); }
.ha-home-cross-link__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.ha-home-cross-link__title { color: #fff; font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin-bottom: 16px; }
.ha-home-cross-link__text { color: rgba(255,255,255,0.88); font-size: 0.9rem; line-height: 1.85; margin-bottom: 26px; }
.ha-home-cross-link .ha-home-btn--outline { background: #fff; }

.ha-home-section.ha-home-reform-works,
.ha-home-section.ha-home-exterior-works { background: #fff; text-align: center; }
.ha-home-reform-works__cta,
.ha-home-exterior-works__cta { margin-top: 28px; }

@media (max-width: 1024px) {
	.ha-home-reform-type { flex-direction: column; gap: 12px; }
	.ha-home-reform-type__jobs { grid-template-columns: repeat(2, 1fr); }
	.ha-home-reform-values__grid,
	.ha-home-exterior-policy__grid { grid-template-columns: 1fr 1fr; }
	.ha-home-reform-flow__list,
	.ha-home-exterior-process__list,
	.ha-home-exterior-consult__list { grid-template-columns: 1fr 1fr; }
	.ha-home-exterior-damage__grid,
	.ha-home-exterior-check__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.ha-home-reform-worries__grid,
	.ha-home-exterior-worries__grid { grid-template-columns: 1fr; }
	.ha-home-reform-type__jobs { grid-template-columns: 1fr; }
	.ha-home-reform-values__grid,
	.ha-home-exterior-policy__grid { grid-template-columns: 1fr; }
	.ha-home-reform-flow__list,
	.ha-home-exterior-process__list,
	.ha-home-exterior-consult__list { grid-template-columns: 1fr; }
	.ha-home-exterior-damage__grid,
	.ha-home-exterior-check__grid { grid-template-columns: 1fr; }
	.ha-home-reform-notes__grid,
	.ha-home-exterior-life__grid,
	.ha-home-exterior-roof__grid { grid-template-columns: 1fr; }
	.ha-home-exterior-risk__list { grid-template-columns: 1fr; }
	.ha-home-exterior-risk__inner { padding: 22px 20px; }
}

/* =========================================================================
   モーション控えめ設定への対応
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
	.ha-home-page *,
	.ha-home-page *::before,
	.ha-home-page *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.ha-home-page [data-ha-reveal] { opacity: 1 !important; transform: none !important; }
}
