/*!
Theme Name: Beerus
Theme URI: https://example.com/
Author: Beerus
Description: 総合探偵社Beerus 公式サイトテーマ。p1デザインをWordPress化。個別（固定）ページとブログ（カスタム投稿）を分離。
Version: 2.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: beerus
*/

/* 本体スタイルは design.css を参照。ここは追記用。 */

/* おすすめ/コラム カード：画像部を1.5倍の高さに＋実画像をカバー表示 */
.pickup .big .ph {
	min-height: 450px;
}
.pickup .small .ph {
	min-height: 225px;
}
.col-card .ph {
	min-height: 255px;
}
.pickup .p-card .ph,
.col-card .ph {
	position: relative;
	overflow: hidden;
}
.pickup .p-card .ph img,
.col-card .ph img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* コラム：カテゴリボタン＋検索ツールバー */
.col-toolbar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-bottom: 30px;
}
.col-search {
	display: flex;
	border: 1.5px solid var(--line-strong);
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
}
.col-search input[type="text"] {
	border: 0;
	padding: 9px 18px;
	font-size: 13px;
	outline: none;
	min-width: 220px;
	background: transparent;
	font-family: inherit;
}
.col-search button {
	border: 0;
	background: var(--green-700);
	color: #fff;
	padding: 0 20px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease;
}
.col-search button:hover {
	background: var(--green-800);
}
.col-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}
.col-cat-btn {
	display: inline-block;
	padding: 7px 16px;
	border: 1px solid var(--line-strong);
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--green-800);
	background: #fff;
	transition: 0.2s ease;
}
.col-cat-btn:hover {
	background: var(--green-700);
	color: #fff;
	border-color: var(--green-700);
}

/* ===== 簡単ご依頼フォーム（診断ウィザード） ===== */
.flow-app {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 28px;
	align-items: start;
}
.flow-board {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 22px;
	box-shadow: var(--shadow-sm);
}
.flow-map {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}
.flow-node {
	text-align: left;
	background: var(--mist);
	border: 1.5px solid transparent;
	border-radius: 4px;
	padding: 10px 12px;
	cursor: pointer;
	transition: 0.2s ease;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.flow-node b {
	font-size: 12px;
	color: var(--green-900);
	font-family: "Jost", sans-serif;
	letter-spacing: 0.04em;
}
.flow-node span {
	font-size: 12px;
	color: var(--muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.flow-node.is-done {
	background: var(--gold-100);
}
.flow-node.is-done span {
	color: var(--green-800);
	font-weight: 700;
}
.flow-node.is-active {
	border-color: var(--green-600);
	background: #fff;
	box-shadow: 0 0 0 1px var(--green-600);
}
.flow-screen {
	background: var(--mist);
	border-radius: 4px;
	padding: 22px;
}
.flow-screen h3 {
	font-size: 20px;
	color: var(--green-900);
	margin-bottom: 6px;
}
.flow-screen > p {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 18px;
}
.flow-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 18px;
}
.flow-opt {
	text-align: left;
	background: #fff;
	border: 1.5px solid var(--line-strong);
	border-radius: 4px;
	padding: 14px 16px;
	cursor: pointer;
	transition: 0.18s ease;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.flow-opt b {
	font-size: 15px;
	color: var(--green-900);
}
.flow-opt span {
	font-size: 12px;
	color: var(--muted);
}
.flow-opt:hover {
	border-color: var(--green-500);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px -10px rgba(46, 128, 100, 0.5);
}
.flow-opt.is-picked {
	border-color: var(--green-700);
	background: var(--gold-100);
}
.flow-actions {
	display: flex;
	gap: 10px;
}
.flow-actions .btn {
	padding: 9px 20px;
	font-size: 13px;
}
.flow-actions .btn:disabled {
	opacity: 0.4;
	cursor: default;
}
.flow-result {
	background: var(--green-800);
	color: #fff;
	border-radius: 4px;
	padding: 24px;
	position: sticky;
	top: 96px;
}
.flow-result h3 {
	font-size: 16px;
	margin-bottom: 14px;
	color: #fff;
}
.flow-line {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.flow-line b {
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--gold);
	font-weight: 700;
}
.flow-line span {
	font-size: 14px;
	color: #fff;
	line-height: 1.5;
}
.flow-note {
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin: 14px 0 18px;
}
.flow-cta {
	width: 100%;
}
@media (max-width: 900px) {
	.flow-app {
		grid-template-columns: 1fr;
	}
	.flow-result {
		position: static;
	}
}
@media (max-width: 560px) {
	.flow-options {
		grid-template-columns: 1fr;
	}
	.flow-map {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.flow-node span {
		display: none;
	}
}

/* =====================================================
   記事詳細（article-stylish）を editorial に洗練
   ===================================================== */

/* 本文の測度を上質な1行長に。ページは広く、テキストは読みやすく。 */
.article-stylish {
	max-width: 820px;
}

/* リード（最初の段落）は少し大きく、余白広めで導入らしく */
.article-stylish.prose > p:first-of-type {
	font-size: 17px;
	line-height: 2.2;
	color: var(--green-900);
	margin-bottom: 30px;
}

/* 見出し h2：白いセクションバー＋番号バッジ（クリーム背景から際立たせる） */
.article-stylish.prose h2 {
	display: flex;
	align-items: center;
	gap: 18px;
	background: #fff;
	margin: 64px 0 30px;
	padding: 16px 26px;
	border: 1px solid var(--line);
	border-top: 3px solid var(--green-700);
	border-radius: 4px;
	box-shadow: 0 14px 34px -22px rgba(16, 52, 42, 0.3);
	font-size: clamp(19px, 2vw, 24px);
	letter-spacing: 0.04em;
	line-height: 1.5;
	color: var(--green-900);
}
.article-stylish.prose h2:first-child {
	margin-top: 0;
}
.article-stylish.prose h2::after {
	display: none;
}
/* CHAPTER連番を番号バッジに（design.css の "CHAPTER 01" 表示を上書き） */
.article-stylish.prose h2[id^="s"]:not(#s0):not(#sfaq)::before {
	content: counter(chapter, decimal-leading-zero);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 46px;
	height: 46px;
	margin: 0;
	background: linear-gradient(135deg, var(--green-600), var(--green-800));
	color: #fff;
	border-radius: 4px;
	font-family: "Jost", sans-serif;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0;
}
/* 見出し h3：ゴールドの縦罫でh2と明確に差をつける */
.article-stylish.prose h3 {
	display: block;
	margin: 42px 0 14px;
	padding: 2px 0 2px 16px;
	border-left: 4px solid var(--gold);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--green-800);
	background: none;
}
.article-stylish.prose h3::before {
	display: none;
}

/* パンくず：コンテナ余白に揃える（design.css の padding:16px 0 で突き出す問題を修正） */
#primary .crumb {
	padding-left: 28px;
	padding-right: 28px;
}
@media (max-width: 560px) {
	#primary .crumb {
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* 見出しへのアンカージャンプ時、固定ヘッダーに隠れない */
.article-stylish h2,
.article-stylish h3 {
	scroll-margin-top: 100px;
}

/* 自動生成の目次 */
/* ===== 本文目次（INDEX）：エディトリアル・スタイル ===== */
.auto-toc {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 2px 30px 16px;
	margin: 10px 0 46px;
	box-shadow: 0 20px 44px -32px rgba(16, 52, 42, 0.45);
}
.auto-toc .toc-en {
	font-family: "Jost", sans-serif;
	font-weight: 800;
	letter-spacing: 0.26em;
	font-size: 10px;
	color: var(--gold-600);
}
.auto-toc .toc-title {
	font-size: 17px;
	font-weight: 800;
	color: var(--green-900);
	letter-spacing: 0.05em;
}

/* 段落：字間・行間を微調整 */
.article-stylish.prose p {
	font-size: 15.5px;
	line-height: 2.15;
	color: #26382f;
}

/* 強調：ゴールドのマーカー風に（品よく視線誘導） */
.article-stylish strong {
	color: var(--green-900);
	font-weight: 700;
	background: linear-gradient(transparent 62%, rgba(200, 162, 76, 0.32) 0);
	padding: 0 1px;
}

/* 本文画像：中央寄せ・角丸・やわらかな影・たっぷり余白 */
.article-stylish img {
	display: block;
	height: auto;
	margin: 40px auto;
	border-radius: 4px;
	box-shadow: 0 22px 48px -24px rgba(16, 52, 42, 0.42);
}

/* ヒーロー：余白を足してゆったり見せる */
.article-hero {
	padding: 84px 0 64px;
}
.article-meta .meta-item {
	font-size: 12px;
}

/* サイドバー：追従＋余白を整えて上質に */
.single-investigation .sidebar,
.page-template .sidebar {
	position: sticky;
	top: 100px;
}
.single-investigation .sidebar .wf-box {
	background: var(--green-800);
	color: #fff;
	border-radius: 4px;
	padding: 18px 20px;
	font-size: 14px;
	line-height: 1.7;
	border: 0;
}
.single-investigation .sidebar h4 {
	letter-spacing: 0.04em;
}

@media (max-width: 900px) {
	.single-investigation .sidebar,
	.page-template .sidebar {
		position: static;
	}
}

/* article-hero の「SERVICE」透かし：ワンランク太線＋濃い緑に */
.article-hero.is-service::before {
	-webkit-text-stroke: 1.25px #164236;
	color: transparent;
}

/* =====================================================
   コラム（メディア記事）詳細：メディア水準のレイアウト
   ===================================================== */
/* コラムはできるだけフルワイドに（左右は少しだけ余白を残す） */
body.single-column.is-detail #primary .container {
	max-width: min(1760px, 94vw);
}
/* コラム本文はワイドに使う（測度キャップを解除） */
body.single-column .article-stylish {
	max-width: none;
}

/* 読了プログレスバー */
.read-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 200;
	pointer-events: none;
}
.read-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--gold), var(--green-500));
}

.article-hero.is-column {
	padding: 88px 0 60px;
}

/* 本文＋サイドバー（サイドバー左・本文右／本文ワイド） */
.article-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 56px;
	align-items: start;
	padding-bottom: 24px;
}
.article-side {
	order: -1; /* サイドバーを左へ */
	position: sticky; /* stickyはグリッド項目自身に付ける（親=背の高いグリッド行が基準になり追従できる） */
	top: 88px;
	align-self: start; /* 中身の高さに保ち、行内でstickyが移動できるように */
}
.article-main {
	min-width: 0;
}

/* アイキャッチ 16:9 カバー */
.article-eyecatch {
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--mist-2);
	box-shadow: 0 24px 60px -28px rgba(16, 52, 42, 0.5);
}
.article-eyecatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* シェア */
.article-share {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 26px 0 30px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--line);
	flex-wrap: wrap;
}
.article-share .share-label {
	font-family: "Jost", sans-serif;
	font-weight: 800;
	letter-spacing: 0.2em;
	font-size: 11px;
	color: var(--muted);
	margin-right: 4px;
}
.share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid var(--line-strong);
	background: #fff;
	color: var(--green-800);
	cursor: pointer;
	transition: 0.2s ease;
	text-decoration: none;
	font-family: inherit;
}
.share-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}
.share-btn.x {
	background: #000;
	color: #fff;
	border-color: #000;
	width: 36px;
	padding: 0;
}
.share-btn.fb {
	background: #1877f2;
	color: #fff;
	border-color: #1877f2;
	width: 36px;
	padding: 0;
	font-family: Georgia, serif;
}
.share-btn.line {
	background: #06c755;
	color: #fff;
	border-color: #06c755;
}
.share-btn.copy.is-copied {
	background: var(--green-700);
	color: #fff;
	border-color: var(--green-700);
}

/* 著者・監修 */
.author-box {
	display: flex;
	gap: 18px;
	align-items: center;
	margin-top: 60px;
	padding: 22px 24px;
	background: var(--mist);
	border-radius: 4px;
}
.author-box {
	align-items: flex-start;
}
.author-avatar {
	flex: none;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	border: 2px solid #fff;
	box-shadow: 0 6px 18px -8px rgba(16, 52, 42, 0.5);
}
.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.author-label {
	font-family: "Jost", sans-serif;
	font-size: 10.5px;
	letter-spacing: 0.18em;
	color: var(--gold-600);
	font-weight: 700;
}
.author-name {
	display: block;
	font-size: 16px;
	color: var(--green-900);
	margin: 3px 0 2px;
}
.author-name small {
	font-family: "Jost", sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--muted);
	margin-left: 6px;
}
.author-role {
	font-size: 12px;
	color: var(--green-700);
	font-weight: 600;
	margin: 0 0 8px;
}
.author-body p {
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.85;
	margin: 0;
}

/* 関連コラム */
.related-columns {
	margin-top: 66px;
}
.block-title {
	display: flex;
	align-items: baseline;
	gap: 14px;
	font-size: 21px;
	font-weight: 800;
	color: var(--green-900);
	margin-bottom: 22px;
}
.block-title .en {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	color: var(--gold-600);
}
.related-columns .col-card .ph {
	min-height: 150px;
}

/* サイドバー（追従） */
.side-sticky {
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.side-block {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 20px;
}
.side-title {
	font-size: 14px;
	font-weight: 800;
	color: var(--green-900);
	letter-spacing: 0.04em;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--green-800);
}
.side-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.side-list li {
	border-top: 1px solid var(--line);
}
.side-list li:first-child {
	border-top: 0;
}
.side-list a {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 12px 0;
	color: var(--green-900);
	transition: 0.2s ease;
}
.side-list a:hover {
	color: var(--gold-600);
}
.side-thumb {
	flex: none;
	width: 66px;
	height: 48px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--mist-2);
}
.side-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.side-ptitle {
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.side-cta {
	background: var(--green-800);
	border-color: var(--green-800);
	text-align: center;
}
.side-cta-badge {
	display: inline-block;
	background: #06c755;
	color: #fff;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.08em;
	padding: 3px 12px;
	border-radius: 999px;
	margin-bottom: 10px;
}
.side-cta p {
	color: #fff;
	font-size: 13px;
	line-height: 1.7;
	margin-bottom: 14px;
}
.side-cta .btn {
	width: 100%;
}
.side-cta .btn + .btn {
	margin-top: 8px;
}
.side-cta .btn-ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}
.side-cta .btn-ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

@media (max-width: 980px) {
	.article-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.side-sticky {
		position: static;
	}
	.article-side {
		order: 1; /* モバイルでは本文を上に */
		position: static; /* モバイルは追従解除 */
		border-top: 1px solid var(--line);
		padding-top: 24px;
	}
}

/* ===== 目次：インライン（ネスト折りたたみ） ===== */
.auto-toc .toc-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 0 14px;
	margin-bottom: 6px;
	border-bottom: 1.5px solid var(--green-900);
}
.auto-toc .toc-allbtn {
	margin-left: auto;
	background: none;
	border: 0;
	color: var(--gold-600);
	font-size: 11.5px;
	font-weight: 700;
	cursor: pointer;
	transition: color 0.2s ease;
}
.auto-toc .toc-allbtn:hover {
	color: var(--green-800);
}
.auto-toc .toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc;
}
.auto-toc .toc-sec {
	counter-increment: toc;
	border: 0;
}
.auto-toc .toc-sec + .toc-sec {
	margin-top: 1px;
}
.auto-toc .toc-row {
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	transition: background 0.2s ease;
}
.auto-toc .toc-row:hover {
	background: var(--mist);
}
.auto-toc .toc-row > a {
	flex: 1;
	display: flex;
	gap: 15px;
	align-items: center;
	padding: 12px 12px;
	color: var(--green-900);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.55;
	transition: color 0.2s ease;
}
.auto-toc .toc-row > a::before {
	content: counter(toc, decimal-leading-zero);
	font-family: "Jost", sans-serif;
	color: var(--gold-600);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	flex: none;
	min-width: 22px;
}
.auto-toc .toc-row:hover > a {
	color: var(--gold-600);
}
.auto-toc .toc-toggle {
	flex: none;
	width: 30px;
	height: 30px;
	margin-right: 6px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	position: relative;
	transition: background 0.2s ease;
}
.auto-toc .toc-toggle:hover {
	background: rgba(16, 52, 42, 0.06);
}
.auto-toc .toc-toggle::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 47%;
	width: 8px;
	height: 8px;
	border-right: 1.8px solid var(--green-700);
	border-bottom: 1.8px solid var(--green-700);
	transform: translate(-50%, -50%) rotate(45deg);
	transition: transform 0.25s ease;
}
.auto-toc .toc-sec.open .toc-toggle::before {
	transform: translate(-50%, -20%) rotate(-135deg);
}
.auto-toc .toc-kids {
	list-style: none;
	margin: 0;
	padding: 0 0 0 37px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.auto-toc .toc-sec.open .toc-kids {
	max-height: 2000px;
}
.auto-toc .toc-kids li > a {
	display: block;
	padding: 8px 2px 8px 18px;
	font-size: 13px;
	color: var(--muted);
	position: relative;
	transition: color 0.2s ease;
}
.auto-toc .toc-kids li > a::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 16px;
	width: 9px;
	height: 1px;
	background: var(--gold);
}
.auto-toc .toc-kids li > a:hover {
	color: var(--green-800);
}
.auto-toc .toc-kids li:last-child > a {
	padding-bottom: 12px;
}

/* ===== 目次：サイドバー追従（スクロールスパイ） ===== */
.side-toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 58vh;
	overflow-y: auto;
}
.side-toc-list a {
	display: block;
	padding: 8px 10px 8px 14px;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--muted);
	border-left: 2px solid transparent;
	transition: 0.15s ease;
}
.side-toc-list a:hover {
	color: var(--green-800);
}
.side-toc-list a.is-current {
	color: var(--green-900);
	font-weight: 700;
	border-left-color: var(--gold);
	background: var(--mist);
}

/* ===== 記事内ブログカード（内部リンク自動カード化） ===== */
.blogcard {
	display: flex;
	gap: 18px;
	align-items: stretch;
	margin: 32px 0;
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 30px -18px rgba(16, 52, 42, 0.25);
	transition: 0.22s ease;
	text-decoration: none;
}
.blogcard:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 44px -20px rgba(16, 52, 42, 0.4);
}
.blogcard-thumb {
	flex: none;
	width: 200px;
	background: var(--mist-2);
	overflow: hidden;
}
.blogcard-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
}
.blogcard-body {
	padding: 16px 20px 16px 4px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}
.blogcard-label {
	font-family: "Jost", sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: var(--gold-600);
	margin-bottom: 6px;
}
.blogcard-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--green-900);
	line-height: 1.55;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blogcard-ex {
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.7;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media (max-width: 560px) {
	.blogcard {
		flex-direction: column;
	}
	.blogcard-thumb {
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	.blogcard-body {
		padding: 16px 18px 18px;
	}
}

/* ===== コラム一覧：メディアカードグリッド ===== */
.media-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 34px 26px;
}
.media-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 10px 30px -20px rgba(16, 52, 42, 0.3);
	transition: 0.22s ease;
}
.media-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 52px -22px rgba(16, 52, 42, 0.45);
}
.media-thumb {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--mist-2);
}
.media-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.media-card:hover .media-thumb img {
	transform: scale(1.05);
}
.media-thumb.empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 11px;
	letter-spacing: 0.15em;
	background: linear-gradient(135deg, var(--mist-2), var(--mist));
}
.media-body {
	padding: 18px 20px 22px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	flex: 1;
}
.media-meta {
	display: flex;
	align-items: center;
	gap: 10px;
}
.media-meta .tag {
	background: var(--gold-100);
	color: var(--gold-600);
	font-size: 11px;
	font-weight: 700;
	padding: 3px 11px;
	border-radius: 4px;
}
.media-meta time {
	font-size: 12px;
	color: var(--muted);
	font-family: "Jost", sans-serif;
}
.media-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--green-900);
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.media-ex {
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.75;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.col-cat-btn.is-current {
	background: var(--green-700);
	color: #fff;
	border-color: var(--green-700);
}
.media-pager {
	margin-top: 44px;
	text-align: center;
}
@media (max-width: 900px) {
	.media-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 560px) {
	.media-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== About（お客様のお気持ちを第一に）モダン刷新 ===== */
.p1-about {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}
/* ===== セクション名のゴースト透かし（TOP各セクション共通） ===== */
[data-watermark] {
	position: relative;
	overflow: hidden;
}
[data-watermark] > .container {
	position: relative;
	z-index: 1;
}
[data-watermark]::before {
	content: attr(data-watermark);
	position: absolute;
	right: -1.5%;
	top: 32px;
	font-family: "Jost", sans-serif;
	font-weight: 800;
	font-size: clamp(80px, 15vw, 230px);
	line-height: 1;
	letter-spacing: 0.02em;
	color: transparent;
	-webkit-text-stroke: 1.25px rgba(0, 0, 0, 0.085); /* 白セクション：灰色ゴースト（緑背景は別途白） */
	white-space: nowrap;
	pointer-events: none;
	z-index: 0;
}
/* 濃い背景のセクションは白系の透かし */
[data-watermark].section-deep::before,
[data-watermark].p1-numbers::before {
	-webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.09);
}

/* TOP各セクションの高さを1.5倍に（中身はそのまま） */
[data-watermark] {
	padding-top: 126px;
	padding-bottom: 126px;
}
/* page-head の透かしは元の高さを維持し、緑背景に合わせ白系で中央に */
.page-head[data-watermark] {
	padding-top: 56px;
	padding-bottom: 56px;
}
.page-head[data-watermark]::before {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	right: -0.5%;
	font-size: clamp(80px, 15vw, 190px);
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.07); /* 緑ヘッダー：控えめな白ゴースト */
}
[data-watermark].p1-media {
	padding-top: 144px;
	padding-bottom: 132px;
}
[data-watermark].p1-numbers {
	padding-top: 144px;
	padding-bottom: 144px;
}
@media (max-width: 560px) {
	[data-watermark] {
		padding-top: 78px;
		padding-bottom: 78px;
	}
	[data-watermark].p1-media {
		padding-top: 84px;
		padding-bottom: 72px;
	}
	[data-watermark].p1-numbers {
		padding-top: 72px;
		padding-bottom: 72px;
	}
}
.p1-about-grid {
	display: grid;
	grid-template-columns: 1fr 0.82fr;
	gap: 64px;
	align-items: center;
}
.p1-about .en {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: "Jost", sans-serif;
	font-weight: 800;
	letter-spacing: 0.28em;
	font-size: 12px;
	color: var(--gold-600);
	margin-bottom: 22px;
}
.p1-about .en i {
	width: 40px;
	height: 2px;
	background: var(--gold);
}
.p1-about-title {
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.04em;
	color: var(--green-900);
	margin-bottom: 22px;
}
.p1-about-title .hl {
	color: var(--green-600);
	background: linear-gradient(transparent 62%, rgba(200, 162, 76, 0.3) 0);
	padding: 0 2px;
}
.p1-about-lead {
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 700;
	color: var(--green-800);
	line-height: 1.9;
	margin-bottom: 28px;
}
.p1-about-text p {
	font-size: 15px;
	line-height: 2.15;
	color: var(--muted);
	margin-bottom: 18px;
}
.p1-about-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.p1-about-visual {
	position: relative;
}
/* 単一画像をきれいに収めるフレーム（差し替えやすいよう cover 表示） */
.p1-about-img {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	aspect-ratio: 3 / 2; /* 写真(3072×2048=3:2)に合わせ、見切れさせない */
	border-radius: 4px;
	overflow: hidden;
	background: var(--mist-2);
	box-shadow: 0 40px 80px -34px rgba(16, 52, 42, 0.5);
}
.p1-about-img img,
.p1-about-img picture {
	width: 100%;
	height: 100%;
	object-fit: cover; /* アスペクトが一致しているため実質トリミングなし */
	display: block;
}
/* プレースホルダー状態 */
.p1-about-img.is-ph {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--mist-2), var(--mist));
	border: 1px dashed var(--line-strong);
	box-shadow: none;
	color: var(--muted);
}
.p1-about-img.is-ph svg {
	width: 46px;
	height: 46px;
	opacity: 0.55;
}
.p1-about-img.is-ph span {
	font-size: 12px;
	letter-spacing: 0.12em;
}
@media (max-width: 900px) {
	.p1-about-grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}
	.p1-about-visual {
		max-width: 480px;
	}
}

/* ===== Beerusの特徴：選ばれる理由（交互フィーチャー行） ===== */
.beerus-intro .p1-about-lead {
	font-size: clamp(16px, 1.4vw, 19px);
}
.feat-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 1000px;
	margin: 44px auto 0;
}
.feat-row {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 44px;
	align-items: center;
	background: #fff;
	border-radius: 4px;
	padding: 34px 40px;
	box-shadow: 0 20px 48px -26px rgba(16, 52, 42, 0.35);
}
.feat-row:nth-child(even) {
	grid-template-columns: 1fr 240px;
}
.feat-row:nth-child(even) .feat-visual {
	order: 2;
}
.feat-visual {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 4px;
	background: linear-gradient(140deg, var(--green-600), var(--green-900));
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.feat-visual::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
}
.feat-num {
	font-family: "Jost", sans-serif;
	font-size: clamp(64px, 8vw, 96px);
	font-weight: 800;
	color: #fff;
	line-height: 1;
}
.feat-tag {
	position: absolute;
	bottom: 16px;
	font-family: "Jost", sans-serif;
	font-size: 10px;
	letter-spacing: 0.3em;
	color: var(--gold);
	font-weight: 700;
}
.feat-body h3 {
	font-size: clamp(20px, 2.2vw, 25px);
	font-weight: 800;
	color: var(--green-900);
	line-height: 1.5;
	margin-bottom: 14px;
}
.feat-body h3 em {
	font-style: normal;
	color: var(--green-600);
	background: linear-gradient(transparent 62%, rgba(200, 162, 76, 0.3) 0);
	margin-left: 4px;
}
.feat-body p {
	font-size: 14.5px;
	line-height: 2;
	color: var(--muted);
	margin-bottom: 14px;
}
.feat-body p strong {
	color: var(--green-900);
	font-weight: 700;
	background: linear-gradient(transparent 62%, rgba(200, 162, 76, 0.28) 0);
}
.feat-points {
	list-style: none;
	margin: 0 0 16px;
	padding: 16px 20px;
	background: var(--mist);
	border-radius: 4px;
}
.feat-points li {
	position: relative;
	padding-left: 28px;
	margin: 8px 0;
	font-size: 14px;
	color: var(--green-800);
	line-height: 1.7;
}
.feat-points li::before {
	content: "✓";
	position: absolute;
	left: 4px;
	color: var(--gold-600);
	font-weight: 800;
}
.feat-note {
	color: var(--gold-600);
	font-weight: 700;
	font-size: 12.5px;
}
.feat-body .btn {
	margin: 6px 8px 0 0;
}
@media (max-width: 760px) {
	.feat-row,
	.feat-row:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 26px 24px;
	}
	.feat-row:nth-child(even) .feat-visual {
		order: 0;
	}
	.feat-visual {
		aspect-ratio: 16 / 7;
	}
}

/* ===== 採用：フルワイド・角丸なしのバナー ===== */
.recruit-hero {
	position: relative;
	width: 100%;
	padding: 88px 28px;
	background: linear-gradient(120deg, var(--green-800), var(--green-600));
	color: #fff;
	text-align: center;
	overflow: hidden;
	border-radius: 0;
}
.recruit-hero::before {
	content: "RECRUIT";
	position: absolute;
	right: -1.5%;
	top: 18px;
	font-family: "Jost", sans-serif;
	font-weight: 800;
	font-size: clamp(80px, 15vw, 230px);
	line-height: 1;
	letter-spacing: 0.02em;
	color: transparent;
	-webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.09);
	white-space: nowrap;
	pointer-events: none;
	z-index: 0;
}
.recruit-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin: 0 auto;
}
.recruit-hero .en {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: "Jost", sans-serif;
	font-weight: 800;
	letter-spacing: 0.28em;
	font-size: 12px;
	color: var(--gold);
	margin-bottom: 14px;
}
.recruit-hero .en i {
	width: 34px;
	height: 2px;
	background: var(--gold);
}
.recruit-hero h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 14px;
	color: #fff;
}
.recruit-hero p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.95;
}
@media (max-width: 560px) {
	.recruit-hero {
		padding: 56px 18px;
	}
}

/* ===== ボタン内アイコン（.btn は inline-flex + gap 済み） ===== */
.btn .bi {
	width: 1.05em;
	height: 1.05em;
	flex: none;
}
/* ヘッダーの小さめボタンは少し控えめに */
.sec-header-cta .btn .bi {
	width: 15px;
	height: 15px;
}

/* ===== 探偵ネコ とことこ散歩（セクションの境目を歩く） ===== */
.cat-walk-band {
	position: relative;
	height: 0;
	z-index: 8;
	pointer-events: none;
}
.cat-track {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -66px; /* 132pxの帯を境界線で上下中央に */
	height: 132px;
	overflow: hidden; /* 横クリップでページ横スクロールを防止 */
}
.cat-walker {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	will-change: transform;
	animation: catCross 19.5s linear infinite;
}
.cat-bob {
	transform-origin: 50% 88%;
	animation: catBob 0.4s ease-in-out infinite, catWaddle 0.8s ease-in-out infinite;
	will-change: transform;
}
.cat-walker img {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 6px 6px rgba(20, 30, 20, 0.28));
}
@keyframes catCross {
	from {
		transform: translateX(-140px);
	}
	to {
		transform: translateX(calc(100vw + 40px));
	}
}
@keyframes catBob {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-9px);
	}
}
@keyframes catWaddle {
	0%, 100% {
		transform: rotate(-2.5deg);
	}
	50% {
		transform: rotate(2.5deg);
	}
}
@media (max-width: 560px) {
	.cat-walker {
		width: 76px;
	}
	.cat-track {
		bottom: -52px;
		height: 104px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.cat-bob {
		animation: none;
	}
	.cat-walker {
		animation-duration: 40s;
	}
}

/* アンカー遷移（かんたん診断など）をスムーズに・固定ヘッダー分オフセット */
html {
	scroll-behavior: smooth;
}
#quick-request {
	scroll-margin-top: 84px;
}

/* ===== フローティングボタン：アイコン付き（アニメ・揺れなし） ===== */
/* かんたん診断ボタン（フローティング最上部・目立たせる） */
.floating .btn-diagnose {
	background: linear-gradient(135deg, var(--green-700), var(--green-900));
	color: #fff;
	border: 1px solid var(--gold);
}
.floating .btn-diagnose:hover {
	background: linear-gradient(135deg, var(--green-800), var(--green-900));
	color: #fff;
}
.floating .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.floating .btn svg {
	width: 18px;
	height: 18px;
	flex: none;
}
/* 揺れ・パルス・バウンス等のアニメを全停止 */
.floating .btn,
.floating .btn:hover,
.floating .btn::before,
.floating .btn::after {
	animation: none !important;
}

/* CTAバンドのボタンを統一（アイコン付き・整列） */
.cta-band .btns .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.cta-band .btns .btn svg {
	width: 18px;
	height: 18px;
	flex: none;
}
/* 緊急バンド（濃背景）の透かしは白系 */
.cta-band[data-watermark]::before {
	-webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.1);
}

/* ===== LINE QR モーダル ===== */
.line-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.line-modal.is-open {
	display: flex;
}
.line-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(16, 52, 42, 0.55);
	backdrop-filter: blur(2px);
}
.line-modal-box {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 4px;
	max-width: 360px;
	width: 100%;
	padding: 32px 28px 26px;
	text-align: center;
	box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.5);
	animation: lineModalIn 0.28s ease;
}
@keyframes lineModalIn {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.line-modal-close {
	position: absolute;
	top: 10px;
	right: 14px;
	border: 0;
	background: none;
	font-size: 26px;
	line-height: 1;
	color: var(--muted);
	cursor: pointer;
}
.line-modal-close:hover {
	color: var(--green-900);
}
.line-modal-badge {
	display: inline-block;
	background: #06c755;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.08em;
	padding: 4px 14px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.line-modal-head h3 {
	font-size: 19px;
	color: var(--green-900);
	margin-bottom: 8px;
}
.line-modal-head p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 18px;
}
.line-modal-qr {
	display: inline-block;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 4px;
	background: #fff;
}
.line-modal-qr img {
	display: block;
	width: 240px;
	height: 240px;
}
.line-modal-note {
	font-size: 11.5px;
	color: var(--muted);
	margin-top: 16px;
	line-height: 1.6;
}

/* 採用フォーム */
.recruit-form {
	max-width: 720px;
	margin: 0 auto;
}
.recruit-form .row {
	margin-bottom: 18px;
}
.recruit-form label {
	display: block;
	font-weight: 700;
	color: var(--green-900);
	font-size: 14px;
	margin-bottom: 6px;
}
.recruit-form label .req {
	color: #c0392b;
	font-size: 11px;
	margin-left: 6px;
}
.recruit-form input[type="text"],
.recruit-form input[type="email"],
.recruit-form input[type="tel"],
.recruit-form select,
.recruit-form textarea {
	width: 100%;
	border: 1.5px solid var(--line-strong);
	border-radius: 6px;
	padding: 11px 14px;
	font-size: 14px;
	background: #fff;
	font-family: inherit;
}
.recruit-form textarea {
	min-height: 150px;
	resize: vertical;
}
.recruit-form .agree {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--muted);
}
.recruit-form .submit-wrap {
	text-align: center;
	margin-top: 26px;
}
.recruit-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.recruit-notice {
	max-width: 720px;
	margin: 0 auto 24px;
	padding: 16px 20px;
	border-radius: 6px;
	font-weight: 700;
}
.recruit-notice.ok {
	background: var(--gold-100);
	color: var(--green-900);
}
.recruit-notice.err {
	background: #fdecea;
	color: #c0392b;
}

/* 詳細ページはコンテンツ幅を広く使う（ヘッダー/フッターは従来幅のまま） */
body.is-detail #primary .container {
	max-width: 1728px; /* 従来1440pxから約2割拡大 */
}
/* 本文カラムが広がりすぎないよう、2カラム時はサイドバーを少し広めに */
body.is-detail #primary .two-col {
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 56px;
}
@media (max-width: 900px) {
	body.is-detail #primary .two-col {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* 記事カードの角丸をなくす（カード本体・内部画像とも） */
.card,
.card .wf-img,
.card img {
	border-radius: 0;
}

/* ===== 調査項目セクション（旧サイトの investigation 一覧を移設） ===== */
.p1-inv-sec {
	background: #e7ebe9; /* 灰色 */
}
.p1-inv-sec .lp-title .en {
	color: var(--green-600);
}
.p1-inv-sec .lp-title h2 {
	color: var(--green-900);
}
.p1-inv-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 24px;
}
.p1-inv-item a {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	background: #fff; /* 項目は白 */
	color: var(--green-800); /* 文字は緑 */
	border: 1px solid transparent;
	border-radius: 6px; /* ごく軽いラウンド */
	transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.p1-inv-item a:hover,
.p1-inv-item.is-active a {
	color: var(--green-700);
	border-color: var(--green-500);
	box-shadow: 0 0 0 1px var(--green-500), 0 8px 20px -10px rgba(46, 128, 100, 0.55); /* 縁に緑の線が光る */
	transform: translateY(-2px);
}
.p1-inv-thumb {
	width: 58px;
	height: 58px;
	flex: none;
	display: block;
	overflow: hidden;
	background: var(--mist-2);
	border-radius: 50%; /* アイコンは丸 */
}
.p1-inv-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 50%;
}
.p1-inv-name {
	flex: 1;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.4;
	color: var(--green-800);
}
/* ホバーで左スライド → 右に記事カード（絶対配置・縦中央） */
.p1-inv-sec > .container {
	position: relative; /* カードの配置基準（タイトル＋リスト全体） */
}
.p1-inv-wrap {
	position: relative; /* 各グループ（個人/法人）ごとにプレビューを配置 */
}
.p1-inv-list {
	max-width: 100%;
	transition: max-width 0.4s ease;
}
.p1-inv-wrap.is-open .p1-inv-list {
	max-width: calc(100% - 396px);
}
.p1-inv-preview {
	position: absolute;
	top: 50%;
	right: 0;
	width: 360px;
	transform: translateY(-50%) translateX(16px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.45s ease;
}
.p1-inv-wrap.is-open .p1-inv-preview {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
	pointer-events: auto;
}
.p1-inv-pcard {
	display: block;
	width: 100%;
	background: #fff;
	color: var(--green-800);
	border-radius: 6px; /* ごく軽いラウンド */
	overflow: hidden;
	box-shadow: 0 18px 46px -18px rgba(16, 52, 42, 0.4);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.p1-inv-pcard:hover {
	box-shadow: 0 24px 54px -16px rgba(16, 52, 42, 0.5);
	transform: translateY(-3px);
}
.p1-inv-pthumb {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: var(--mist-2);
	overflow: hidden;
}
.p1-inv-pthumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(16, 52, 42, 0.42), rgba(16, 52, 42, 0) 55%);
}
.p1-inv-pthumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.p1-inv-pcard:hover .p1-inv-pthumb img {
	transform: scale(1.06);
}
.p1-inv-pthumb.is-empty {
	background: linear-gradient(135deg, var(--green-700), var(--green-900));
}
.p1-inv-pthumb.is-empty img {
	display: none;
}
.p1-inv-pbody {
	display: block;
	padding: 22px 24px 26px;
}
.p1-inv-peyebrow {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--gold-600);
	margin-bottom: 10px;
}
.p1-inv-ptitle {
	display: block;
	font-size: 19px;
	font-weight: 700;
	color: var(--green-900);
	line-height: 1.45;
	margin-bottom: 12px;
}
.p1-inv-pexcerpt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.85;
	margin-bottom: 20px;
}
.p1-inv-pmore {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 22px;
	background: var(--green-700);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: 0.25s ease;
}
.p1-inv-pmore i {
	font-style: normal;
	transition: transform 0.25s ease;
}
.p1-inv-pcard:hover .p1-inv-pmore {
	background: var(--gold);
}
.p1-inv-pcard:hover .p1-inv-pmore i {
	transform: translateX(4px);
}
@media (max-width: 900px) {
	.p1-inv-list {
		grid-template-columns: 1fr 1fr;
	}
	/* タブレット以下ではスライド演出を無効化（プレビュー非表示） */
	.p1-inv-wrap.is-open .p1-inv-list {
		max-width: 100%;
	}
	.p1-inv-preview,
	.p1-inv-wrap.is-open .p1-inv-preview {
		display: none;
	}
}
@media (max-width: 600px) {
	.p1-inv-list {
		grid-template-columns: 1fr;
	}
}

/* ===== コラムカテゴリ 親子ツリー（サイドバー） ===== */
.cat-tree {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cat-tree-parent > a {
	display: block;
	padding: 11px 0;
	font-weight: 700;
	color: var(--green-900);
	border-top: 1px solid var(--line);
	transition: color 0.2s ease;
}
.cat-tree-parent:first-child > a {
	border-top: 0;
}
.cat-tree-parent > a:hover,
.cat-tree-parent.is-current > a {
	color: var(--gold-600);
}
.cat-tree-children {
	list-style: none;
	margin: 2px 0 10px;
	padding: 4px 0 2px 14px;
	border-left: 2px solid var(--line);
}
.cat-tree-child > a {
	display: block;
	padding: 6px 0;
	font-size: 13px;
	color: var(--muted);
	transition: color 0.2s ease;
}
.cat-tree-child > a::before {
	content: "–";
	margin-right: 7px;
	color: var(--line-strong);
}
.cat-tree-child > a:hover {
	color: var(--gold-600);
}
.cat-tree-child.is-current > a {
	color: var(--green-900);
	font-weight: 700;
}

/* ===== フッター 信頼バッジ帯（警視庁リンク・商工会 等） ===== */
.sec-footer .trust-band {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sec-footer .trust-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 7px 16px;
	font-size: 11px;
	color: #aac4b8;
	letter-spacing: 0.02em;
}
.sec-footer .trust-link {
	color: #cfe0d8;
	transition: border-color 0.2s ease, color 0.2s ease;
}
.sec-footer .trust-link:hover {
	border-color: var(--gold);
	color: #fff;
}
.sec-footer .trust-link svg {
	opacity: 0.75;
}

/* ===== 追従CTA：電話ボタンに“遊び”（注目喚起／電話だけ／他は静か） ===== */
.floating .btn-gold.fab-attn {
	overflow: visible;               /* リング・吹き出しを見せる */
	animation: fab-wobble 3.6s ease-in-out infinite 1.2s !important;
	transform-origin: center;
}
.floating .btn-gold.fab-attn:hover {
	animation-duration: 1.1s !important;
}
.fab-ping {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	z-index: -1;
	box-shadow: 0 0 0 0 rgba(200, 162, 76, 0.55);
	animation: fab-ping 2.6s ease-out infinite;
}
.fab-bubble {
	position: absolute;
	top: -15px;
	left: -12px;
	z-index: 2;
	background: var(--green-900);
	color: #fff;
	font-size: 10px;
	line-height: 1.15;
	font-weight: 800;
	text-align: center;
	padding: 4px 7px;
	border: 1px solid var(--gold);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
	animation: fab-bob 1.6s ease-in-out infinite;
}
.fab-bubble::after {
	content: "";
	position: absolute;
	left: 13px;
	bottom: -4px;
	width: 7px;
	height: 7px;
	background: var(--green-900);
	border-right: 1px solid var(--gold);
	border-bottom: 1px solid var(--gold);
	transform: rotate(45deg);
}
@keyframes fab-ping {
	0%   { box-shadow: 0 0 0 0 rgba(200, 162, 76, 0.55); }
	70%  { box-shadow: 0 0 0 18px rgba(200, 162, 76, 0); }
	100% { box-shadow: 0 0 0 0 rgba(200, 162, 76, 0); }
}
@keyframes fab-wobble {
	0%, 82%, 100% { transform: rotate(0); }
	85% { transform: rotate(-6deg); }
	89% { transform: rotate(5deg); }
	92% { transform: rotate(-4deg); }
	95% { transform: rotate(3deg); }
	98% { transform: rotate(-1deg); }
}
@keyframes fab-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
	.floating .btn-gold.fab-attn,
	.fab-ping,
	.fab-bubble { animation: none !important; }
}

/* ===== TOP 動画2本（紹介動画＋触れる動画） ===== */
.p1-videos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 1000px;
	margin: 0 auto;
}
.p1-video {
	margin: 0;
}
.p1-video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	border: 1px solid var(--line);
	overflow: hidden;
}
.p1-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.p1-video figcaption {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	font-size: 13px;
	color: var(--muted);
}
.p1-video-tag {
	flex: none;
	background: var(--green-900);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.03em;
	padding: 4px 10px;
}
.p1-video-tag.is-alt {
	background: var(--gold);
}
@media (max-width: 767px) {
	.p1-videos {
		grid-template-columns: 1fr;
		gap: 22px;
	}
}

/* ===== 会社概要ページ ===== */
.company-greeting p {
	color: var(--green-900);
	line-height: 1.95;
	margin-bottom: 14px;
}
.company-greeting p.tbd-note {
	color: var(--muted);
	font-size: 12px;
	margin-top: 6px;
}
.tbd {
	display: inline-block;
	background: var(--mist);
	border: 1px solid var(--line-strong);
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 1px 8px;
	margin-right: 4px;
}
.tbd-legend {
	margin-top: 14px;
	font-size: 12px;
	color: var(--muted);
}
.company-offices {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}
.company-offices .office {
	border: 1px solid var(--line);
	border-top: 2px solid var(--green-700);
	padding: 20px;
}
.office .office-name {
	font-weight: 800;
	color: var(--green-900);
	margin-bottom: 8px;
}
.office .office-addr {
	color: var(--green-900);
	line-height: 1.7;
	margin-bottom: 6px;
}
.office .office-lic {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 12px;
}
.office .office-map {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	font-weight: 700;
	color: var(--green-800);
	transition: color 0.2s ease;
}
.office .office-map:hover {
	color: var(--gold-600);
}
@media (max-width: 767px) {
	.company-offices {
		grid-template-columns: 1fr;
	}
}

/* ===== 調査項目：個人/法人グループ見出し ===== */
.p1-inv-group + .p1-inv-group {
	margin-top: 42px;
}
.p1-inv-gtitle {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 0 0 18px;
	padding-bottom: 10px;
	font-size: 18px;
	font-weight: 800;
	color: var(--green-900);
	border-bottom: 1px solid rgba(16, 52, 42, 0.14);
}
.p1-inv-gtitle .en {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--green-600);
}

/* ===== ABOUT あしらいの上質化 ===== */
.p1-about-eyebrow {
	font-size: 14px;
	font-weight: 700;
	color: var(--green-700);
	letter-spacing: 0.06em;
	margin: 0 0 12px;
}
.p1-about-title {
	position: relative;
}
.p1-about-mark {
	font-family: Georgia, "Times New Roman", serif;
	color: rgba(200, 162, 76, 0.55);
	font-size: 1.5em;
	line-height: 0;
	margin-right: 0.04em;
	vertical-align: -0.28em;
}
.p1-about-sign {
	margin-top: 24px;
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--gold-600);
}
/* 画像フレーム：勝手な大きめラウンドを抑え、縦ラベルを添える */
.p1-about-img {
	border-radius: 4px;
}
.p1-about-vlabel {
	position: absolute;
	top: 0;
	right: -14px;
	writing-mode: vertical-rl;
	font-family: "Jost", sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.24em;
	color: var(--gold-600);
}
@media (max-width: 900px) {
	.p1-about-vlabel { display: none; }
}

/* ===== TOP 選ばれる理由：旧テキスト反映に伴う調整 ===== */
.reason-item h3 em {
	display: block;
	font-style: normal;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--gold-600);
	margin-top: 5px;
}
.reason-item p {
	text-align: left;
	line-height: 1.85;
}

/* ===== TOP 協力弁護士セクション（旧サイトの実データ・実写真） ===== */
.lawyer-grid {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 52px;
	align-items: center;
	max-width: 980px;
	margin: 0 auto;
}
.lawyer-photo {
	margin: 0;
}
.lawyer-photo img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}
.lawyer-firm {
	font-size: 14px;
	font-weight: 700;
	color: var(--muted);
	margin-bottom: 8px;
}
.lawyer-name {
	display: flex;
	align-items: baseline;
	gap: 14px;
	font-size: 28px;
	font-weight: 800;
	color: var(--green-900);
	margin: 0 0 16px;
}
.lawyer-en {
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--gold-600);
}
.lawyer-lead {
	font-size: 17px;
	font-weight: 700;
	color: var(--green-800);
	line-height: 1.7;
	margin-bottom: 14px;
}
.lawyer-text {
	font-size: 15px;
	line-height: 2;
	color: var(--muted);
	margin-bottom: 22px;
}
@media (max-width: 767px) {
	.lawyer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.lawyer-photo {
		max-width: 300px;
		margin: 0 auto;
	}
	.lawyer-name {
		justify-content: center;
	}
}

/* ===== 料金表：塗り面をやめた編集的テーブルに刷新 ===== */
.price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.price-table thead th {
	background: transparent;
	color: var(--muted);
	text-align: left;
	padding: 0 18px 12px 0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	border-bottom: 2px solid var(--green-800);
}
.price-table tbody th {
	background: transparent;
	color: var(--green-900);
	text-align: left;
	width: 170px;
	padding: 18px 18px 18px 0;
	font-weight: 800;
	border-bottom: 1px solid var(--line);
}
.price-table tbody td {
	padding: 18px;
	color: var(--green-800);
	border-bottom: 1px solid var(--line);
	vertical-align: middle;
	text-align: left;
}
.price-table tbody td:first-of-type { font-weight: 700; color: var(--green-900); font-size: 16px; }
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: 0; }

/* ===== ページネーション：番号ボックスで整える ===== */
.pagination .nav-links,
.media-pager .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 44px;
}
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--line-strong);
	background: #fff;
	color: var(--green-800);
	font-weight: 700;
	font-size: 14px;
	transition: 0.2s ease;
}
.page-numbers:hover { border-color: var(--green-700); color: var(--green-700); }
.page-numbers.current { background: var(--green-800); border-color: var(--green-800); color: #fff; }
.page-numbers.dots { border: 0; background: transparent; min-width: 22px; color: var(--muted); }

/* ===== フッター住所：ラベル＋値で整った行組み ===== */
.sec-footer .brand .foot-info { margin-top: 16px; }
.sec-footer .foot-line { display: flex; gap: 12px; margin-bottom: 6px; line-height: 1.7; }
.sec-footer .foot-line b { flex: none; width: 60px; color: #cfe0d8; font-weight: 700; }

/* ===== ヘッダーCTA：ボタン幅を揃える ===== */
.sec-header-cta .btn { min-width: 128px; }

/* ===== 追従ボタン：上品な“キラッ”光沢（揺れなし） ===== */
.floating .btn { position: relative; overflow: hidden; }
.floating .btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -60%;
	width: 45%;
	height: 100%;
	background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
	transform: skewX(-20deg);
	pointer-events: none;
	animation: fabGleam 5s ease-in-out infinite !important;
}
.floating .btn:nth-child(1)::after { animation-delay: 0s; }
.floating .btn:nth-child(2)::after { animation-delay: 0.35s; }
.floating .btn:nth-child(3)::after { animation-delay: 0.7s; }
.floating .btn:nth-child(4)::after { animation-delay: 1.05s; }
@keyframes fabGleam {
	0%, 55%   { left: -60%; }
	80%, 100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
	.floating .btn::after { animation: none !important; display: none; }
}

/* ===== ALLIANCE（提携・連携機関）：実ロゴが揃うまで非表示 ===== */
.p1-alliance { display: none; }

/* ===== カテゴリツリー：ホバーで背景反転＋子は開閉 ===== */
.cat-tree-parent > a:hover,
.cat-tree-parent.is-current > a {
	background: var(--green-800);
	color: #fff;
}
.cat-tree-children {
	max-height: 0;
	overflow: hidden;
	margin: 0 0 0 2px;
	padding: 0 0 0 12px;
	border-left: 2px solid var(--line);
	transition: max-height 0.32s ease, margin 0.32s ease, padding 0.32s ease;
}
.cat-tree-parent:hover > .cat-tree-children,
.cat-tree-parent:focus-within > .cat-tree-children,
.cat-tree-parent.is-open > .cat-tree-children {
	max-height: 460px;
	margin: 2px 0 10px 2px;
	padding: 4px 0 2px 12px;
}

/* ===== ヘッダー＋グローバルナビを一体でスティッキー追従 ===== */
.site-sticky {
	position: sticky;
	top: 0;
	z-index: 50;
}
.sec-header {
	position: static; /* 追従は親の .site-sticky に集約 */
}

/* ===== 選ばれる理由（旧サイト準拠・画像付き・猫見出し） ===== */
.beerus-reason { background: var(--mist); }
.beerus-reason-head {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 56px;
}
.beerus-reason-cat { width: 118px; height: auto; flex: none; }
.beerus-reason-head .en {
	display: block;
	font-family: "Jost", sans-serif;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.12em;
	color: var(--green-700);
	margin-bottom: 4px;
}
.beerus-reason-title {
	font-size: clamp(26px, 3.4vw, 40px);
	font-weight: 800;
	line-height: 1.35;
	color: var(--green-900);
}
.beerus-reason-title .n3 { color: var(--green-600); font-size: 1.25em; }
.reason-blocks { display: flex; flex-direction: column; gap: 60px; }
.reason-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: center;
}
.reason-block.is-reverse .reason-block-img { order: 2; }
.reason-block-img { position: relative; margin: 0; }
.reason-block-img img { width: 100%; height: auto; display: block; border-radius: 4px; }
.reason-block-num {
	position: absolute;
	top: -30px;
	left: -8px;
	font-family: "Jost", sans-serif;
	font-size: clamp(64px, 7vw, 112px);
	font-weight: 800;
	line-height: 1;
	color: var(--green-800);
}
.reason-block.is-reverse .reason-block-num { left: auto; right: -8px; }
.reason-block-body h3 {
	font-size: clamp(21px, 2.3vw, 29px);
	font-weight: 800;
	line-height: 1.5;
	color: var(--green-900);
	margin-bottom: 18px;
}
.reason-block-body h3 em { font-style: normal; color: var(--green-600); }
.reason-block-body p { font-size: 16.5px; color: var(--muted); line-height: 2.05; margin-bottom: 16px; }
.reason-block-list { list-style: none; margin: 16px 0; padding: 0; }
.reason-block-list li {
	position: relative;
	padding-left: 18px;
	font-size: 16px;
	color: var(--green-800);
	line-height: 2;
}
.reason-block-list li::before { content: "・"; position: absolute; left: 0; color: var(--gold-600); }
@media (max-width: 860px) {
	.reason-block { grid-template-columns: 1fr; gap: 22px; }
	.reason-block.is-reverse .reason-block-img { order: 0; }
	.reason-block-num { top: -22px; }
	.beerus-reason-head { gap: 14px; }
	.beerus-reason-cat { width: 84px; }
}

/* 追従CTA：タイピング中の幅ブレ防止＋幅を揃える */
.floating .btn { min-width: 150px; }

/* ===== 調査報告書サンプル ===== */
.report-cover {
	display: flex;
	align-items: flex-start;
	gap: 28px;
	border: 1px solid var(--line);
	border-top: 3px solid var(--green-800);
	background: #fff;
	padding: 34px 36px;
	margin-bottom: 26px;
}
.report-maru {
	flex: none;
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #b3392f;
	border-radius: 50%;
	color: #b3392f;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0;
}
.report-cover-body .en {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: var(--gold-600);
}
.report-cover-body h2 {
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 800;
	color: var(--green-900);
	letter-spacing: 0.18em;
	margin: 6px 0 12px;
}
.report-cover-body p { color: var(--muted); line-height: 1.95; font-size: 15px; }
.report-subject {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}
.report-subject-item { background: #fff; padding: 16px 20px; }
.report-subject-item span {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--muted);
	margin-bottom: 4px;
}
.report-subject-item strong { color: var(--green-900); font-size: 16px; font-weight: 700; }

/* タイムライン */
.report-timeline { position: relative; padding-left: 34px; }
.report-timeline::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: var(--line-strong);
}
.report-entry { position: relative; margin-bottom: 38px; }
.report-time { position: absolute; left: -34px; top: 0; }
.report-time span {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Jost", sans-serif;
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	background: var(--green-800);
	padding: 4px 10px;
	white-space: nowrap;
}
.report-time span::before {
	content: "";
	position: absolute;
	left: -25px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gold);
	border: 2px solid #fff;
	transform: translateY(-50%);
	box-shadow: 0 0 0 1px var(--line-strong);
}
.report-entry-body { padding-top: 2px; }
.report-caption {
	font-size: 16px;
	font-weight: 700;
	color: var(--green-900);
	line-height: 1.7;
	margin-bottom: 14px;
}
.report-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 640px; }
.report-photos.is-single { grid-template-columns: 1fr; max-width: 340px; }
.report-photos figure { margin: 0; border: 1px solid var(--line); background: #000; }
.report-photos img { width: 100%; height: auto; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.report-end .report-time span { background: var(--gold-600); }
.report-note { margin-top: 30px; font-size: 12px; color: var(--muted); line-height: 1.8; }
@media (max-width: 767px) {
	.report-cover { flex-direction: column; gap: 16px; padding: 24px; }
	.report-subject { grid-template-columns: 1fr; }
	.report-photos, .report-photos.is-single { grid-template-columns: 1fr; max-width: 100%; }
}

/* ===== 報告書 A4モーダル ===== */
.report-open-btn { margin-top: 20px; }
.report-modal { position: fixed; inset: 0; z-index: 10000; display: none; }
.report-modal.is-open { display: block; }
.report-modal-overlay { position: absolute; inset: 0; background: rgba(8, 20, 15, 0.82); }
.report-modal-scroll { position: absolute; inset: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 64px 16px 48px; }
.report-modal-pages { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.report-a4 {
	width: 100%;
	height: auto;
	display: block;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.7);
}
.report-modal-close {
	position: fixed;
	top: 16px;
	right: 20px;
	z-index: 2;
	width: 46px;
	height: 46px;
	border: 0;
	background: #fff;
	color: var(--green-900);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: var(--shadow);
}
.report-modal-close:hover { background: var(--mist); }
body.report-modal-open { overflow: hidden; }

/* LINEモーダル：友だち追加ボタン */
.line-modal-add { width: 100%; margin-top: 10px; }

/* ===== アクセスページ ===== */
.access-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.access-office { border: 1px solid var(--line); background: #fff; }
.access-map { position: relative; width: 100%; aspect-ratio: 16 / 10; background: var(--mist); }
.access-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.access-body { padding: 22px 24px 26px; }
.access-body h3 { font-size: 20px; font-weight: 800; color: var(--green-900); margin-bottom: 10px; }
.access-addr { color: var(--green-900); line-height: 1.8; margin-bottom: 6px; }
.access-lic { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.access-maplink { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--green-800); transition: color 0.2s ease; }
.access-maplink:hover { color: var(--gold-600); }
@media (max-width: 767px) { .access-grid { grid-template-columns: 1fr; gap: 26px; } }

/* 報告書タイムライン：時刻とキャプションの重なり解消（時刻をキャプション上に） */
.report-timeline { padding-left: 28px; }
.report-timeline::before { left: 6px; }
.report-entry::before {
	content: "";
	position: absolute;
	left: -28px;
	top: 7px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gold);
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--line-strong);
}
.report-time { position: static; left: auto; top: auto; margin-bottom: 9px; }
.report-time span::before { display: none; }
.report-end .report-time span::before { display: none; }
.report-entry-body { padding-top: 0; }

/* 追従CTA：タイピングでボタンは動かさず“文字だけ”出す（幅固定＋左寄せでアイコン固定） */
.floating .btn {
	width: 160px;
	min-width: 160px;
	justify-content: flex-start;
}

/* ===== NETWORK：対応エリア（東京23区）チップ ===== */
.network-areas-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 0.04em;
	margin-bottom: 16px;
}
.network-areas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
	gap: 10px;
}
.network-area {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 8px;
	font-size: 14px;
	font-weight: 600;
	color: #e7f0eb;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: 0.2s ease;
}
.network-area:hover {
	color: var(--green-900);
	background: var(--gold);
	border-color: var(--gold);
	transform: translateY(-2px);
}
@media (max-width: 560px) {
	.network-areas-grid { grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
	.network-area { padding: 10px 6px; font-size: 13px; }
}

/* カテゴリツリー：ホバー/現在を上品に（横パディング＋金の左アクセント） */
.cat-tree-parent > a {
	padding-left: 12px;
	padding-right: 12px;
	border-left: 3px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cat-tree-parent > a:hover,
.cat-tree-parent.is-current > a {
	background: var(--green-800);
	color: #fff;
	border-left-color: var(--gold);
}
.cat-tree-children { padding-left: 22px; }
.cat-tree-child > a { padding-left: 4px; }


/* ===== コラム記事：角の追従CTAをやめ、サイドバー下部に固定 ===== */
body.single-column .floating { display: none; }
.side-cta-fixed { border: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.side-cta-fixed .btn { width: 100%; justify-content: center; }
.side-cta-fixed .btn-diagnose { background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff; border: 1px solid var(--gold); }

/* ===== NETWORK：拠点写真＋強調文 ===== */
.network-emph {
	text-align: center;
	font-size: clamp(17px, 2vw, 23px);
	font-weight: 700;
	color: #fff;
	line-height: 1.7;
	margin-bottom: 34px;
}
.network-emph strong { color: var(--gold); font-weight: 800; }
.network-offices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	margin-bottom: 40px;
}
.net-office { margin: 0; }
.net-office-img {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.05);
}
.net-office-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.net-office-img .net-ph {
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	letter-spacing: 0.06em;
}
.net-office figcaption {
	margin-top: 12px;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.04em;
}
@media (max-width: 640px) { .network-offices { grid-template-columns: 1fr; gap: 18px; } }

/* ===== 調査の流れ（FLOW） ===== */
.flow-steps { display: flex; flex-direction: column; }
.flow-step { display: flex; gap: 26px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.flow-step:first-child { padding-top: 8px; }
.flow-step:last-child { border-bottom: 0; }
.flow-num { flex: none; width: 66px; text-align: center; }
.flow-num .en { display: block; font-family: "Jost", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; color: var(--gold-600); margin-bottom: 5px; }
.flow-num b {
	display: flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; margin: 0 auto;
	background: var(--green-800); color: #fff;
	font-family: "Jost", sans-serif; font-size: 22px; font-weight: 800;
	border-radius: 50%;
}
.flow-body { padding-top: 4px; }
.flow-body h3 { font-size: 19px; font-weight: 800; color: var(--green-900); margin-bottom: 9px; }
.flow-body p { font-size: 15px; line-height: 1.95; color: var(--muted); }
@media (max-width: 560px) {
	.flow-step { gap: 16px; }
	.flow-num { width: 52px; }
	.flow-num b { width: 44px; height: 44px; font-size: 18px; }
}

/* ===== お問い合わせページ ===== */
.contact-lead { text-align: center; color: var(--muted); line-height: 1.9; margin-bottom: 38px; }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.contact-method { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; padding: 26px 16px; border: 1px solid var(--line); background: #fff; transition: 0.2s ease; }
a.contact-method:hover { border-color: var(--green-600); box-shadow: 0 12px 28px -16px rgba(16, 52, 42, 0.45); transform: translateY(-2px); }
.cm-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: var(--mist); border-radius: 50%; margin-bottom: 6px; color: var(--green-800); }
.cm-icon svg { width: 22px; height: 22px; }
.contact-method.is-line .cm-icon { background: #06c755; color: #fff; }
.cm-label { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; color: var(--gold-600); }
.cm-main { font-size: 19px; font-weight: 800; color: var(--green-900); font-family: "Jost", sans-serif; }
.cm-sub { font-size: 12px; color: var(--muted); }
.contact-form { border: 1px solid var(--line); background: #fff; padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.contact-form .row { margin-bottom: 18px; }
.contact-form label { display: block; font-weight: 700; font-size: 14px; color: var(--green-900); margin-bottom: 7px; }
.contact-form label .required { display: inline-block; margin-left: 8px; font-size: 11px; font-weight: 700; color: #fff; background: var(--gold-600); padding: 1px 8px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line-strong); background: var(--mist); padding: 12px 14px; font-size: 15px; font-family: inherit; color: var(--green-900); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--green-600); background: #fff; }
.contact-form textarea { resize: vertical; }
.form-consent { display: flex !important; align-items: center; gap: 10px; justify-content: center; margin: 6px 0 24px; font-weight: 500 !important; font-size: 14px; color: var(--muted); }
.form-consent input[type="checkbox"] { width: 20px; height: 20px; flex: none; accent-color: var(--green-700); margin: 0; }
.form-consent a { color: var(--green-700); text-decoration: underline; }
.form-submit { text-align: center; }
.form-submit .btn { min-width: 260px; }
@media (max-width: 640px) { .contact-methods { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } .contact-form { padding: 22px; } }

/* ===== 診断結果 CTA（電話/メール/LINE） ===== */
.flow-cta-wrap { margin-top: 16px; }
.flow-cta-toggle { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; }
.flow-cta-caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .25s; margin-top: -3px; }
.flow-cta-toggle.is-open .flow-cta-caret { transform: rotate(-135deg); margin-top: 3px; }
.flow-cta-group { margin-top: 12px; animation: flowCtaIn .25s ease; }
.flow-cta-group[hidden] { display: none; }
@keyframes flowCtaIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.flow-cta-label { margin: 0 0 10px; font-size: 13px; font-weight: 700; text-align: center; color: rgba(255, 255, 255, 0.9); }
.flow-cta-btns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.flow-cta-btn { flex-direction: column; gap: 4px; padding: 12px 4px !important; font-size: 13px; min-width: 0; }
.flow-cta-btn svg { width: 18px; height: 18px; }

/* ===== お問い合わせ 完了/エラー ===== */
.form-sent { background: #eaf5ef; border: 1px solid var(--green-600); color: var(--green-900); padding: 16px 20px; margin-bottom: 24px; font-weight: 700; text-align: center; }
.form-error { background: #fdecea; border: 1px solid #d9534f; color: #a3352f; padding: 16px 20px; margin-bottom: 24px; font-weight: 700; text-align: center; }

/* 実例セクションのボタン群 */
.example-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
/* 拠点：地図の直接埋め込み */
.office-map-embed { margin-top: 14px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.office-map-embed iframe { display: block; width: 100%; }

/* ===== SP：追従CTAをフッターに固定・横並び2列×2段 ===== */
@media (max-width: 560px) {
	.floating {
		right: 0;
		left: 0;
		bottom: 0;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 6px;
		padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
		background: rgba(11, 34, 24, 0.92);
		backdrop-filter: blur(6px);
		box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.22);
		z-index: 70;
	}
	.floating .btn {
		flex: 1 1 calc(50% - 3px); /* 2列 */
		width: auto;
		min-width: 0;
		justify-content: center;
		padding: 12px 8px;
		font-size: 13px;
		box-shadow: none;
	}
	/* フッター固定バーぶんの余白を確保（内容が隠れないように） */
	body { padding-bottom: 108px; }
}

/* ===== アクセス：駅からの道順（経路案内） ===== */
.access-start { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green-800); margin: 6px 0 12px; }
.access-start-icon { color: var(--gold-600); display: inline-flex; }
.route-guide { margin-top: 40px; }
.route-guide-title { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--green-900); padding-bottom: 14px; margin-bottom: 26px; border-bottom: 2px solid var(--line); }
.route-guide-icon { color: var(--gold-600); display: inline-flex; }
.route-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 20px; counter-reset: none; }
.route-step { margin: 0; }
.route-step-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1 / 1; background: var(--mist); }
.route-step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.route-step-num { position: absolute; top: 10px; left: 10px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff; background: var(--green-800); border-radius: 50%; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); }
.route-step-text { margin: 12px 2px 0; font-size: 14px; line-height: 1.7; color: var(--green-900); }
@media (max-width: 760px) {
	.route-steps { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
}
@media (max-width: 460px) {
	.route-steps { grid-template-columns: 1fr; }
	.route-step-photo { aspect-ratio: 16 / 11; }
}

/* ===== お客様の声（VOICE：旧サイト踏襲・アバター型カード） ===== */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card { margin: 0; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(20, 40, 30, 0.05); transition: transform .25s ease, box-shadow .25s ease; }
.voice-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(20, 40, 30, 0.12); }
.voice-card-avatar { margin: 0; background: var(--mist); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 18px 18px 0; }
.voice-card-avatar img { width: auto; max-width: 62%; height: 170px; object-fit: contain; object-position: bottom center; display: block; }
.voice-card-main { padding: 18px 20px 6px; flex: 1; display: flex; flex-direction: column; }
.voice-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.voice-tag { font-size: 11.5px; font-weight: 700; color: #fff; background: var(--green-800); padding: 4px 10px; border-radius: 4px; letter-spacing: .02em; }
.voice-tag.is-area { color: var(--green-900); background: transparent; border: 1px solid var(--line-strong); }
.voice-card-title { font-size: 15px; line-height: 1.5; font-weight: 800; color: var(--green-900); margin: 0 0 10px; }
.voice-card-text { font-size: 13px; line-height: 1.85; color: #556; margin: 0; flex: 1; }
.voice-card-more { display: flex; align-items: center; justify-content: flex-end; gap: 6px; padding: 14px 20px; margin-top: 6px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--green-800); }
.voice-card:hover .voice-card-more { color: var(--gold-600); }
@media (max-width: 900px) { .voice-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 560px) { .voice-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* お客様の声：絞り込み */
.voice-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.col-cat-count { display: inline-block; margin-left: 6px; font-size: 11px; opacity: .7; }

/* お客様アンケート（書き起こし＋実物スキャン カード） */
.survey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.survey-card { margin: 0; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(20, 40, 30, 0.05); }
.survey-card-main { padding: 22px 22px 18px; flex: 1; display: flex; flex-direction: column; background: var(--mist-2); border-bottom: 1px solid var(--line); }
.survey-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.survey-tag { font-size: 12px; font-weight: 700; color: var(--green-800); background: #fff; border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }
.survey-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--gold); }
.survey-stars b { margin-left: 5px; font-size: 11px; font-weight: 700; color: var(--gold-600); }
.survey-lead { font-size: 16px; line-height: 1.55; font-weight: 800; color: var(--green-900); margin: 0 0 10px; }
.survey-body { font-size: 13.5px; line-height: 1.85; color: #445; margin: 0 0 14px; flex: 1; }
.survey-meta { font-size: 11.5px; color: var(--muted); margin: 0; padding-top: 12px; border-top: 1px dashed var(--line); }
.survey-scan { display: block; position: relative; width: 100%; padding: 0; border: 0; border-top: 1px solid var(--line); background: var(--mist); cursor: pointer; line-height: 0; }
.survey-scan img { width: 100%; height: 190px; object-fit: cover; object-position: top center; display: block; transition: transform .4s ease; }
.survey-scan:hover img { transform: scale(1.03); }
.survey-scan-badge { position: absolute; right: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: #fff; background: rgba(11, 34, 24, 0.82); padding: 6px 10px; border-radius: 999px; line-height: 1; }
@media (max-width: 900px) { .survey-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* アンケート拡大モーダル */
.survey-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.survey-modal.is-open { display: flex; }
.survey-modal-overlay { position: absolute; inset: 0; background: rgba(8, 20, 14, 0.82); backdrop-filter: blur(2px); }
.survey-modal-box { position: relative; max-width: 640px; width: 100%; max-height: 92vh; overflow: auto; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.survey-modal-box img { width: 100%; display: block; background: #fff; }
.survey-modal-close { position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(11, 34, 24, 0.9); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; z-index: 2; }

/* 標識はこちら リンク */
.sign-link { display: inline-flex; align-items: center; gap: 3px; margin-left: 6px; font-size: 12px; font-weight: 700; color: var(--gold-600); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.sign-link:hover { color: var(--green-800); }

/* セクション見出しのサブテキスト（お客様アンケート等） */
.lp-title .lp-sub { margin: 18px auto 0; max-width: 620px; font-size: 14px; line-height: 1.85; color: var(--muted); font-weight: 500; }

/* フッター住所：単語途中で折り返さない（語区切りで改行） */
.sec-footer .foot-line { word-break: keep-all; overflow-wrap: anywhere; align-items: baseline; }
.sec-footer .foot-line b { width: 66px; }

/* ===== 探偵ネコ マスコットを各所に散りばめ ===== */
.sec-cat { position: absolute; top: 34px; width: 104px; height: auto; z-index: 2; pointer-events: none; filter: drop-shadow(0 6px 8px rgba(20, 30, 20, 0.16)); animation: catFloat 4.5s ease-in-out infinite; }
.sec-cat.cat-r { right: 24px; }
.sec-cat.cat-l { left: 24px; }
.sec-cat.cat-btm { top: auto; bottom: 0; }
.sec-cat.cat-sm { width: 96px; }
.sec-cat.cat-lg { width: 140px; }
@keyframes catFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
/* 暗い背景のセクションでは影を白めに */
.section-deep .sec-cat, .cta-band .sec-cat { filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35)); }
@media (max-width: 1180px) { .sec-cat { width: 96px; } .sec-cat.cat-lg { width: 108px; } }
@media (max-width: 900px) { .sec-cat { display: none; } }
@media (prefers-reduced-motion: reduce) { .sec-cat { animation: none; } }

/* ===== 動画：サムネ＋再生ボタン（クリックでモーダル） ===== */
button.p1-video-frame { display: block; padding: 0; cursor: pointer; border-radius: var(--radius); }
.p1-video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p1-video-play::after { content: ""; position: absolute; inset: 0; background: rgba(6, 20, 14, 0.14); transition: background .25s ease; }
.p1-video-play:hover::after { background: rgba(6, 20, 14, 0.28); }
.p1-video-playbtn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; z-index: 2; display: flex; align-items: center; justify-content: center; background: rgba(15, 43, 30, 0.82); color: #fff; border-radius: 50%; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35); transition: transform .25s ease, background .25s ease; }
.p1-video-play:hover .p1-video-playbtn { transform: translate(-50%, -50%) scale(1.08); background: var(--gold); color: var(--green-900); }
.p1-video-playbtn svg { width: 26px; height: 26px; margin-left: 3px; }
/* 触れる動画のプレースホルダ */
.p1-video-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: radial-gradient(circle at 50% 35%, #1c4634, #0d2419); }
.p1-video-catimg { width: 96px; height: auto; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)); }
.p1-video-phtxt { color: #cfe0d8; font-size: 12.5px; font-weight: 700; text-align: center; line-height: 1.6; }

/* 動画 再生モーダル */
.video-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.video-modal.is-open { display: flex; }
.video-modal-overlay { position: absolute; inset: 0; background: rgba(6, 16, 11, 0.86); backdrop-filter: blur(3px); }
.video-modal-box { position: relative; width: min(960px, 96vw); }
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6); }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close { position: absolute; top: -46px; right: 0; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.16); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.video-modal-close:hover { background: rgba(255, 255, 255, 0.28); }
@media (max-width: 560px) { .video-modal-close { top: -42px; } }

/* SEO用の見出し（視覚的に隠しつつ検索エンジンには伝える） */
.hero-seo-title { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* サービス系（サイドバー付き2カラム）：本文の測度キャップを外し、カラム幅いっぱいに使う */
.two-col .article-stylish { max-width: none; }

/* 拠点：駅からの行き方リンク */
.office-route { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--green-800); }
.office-route:hover { color: var(--gold-600); }

/* ===== 見出しブロックの左に猫（2段組=EN+見出しはそのまま／ゴースト透かしも維持） ===== */
.lp-title.has-cat-left { display: flex; align-items: center; justify-content: center; gap: 24px; }
.lp-title.has-cat-left .lp-title-inner { text-align: center; }
.heading-cat { width: 92px; height: auto; flex: none; filter: drop-shadow(0 5px 7px rgba(20, 30, 20, 0.18)); animation: catFloat 4.5s ease-in-out infinite; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .heading-cat { animation: none; } }
@media (max-width: 560px) { .lp-title.has-cat-left { gap: 14px; } .heading-cat { width: 62px; } }

/* ===== 特化LP（浮気/人探し）：サイト部品＋最小限の固有スタイル ===== */
.lpx-hero { padding-top: 64px; }
.lpx-hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 48px; align-items: center; }
.lpx-eyebrow { display: block; color: var(--gold-600); font-weight: 700; letter-spacing: 0.28em; font-size: 12px; margin-bottom: 14px; }
.lpx-title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; line-height: 1.35; color: var(--green-900); letter-spacing: 0.04em; margin: 0 0 18px; }
.lpx-title .mark { display: inline-block; background: var(--green-800); color: #fff; padding: 0.06em 0.42em; border-radius: 4px; }
.lpx-lead { font-size: 15px; line-height: 2; color: var(--muted); margin: 0 0 18px; max-width: 560px; }
.lpx-points { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; padding: 0; }
.lpx-points li { font-size: 12.5px; font-weight: 700; color: var(--green-800); background: var(--mist); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.lpx-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.lpx-hero-note { margin-top: 14px; font-size: 11.5px; color: var(--muted); }
.lpx-hero-panel { background: var(--green-900); color: #fff; border-radius: var(--radius); padding: 28px 26px; box-shadow: 0 30px 60px -30px rgba(16, 52, 42, 0.55); }
.lpx-panel-head .en { display: block; color: var(--gold); letter-spacing: 0.22em; font-size: 11px; font-weight: 800; margin-bottom: 8px; }
.lpx-panel-head b { display: block; font-size: 18px; line-height: 1.55; margin-bottom: 16px; }
.lpx-panel-steps { list-style: none; margin: 0 0 18px; padding: 0; }
.lpx-panel-steps li { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 13.5px; border-bottom: 1px dashed rgba(255, 255, 255, 0.18); }
.lpx-panel-steps li span { flex: none; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--green-900); font-weight: 800; border-radius: 50%; font-size: 13px; }
.lpx-hero-panel .btn { width: 100%; }
.lpx-cta-inline { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.lpx-num { display: block; color: var(--gold); font-weight: 800; font-size: 22px; margin-bottom: 6px; }
.lpx-report { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; max-width: 1000px; margin: 0 auto; }
.lpx-report-imgs { display: flex; gap: 14px; }
.lpx-report-imgs img { width: calc(50% - 7px); height: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 34px -18px rgba(16, 52, 42, 0.4); transition: transform .3s ease; }
.lpx-report-imgs:hover img { transform: translateY(-4px); }
.lpx-report-body p { font-size: 14.5px; line-height: 2; color: var(--muted); margin: 0 0 18px; }
.lpx-price-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.lpx-lawyer { display: flex; gap: 28px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; }
.lpx-lawyer img { width: 120px; height: auto; flex: none; }
.lpx-lawyer-name { color: var(--green-900); margin: 0 0 8px; }
.lpx-lawyer p { font-size: 14px; line-height: 1.9; color: var(--muted); margin: 0; }
@media (max-width: 900px) {
	.lpx-hero-grid { grid-template-columns: 1fr; gap: 30px; }
	.lpx-report { grid-template-columns: 1fr; }
	.lpx-lawyer { flex-direction: column; text-align: center; }
}

/* ================================================================
   特化LP 300点仕上げ：トンマナ（緑×ゴールド）維持のまま、LPらしい
   リッチな導入アニメーション・ホバー・質感を付与
   ================================================================ */

/* ---- 最上部 信頼バー ---- */
.lpx-topbar { background: var(--green-900); color: #cfe0d8; font-size: 11.5px; letter-spacing: 0.08em; display: flex; justify-content: center; align-items: center; gap: 14px; padding: 8px 12px; }
.lpx-topbar i { color: var(--gold); font-style: normal; opacity: 0.7; }

/* ---- FV：背景写真＋緑ベール＋白文字 ---- */
.lpx-hero--photo { position: relative; background-size: cover; background-position: right 25%; padding: 96px 0 88px; overflow: hidden; }
.lpx-hero--photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, #0b241b 0%, #0e2f24 44%, rgba(14, 47, 36, 0.92) 58%, rgba(16, 52, 42, 0.35) 100%); }
.lpx-hero--photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(1100px 420px at 85% 15%, rgba(200, 162, 76, 0.18), transparent 60%); pointer-events: none; }
.lpx-hero--photo .container { position: relative; z-index: 2; }
.lpx-hero--photo .lpx-eyebrow { color: var(--gold); }
.lpx-hero--photo .lpx-title { color: #fff; }
.lpx-hero--photo .lpx-title .mark { background: var(--gold); color: var(--green-900); }
.lpx-hero--photo .lpx-lead { color: rgba(255, 255, 255, 0.85); }
.lpx-hero--photo .lpx-points li { color: #eaf3ee; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.22); backdrop-filter: blur(4px); }
.lpx-hero--photo .lpx-hero-note { color: rgba(255, 255, 255, 0.55); }
.lpx-hero--photo .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.lpx-hero--photo .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
/* FV 導入アニメーション（時差フェードアップ） */
@keyframes lpxUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.lpx-hero-body > * { opacity: 0; animation: lpxUp 0.7s cubic-bezier(0.22, 0.8, 0.3, 1) forwards; }
.lpx-hero-body > *:nth-child(1) { animation-delay: 0.05s; }
.lpx-hero-body > *:nth-child(2) { animation-delay: 0.15s; }
.lpx-hero-body > *:nth-child(3) { animation-delay: 0.3s; }
.lpx-hero-body > *:nth-child(4) { animation-delay: 0.42s; }
.lpx-hero-body > *:nth-child(5) { animation-delay: 0.54s; }
.lpx-hero-body > *:nth-child(6) { animation-delay: 0.66s; }
@keyframes lpxPanelIn { from { opacity: 0; transform: translateX(36px); } to { opacity: 1; transform: none; } }
.lpx-hero-panel { opacity: 0; animation: lpxPanelIn 0.8s 0.5s cubic-bezier(0.22, 0.8, 0.3, 1) forwards; border: 1px solid rgba(200, 162, 76, 0.35); position: relative; }
.lpx-hero-panel::before { content: ""; position: absolute; top: -1px; left: 24px; right: 24px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.lpx-hero-panel .btn-gold { animation: pulseRing 3.4s ease-out infinite 2.4s; }

/* ---- BEERUS METHOD ピル見出し＋8カード ---- */
.lpx-method-head { text-align: center; margin-bottom: 44px; }
.lpx-pill { display: inline-block; background: var(--gold); color: var(--green-900); font-family: "Jost", sans-serif; font-weight: 800; letter-spacing: 0.18em; font-size: 12px; padding: 7px 20px; border-radius: 999px; margin-bottom: 16px; }
.lpx-method-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: var(--green-900); letter-spacing: 0.05em; }
.lpx-method-head h2::after { content: ""; display: block; width: 56px; height: 3px; background: var(--gold); margin: 16px auto 0; }
.lpx-method-head p { margin-top: 14px; font-size: 14px; color: var(--muted); font-weight: 600; }
.lpx-method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lpx-method-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px 20px 30px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.lpx-method-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -22px rgba(16, 52, 42, 0.4); border-color: var(--gold); }
.lpx-method-card .badge { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--gold); color: var(--green-900); font-family: "Jost", sans-serif; font-weight: 800; font-size: 13px; border-radius: 50%; margin-bottom: 14px; }
.lpx-method-card h3 { font-size: 16px; font-weight: 800; color: var(--green-900); margin: 0 0 8px; position: relative; z-index: 1; }
.lpx-method-card p { font-size: 13px; line-height: 1.85; color: var(--muted); margin: 0; position: relative; z-index: 1; }
.lpx-method-card i { position: absolute; right: 6px; bottom: -14px; font-style: normal; font-family: "Jost", sans-serif; font-weight: 800; font-size: 72px; line-height: 1; color: var(--mist); z-index: 0; transition: color 0.3s ease; }
.lpx-method-card:hover i { color: #ead9b0; }

/* ---- LP内 process（調査の流れ）は3列×2段 ---- */
body.is-lp .process { grid-template-columns: repeat(3, 1fr); }

/* ---- LPフッター（リンク列なし版） ---- */
.sec-footer .lp-ftop { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.sec-footer .lp-ftop .brand .logo { justify-content: center; }
.sec-footer .lp-ftop .foot-line { justify-content: center; }

/* ---- 共通の磨き：セクション見出し下のリッチ演出 ---- */
body.is-lp .lp-title h2 { position: relative; }
body.is-lp .price-table { box-shadow: 0 18px 40px -28px rgba(16, 52, 42, 0.35); }
body.is-lp .faq-item { transition: transform 0.25s ease, box-shadow 0.25s ease; }
body.is-lp .faq-item:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -16px rgba(16, 52, 42, 0.3); }
body.is-lp .card { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
body.is-lp .card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -20px rgba(16, 52, 42, 0.35); border-color: var(--gold); }

@media (max-width: 1024px) { .lpx-method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { body.is-lp .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
	.lpx-topbar { font-size: 10px; gap: 8px; }
	.lpx-method-grid { grid-template-columns: 1fr; }
	body.is-lp .process { grid-template-columns: 1fr; }
	.lpx-hero--photo { padding: 64px 0 56px; }
}
@media (prefers-reduced-motion: reduce) {
	.lpx-hero-body > *, .lpx-hero-panel { animation: none; opacity: 1; }
}

/* ---- LP CTAバナー（差し込み型） ---- */
.lpx-cta-banner { position: relative; background: linear-gradient(115deg, var(--green-900) 0%, var(--green-800) 60%, var(--green-700) 100%); overflow: hidden; padding: 40px 0; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.lpx-cta-banner.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.lpx-cta-banner::before { content: "CONSULTATION"; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); font-family: "Jost", sans-serif; font-weight: 800; font-size: clamp(60px, 9vw, 120px); letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.05); white-space: nowrap; pointer-events: none; }
.lpx-cta-banner-in { display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; z-index: 1; }
.lpx-cta-banner-copy .en { color: var(--gold); font-weight: 800; letter-spacing: 0.24em; font-size: 11px; }
.lpx-cta-banner-title { color: #fff; font-size: clamp(18px, 2.4vw, 26px); font-weight: 800; margin: 8px 0 6px; line-height: 1.5; }
.lpx-cta-banner-sub { color: rgba(255, 255, 255, 0.7); font-size: 12.5px; margin: 0; }
.lpx-cta-banner-btns { display: flex; align-items: center; gap: 18px; flex: none; }
.lpx-cta-tel { display: inline-flex; align-items: center; gap: 12px; background: var(--gold); color: var(--green-900); padding: 14px 26px; border-radius: var(--radius); font-weight: 800; box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.45); transition: transform 0.25s ease, filter 0.25s ease; animation: pulseRing 3.4s ease-out infinite 1.6s; }
.lpx-cta-tel:hover { transform: scale(1.04); filter: brightness(1.06); }
.lpx-cta-tel svg { width: 26px; height: 26px; }
.lpx-cta-tel-body { display: flex; flex-direction: column; line-height: 1.3; }
.lpx-cta-tel-body small { font-size: 10.5px; font-weight: 700; opacity: 0.8; }
.lpx-cta-tel-body strong { font-size: 22px; letter-spacing: 0.03em; font-family: "Jost", sans-serif; }
.lpx-cta-banner-sub-btns { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 900px) {
	.lpx-cta-banner-in { flex-direction: column; text-align: center; }
	.lpx-cta-banner-btns { flex-direction: column; width: 100%; }
	.lpx-cta-tel { justify-content: center; width: 100%; }
	.lpx-cta-banner-sub-btns { flex-direction: row; justify-content: center; }
}

/* ---- LP プロ相談カード（ゴールド枠） ---- */
.lpx-intro-sec { padding: 56px 0; }
.lpx-intro-card { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 36px; align-items: center; background: #fff; border: 1.5px solid var(--gold); border-radius: 12px; padding: 40px 48px; box-shadow: 0 24px 56px -36px rgba(16, 52, 42, 0.4); }
.lpx-intro-body { text-align: center; }
.lpx-intro-body h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--green-900); line-height: 1.6; margin: 14px 0 16px; letter-spacing: 0.04em; }
.lpx-intro-body p { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 2.1; margin: 0 0 8px; }
.lpx-intro-note { font-size: 13px !important; font-weight: 600 !important; color: var(--muted) !important; }
.lpx-intro-photo { margin: 0; }
.lpx-intro-photo img { width: 100%; height: auto; border-radius: 8px; display: block; }
@media (max-width: 900px) { .lpx-intro-card { grid-template-columns: 1fr; padding: 28px 22px; } }

/* ---- LP チェックリスト（8項目） ---- */
.lpx-checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px; }
.lpx-checklist li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px 16px 52px; font-size: 14.5px; font-weight: 700; color: var(--green-900); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.lpx-checklist li::before { content: ""; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 6px; background: var(--gold); }
.lpx-checklist li::after { content: ""; position: absolute; left: 24px; top: calc(50% - 2px); width: 9px; height: 5px; border-left: 2.5px solid var(--green-900); border-bottom: 2.5px solid var(--green-900); transform: translateY(-50%) rotate(-45deg); }
.lpx-checklist li:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 12px 26px -18px rgba(16, 52, 42, 0.4); }

/* ---- LP 時系列ミニ（報告書ダイジェスト） ---- */
.lpx-timeline { display: flex; align-items: stretch; gap: 10px; margin-top: 34px; justify-content: center; }
.lpx-tl-item { flex: 1; max-width: 280px; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; text-align: center; }
.lpx-tl-item .t { display: block; background: var(--green-900); color: var(--gold); font-family: "Jost", sans-serif; font-weight: 800; font-size: 15px; padding: 6px; letter-spacing: 0.06em; }
.lpx-tl-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.lpx-tl-item p { font-size: 12px; font-weight: 700; color: var(--green-900); padding: 10px 12px; margin: 0; line-height: 1.6; }
.lpx-tl-arrow { align-self: center; color: var(--gold); font-weight: 800; font-size: 22px; }

/* ---- LP わかること ---- */
.lpx-learn { margin-top: 26px; background: var(--green-900); border-radius: 10px; padding: 22px 28px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.lpx-learn-title { color: var(--gold); font-weight: 800; font-size: 15px; margin: 0; flex: none; }
.lpx-learn ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 0; }
.lpx-learn li { color: #fff; font-size: 13.5px; font-weight: 700; position: relative; padding-left: 18px; }
.lpx-learn li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

/* ---- LP アフターフォロー ---- */
.lpx-after-card { padding-top: 0 !important; overflow: hidden; }
.lpx-after-label { display: block; margin: 0 -22px 18px; padding: 13px 22px; font-weight: 800; font-size: 15px; color: #fff; background: var(--green-800); }
.lpx-after-label.is-divorce { background: var(--gold-600); }
.lpx-after-card ul { list-style: none; margin: 0; padding: 0; }
.lpx-after-card li { position: relative; padding: 9px 0 9px 22px; font-size: 14px; color: var(--ink); border-bottom: 1px dashed var(--line); }
.lpx-after-card li:last-child { border-bottom: 0; }
.lpx-after-card li::before { content: "✓"; position: absolute; left: 2px; color: var(--gold-600); font-weight: 800; }

@media (max-width: 760px) {
	.lpx-checklist { grid-template-columns: 1fr; }
	.lpx-timeline { flex-direction: column; align-items: center; }
	.lpx-tl-arrow { transform: rotate(90deg); }
	.lpx-tl-item { max-width: 100%; width: 100%; }
}

/* ================================================================
   LP 3倍リッチ化：Ken Burns / シャイン / 装飾 / 質感
   ================================================================ */

/* ---- FV: Ken Burns 背景レイヤー ---- */
.lpx-hero--photo { background-image: none !important; }
.lpx-hero-bg { position: absolute; inset: -4%; background-size: cover; background-position: right 25%; animation: lpxKenburns 18s ease-in-out infinite alternate; will-change: transform; }
@keyframes lpxKenburns { from { transform: scale(1.02); } to { transform: scale(1.1) translateX(-1.5%); } }
.lpx-hero--photo::before, .lpx-hero--photo::after { z-index: 1; }
.lpx-hero--photo .container { z-index: 2; }

/* FV タイトルの金シャイン */
.lpx-hero--photo .lpx-title .mark { position: relative; overflow: hidden; }
.lpx-hero--photo .lpx-title .mark::after { content: ""; position: absolute; top: 0; left: -80%; width: 60%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent); animation: lpxShine 4.2s ease-in-out infinite 1.2s; }
@keyframes lpxShine { 0% { left: -80%; } 40%, 100% { left: 130%; } }

/* スクロールキュー */
.lpx-scroll-cue { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 3; color: rgba(255, 255, 255, 0.75); font-family: "Jost", sans-serif; font-size: 10px; letter-spacing: 0.3em; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.lpx-scroll-cue span { width: 1px; height: 34px; background: linear-gradient(180deg, var(--gold), transparent); position: relative; overflow: hidden; }
.lpx-scroll-cue span::after { content: ""; position: absolute; top: -10px; left: 0; width: 1px; height: 10px; background: #fff; animation: lpxCue 1.8s ease-in-out infinite; }
@keyframes lpxCue { to { top: 40px; } }

/* ---- ボタンの金シャイン掃引（LP内の主要ボタン） ---- */
body.is-lp .btn-gold, body.is-lp .btn-primary, .lpx-cta-tel { position: relative; overflow: hidden; }
body.is-lp .btn-gold::after, body.is-lp .btn-primary::after, .lpx-cta-tel::after { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent); animation: lpxShine 3.6s ease-in-out infinite; pointer-events: none; }

/* ---- ゴールドマーキー帯 ---- */
.lpx-marquee { background: var(--green-900); border-top: 1px solid rgba(200, 162, 76, 0.4); border-bottom: 1px solid rgba(200, 162, 76, 0.4); overflow: hidden; padding: 13px 0; }
.lpx-marquee-track { display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; animation: lpxMarquee 26s linear infinite; will-change: transform; }
.lpx-marquee-track span { color: #e8f0eb; font-weight: 800; font-size: 13px; letter-spacing: 0.14em; }
.lpx-marquee-track i { color: var(--gold); font-style: normal; font-size: 9px; }
@keyframes lpxMarquee { to { transform: translateX(-50%); } }

/* ---- 見出しの飾り（ENの左右にゴールド線） ---- */
body.is-lp .lp-title .en { position: relative; display: inline-block; padding: 0 46px; }
body.is-lp .lp-title .en::before, body.is-lp .lp-title .en::after { content: ""; position: absolute; top: 50%; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
body.is-lp .lp-title .en::before { left: 0; }
body.is-lp .lp-title .en::after { right: 0; transform: scaleX(-1); }

/* ---- 報告書カードに「秘」スタンプ＆紙質感 ---- */
body.is-lp .lpx-report { position: relative; background: #faf7ec; border: 1px solid #efe6cd; border-radius: 12px; padding: 34px 38px; box-shadow: 0 24px 56px -36px rgba(16, 52, 42, 0.45); }
body.is-lp .lpx-report::after { content: "秘"; position: absolute; top: 14px; left: 20px; width: 54px; height: 54px; border: 2.5px solid rgba(178, 60, 60, 0.75); color: rgba(178, 60, 60, 0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; transform: rotate(12deg); }

/* ---- お客様の声に引用符 ---- */
body.is-lp .voice-card { position: relative; }
body.is-lp .voice-card::before { content: "\201C"; position: absolute; top: 4px; left: 12px; font-family: Georgia, serif; font-size: 64px; line-height: 1; color: rgba(200, 162, 76, 0.35); z-index: 2; pointer-events: none; }

/* ---- 診断セクションをゴールド枠で強調 ---- */
body.is-lp #quick-request .container > * { position: relative; }
body.is-lp #quick-request { border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); background: linear-gradient(180deg, #fff 0%, var(--mist) 100%); }

/* ---- ミストセクションに極薄ゴールドの光 ---- */
body.is-lp .section-mist { background-image: radial-gradient(900px 300px at 90% 0%, rgba(200, 162, 76, 0.06), transparent 60%); }

/* ---- スクロール進捗バー ---- */
.lpx-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 300; background: transparent; pointer-events: none; }
.lpx-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-600), var(--gold)); transition: width 0.1s linear; }

@media (prefers-reduced-motion: reduce) {
	.lpx-hero-bg, .lpx-marquee-track, .lpx-scroll-cue span::after { animation: none; }
	body.is-lp .btn-gold::after, body.is-lp .btn-primary::after, .lpx-cta-tel::after, .lpx-hero--photo .lpx-title .mark::after { animation: none; display: none; }
}

/* ---- LP CASE 時系列（6シーン・実画像） ---- */
.lpx-case { margin-top: 36px; }
.lpx-case-head { display: flex; align-items: center; gap: 14px; font-size: 17px; font-weight: 800; color: var(--green-900); margin-bottom: 20px; }
.lpx-case-badge { background: var(--gold); color: var(--green-900); font-family: "Jost", sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.08em; padding: 6px 14px; border-radius: 4px; flex: none; }
.lpx-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lpx-case-item { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.lpx-case-item:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -20px rgba(16, 52, 42, 0.4); }
.lpx-case-item .t { display: block; background: var(--green-900); color: var(--gold); font-family: "Jost", sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.06em; padding: 7px 12px; }
.lpx-case-item img { width: 100%; aspect-ratio: 848 / 498; object-fit: cover; display: block; }
.lpx-case-item figcaption { padding: 12px 14px; font-size: 12.5px; color: var(--muted); line-height: 1.7; }
.lpx-case-item figcaption b { display: block; color: var(--green-900); font-size: 13.5px; margin-bottom: 2px; }

/* ---- LP 成功率ドーナツ ---- */
.lpx-rate { display: flex; align-items: center; gap: 48px; justify-content: center; }
.lpx-rate-donut { position: relative; width: 230px; height: 230px; border-radius: 50%; background: conic-gradient(var(--gold) 0 346.7deg, #e6ece8 346.7deg 360deg); flex: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 24px 48px -28px rgba(16, 52, 42, 0.45); }
.lpx-rate-donut::before { content: ""; position: absolute; inset: 26px; background: #fff; border-radius: 50%; }
.lpx-rate-donut span { position: relative; text-align: center; color: var(--green-900); }
.lpx-rate-donut b { font-family: "Jost", sans-serif; font-size: 52px; font-weight: 800; line-height: 1; }
.lpx-rate-donut i { font-style: normal; font-size: 20px; font-weight: 800; }
.lpx-rate-donut small { display: block; margin-top: 6px; font-size: 12px; font-weight: 700; color: var(--muted); }
.lpx-rate-body { max-width: 460px; }
.lpx-rate-body p { font-size: 15px; line-height: 2.1; color: var(--ink); margin: 0 0 10px; }
.lpx-rate-body strong { color: var(--green-800); background: linear-gradient(transparent 68%, rgba(200, 162, 76, 0.35) 68%); }
.lpx-rate-note { font-size: 11.5px !important; color: var(--muted) !important; }

/* ---- LP 口コミカード ---- */
.lpx-review-head { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 12px; }
.lpx-review-head img { height: 74px; width: auto; }
.lpx-review-head span { font-weight: 800; color: var(--green-900); font-size: 14px; padding-bottom: 4px; }
.lpx-review p { font-size: 13.5px; line-height: 1.95; color: #445; margin: 0; }

/* ---- LP 7ステップ詳細フロー ---- */
.lpx-flow { display: flex; flex-direction: column; gap: 26px; }
.lpx-flow-phase { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 26px 10px; overflow: hidden; }
.lpx-flow-phase-label { display: block; margin: 0 -26px 8px; padding: 12px 26px; background: var(--green-900); color: var(--gold); font-family: "Jost", sans-serif; font-weight: 800; letter-spacing: 0.08em; font-size: 13px; }
.lpx-flow-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.lpx-flow-item:last-child { border-bottom: 0; }
.lpx-flow-item .n { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--green-900); font-family: "Jost", sans-serif; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.lpx-flow-item b { display: block; color: var(--green-900); font-size: 15px; margin-bottom: 4px; }
.lpx-flow-item p { margin: 0; font-size: 13.5px; line-height: 1.9; color: var(--muted); }
.lpx-after-sub { font-weight: 800; color: var(--gold-600); font-size: 13.5px; margin: 0 0 10px; }

@media (max-width: 900px) {
	.lpx-case-grid { grid-template-columns: repeat(2, 1fr); }
	.lpx-rate { flex-direction: column; gap: 28px; }
}
@media (max-width: 560px) { .lpx-case-grid { grid-template-columns: 1fr; } }

/* ---- 成功率：SVGドーナツ・インフォグラフィック ---- */
.lpx-donut { position: relative; width: 240px; height: 240px; flex: none; }
.lpx-donut svg { width: 100%; height: 100%; }
.lpx-donut-bg { fill: none; stroke: #e6ece8; stroke-width: 20; }
.lpx-donut-val { fill: none; stroke: var(--gold); stroke-width: 20; stroke-linecap: round; }
.lpx-donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--green-900); }
.lpx-donut-center b { font-family: "Jost", sans-serif; font-size: 50px; font-weight: 800; line-height: 1; }
.lpx-donut-center i { font-style: normal; font-size: 20px; margin-left: 2px; }
.lpx-donut-center small { margin-top: 6px; font-size: 12px; font-weight: 700; color: var(--muted); }
/* 成功率：横バー */
.lpx-rate-bars { margin: 18px 0 8px; display: flex; flex-direction: column; gap: 12px; }
.lpx-rate-bar span { display: block; font-size: 12.5px; font-weight: 700; color: var(--green-900); margin-bottom: 5px; }
.lpx-rate-bar .bar { height: 10px; background: #e6ece8; border-radius: 999px; overflow: hidden; }
.lpx-rate-bar .bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--green-700), var(--gold)); border-radius: 999px; transition: width 1.4s cubic-bezier(0.25, 0.8, 0.3, 1); }
.lpx-rate.is-in .lpx-rate-bar .bar i { width: var(--w); }

/* ---- 料金：難易度ゲージ・インフォグラフィック ---- */
.lpx-price-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; padding-top: 18px; }
.lpx-price-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 18px 20px; text-align: center; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.lpx-price-card:hover { border-color: var(--gold); box-shadow: 0 14px 32px -22px rgba(16, 52, 42, 0.4); }
.lpx-price-card .rank { position: absolute; top: -17px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: var(--green-800); color: var(--gold); font-family: "Jost", sans-serif; font-weight: 800; border-radius: 50%; border: 2px solid var(--gold); }
.lpx-price-card .gauge { display: flex; gap: 5px; justify-content: center; margin: 6px 0 12px; }
.lpx-price-card .gauge i { width: 22px; height: 8px; border-radius: 999px; background: #e6ece8; }
.lpx-price-card .gauge i.on { background: linear-gradient(90deg, var(--gold-600), var(--gold)); }
.lpx-price-card .label { font-size: 13px; font-weight: 800; color: var(--muted); margin: 0 0 6px; letter-spacing: 0.06em; }
.lpx-price-card .price { margin: 0 0 14px; color: var(--green-900); min-height: 64px; display: flex; flex-direction: column; justify-content: center; }
.lpx-price-card .price small { display: block; font-size: 10.5px; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.lpx-price-card .price b { font-family: "Jost", sans-serif; font-size: 38px; font-weight: 800; line-height: 1.1; }
.lpx-price-card .price b i { font-style: normal; font-size: 15px; font-family: "Noto Sans JP", sans-serif; }
.lpx-price-card .price .ask { font-size: 21px; font-family: "Noto Sans JP", sans-serif; }
.lpx-price-card .cond { font-size: 12px; color: var(--muted); line-height: 1.7; margin: auto 0 0; padding-top: 12px; border-top: 1px dashed var(--line); }
.lpx-price-card.is-s { background: var(--green-900); border-color: var(--green-900); }
.lpx-price-card.is-s .label, .lpx-price-card.is-s .cond { color: #a9c2b6; }
.lpx-price-card.is-s .price, .lpx-price-card.is-s .price b { color: #fff; }
.lpx-price-card.is-s .cond { border-top-color: rgba(255, 255, 255, 0.2); }
.lpx-price-tax { font-size: 11.5px; color: var(--muted); margin-top: 14px; text-align: right; }
@media (max-width: 900px) { .lpx-price-info { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; } }
@media (max-width: 460px) { .lpx-price-info { grid-template-columns: 1fr; } }

/* 報告書サムネ（モーダル起動ボタン化） */
button.lpx-report-imgs { border: 0; background: none; padding: 0; cursor: pointer; }
button.lpx-report-imgs:hover img { transform: translateY(-4px); }

/* NUMBERSサブリード */
.p1-numbers-sub { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 0.1em; margin: 0 0 10px; opacity: 0.9; }

/* ---- LP 動画でかんたんチェック ---- */
.lpx-movie { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; }
.lpx-movie-frame { border-radius: 12px; overflow: hidden; box-shadow: 0 26px 56px -32px rgba(16, 52, 42, 0.5); }
.lpx-movie-body p { font-size: 14.5px; line-height: 2; color: var(--muted); margin: 0 0 14px; }
.lpx-movie-body p strong { color: var(--green-900); font-size: 17px; }
@media (max-width: 900px) { .lpx-movie { grid-template-columns: 1fr; } }

/* ---- FV タイプライン（地域名キャッチ） ---- */
.lpx-typeline { display: flex; align-items: center; min-height: 1.6em; margin: 0 0 16px; font-size: 14.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); }
.lpx-caret { width: 2px; height: 1.1em; margin-left: 3px; background: var(--gold); animation: lpxCaret 1s steps(2) infinite; }
@keyframes lpxCaret { 50% { opacity: 0; } }
@media (max-width: 560px) { .lpx-typeline { font-size: 12px; } }

/* ---- セクションキッカー（見出し上の一言） ---- */
.lpx-kicker { font-size: 14.5px; font-weight: 800; letter-spacing: 0.14em; color: var(--green-800); margin: 0 0 10px; }
.lpx-kicker::after { content: ""; display: block; width: 26px; height: 2px; background: var(--gold); margin: 10px auto 0; }
body.is-lp .lp-title { text-align: center; }

/* ---- 成功率：迫力アニメーション ---- */
.lpx-donut-val { stroke: url(#lpxDonutGrad); stroke-width: 24; filter: drop-shadow(0 0 10px rgba(200, 162, 76, 0.55)); }
.lpx-donut-bg { stroke-width: 24; }
.lpx-rate .lpx-donut { opacity: 0; transform: scale(0.55) rotate(-14deg); }
.lpx-rate.is-in .lpx-donut { animation: lpxDonutIn 0.9s cubic-bezier(0.2, 1.4, 0.35, 1) forwards; }
@keyframes lpxDonutIn { to { opacity: 1; transform: scale(1) rotate(0); } }
.lpx-donut-center b { transition: transform 0.3s cubic-bezier(0.2, 1.6, 0.4, 1); }
.lpx-donut.is-done .lpx-donut-center b { animation: lpxNumPop 0.5s cubic-bezier(0.2, 1.6, 0.4, 1); }
@keyframes lpxNumPop { 40% { transform: scale(1.22); } 100% { transform: scale(1); } }
.lpx-donut.is-done { animation: lpxDonutPulse 2.6s ease-out 0.3s infinite; }
@keyframes lpxDonutPulse { 0% { filter: none; } 18% { filter: drop-shadow(0 0 22px rgba(200, 162, 76, 0.5)); } 45%, 100% { filter: none; } }
/* バーは時差スライド＋グラデ先端の光 */
.lpx-rate .lpx-rate-bar:nth-child(1) .bar i { transition-delay: 0.35s; }
.lpx-rate .lpx-rate-bar:nth-child(2) .bar i { transition-delay: 0.6s; }
.lpx-rate .lpx-rate-bar:nth-child(3) .bar i { transition-delay: 0.85s; }
.lpx-rate-bar .bar { position: relative; }
.lpx-rate.is-in .lpx-rate-bar .bar::after { content: ""; position: absolute; top: 0; bottom: 0; width: 34px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent); animation: lpxBarShine 2.4s ease-in-out 1.4s infinite; }
@keyframes lpxBarShine { 0% { left: -40px; } 60%, 100% { left: 105%; } }
@media (prefers-reduced-motion: reduce) {
	.lpx-rate .lpx-donut { opacity: 1; transform: none; animation: none; }
	.lpx-donut.is-done, .lpx-rate.is-in .lpx-rate-bar .bar::after { animation: none; }
}

/* ---- 人探しLP：早期発見が鍵（統計バー） ---- */
.lpx-urgent { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 34px; box-shadow: 0 18px 40px -28px rgba(16, 52, 42, 0.35); }
.lpx-urgent-row { margin-bottom: 22px; }
.lpx-urgent-label { font-size: 14px; font-weight: 700; color: var(--green-900); margin-bottom: 8px; }
.lpx-urgent-label b { color: var(--gold-600); }
.lpx-urgent-bar { display: flex; align-items: center; gap: 14px; }
.lpx-urgent-bar i { display: block; height: 26px; width: 0; border-radius: 4px; transition: width 1.3s cubic-bezier(0.25, 0.8, 0.3, 1); }
.lpx-urgent-bar i.is-day { background: linear-gradient(90deg, var(--green-700), var(--gold)); flex-basis: 0; }
.lpx-urgent-bar i.is-late { background: #c0ccc5; }
.lpx-urgent.is-in .lpx-urgent-bar i { width: var(--w); }
.lpx-urgent-bar b { font-family: "Jost", sans-serif; font-size: 26px; font-weight: 800; color: var(--green-900); white-space: nowrap; }
.lpx-urgent-bar b small { font-size: 12px; font-family: "Noto Sans JP", sans-serif; color: var(--muted); font-weight: 700; }
.lpx-urgent-note { font-size: 13px; color: var(--muted); line-height: 1.9; margin: 4px 0 0; }
.lpx-urgent-note span { display: block; font-size: 11px; margin-top: 4px; }

/* ---- 人探しLP：実績・事例カード ---- */
.lpx-jisseki { text-align: left; }
.lpx-jisseki-tag { display: inline-block; font-size: 11.5px; font-weight: 800; color: #fff; background: var(--green-800); padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.lpx-jisseki h3 { font-size: 16px; line-height: 1.6; color: var(--green-900); margin: 0 0 4px; }
.lpx-jisseki .who { font-size: 12px; color: var(--muted); font-weight: 700; margin: 0 0 12px; }
.lpx-jisseki dl { margin: 0 0 12px; border-top: 1px dashed var(--line); }
.lpx-jisseki dl > div { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 12.5px; }
.lpx-jisseki dt { color: var(--muted); font-weight: 700; flex: none; }
.lpx-jisseki dd { margin: 0; color: var(--ink); text-align: right; }
.lpx-jisseki dd b { color: var(--gold-600); font-size: 14px; }
.lpx-jisseki .result { font-size: 13px; line-height: 1.85; color: var(--green-800); background: var(--mist); border-radius: 4px; padding: 10px 12px; margin: 0; }

/* ================================================================
   人探しLP 差別化スキン（浮気LPと骨格共通・別の顔）
   キー：明朝体 / 街並みヒーロー / クリーム紙背景 / ゴールド反転帯
   ================================================================ */
body.page-template-tmpl-lp-hitosagashi-php { --hito-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif; }

/* 見出しまわりを明朝体に（情緒的トーン） */
body.page-template-tmpl-lp-hitosagashi-php .lpx-title,
body.page-template-tmpl-lp-hitosagashi-php .lp-title h2,
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-head h2,
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-body h2,
body.page-template-tmpl-lp-hitosagashi-php .lpx-kicker,
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-title {
	font-family: var(--hito-serif);
	font-weight: 700;
	letter-spacing: 0.08em;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-title { line-height: 1.5; }

/* ヒーロー：街並み写真＋夜色ベール（探す=街のイメージ） */
.lpx-hero--city::before { background: linear-gradient(95deg, #081d15 0%, #0b2a1f 38%, rgba(11, 42, 31, 0.82) 52%, rgba(13, 41, 31, 0.08) 78%, rgba(13, 41, 31, 0) 100%); }
.lpx-hero--city .lpx-hero-bg { background-position: right center; filter: none; }
.lpx-hero--city .lpx-title .mark { background: transparent; color: var(--gold); padding: 0; border-bottom: 3px solid var(--gold); border-radius: 0; }

/* ミスト背景 → クリーム紙色（紙の手紙・記録のイメージ） */
body.page-template-tmpl-lp-hitosagashi-php .section-mist { background: #faf7ec; background-image: none; }
body.page-template-tmpl-lp-hitosagashi-php .section-mist .card,
body.page-template-tmpl-lp-hitosagashi-php .lpx-urgent { border-color: #efe6cd; }

/* マーキー：ゴールド反転（浮気LP=深緑帯との差別化） */
body.page-template-tmpl-lp-hitosagashi-php .lpx-marquee { background: linear-gradient(90deg, var(--gold-600), var(--gold)); border-color: rgba(255, 255, 255, 0.35); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-marquee-track span { color: var(--green-900); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-marquee-track i { color: rgba(16, 52, 42, 0.55); }

/* CTAバナー：ゴールド帯反転版 */
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner { background: linear-gradient(115deg, #b48d36 0%, #c8a24c 55%, #dab963 100%); border-color: var(--green-900); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner::before { color: rgba(16, 52, 42, 0.08); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-copy .en { color: var(--green-900); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-title { color: var(--green-900); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-sub { color: rgba(16, 52, 42, 0.75); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-tel { background: var(--green-900); color: var(--gold); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner .btn-white { background: #fff; color: var(--green-900); }

/* チェックリスト：カード → 縦の「想い」リスト（明朝・左の金線） */
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist { grid-template-columns: 1fr 1fr; gap: 0 44px; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li { background: none; border: 0; border-bottom: 1px solid #e8dfc8; border-radius: 0; padding: 15px 4px 15px 40px; font-family: var(--hito-serif); font-size: 15px; font-weight: 600; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li::before { width: 18px; height: 1.5px; border-radius: 0; background: var(--gold-600); left: 6px; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li::after { display: none; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li:hover { transform: none; box-shadow: none; border-bottom-color: var(--gold); }

/* プロ相談カード：写真を左に（浮気LPと左右反転） */
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-card { grid-template-columns: 0.9fr 1.4fr; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-photo { order: -1; }

/* 実績・口コミ・メソッドカードの角をさらにシャープに（紙・記録の趣） */
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card,
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki,
body.page-template-tmpl-lp-hitosagashi-php .lpx-review { border-radius: var(--radius); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge { background: var(--green-800); color: var(--gold); }

@media (max-width: 760px) {
	body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist { grid-template-columns: 1fr; }
	body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-card { grid-template-columns: 1fr; }
	body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-photo { order: 0; }
}

/* ---- 人探しLP：行方不明者統計 折れ線グラフ（アニメーション） ---- */
.lpx-chart { background: #fff; border: 1px solid #efe6cd; border-radius: var(--radius); padding: 30px 34px 22px; box-shadow: 0 18px 40px -28px rgba(16, 52, 42, 0.35); }
.lpx-chart-title { text-align: center; font-family: var(--hito-serif, inherit); font-size: 17px; font-weight: 700; color: var(--green-900); margin: 0 0 4px; }
.lpx-chart-src { text-align: right; font-size: 10.5px; color: var(--muted); margin: 0 0 10px; }
.lpx-chart-wrap { position: relative; }
.lpx-chart-wrap svg { width: 100%; height: auto; display: block; }
.lpx-chart-grid line { stroke: #e3e7e4; stroke-width: 1; }
.lpx-chart-grid text { font-size: 11px; fill: var(--muted); text-anchor: end; font-family: "Jost", sans-serif; }
.lpx-chart-x text { font-size: 11px; fill: #556; text-anchor: end; }
/* 折れ線：描画アニメ */
.lpx-chart-line { fill: none; stroke: var(--green-700); stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.lpx-chart.is-in .lpx-chart-line { animation: lpxChartDraw 2s cubic-bezier(0.3, 0, 0.3, 1) 0.2s forwards; }
@keyframes lpxChartDraw { to { stroke-dashoffset: 0; } }
/* ポイント：時差ポップ */
.lpx-chart-dots circle { fill: var(--green-800); stroke: #fff; stroke-width: 2; opacity: 0; transform-origin: center; transform-box: fill-box; }
.lpx-chart.is-in .lpx-chart-dots circle { animation: lpxDotPop 0.4s cubic-bezier(0.2, 1.6, 0.4, 1) forwards; }
.lpx-chart.is-in .lpx-chart-dots circle:nth-child(1) { animation-delay: 0.35s; fill: var(--gold-600); }
.lpx-chart.is-in .lpx-chart-dots circle:nth-child(2) { animation-delay: 0.6s; }
.lpx-chart.is-in .lpx-chart-dots circle:nth-child(3) { animation-delay: 0.85s; fill: #b23c3c; }
.lpx-chart.is-in .lpx-chart-dots circle:nth-child(4) { animation-delay: 1.05s; }
.lpx-chart.is-in .lpx-chart-dots circle:nth-child(5) { animation-delay: 1.2s; }
.lpx-chart.is-in .lpx-chart-dots circle:nth-child(6) { animation-delay: 1.35s; }
.lpx-chart.is-in .lpx-chart-dots circle:nth-child(7) { animation-delay: 1.5s; }
.lpx-chart.is-in .lpx-chart-dots circle:nth-child(8) { animation-delay: 1.65s; }
.lpx-chart.is-in .lpx-chart-dots circle:nth-child(9) { animation-delay: 1.8s; }
@keyframes lpxDotPop { from { opacity: 0; transform: scale(0); } 60% { transform: scale(1.5); } to { opacity: 1; transform: scale(1); } }
/* 数値ラベル */
.lpx-chart-vals text { font-family: "Jost", sans-serif; font-weight: 800; opacity: 0; }
.lpx-chart-vals .big { font-size: 20px; fill: var(--green-900); }
.lpx-chart-vals .warn { font-size: 15px; fill: #b23c3c; }
.lpx-chart.is-in .lpx-chart-vals text { animation: lpxValIn 0.5s ease forwards; }
.lpx-chart.is-in .lpx-chart-vals .big { animation-delay: 0.6s; }
.lpx-chart.is-in .lpx-chart-vals .warn { animation-delay: 1.1s; }
@keyframes lpxValIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
/* 激減ハイライト枠：描き込み */
.lpx-chart-focus { fill: rgba(178, 60, 60, 0.04); stroke: #b23c3c; stroke-width: 2.5; stroke-dasharray: 1080; stroke-dashoffset: 1080; }
.lpx-chart.is-in .lpx-chart-focus { animation: lpxFocusDraw 1.2s ease 1.6s forwards; }
@keyframes lpxFocusDraw { to { stroke-dashoffset: 0; } }
/* コールアウト */
.lpx-chart-callout { position: absolute; right: 6%; top: 38%; background: #b23c3c; color: #fff; font-size: clamp(12px, 1.6vw, 16px); font-weight: 700; line-height: 1.7; padding: 14px 20px; border-radius: 4px; box-shadow: 0 14px 30px -14px rgba(178, 60, 60, 0.6); opacity: 0; transform: translateY(14px); }
.lpx-chart-callout b { display: block; font-size: clamp(14px, 1.9vw, 19px); }
.lpx-chart.is-in .lpx-chart-callout { animation: lpxCalloutIn 0.6s cubic-bezier(0.2, 1.4, 0.4, 1) 2.2s forwards; }
@keyframes lpxCalloutIn { to { opacity: 1; transform: none; } }
.lpx-chart .lpx-urgent-note { margin-top: 14px; }
@media (prefers-reduced-motion: reduce) {
	.lpx-chart-line, .lpx-chart-focus { stroke-dashoffset: 0 !important; animation: none !important; }
	.lpx-chart-dots circle, .lpx-chart-vals text, .lpx-chart-callout { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* ---- 人探しLP：リスク訴求（時差フェード） ---- */
.lpx-risk { margin-top: 34px; text-align: center; }
.lpx-risk .type-line { display: inline-block; opacity: 0; transform: translateY(10px); }
.lpx-risk-sum { margin: 0 0 6px; font-size: clamp(14px, 2vw, 18px); font-weight: 700; color: var(--green-900); font-family: var(--hito-serif, inherit); }
.lpx-risk-sum b, .lpx-risk-title b, .lpx-risk-list b { color: #b23c3c; }
.lpx-risk-arrow { width: 0; height: 0; border-left: 26px solid transparent; border-right: 26px solid transparent; border-top: 22px solid var(--gold); margin: 18px auto; opacity: 0; transform: translateY(-10px); }
.lpx-risk-title { font-size: clamp(17px, 2.6vw, 24px); font-weight: 800; color: var(--green-900); font-family: var(--hito-serif, inherit); line-height: 1.9; margin: 0 0 22px; }
.lpx-risk-list { list-style: none; margin: 0; padding: 22px 28px; background: #faf7ec; border: 1px solid #efe6cd; border-radius: var(--radius); text-align: left; display: inline-block; }
.lpx-risk-list li { position: relative; padding: 8px 0 8px 36px; font-size: clamp(13px, 1.8vw, 15.5px); font-weight: 700; color: var(--ink); }
.lpx-risk-list li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 4px; background: var(--gold); }
.lpx-risk-list li::after { content: ""; position: absolute; left: 6px; top: calc(50% - 2px); width: 10px; height: 5px; border-left: 2.5px solid var(--green-900); border-bottom: 2.5px solid var(--green-900); transform: translateY(-50%) rotate(-45deg); }
/* 起動：ゆるやかな時差フェードのみ */
.lpx-risk.is-in .type-line { animation: lpxValIn 0.6s ease forwards; }
.lpx-risk.is-in .t1 { animation-delay: 0.05s; }
.lpx-risk.is-in .t2 { animation-delay: 0.2s; }
.lpx-risk.is-in .t3 { animation-delay: 0.7s; }
.lpx-risk.is-in .t4 { animation-delay: 0.85s; }
.lpx-risk.is-in .t5 { animation-delay: 1.2s; }
.lpx-risk.is-in .t6 { animation-delay: 1.35s; }
.lpx-risk.is-in .t7 { animation-delay: 1.5s; }
.lpx-risk.is-in .lpx-risk-arrow { animation: lpxArrowIn 0.5s cubic-bezier(0.2, 1.5, 0.4, 1) 0.45s forwards; }
@keyframes lpxArrowIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	.lpx-risk .type-line, .lpx-risk-arrow { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* ---- 人探しLP：アイコン装飾（グラフィカル化） ---- */
.lpx-ic { width: 22px; height: 22px; flex: none; }
/* リスク項目：金丸のピクト */
.lpx-risk-list li.has-ic { padding-left: 50px; }
.lpx-risk-list li.has-ic::before, .lpx-risk-list li.has-ic::after { display: none; }
.lpx-risk-ic { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--green-900); border-radius: 50%; }
.lpx-risk-ic .lpx-ic { width: 20px; height: 20px; }
/* 揃えたい情報：アイコンを番号の右に */
.lpx-info-grid li { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto auto; column-gap: 10px; }
.lpx-info-grid li i { grid-column: 1 / -1; }
.lpx-info-grid li .lpx-ic { grid-row: 2 / span 2; align-self: center; width: 26px; height: 26px; color: var(--gold-600); }
.lpx-info-grid li b { grid-column: 2; }
.lpx-info-grid li small { grid-column: 2; }
/* 引用アイコン */
.lpx-limited-quotes blockquote { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
.q-ic { display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; background: var(--mist); border: 1px solid var(--line); border-radius: 50%; color: var(--green-800); grid-row: span 2; }
.lpx-limited-quotes blockquote small { grid-column: 2; }
/* 影響要因アイコン */
.c-ic { display: inline-flex; vertical-align: -5px; margin-right: 7px; color: var(--gold-600); }
.c-ic .lpx-ic { width: 19px; height: 19px; }
/* 応用領域アイコン */
.a-ic { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; background: var(--mist); border-radius: 50%; color: var(--green-800); margin-bottom: 10px; }
.a-ic .lpx-ic { width: 22px; height: 22px; }
/* 理由カードアイコン */
.lpx-reason-card { position: relative; padding-top: 26px !important; }
.lpx-reason-card .r-ic { display: flex; width: 52px; height: 52px; align-items: center; justify-content: center; background: var(--green-900); color: var(--gold); border-radius: 50%; margin: 0 auto 14px; }
.lpx-reason-card .r-ic .lpx-ic { width: 26px; height: 26px; }
.lpx-reason-card { text-align: center; }
.lpx-reason-card .lpx-num { position: absolute; top: 14px; right: 16px; font-size: 13px; opacity: 0.55; margin: 0; }

/* ---- LP：FAQアコーディオン ---- */
body.is-lp .faq-item.is-acc { cursor: default; }
body.is-lp .faq-item.is-acc .faq-q { cursor: pointer; position: relative; padding-right: 44px; user-select: none; }
body.is-lp .faq-item.is-acc .faq-q::after { content: ""; position: absolute; right: 14px; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--gold-600); border-bottom: 2px solid var(--gold-600); transform: translateY(-70%) rotate(45deg); transition: transform 0.25s ease; }
body.is-lp .faq-item.is-acc.open .faq-q::after { transform: translateY(-30%) rotate(-135deg); }
body.is-lp .faq-item.is-acc .faq-a { max-height: 0; overflow: hidden; opacity: 0; margin: 0; padding-top: 0; padding-bottom: 0; transition: max-height 0.35s ease, opacity 0.3s ease; }
body.is-lp .faq-item.is-acc.open .faq-a { max-height: 400px; opacity: 1; }

/* ---- LP：フローアイコン（番号は小バッジで併記） ---- */
.lpx-flow-item .n.has-ic { position: relative; width: 44px; height: 44px; border-radius: 10px; background: var(--green-900); color: var(--gold); }
.lpx-flow-item .n.has-ic .lpx-ic { width: 22px; height: 22px; }
.lpx-flow-item .n.has-ic::after { content: attr(data-n); position: absolute; top: -7px; right: -7px; width: 19px; height: 19px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--green-900); font-family: "Jost", sans-serif; font-weight: 800; font-size: 11px; border-radius: 50%; }

/* ---- 人探しLP：メソッド8を「捜査の道筋」タイムラインに（カード羅列と差別化） ---- */
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-grid { grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; counter-reset: none; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card { background: none; border: 0; border-radius: 0; padding: 46px 22px 26px; overflow: visible; position: relative; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:hover { transform: none; box-shadow: none; }
/* 上辺を貫く金のライン＋ノード */
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card::before { content: ""; position: absolute; top: 18px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold-600), var(--gold)); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(-n+4)::after { content: ""; position: absolute; top: 12px; left: calc(50% - 7px); width: 14px; height: 14px; background: #fff; border: 3px solid var(--gold-600); border-radius: 50%; }
/* 2段目は下辺ライン＋下ノード（蛇行の視覚） */
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(n+5) { padding: 26px 22px 46px; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(n+5)::before { top: auto; bottom: 18px; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(n+5) i { top: 6px; bottom: auto; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(n+5) .after-node { display: none; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(n+5)::after { content: ""; position: absolute; bottom: 12px; left: calc(50% - 7px); width: 14px; height: 14px; background: #fff; border: 3px solid var(--gold-600); border-radius: 50%; top: auto; }
/* バッジは小さめの金菱形／番号透かしは薄く */
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge { width: 32px; height: 32px; border-radius: 4px; transform: rotate(45deg); background: var(--green-900); color: var(--gold); margin-bottom: 16px; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge { display: flex; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge::before { content: ""; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card h3 { font-family: var(--hito-serif, inherit); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card i { opacity: 0.5; font-size: 56px; }
@media (max-width: 900px) {
	body.page-template-tmpl-lp-hitosagashi-php .lpx-method-grid { grid-template-columns: repeat(2, 1fr); }
	body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(-n+4)::after, body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(n+5)::after { display: none; }
	body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card { padding: 22px 16px; }
	body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card::before { display: none; }
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge { transform: rotate(45deg); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge > * { transform: rotate(-45deg); }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge em { font-style: normal; transform: rotate(-45deg); font-family: "Jost", sans-serif; }

/* ---- 人探しLP：3本柱（再会/確認/解決）【復旧】 ---- */
.lpx-pillars { display: flex; justify-content: center; gap: 14px; margin-top: 20px; }
.lpx-pillars span { display: flex; flex-direction: column; align-items: center; gap: 2px; border-top: 2px solid var(--gold); padding: 10px 22px 4px; }
.lpx-pillars i { font-style: normal; font-family: "Jost", sans-serif; font-weight: 800; font-size: 11px; color: var(--gold-600); }
.lpx-pillars b { font-family: var(--hito-serif, inherit); font-size: 19px; color: var(--green-900); }
.lpx-pillars small { font-size: 10px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }

/* ---- 人探しLP：理由サマリー（SUMMARYカード）【復旧】 ---- */
.lpx-reason-summary { max-width: 640px; margin: 26px auto 0; text-align: left; background: #faf7ec; border: 1px solid #efe6cd; border-radius: var(--radius); padding: 24px 30px; font-size: 13.5px; line-height: 2; color: var(--muted); }
.lpx-reason-summary::before { content: "SUMMARY"; display: block; font-family: "Jost", sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.24em; color: var(--gold-600); margin-bottom: 10px; }
.lpx-reason-summary b:first-of-type { display: block; font-family: var(--hito-serif, inherit); font-size: 17px; color: var(--green-900); margin-bottom: 8px; font-weight: 700; }
.lpx-reason-summary b { color: var(--green-800); }

/* ---- 人探しLP：費用5要素＋削減【復旧】 ---- */
.lpx-cost-factors { display: grid; grid-template-columns: 1fr 0.9fr; gap: 22px; margin-top: 26px; align-items: stretch; }
.lpx-cost-title { font-size: 15px; font-weight: 800; color: var(--green-900); margin: 0 0 12px; font-family: var(--hito-serif, inherit); }
.lpx-cost-title b { color: var(--gold-600); }
.lpx-cost-list { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; }
.lpx-cost-list ol { list-style: none; margin: 0; padding: 0; counter-reset: cf; }
.lpx-cost-list li { counter-increment: cf; position: relative; padding: 10px 0 10px 44px; border-bottom: 1px dashed var(--line); font-size: 14px; font-weight: 700; color: var(--ink); }
.lpx-cost-list li:last-child { border-bottom: 0; }
.lpx-cost-list li::before { content: counter(cf, decimal-leading-zero); position: absolute; left: 2px; top: 50%; transform: translateY(-50%); font-family: "Jost", sans-serif; font-weight: 800; font-size: 15px; color: var(--gold); }
.lpx-cost-adv { background: var(--green-900); border-radius: var(--radius); padding: 26px 28px; color: #fff; display: flex; flex-direction: column; }
.lpx-cost-adv .en { color: var(--gold); font-weight: 800; letter-spacing: 0.22em; font-size: 11px; }
.lpx-cost-adv p { font-size: 15px; font-weight: 700; margin: 10px 0 6px; }
.lpx-cost-adv b { font-family: "Jost", sans-serif; font-size: 58px; font-weight: 800; line-height: 1.1; color: var(--gold); }
.lpx-cost-adv b i { font-style: normal; font-size: 30px; }
.lpx-cost-adv b small { font-family: "Noto Sans JP", sans-serif; font-size: 18px; color: #fff; margin-left: 6px; }
.lpx-cost-adv .note { margin-top: auto; padding-top: 12px; font-size: 11px; color: rgba(255, 255, 255, 0.65); line-height: 1.8; }

/* ---- 人探しLP：揃えておきたい情報（9グリッド＋NOTE）【復旧】 ---- */
.lpx-prepare { display: grid; grid-template-columns: 1.6fr 0.8fr; gap: 20px; align-items: stretch; }
.lpx-info-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lpx-info-grid li { background: #faf7ec; border: 1px solid #efe6cd; border-radius: var(--radius); padding: 16px 16px 14px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto auto; column-gap: 10px; }
.lpx-info-grid li i { grid-column: 1 / -1; display: block; font-style: normal; font-family: "Jost", sans-serif; font-weight: 800; font-size: 11px; color: var(--gold-600); margin-bottom: 4px; }
.lpx-info-grid li .lpx-ic { grid-row: 2 / span 2; align-self: center; width: 26px; height: 26px; color: var(--gold-600); }
.lpx-info-grid li b { grid-column: 2; display: block; font-family: var(--hito-serif, inherit); font-size: 15px; color: var(--green-900); margin-bottom: 3px; }
.lpx-info-grid li small { grid-column: 2; font-size: 11px; color: var(--muted); }
.lpx-prepare-note { background: var(--green-900); border-radius: var(--radius); padding: 26px 26px; color: #fff; display: flex; flex-direction: column; }
.lpx-prepare-note .en { color: var(--gold); font-weight: 800; letter-spacing: 0.22em; font-size: 11px; margin-bottom: 12px; }
.lpx-prepare-note .big { font-family: var(--hito-serif, inherit); font-size: 19px; font-weight: 700; line-height: 1.8; margin: 0 0 12px; }
.lpx-prepare-note p:not(.big) { font-size: 13px; line-height: 2; color: rgba(255, 255, 255, 0.8); margin: 0; }

/* ---- 人探しLP：情報が少なくても（引用3＋影響要因）【復旧】 ---- */
.lpx-limited { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.lpx-limited-quotes blockquote { margin: 0 0 12px; background: #fff; border-left: 3px solid var(--gold); padding: 16px 20px; font-family: var(--hito-serif, inherit); font-size: 16px; font-weight: 700; color: var(--green-900); display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
.q-ic { display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; background: var(--mist); border: 1px solid var(--line); border-radius: 50%; color: var(--green-800); grid-row: span 2; }
.lpx-limited-quotes blockquote small { grid-column: 2; display: block; font-family: "Jost", sans-serif; font-weight: 600; font-size: 10px; letter-spacing: 0.12em; color: var(--muted); margin-top: 4px; text-transform: uppercase; }
.lpx-limited-lead { font-family: var(--hito-serif, inherit); font-size: 17px; line-height: 2; color: var(--green-900); margin: 18px 0 0; }
.lpx-limited-lead b { color: var(--gold-600); }
.lpx-limited-cons { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; }
.lpx-limited-cons .en { color: var(--gold-600); font-weight: 800; letter-spacing: 0.22em; font-size: 11px; }
.lpx-limited-cons .head { font-family: var(--hito-serif, inherit); font-size: 16px; font-weight: 700; color: var(--green-900); margin: 8px 0 14px; }
.lpx-limited-cons ol { list-style: none; margin: 0; padding: 0; counter-reset: lc; }
.lpx-limited-cons li { counter-increment: lc; position: relative; padding: 12px 0 12px 46px; border-bottom: 1px dashed var(--line); }
.lpx-limited-cons li:last-child { border-bottom: 0; }
.lpx-limited-cons li::before { content: counter(lc, decimal-leading-zero); position: absolute; left: 0; top: 12px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--green-800); color: var(--gold); font-family: "Jost", sans-serif; font-weight: 800; font-size: 13px; border-radius: 4px; }
.lpx-limited-cons b { display: block; font-size: 14.5px; color: var(--green-900); }
.lpx-limited-cons small { font-size: 12px; color: var(--muted); line-height: 1.7; }
.c-ic { display: inline-flex; vertical-align: -5px; margin-right: 7px; color: var(--gold-600); }
.c-ic .lpx-ic { width: 19px; height: 19px; }

/* ---- 人探しLP：OSINT×AI 2枚看板＋応用4領域【復旧】 ---- */
.lpx-osint { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.lpx-osint-card { background: #faf7ec; border: 1px solid #efe6cd; border-radius: var(--radius); padding: 28px 30px; }
.lpx-osint-card.is-dark { background: var(--green-900); border-color: var(--green-900); }
.lpx-osint-card b.en { display: block; font-size: 34px; font-weight: 800; letter-spacing: 0.14em; color: var(--green-900); line-height: 1; }
.lpx-osint-card.is-dark b.en { color: var(--gold); }
.lpx-osint-card small { display: block; font-family: "Jost", sans-serif; font-size: 10.5px; letter-spacing: 0.16em; color: var(--muted); margin: 6px 0 14px; text-transform: uppercase; }
.lpx-osint-card.is-dark small { color: rgba(255, 255, 255, 0.6); }
.lpx-osint-card p { font-size: 13.5px; line-height: 2; color: var(--ink); margin: 0; }
.lpx-osint-card.is-dark p { color: rgba(255, 255, 255, 0.85); }
.lpx-apply-title { text-align: center; font-weight: 800; color: var(--green-900); margin: 0 0 14px; font-size: 15px; }
.lpx-apply-title .en { display: block; color: var(--gold-600); font-size: 11px; letter-spacing: 0.22em; margin-bottom: 4px; }
.lpx-apply { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 8px; }
.lpx-apply div { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 70%); border: 1px solid rgba(200, 162, 76, 0.35); border-radius: 10px; padding: 24px 20px 30px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.lpx-apply div::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 160px at 80% -20%, rgba(200, 162, 76, 0.22), transparent 65%); pointer-events: none; }
.lpx-apply div::after { content: "0" attr(data-n); position: absolute; right: 8px; bottom: -16px; font-family: "Jost", sans-serif; font-weight: 800; font-size: 78px; line-height: 1; color: rgba(255, 255, 255, 0.07); pointer-events: none; }
.lpx-apply div:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 24px 48px -24px rgba(16, 52, 42, 0.65), 0 0 0 1px rgba(200, 162, 76, 0.3); }
.lpx-apply i { display: block; font-style: normal; font-family: "Jost", sans-serif; font-weight: 800; font-size: 10.5px; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 8px; }
.lpx-apply b { display: block; font-size: 15.5px; color: #fff; margin-bottom: 6px; font-family: var(--hito-serif, inherit); position: relative; z-index: 1; }
.lpx-apply small { font-size: 12px; color: rgba(255, 255, 255, 0.68); line-height: 1.8; position: relative; z-index: 1; }
.a-ic { display: flex; width: 52px; height: 52px; align-items: center; justify-content: center; background: linear-gradient(135deg, #f0d48a, var(--gold) 55%, var(--gold-600)); border-radius: 50%; color: var(--green-900); margin-bottom: 14px; box-shadow: 0 8px 20px -8px rgba(200, 162, 76, 0.65); transition: transform 0.3s ease; }
.a-ic .lpx-ic { width: 26px; height: 26px; }
.lpx-apply div:hover .a-ic { transform: scale(1.12) rotate(-6deg); }
/* カード間の金シェブロン（流れの表現） */
.lpx-apply div:not(:last-child)::before { }
.lpx-apply { position: relative; }
.lpx-apply .flow-arrow { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 26px; height: 26px; z-index: 2; display: flex; align-items: center; justify-content: center; background: var(--gold); border-radius: 50%; color: var(--green-900); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); }
.lpx-apply .flow-arrow svg { width: 13px; height: 13px; }
@media (max-width: 900px) {
	.lpx-prepare, .lpx-limited, .lpx-osint, .lpx-cost-factors { grid-template-columns: 1fr; }
	.lpx-info-grid { grid-template-columns: repeat(2, 1fr); }
	.lpx-apply { grid-template-columns: repeat(2, 1fr); }
	.lpx-pillars { flex-wrap: wrap; }
}

/* 人探しヒーロー：金下線マークの行ズレ防止 */
.lpx-hero--city .lpx-title .mark { display: inline-block; line-height: 1.35; padding-bottom: 4px; vertical-align: baseline; }

/* FVパネル撤去に伴い1カラム化 */
.lpx-hero-grid { grid-template-columns: 1fr; }

/* 人探しFVキャッチ：金グラデの明朝（下線マーク廃止） */
.lpx-title--hito { font-size: clamp(34px, 4.6vw, 58px); line-height: 1.5; letter-spacing: 0.06em; }
.lpx-title--hito em { font-style: normal; font-weight: 900; background: linear-gradient(100deg, #f0d48a 0%, var(--gold) 45%, #b48d36 100%); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 2px 12px rgba(200, 162, 76, 0.35)); }
@media (max-width: 900px) { .lpx-apply .flow-arrow { display: none; } }

/* マーキー逆方向流し */
.lpx-marquee.is-rev .lpx-marquee-track { animation-direction: reverse; }

/* 報告書カードの「秘」スタンプ：モバイルは非表示（レイアウト優先） */
@media (max-width: 900px) {
	body.is-lp .lpx-report::after { display: none; }
}

/* 送信完了：フォーム非表示＋サンクスパネル */
.form-thanks { text-align: center; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--green-700); border-radius: var(--radius); padding: 36px 28px; margin-bottom: 8px; }
.form-thanks .form-sent { background: none; border: 0; padding: 0; margin: 0 0 8px; font-size: 17px; }
.form-thanks-note { font-size: 13px; color: var(--muted); margin: 0 0 18px; }
.form-thanks .lpx-cta-tel { display: inline-flex; }

/* フッター（SP）：会社情報を全幅にして住所の変な折返しを解消 */
@media (max-width: 700px) {
	.sec-footer .brand { grid-column: 1 / -1; }
	.sec-footer .foot-line { display: grid; grid-template-columns: 72px 1fr; gap: 4px 10px; }
	.sec-footer .foot-line b { width: auto; }
}

/* ヘッダー（SP）：ボタン類を隠してロゴの潰れを解消（相談導線はフッター固定CTAが担う） */
@media (max-width: 760px) {
	.sec-header .sec-header-cta .btn-primary,
	.sec-header .sec-header-cta .btn-line,
	.sec-header .sec-header-cta .tel { display: none; }
}

/* LPヘッダー（SP）：メールで相談ボタンを非表示（本サイトと同挙動を明示） */
@media (max-width: 760px) {
	body.is-lp .sec-header .sec-header-cta .btn-primary,
	body.is-lp .sec-header .sec-header-cta .btn-line,
	body.is-lp .sec-header .sec-header-cta .tel { display: none; }
	/* FVタイプラインはSPでは折返し許可（「東｜」の孤立を防ぐ） */
	.lpx-typeline { white-space: normal; min-height: 2.4em; align-items: flex-start; }
}

/* フッター（極小SP）：ラベルを上・値を下の縦積みにして住所の桁割れを完全防止 */
@media (max-width: 480px) {
	.sec-footer .foot-line { grid-template-columns: 1fr; gap: 2px; }
	.sec-footer .foot-line b { width: auto; }
	.sec-footer .ftop { grid-template-columns: 1fr 1fr; }
	.sec-footer .brand { grid-column: 1 / -1; }
}

/* SP固定CTAバー：スリム化（コンテンツへの被りを最小化） */
@media (max-width: 560px) {
	.floating { gap: 5px; padding: 6px 6px calc(6px + env(safe-area-inset-bottom, 0px)); }
	.floating .btn { padding: 9px 6px; font-size: 11.5px; gap: 6px; }
	.floating .btn svg { width: 15px; height: 15px; }
	body { padding-bottom: 96px; }
}

/* 動画モーダル：読み込み中表示 */
.video-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #cfe0d8; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; z-index: 1; }

/* MIL 触れる動画：インライン埋め込み枠（旧サイト方式） */
.mil-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius); overflow: hidden; }
.mil-embed .mil-iframe-L4NT4c { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* 触れる動画モーダル：常駐＆非表示でも読み込みが進む */
.mil-modal .video-modal-box { width: min(1000px, 96vw); }
.mil-modal .mil-embed { border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6); }

/* ===== LP FV（SP）：整理 ===== */
@media (max-width: 760px) {
	/* チップ群・FVボタンは出さない（導線は固定CTAバーが担う） */
	body.is-lp .lpx-points { display: none; }
	body.is-lp .lpx-hero-actions { display: none; }
	/* タイプライン：小さく上品に（1〜2行で自然に折返し） */
	body.is-lp .lpx-typeline { white-space: normal; font-size: 10.5px; letter-spacing: 0.08em; line-height: 1.9; min-height: 0; margin: 0 0 12px; opacity: 0.95; }
	body.is-lp .lpx-caret { height: 0.95em; }
	/* ヒーロー：画像全面＋薄いフラットな灰の膜＋文字（グラデなし） */
	body.is-lp .lpx-hero--photo { padding: 48px 0 120px; }
	body.is-lp .lpx-hero--photo .lpx-hero-bg { inset: -4%; height: auto; background-position: 70% center; filter: none; }
	body.is-lp .lpx-hero--photo::before { display: block; background: rgba(28, 32, 30, 0.55); }
	body.is-lp .lpx-hero--photo::after { display: none; }
	/* 人探し：人物（右寄り）を画面内に */
	body.page-template-tmpl-lp-hitosagashi-php .lpx-hero--city .lpx-hero-bg { background-position: 66% center; }
	body.is-lp .lpx-title { font-size: clamp(30px, 8.4vw, 40px); }
	body.is-lp .lpx-lead { font-size: 14px; }
}

/* タイプライン：PCは1行（改行マーカーを無効化）、SPは指定位置で確実に改行 */
@media (min-width: 761px) { .lpx-typeline br { display: none; } }
@media (max-width: 760px) {
	body.is-lp .lpx-typeline { display: block; white-space: normal; }
	body.is-lp .lpx-typeline .lpx-caret { display: inline-block; vertical-align: -2px; }
}


/* SP横はみ出し対策: 記事本文は親幅厳守、旧サイト由来の固定幅画像も収める */
.two-col > *{min-width:0;}
.prose img{max-width:100% !important;height:auto;}
.prose iframe,.prose video,.prose embed,.prose object{max-width:100% !important;}
/* WPのoEmbed計測用 隠しiframe(幅500固定・absolute)がページ幅を広げるのを防ぐ */
.prose{position:relative;overflow-x:hidden;overflow-x:clip;}


/* ===== TOP FV：旧サイト同等の中央ボックス動画（全画面固定をやめて圧を抑える） ===== */
.sec-hero { min-height: 0; display: block; padding: 42px 0 100px; } /* 下は直後カードの-54px重なり分を確保 */
.sec-hero .container { padding: 0; } /* sr-only の h1 のみ保持 */
.hero-video {
	position: relative;
	inset: auto;
	display: block;
	width: 66%; /* 旧サイト .movie_area と同じ */
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	margin: 0 auto;
	border-radius: 15px; /* 旧サイトと同じ角丸 */
	z-index: 1;
	box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.5);
}
.hero-video-ph { display: none; }
.hero-veil { display: none; }
.hero-scroll { display: none; }
@media (max-width: 768px) {
	.sec-hero { padding: 20px 0 58px; } /* SPはカードの-32px重なり分を確保 */
	.hero-video { width: 81%; border-radius: 12px; } /* 旧サイトSPと同じ */
}


/* ===== iOS Safariの横パン防止：ルートで横方向をクリップ =====
   overflow-x:hidden はスクロールコンテナ化して position:sticky を壊すため clip を使う */
html, body { overflow-x: clip; }


/* ===== TOP：カード型メディアの全幅オートフロー・カルーセル（PICK UP／調査実例／コラム） ===== */
.tcar-wrap {
	position: relative;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	overflow: hidden;
	padding: 6px 0 14px;
}
.tcar {
	display: flex !important;
	grid-template-columns: none !important;
	width: max-content;
	gap: 16px;
	will-change: transform;
}
.tcar > * {
	flex: 0 0 260px; /* 小さめカード */
	min-width: 0;
}
/* 写真サムネ用アバター（声カードのイラスト枠を写真フルブリードに） */
.voice-card-avatar.is-photo { padding: 0; }
.voice-card-avatar.is-photo img {
	width: 100%;
	max-width: 100%;
	height: 150px;
	object-fit: cover;
	object-position: center;
}
.tcar .voice-card-title { font-size: 14px; line-height: 1.6; }
.tcar .voice-card-text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: none;
	max-height: calc(1.85em * 3);
	font-size: 12.5px;
}
.tcar .voice-card-main { padding: 14px 16px 4px; }
.tcar .voice-card-more { padding: 11px 16px; font-size: 12.5px; }
@media (max-width: 560px) {
	.tcar { gap: 10px; }
	/* 中央1枚＋左右見切れで約3枚見え */
	.tcar > * { flex: 0 0 200px; }
	.voice-card-avatar.is-photo img { height: 120px; }
	/* SPはタイトルまで（抜粋・詳しくみるは非表示で縦を圧縮） */
	.tcar .voice-card-text { display: none; }
	.tcar .voice-card-more { display: none; }
	.tcar .voice-card-main { padding: 12px 14px 14px; }
	.tcar .voice-card-tags { margin-bottom: 8px; }
}
/* アンケートカードはカルーセル内で大きめ（実物スキャンの視認性優先） */
.survey-grid.tcar > * { flex: 0 0 460px; }
/* 声カード（イラストアバター）はカルーセル内で少しコンパクトに */
.tcar .voice-card-avatar:not(.is-photo) img { height: 140px; }
@media (max-width: 560px) {
	.survey-grid.tcar > * { flex: 0 0 250px; }
	/* SPはアンケートも要点＋実物スキャンまで（本文・回答項目は非表示） */
	.tcar .survey-body,
	.tcar .survey-meta { display: none; }
	.tcar .voice-card-avatar:not(.is-photo) img { height: 110px; }
}
@media (prefers-reduced-motion: reduce) {
	.tcar { animation: none !important; }
}


/* ===== かんたん診断：地域・電話番号の入力欄 ===== */
.flow-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.flow-field { display: flex; flex-direction: column; gap: 5px; }
.flow-field b { font-size: 12px; font-weight: 700; color: var(--green-800); }
.flow-field input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--line-strong);
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
	color: var(--green-900);
}
.flow-field input:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(31, 78, 61, 0.12); }
.flow-fields-note { grid-column: 1 / -1; margin: 0; font-size: 11px; color: var(--muted); }
@media (max-width: 560px) {
	.flow-fields { grid-template-columns: 1fr; }
}


/* ===== コラム記事タイトル：PCのみセンター寄せ ===== */
@media (min-width: 761px) {
	.article-hero.is-column .container { text-align: center; }
	.article-hero.is-column .article-title { margin-left: auto; margin-right: auto; }
	.article-hero.is-column .article-eyebrow { justify-content: center; }
	.article-hero.is-column .article-meta { margin-left: auto; margin-right: auto; justify-content: center; }
}

/* ===== TOP：Aboutブロックのボタンもセンターに ===== */
.p1-about-actions { justify-content: center; }


/* ===== 代表あいさつ ===== */
.greeting { max-width: 860px; }
.greeting p { font-size: 15px; line-height: 2.05; color: var(--ink); margin: 0 0 1.4em; }
.greeting-role {
	font-weight: 700;
	color: var(--green-900);
	font-size: 16px;
	padding-bottom: 14px;
	margin-bottom: 26px !important;
	border-bottom: 1px solid var(--line);
}
.greeting-sign {
	margin-top: 34px !important;
	font-weight: 700;
	color: var(--green-900);
	text-align: right;
}


/* ===== TOP：個人/法人カードのホバーをヒーロー帯と差別化 =====
   帯(green-900)と同色で溶け込んでいたため、明るい緑＋金の縁取りに */
.audience .card-aud:hover {
	background: var(--green-700);
	border-color: var(--gold);
	box-shadow: 0 18px 50px rgba(16, 52, 42, 0.28), 0 0 0 1.5px var(--gold);
}
/* ヒーロー帯：緑をやめ、上のマーキー帯と同じクリームで上品につなげる */
.sec-hero { background: #faf7ec; }


/* ===== かんたん診断：料金目安を難易度別リストで表示 ===== */
.flow-fee-list { list-style: none; margin: 2px 0 0; padding: 0; display: grid; gap: 5px; }
.flow-fee-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	line-height: 1.5;
}
.flow-fee-list li em {
	font-style: normal;
	font-family: "Jost", sans-serif;
	font-weight: 800;
	font-size: 11px;
	color: var(--green-900);
	background: var(--gold);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}


/* ===== かんたん診断：見せ方の簡素化（全問回答まで結果を畳む） ===== */
.flow-teaser {
	font-size: 12.5px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.08);
	border: 1px dashed rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	padding: 14px;
	margin: 12px 0 0;
}
.flow-result .flow-line,
.flow-result .flow-note { display: none; }
.flow-result.is-complete .flow-line { display: flex; }
.flow-result.is-complete .flow-note { display: block; }
/* 全問回答までは相談ボタンも控えめに（機能は生かしたまま） */
.flow-result .flow-cta-wrap { opacity: 0.6; }
.flow-result.is-complete .flow-cta-wrap { opacity: 1; }
/* ステップチップの小型化 */
.flow-map .flow-node { padding: 8px 10px; }
.flow-map .flow-node b { font-size: 10.5px; }
.flow-map .flow-node span { font-size: 11.5px; }


/* ===== かんたん診断：予算ステップ内の料金目安＋あると◎ヒント ===== */
.flow-hint {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 22px;
	background: #fff;
	border: 1px solid var(--line-strong);
	border-radius: 10px;
	padding: 14px 16px;
	margin: 0 0 16px;
}
.flow-hint b {
	display: block;
	font-size: 12px;
	color: var(--green-800);
	margin-bottom: 7px;
}
.flow-hint .flow-fee-list li { color: var(--ink); }
.flow-need-list {
	list-style: disc;
	margin: 0;
	padding-left: 18px;
	font-size: 12px;
	line-height: 1.9;
}
.flow-result .flow-need-list { list-style: none; padding-left: 0; }
.flow-result .flow-need-list li { position: relative; padding-left: 14px; }
.flow-result .flow-need-list li::before { content: "・"; position: absolute; left: 0; }
@media (max-width: 700px) {
	.flow-hint { grid-template-columns: 1fr; }
}


/* ===== かんたん診断：選択肢ボタンの枠線強化（診断ボタンの枠線強化） ===== */
.flow-opt {
	border: 2px solid var(--line-strong) !important;
}
.flow-opt:hover {
	border-color: var(--green-700) !important;
}
.flow-opt.is-picked {
	border-color: var(--gold-600) !important;
}

/* SEO用の視覚非表示テキスト */
.seo-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }


/* ===== 追従CTA：ボタンに太めの枠線（追従ボタンの枠線） ===== */
.floating .btn {
	border: 2.5px solid #fff !important;
}


/* ===== NAME ONLY：名前だけでも見つけられます（旧LP吸収セクション） ===== */
.lpx-nameonly-sec { background: #faf7ec; }
.lpx-nameonly-lead { text-align: center; font-size: 16px; margin: 0 0 10px; }
.lpx-nameonly-stamp { text-align: center; margin: 6px 0 18px; }
.lpx-nameonly-stamp span {
	display: inline-block;
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 800;
	color: var(--green-900);
	border-bottom: 4px solid var(--gold);
	padding: 0 10px 6px;
	transform: scale(0.6);
	opacity: 0;
	transition: transform 0.55s cubic-bezier(0.2, 1.4, 0.35, 1), opacity 0.4s ease;
}
.lpx-nameonly-stamp.in span { transform: scale(1); opacity: 1; }
.lpx-nameonly-body { max-width: 760px; margin: 0 auto 30px; text-align: center; line-height: 2; font-size: 14.5px; }
.lpx-nameonly-card { padding: 24px 22px; position: relative; border-top: 3px solid var(--gold); }
.lpx-nameonly-card .lpx-num { position: absolute; top: 12px; right: 16px; font-size: 26px; font-weight: 800; color: rgba(16, 52, 42, 0.12); }
.lpx-nameonly-card h3 { font-size: 16px; margin: 0 0 10px; color: var(--green-900); }
.lpx-nameonly-card .ans { font-size: 13px; line-height: 1.9; margin: 0; color: var(--ink); }
.lpx-nameonly-card .ans a { color: var(--gold-600); font-weight: 700; text-decoration: underline; }
@media (max-width: 700px) {
	.lpx-nameonly-sec .grid-3 { grid-template-columns: 1fr; }
}


/* ============================================================
   人探しLP：3セクションのスタイリッシュ化
   ①選ばれる理由（大アイコン・大番号・タップ誘発・モーダル）
   ②応用領域（アイコン撤去・文字拡大）
   ③メソッド（薄い数字撤去・バッジ回転イン・ホバー）
   ============================================================ */

/* ---- ① 選ばれる理由 ---- */
.lpx-reason-card {
	cursor: pointer;
	position: relative;
	overflow: hidden;
	padding: 34px 26px 48px !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.lpx-reason-card .r-ic {
	width: 72px !important;
	height: 72px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	animation: reasonPulse 2.8s ease-in-out infinite;
}
.lpx-reason-card .r-ic svg { width: 34px !important; height: 34px !important; }
.lpx-reason-card .lpx-num {
	font-size: 52px !important;
	line-height: 1;
	color: rgba(201, 165, 74, 0.35) !important;
	font-weight: 800;
	transition: color 0.3s ease;
}
.lpx-reason-card h3 { font-size: 18px !important; }
.lpx-reason-card p { font-size: 13.5px; }
.lpx-reason-card::after {
	content: "詳しく見る ＋";
	position: absolute;
	right: 16px;
	bottom: 12px;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--gold-600);
	letter-spacing: 0.06em;
	transition: transform 0.25s ease;
}
.lpx-reason-card:hover {
	transform: translateY(-6px);
	border-color: var(--gold) !important;
	box-shadow: 0 20px 44px -18px rgba(16, 52, 42, 0.35);
}
.lpx-reason-card:hover .lpx-num { color: var(--gold-600) !important; }
.lpx-reason-card:hover::after { transform: translateX(3px); }
@keyframes reasonPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(201, 165, 74, 0.35); }
	50% { box-shadow: 0 0 0 9px rgba(201, 165, 74, 0); }
}

/* 理由モーダル */
.reason-modal { position: fixed; inset: 0; z-index: 9998; display: none; }
.reason-modal.is-open { display: block; }
.reason-modal-overlay { position: absolute; inset: 0; background: rgba(10, 26, 20, 0.72); backdrop-filter: blur(3px); }
.reason-modal-box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(560px, calc(100vw - 36px));
	background: #fff;
	border-radius: 14px;
	border-top: 5px solid var(--gold);
	padding: 40px 34px 30px;
	box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
	animation: reasonModalIn 0.35s cubic-bezier(0.2, 1.2, 0.35, 1);
}
@keyframes reasonModalIn { from { opacity: 0; transform: translate(-50%, -46%) scale(0.94); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.reason-modal-close { position: absolute; top: 10px; right: 14px; border: none; background: none; font-size: 30px; color: var(--muted); cursor: pointer; line-height: 1; }
.reason-modal-num { position: absolute; top: 14px; left: 22px; font-size: 60px; font-weight: 800; color: rgba(201, 165, 74, 0.22); line-height: 1; }
.reason-modal-ic { display: inline-flex; width: 76px; height: 76px; border-radius: 50%; background: var(--green-900); color: var(--gold); align-items: center; justify-content: center; margin-bottom: 14px; }
.reason-modal-ic svg { width: 36px; height: 36px; }
.reason-modal-box h3 { font-size: 21px; color: var(--green-900); margin: 0 0 12px; }
.reason-modal-box > p { font-size: 14.5px; line-height: 2; color: var(--ink); margin: 0 0 22px; }
.reason-modal-cta { text-align: center; border-top: 1px solid var(--line); padding-top: 20px; }
.reason-modal-cta .btn { width: 100%; justify-content: center; }
.reason-modal-tel { margin: 12px 0 0; font-size: 12.5px; color: var(--muted); }
.reason-modal-tel a { color: var(--green-800); font-weight: 700; }

/* ---- ② 応用領域：アイコン撤去・文字拡大 ---- */
.lpx-apply .a-ic { display: none !important; }
.lpx-apply > div { padding-top: 30px !important; }
.lpx-apply > div i { font-size: 15px !important; letter-spacing: 0.14em; }
.lpx-apply > div b { font-size: 21px !important; line-height: 1.5; margin: 8px 0 10px; display: block; }
.lpx-apply > div small { font-size: 14px !important; line-height: 1.8; }

/* ---- ③ メソッド：薄い数字撤去＋バッジ回転イン＋ホバー ---- */
.lpx-method-card > i { display: none !important; }
.lpx-method-card { cursor: default; }
.lpx-method-card:hover {
	transform: translateY(-5px);
	border-color: var(--gold);
	box-shadow: 0 16px 36px -16px rgba(16, 52, 42, 0.3);
}
.lpx-method-card h3 { font-size: 16.5px; }
.lpx-method-card p { font-size: 13px; line-height: 1.9; }
.lpx-method-grid .badge { transition: transform 0.55s cubic-bezier(0.2, 1.3, 0.4, 1), opacity 0.4s ease; }
.reveal-stagger:not(.in) .lpx-method-card .badge { transform: scale(0.3) rotate(-120deg); opacity: 0; }
.reveal-stagger.in .lpx-method-card:nth-child(1) .badge { transition-delay: 0.05s; }
.reveal-stagger.in .lpx-method-card:nth-child(2) .badge { transition-delay: 0.15s; }
.reveal-stagger.in .lpx-method-card:nth-child(3) .badge { transition-delay: 0.25s; }
.reveal-stagger.in .lpx-method-card:nth-child(4) .badge { transition-delay: 0.35s; }
.reveal-stagger.in .lpx-method-card:nth-child(5) .badge { transition-delay: 0.45s; }
.reveal-stagger.in .lpx-method-card:nth-child(6) .badge { transition-delay: 0.55s; }
.reveal-stagger.in .lpx-method-card:nth-child(7) .badge { transition-delay: 0.65s; }
.reveal-stagger.in .lpx-method-card:nth-child(8) .badge { transition-delay: 0.75s; }


/* ===== NAME ONLY：文字拡大 ===== */
.lpx-nameonly-lead { font-size: 17px; }
.lpx-nameonly-body { font-size: 15.5px; }
.lpx-nameonly-card h3 { font-size: 19px !important; }
.lpx-nameonly-card .ans { font-size: 14.5px; }

/* ===== FVチップ：月桂樹メダル装飾（laurel） ===== */
.lpx-points li {
	position: relative;
	border: none !important;
	background: transparent !important;
	padding: 8px 34px !important;
	font-size: 14.5px !important;
	font-weight: 700;
	letter-spacing: 0.03em;
}
.lpx-points li::before,
.lpx-points li::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 22px;
	height: 30px;
	transform: translateY(-50%);
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cg fill='none' stroke='%23c9a54a' stroke-width='1.7' stroke-linecap='round'%3E%3Cpath d='M13 30C8 24 7 14 10 4'/%3E%3Cpath d='M10 8C7 8 5 6 5 3c3 0 5 2 5 5Z'/%3E%3Cpath d='M9 14c-3 0-5-2-6-5 3-1 6 1 6 5Z'/%3E%3Cpath d='M9 20c-3 1-6-1-7-4 3-1 6 1 7 4Z'/%3E%3Cpath d='M10 26c-2 2-5 2-8 0 2-3 6-3 8 0Z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.lpx-points li::before { left: 6px; }
.lpx-points li::after { right: 6px; transform: translateY(-50%) scaleX(-1); }

/* ===== NUMBERS：カウントアップ＋ゲージバーアニメ ===== */
.p1-num-item { position: relative; }
.p1-num-item::after { display: none; }
.reveal-stagger.in .p1-num-item::after { transform: scaleX(0); }
.reveal-stagger.in .p1-num-item:nth-child(1)::after { transition-delay: 0.1s; }
.reveal-stagger.in .p1-num-item:nth-child(2)::after { transition-delay: 0.3s; }
.reveal-stagger.in .p1-num-item:nth-child(3)::after { transition-delay: 0.5s; }
.reveal-stagger.in .p1-num-item:nth-child(4)::after { transition-delay: 0.7s; }


/* ===== NUMBERS：数字ごとのグラフ/ピクトグラム ===== */
.n-viz { display: block; width: 88px; height: 60px; margin: 0 auto 10px; }
.n-viz svg { width: 100%; height: 100%; }
/* 拠点：建物ピクトが順に浮き上がる */
.n-viz-pins .vz-b { opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.2, 1.2, 0.4, 1); }
.reveal-stagger.in .n-viz-pins .vz-b1 { opacity: 1; transform: none; transition-delay: 0.25s; }
.reveal-stagger.in .n-viz-pins .vz-b2 { opacity: 1; transform: none; transition-delay: 0.45s; }
/* 47都道府県：棒グラフが伸びる */
.n-viz-bars .vz-bar { transform: scaleY(0); transform-origin: center 53px; transition: transform 0.7s cubic-bezier(0.25, 1, 0.4, 1); }
.reveal-stagger.in .n-viz-bars .vz-bar1 { transform: scaleY(1); transition-delay: 0.3s; }
.reveal-stagger.in .n-viz-bars .vz-bar2 { transform: scaleY(1); transition-delay: 0.45s; }
.reveal-stagger.in .n-viz-bars .vz-bar3 { transform: scaleY(1); transition-delay: 0.6s; }
.reveal-stagger.in .n-viz-bars .vz-bar4 { transform: scaleY(1); transition-delay: 0.75s; }
/* 24時間：時計リングが一周 ／ 98%：ドーナツが98%まで */
.vz-ring { transition: stroke-dashoffset 1.3s cubic-bezier(0.3, 0.9, 0.3, 1); }
.reveal-stagger.in .n-viz-clock .vz-ring { stroke-dashoffset: 0; transition-delay: 0.5s; }
.reveal-stagger.in .n-viz-donut .vz-ring { stroke-dashoffset: 2.6; transition-delay: 0.6s; }
@media (max-width: 700px) {
	.n-viz { width: 72px; height: 50px; }
}

/* ============================================================
   迫力パス：全体を太く・大きく・濃く（人探しLP）
   ============================================================ */
h2, .lp-title h2 {
	font-weight: 900 !important;
	letter-spacing: 0.04em;
}
.lp-title h2 { font-size: clamp(30px, 4vw, 44px) !important; }
.lp-title .en { font-weight: 800; letter-spacing: 0.22em; }
h3 { font-weight: 800 !important; }
p, li { font-weight: 500; }
.lpx-title {
	font-weight: 900 !important;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}
.lpx-typeline { font-weight: 800 !important; }
.btn {
	font-weight: 800 !important;
	letter-spacing: 0.05em;
}
.btn-lg { padding: 18px 30px !important; font-size: 16.5px !important; }
.lpx-hero-actions .btn { border-width: 2px; }
.lpx-points li { font-weight: 800 !important; font-size: 15.5px !important; }
svg.lpx-ic { stroke-width: 2.3 !important; }
.p1-num-item .n { font-weight: 900; }
.p1-num-item .n [data-count] { font-weight: 900 !important; }
.p1-num-item .u { font-weight: 800; }
.p1-num-item .l { font-weight: 600; opacity: 0.95; }
.p1-marquee-track span { font-weight: 800; }
.lpx-reason-card { border-width: 2px !important; }
.lpx-reason-card h3 { font-size: 19px !important; }
.lpx-reason-card p { font-size: 14px; font-weight: 500; color: var(--ink); }
.lpx-method-card { border-width: 2px !important; }
.lpx-method-card h3 { font-size: 17.5px; }
.lpx-method-card .badge { transform-origin: center; }
.lpx-nameonly-card { border-top-width: 5px !important; border-width: 2px; }
.lpx-apply > div b { font-weight: 900 !important; }
.flow-opt b { font-size: 16.5px; font-weight: 800; }
.flow-opt span { font-weight: 500; }
.survey-lead { font-weight: 800; }
.voice-card-title { font-weight: 800 !important; }
.faq-q, .faq-item summary { font-weight: 800; }
.lpx-price-info .card, .card { border-width: 2px; }
.form .row label { font-weight: 800; }
.floating .btn { font-weight: 800 !important; }

/* ===== メリハリパス：丸み排除・直線的でコントラストの強い造形 ===== */
.card,
.lpx-reason-card,
.lpx-method-card,
.lpx-nameonly-card,
.voice-card,
.survey-card,
.flow-opt,
.flow-hint,
.flow-node,
.reason-modal-box,
.form input,
.form textarea,
.form select { border-radius: 2px !important; }
.btn { border-radius: 2px !important; }
.voice-tag,
.survey-tag,
.tag,
.lpx-jisseki-tag { border-radius: 2px !important; }
.lp-title h2 .mark { border-radius: 0 !important; padding: 2px 14px; }
.n-viz-donut svg circle { stroke-linecap: butt; }
/* 見出し下の太い金バー */
.lp-title { position: relative; }
.lp-title h2::after {
	content: "";
	display: block;
	width: 76px;
	height: 6px;
	background: var(--gold);
	margin: 18px auto 0;
}
.lp-title[style*="text-align:left"] h2::after { margin-left: 0; }
/* 影のコントラスト強化 */
.lpx-reason-card:hover,
.lpx-method-card:hover { box-shadow: 0 24px 50px -18px rgba(10, 30, 22, 0.5) !important; }
.btn-gold { box-shadow: 0 8px 24px -8px rgba(160, 120, 30, 0.55); }
.btn-primary { box-shadow: 0 8px 24px -8px rgba(10, 40, 28, 0.55); }


/* ===== メソッド刷新：蛇行タイムライン廃止 → 濃緑カードフロー ===== */
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card::before { display: none !important; content: none !important; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-grid { gap: 16px; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card {
	background: var(--green-900) !important;
	border: none !important;
	border-radius: 2px !important;
	padding: 26px 22px 28px !important;
	overflow: visible !important;
	box-shadow: 0 10px 26px -14px rgba(10, 30, 22, 0.4);
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:hover {
	background: var(--green-800) !important;
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -16px rgba(10, 30, 22, 0.55) !important;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge {
	display: block !important;
	width: auto !important;
	height: auto !important;
	background: transparent !important;
	border-radius: 0 !important;
	transform: none !important;
	margin-bottom: 8px !important;
	opacity: 1 !important;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge::before {
	content: "STEP" !important;
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.34em;
	color: rgba(201, 165, 74, 0.85);
	margin-bottom: 2px;
	border: none;
	background: none;
	width: auto;
	height: auto;
	position: static;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge em {
	font-style: normal;
	font-family: "Jost", sans-serif;
	font-weight: 800;
	font-size: 42px;
	line-height: 1;
	color: var(--gold);
	transform: none !important;
	display: block;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card h3 { color: #fff !important; font-size: 17px !important; margin-top: 4px; }
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card p { color: rgba(255, 255, 255, 0.85) !important; font-size: 13px; }
/* 矢印コネクタ（行末の4枚目・8枚目には出さない） */
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card::after {
	content: "" !important;
	display: block !important;
	position: absolute;
	top: 50% !important;
	bottom: auto !important;
	left: auto !important;
	right: -14px;
	width: 0 !important;
	height: 0 !important;
	background: transparent !important;
	border: none !important;
	border-left: 10px solid var(--gold) !important;
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important;
	border-radius: 0 !important;
	transform: translateY(-50%);
	z-index: 3;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(4)::after,
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card:nth-child(8)::after { display: none !important; }
@media (max-width: 900px) {
	body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card::after { display: none !important; }
}

/* ============================================================
   一括改善v13：金帯区切り/チップ刷新/NAME ONLY濃緑化/PREPARE拡大/
   NUMBERS極大/満足度ドーナツはみ出し修正/グラフフルワイド/LIMITED刷新
   ============================================================ */
/* 金のグラデ帯（セクション区切り） */
.gold-band, .gold-band {
	height: 14px;
	background: linear-gradient(180deg, #8a6d1f 0%, #e0be6a 45%, #a37f24 100%);
}
/* チップ：月桂樹をやめ、金の強いバッジに */
.lpx-points li { background: var(--gold) !important; color: var(--green-900) !important; font-weight: 800 !important; padding: 10px 20px !important; border-radius: 2px !important; font-size: 15px !important; }
.lpx-points li::before, .lpx-points li::after { display: none !important; content: none !important; }
/* NAME ONLY：カードを濃緑に */
.lpx-nameonly-card { background: var(--green-900) !important; border: none !important; padding: 30px 26px !important; }
.lpx-nameonly-card h3 { color: #fff !important; font-size: 20px !important; }
.lpx-nameonly-card .ans { color: rgba(255, 255, 255, 0.9) !important; font-size: 15px !important; }
.lpx-nameonly-card .lpx-num { color: rgba(201, 165, 74, 0.55) !important; font-size: 46px !important; }
.lpx-nameonly-card .ans a { color: #e8cf8f !important; }
/* PREPARE：大きく */
.lpx-info-grid li { padding: 24px 22px !important; }
.lpx-info-grid li b { font-size: 18.5px !important; }
.lpx-info-grid li small { font-size: 13.5px !important; }
.lpx-info-grid li svg { width: 34px !important; height: 34px !important; }
.lpx-info-grid li i { font-size: 30px !important; }
/* NUMBERS：極大 */
.p1-num-item .n [data-count] { font-size: clamp(72px, 7.5vw, 108px) !important; }
.p1-num-item .u { font-size: 24px !important; }
.p1-num-item .l { font-size: 14px !important; letter-spacing: 0.08em; }
.n-viz { width: 112px; height: 72px; }
/* 満足度ドーナツ：サイズ制御（はみ出し修正） */
.lpx-donut { width: 220px !important; height: 220px !important; margin: 0 auto; flex: none; }
.lpx-donut svg { width: 100% !important; height: 100% !important; display: block; }
@media (max-width: 760px) {
	.lpx-donut { width: 180px !important; height: 180px !important; }
}
/* 警察庁グラフ：フルワイド＋迫力 */
section[data-watermark="URGENT"] {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	background: #fff;
	padding-top: 90px;
	padding-bottom: 90px;
	border-top: 14px solid transparent;
	border-image: linear-gradient(180deg, #8a6d1f, #e0be6a, #a37f24) 1;
}
section[data-watermark="URGENT"] .container { max-width: 1320px !important; }
section[data-watermark="URGENT"] .lpx-chart { border: none !important; box-shadow: none !important; background: transparent !important; }
section[data-watermark="URGENT"] .lpx-chart svg { width: 100%; height: auto; }
.lpx-chart-callout { animation: urgePulse 2.4s ease-in-out infinite; }
@keyframes urgePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
/* LIMITED：AIくささ排除（引用カードを濃緑の断言に） */
.lpx-limited-quotes > * { background: var(--green-900) !important; border: none !important; border-radius: 2px !important; color: #fff !important; padding: 22px 24px !important; }
.lpx-limited-quotes > * * { color: #fff !important; }
.lpx-limited-quotes svg { color: var(--gold) !important; stroke: var(--gold) !important; }
.lpx-limited-cons { border-radius: 2px !important; }
.lpx-limited-cons .head { font-size: 17px; font-weight: 800; }


/* ===== リスク帯フルワイド：濃緑の全幅バンドで迫力を出す ===== */
.lpx-risk {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	width: 100vw !important;
	background: var(--green-900) !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 72px max(28px, calc(50vw - 640px)) 84px !important;
	margin-top: 56px !important;
	text-align: center;
}
.lpx-risk .lpx-risk-sum { color: #fff !important; font-size: 19px !important; font-weight: 700; }
.lpx-risk .lpx-risk-sum b { color: var(--gold) !important; font-size: 24px; }
.lpx-risk .lpx-risk-arrow {
	border-left: 26px solid transparent !important;
	border-right: 26px solid transparent !important;
	border-top: 20px solid var(--gold) !important;
	width: 0; height: 0; margin: 18px auto !important;
}
.lpx-risk .lpx-risk-title { color: #fff !important; font-size: clamp(24px, 3vw, 36px) !important; font-weight: 900 !important; line-height: 1.7; }
.lpx-risk .lpx-risk-title b { color: #ff8577 !important; }
.lpx-risk .lpx-risk-list {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 18px !important;
	max-width: 1200px;
	margin: 40px auto 0 !important;
	padding: 0 !important;
	background: none !important;
	border: none !important;
	list-style: none;
}
.lpx-risk .lpx-risk-list li {
	background: rgba(255, 255, 255, 0.07) !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 2px !important;
	padding: 30px 24px !important;
	display: block !important;
	text-align: center;
	color: #fff !important;
	font-size: 15.5px !important;
	font-weight: 700;
	line-height: 2 !important;
}
.lpx-risk .lpx-risk-list li b { color: #ff8577 !important; }
.lpx-risk .lpx-risk-ic {
	width: 60px !important;
	height: 60px !important;
	background: var(--gold) !important;
	color: var(--green-900) !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0 auto 14px !important;
}
.lpx-risk .lpx-risk-ic svg { width: 30px !important; height: 30px !important; }
@media (max-width: 900px) {
	.lpx-risk .lpx-risk-list { grid-template-columns: 1fr !important; }
}


/* ===== PREPAREフリップ：改行防止・金オーブアイコン・パタパタ出現 ===== */
.lpx-info-grid { perspective: 900px; }
.lpx-info-grid li {
	position: relative;
	display: grid !important;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 16px;
	row-gap: 4px;
	align-items: center;
	padding: 24px 20px !important;
	backface-visibility: hidden;
}
.lpx-info-grid li svg {
	grid-row: 1 / 3;
	width: 56px !important;
	height: 56px !important;
	background: var(--gold);
	color: var(--green-900);
	border-radius: 50%;
	padding: 13px;
	box-sizing: border-box;
	stroke-width: 2 !important;
}
.lpx-info-grid li b {
	font-size: 17px !important;
	white-space: nowrap;
	letter-spacing: 0.02em;
	align-self: end;
}
.lpx-info-grid li small {
	font-size: 12.5px !important;
	align-self: start;
	line-height: 1.6;
}
.lpx-info-grid li i {
	position: absolute !important;
	top: 10px;
	right: 14px;
	font-size: 26px !important;
	font-style: normal;
	color: rgba(201, 165, 74, 0.4) !important;
	font-weight: 800;
}
/* パタパタ（ランダム風の順番でY軸フリップ） */
.reveal-stagger:not(.in) .lpx-info-grid-flip-guard, 
.lpx-info-grid.reveal-stagger > li { transition: transform 0.55s cubic-bezier(0.3, 1.1, 0.4, 1), opacity 0.4s ease; }
.lpx-info-grid.reveal-stagger:not(.in) > li { transform: rotateY(88deg); opacity: 0 !important; }
.lpx-info-grid.reveal-stagger.in > li { transform: rotateY(0); opacity: 1 !important; }
.lpx-info-grid.reveal-stagger.in > li:nth-child(1) { transition-delay: 0.25s !important; }
.lpx-info-grid.reveal-stagger.in > li:nth-child(2) { transition-delay: 0.65s !important; }
.lpx-info-grid.reveal-stagger.in > li:nth-child(3) { transition-delay: 0.05s !important; }
.lpx-info-grid.reveal-stagger.in > li:nth-child(4) { transition-delay: 0.5s !important; }
.lpx-info-grid.reveal-stagger.in > li:nth-child(5) { transition-delay: 0.85s !important; }
.lpx-info-grid.reveal-stagger.in > li:nth-child(6) { transition-delay: 0.15s !important; }
.lpx-info-grid.reveal-stagger.in > li:nth-child(7) { transition-delay: 0.75s !important; }
.lpx-info-grid.reveal-stagger.in > li:nth-child(8) { transition-delay: 0.35s !important; }
.lpx-info-grid.reveal-stagger.in > li:nth-child(9) { transition-delay: 0.55s !important; }


/* ===== リスクカード整列（アイコン上・テキスト中央の縦積み） ===== */
.lpx-risk .lpx-risk-list li {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
}
.lpx-risk .lpx-risk-list li .lpx-risk-ic {
	position: static !important;
	float: none !important;
	flex: none;
	margin: 0 0 16px !important;
}
.lpx-risk .lpx-risk-list li .type-line,
.lpx-risk .lpx-risk-list li span:not(.lpx-risk-ic) {
	display: block;
	width: 100%;
	text-align: center;
}


/* ===== v16メリハリ：金帯統一／PREPAREフルワイド／NAME ONLY濃緑反転 ===== */
/* 金帯：細線化していたのを、リッチな太帯に統一 */
.gold-band, .gold-band {
	height: 18px !important;
	background: linear-gradient(180deg, #c9a54a 0%, #e6cb85 45%, #8a6d1f 100%) !important;
	border: none !important;
}
section[data-watermark="URGENT"] { border-top: none !important; border-image: none !important; }

/* PREPARE：フルワイド＋大型化＋番号の重なり解消 */
section[data-watermark="PREPARE"] {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	background: #faf7ec;
	padding-top: 90px;
	padding-bottom: 90px;
}
section[data-watermark="PREPARE"] .container { max-width: 1360px !important; }
.lpx-info-grid li { padding: 30px 26px !important; }
.lpx-info-grid li svg { width: 64px !important; height: 64px !important; padding: 15px; }
.lpx-info-grid li b { font-size: 19px !important; }
.lpx-info-grid li small { font-size: 13.5px !important; }
.lpx-info-grid li i {
	top: auto !important;
	bottom: 6px !important;
	right: 12px !important;
	font-size: 42px !important;
	color: rgba(201, 165, 74, 0.22) !important;
	line-height: 1;
}

/* NAME ONLY：濃緑フルブリード帯に反転（メリハリ） */
.lpx-nameonly-sec {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	background: var(--green-900) !important;
	padding-top: 96px;
	padding-bottom: 96px;
}
.lpx-nameonly-sec .lp-title h2 { color: #fff !important; }
.lpx-nameonly-sec .lp-title h2 .mark { background: var(--gold) !important; color: var(--green-900) !important; }
.lpx-nameonly-sec .lp-title .en { color: var(--gold) !important; }
.lpx-nameonly-lead { color: rgba(255, 255, 255, 0.92) !important; }
.lpx-nameonly-lead b { color: #fff; }
.lpx-nameonly-stamp span {
	color: var(--gold) !important;
	font-size: clamp(48px, 6vw, 76px) !important;
	border-bottom-width: 6px !important;
}
.lpx-nameonly-body { color: rgba(255, 255, 255, 0.9) !important; }
.lpx-nameonly-body b { color: #fff; }
/* Qカードは白反転 */
.lpx-nameonly-card { background: #fff !important; }
.lpx-nameonly-card h3 { color: var(--green-900) !important; }
.lpx-nameonly-card .ans { color: var(--ink) !important; }
.lpx-nameonly-card .lpx-num { color: rgba(201, 165, 74, 0.4) !important; }
.lpx-nameonly-card .ans a { color: var(--gold-600) !important; }


/* ===== 理由カード簡潔化：本文はモーダルでのみ表示 ===== */
.lpx-reason-card > p { display: none !important; }
.lpx-reason-card { padding: 36px 26px 46px !important; text-align: center; min-height: 210px; }
.lpx-reason-card h3 { font-size: 19px !important; margin-top: 10px; }


/* ===== イントロ迫力化：写真×濃緑スプリット ===== */
.lpx-intro-card {
	background: var(--green-900) !important;
	border: none !important;
	border-radius: 2px !important;
	padding: 0 !important;
	overflow: hidden;
	grid-template-columns: 1fr 1.15fr !important;
	gap: 0 !important;
	align-items: stretch !important;
}
.lpx-intro-photo { height: 100%; }
.lpx-intro-photo img { height: 100% !important; object-fit: cover; border-radius: 0 !important; }
.lpx-intro-body { padding: 60px 52px !important; }
.lpx-intro-body .lpx-pill,
.lpx-intro-body > span {
	background: var(--gold) !important;
	color: var(--green-900) !important;
	font-weight: 800 !important;
	font-size: 14px !important;
	padding: 8px 22px !important;
	border-radius: 2px !important;
}
.lpx-intro-body h2 { color: #fff !important; font-size: clamp(26px, 3.2vw, 40px) !important; font-weight: 900 !important; }
.lpx-intro-body p { color: rgba(255, 255, 255, 0.92) !important; font-size: 15.5px !important; }
.lpx-intro-body .lpx-intro-note { color: rgba(255, 255, 255, 0.75) !important; }
.lpx-intro-steps b, .lpx-intro-body .en { color: var(--gold) !important; }
.lpx-intro-body [class*="step"] { color: #fff !important; }
.lpx-intro-body hr, .lpx-intro-body [class*="line"] { border-color: var(--gold) !important; background: var(--gold) !important; }
@media (max-width: 760px) {
	.lpx-intro-card { grid-template-columns: 1fr !important; }
	.lpx-intro-body { padding: 36px 24px !important; }
}

/* pillars白文字（イントロ濃緑化に伴う） */
.lpx-intro-body .lpx-pillars b { color: #fff !important; font-size: 22px !important; }
.lpx-intro-body .lpx-pillars i { color: var(--gold) !important; }
.lpx-intro-body .lpx-pillars small { color: rgba(255, 255, 255, 0.65) !important; }
.lpx-intro-body .lpx-pillars span { border-color: var(--gold) !important; }


/* ===== v19コントラスト：PREPARE白カード化／金帯の最終形 ===== */
.lpx-info-grid li {
	background: #fff !important;
	border: 2px solid var(--line-strong) !important;
	box-shadow: 0 12px 28px -18px rgba(16, 52, 42, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lpx-info-grid li:hover {
	transform: translateY(-4px);
	border-color: var(--gold) !important;
	box-shadow: 0 20px 40px -18px rgba(16, 52, 42, 0.45);
}
.lpx-info-grid li i { color: rgba(201, 165, 74, 0.3) !important; }
/* 金帯：濃緑の細線＋リッチな金（参考画像準拠の最終形） */
.gold-band, .gold-band {
	height: 16px !important;
	background: linear-gradient(180deg, #d9b869 0%, #b8923a 100%) !important;
	border-top: 3px solid var(--green-900) !important;
	border-bottom: none !important;
}


/* ===== メソッド縦リスト：応用領域（濃緑カード）との差別化 ===== */
.lpx-method-grid {
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 0 64px !important;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.lpx-method-card {
	background: transparent !important;
	border: none !important;
	border-bottom: 1px solid var(--line-strong) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 24px 10px !important;
	display: grid !important;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 20px;
	align-items: start;
	text-align: left;
}
.lpx-method-card:hover {
	transform: none !important;
	background: rgba(201, 165, 74, 0.07) !important;
	box-shadow: none !important;
}
.lpx-method-card::after { display: none !important; content: none !important; }
.lpx-method-card .badge {
	display: flex !important;
	width: 48px !important;
	height: 48px !important;
	border-radius: 50% !important;
	background: var(--green-900) !important;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	grid-row: 1 / 3;
	transform: none !important;
}
.lpx-method-card .badge::before { display: none !important; content: none !important; }
.lpx-method-card .badge em { font-size: 17px !important; color: var(--gold) !important; display: inline; }
.lpx-method-card h3 { color: var(--green-900) !important; font-size: 17.5px !important; margin: 3px 0 4px !important; }
.lpx-method-card p { color: var(--muted) !important; font-size: 13.5px !important; }
@media (max-width: 900px) {
	.lpx-method-grid { grid-template-columns: 1fr !important; }
}

/* ==== イントロ満足度ドーナツ + チェックリスト強化 + (v21) ==== */
.lpx-intro-csat{display:flex;align-items:center;gap:20px;margin-top:28px}
.csat-wrap{position:relative;width:128px;height:128px;flex:0 0 auto}
.csat-wrap svg{width:100%;height:100%;transform:rotate(-90deg)}
.csat-wrap circle{fill:none;stroke-width:12}
.csat-wrap .bg{stroke:rgba(255,255,255,.16)}
.csat-wrap .val{stroke:#d9b869;stroke-dasharray:314.16;stroke-dashoffset:314.16;transition:stroke-dashoffset 1.6s cubic-bezier(.22,1,.36,1) .35s}
.reveal.in .csat-wrap .val,.lpx-intro-card.in .csat-wrap .val{stroke-dashoffset:31.42}
.csat-num{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#fff}
.csat-num b{font-size:38px;font-weight:900;line-height:1;letter-spacing:-.02em}
.csat-num i{font-style:normal;font-size:16px;font-weight:800;color:#d9b869;margin-left:2px}
.csat-cap b{display:block;font-size:19px;font-weight:900;color:#fff;letter-spacing:.04em}
.csat-cap small{display:block;font-size:10px;font-weight:700;letter-spacing:.22em;color:#d9b869;margin-top:4px}
.csat-cap span{display:block;font-size:12.5px;color:rgba(255,255,255,.85);margin-top:8px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist{gap:0 44px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li{font-size:17px;font-weight:800;color:var(--green-900,#12281e);padding:17px 4px 17px 42px;position:relative;border-bottom:2px solid rgba(18,40,30,.16);letter-spacing:.01em}
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li::before{content:"\2713";position:absolute;left:0;top:50%;transform:translateY(-50%);width:27px;height:27px;background:linear-gradient(180deg,#d9b869,#b8923a);color:#12281e;font-size:15px;font-weight:900;display:flex;align-items:center;justify-content:center;border-radius:2px;margin:0;border:0}
@media (max-width:640px){
  .lpx-intro-csat{gap:16px}
  .csat-wrap{width:104px;height:104px}
  .csat-num b{font-size:30px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li{font-size:15px}
}

body.page-template-tmpl-lp-hitosagashi-php .csat-cap .csat-btn{display:inline-flex;margin-top:14px;font-weight:900;padding:13px 22px;border:2px solid rgba(255,255,255,.35)}
@media (max-width:640px){ body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-csat{flex-wrap:wrap} body.page-template-tmpl-lp-hitosagashi-php .csat-cap .csat-btn{width:100%;justify-content:center} }

body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-csat{flex-wrap:wrap}
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-csat > .csat-btn{align-self:center;margin-left:auto;margin-top:0;text-align:center;line-height:1.5;padding:16px 24px;font-size:15px}
body.page-template-tmpl-lp-hitosagashi-php .csat-cap .csat-btn{display:none}
@media (max-width:900px){ body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-csat > .csat-btn{margin-left:0;width:100%;justify-content:center} body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-csat > .csat-btn br{display:none} }

/* ==== チェックリスト特大化 (v24) ==== */
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist{gap:0 56px;max-width:1100px;margin-left:auto;margin-right:auto}
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li{font-size:21px;font-weight:900;padding:24px 4px 24px 58px;border-bottom:2px solid rgba(18,40,30,.18);letter-spacing:.02em;line-height:1.5}
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li::before{width:38px;height:38px;font-size:21px;border-radius:3px;box-shadow:0 3px 10px rgba(184,146,58,.35)}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li{font-size:17px;padding:18px 2px 18px 46px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li::before{width:32px;height:32px;font-size:18px}
}

/* ==== LIMITED フルワイド刷新 (v25) ==== */
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-full{background:radial-gradient(1200px 600px at 50% -10%,#1d3b2c 0%,#12281e 60%),#12281e;padding:96px 24px;position:relative;overflow:hidden}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-full::after{content:"LIMITED";position:absolute;right:-20px;bottom:-40px;font-size:200px;font-weight:900;letter-spacing:.05em;color:rgba(255,255,255,.04);pointer-events:none;line-height:1}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-inner{max-width:1200px;margin:0 auto;position:relative;z-index:1}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-full .lp-title h2{color:#fff}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-full .lp-title .en{color:#d9b869}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-full .lp-title .mark{background:linear-gradient(180deg,#d9b869,#b8923a);color:#12281e}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-row{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:56px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq{position:relative;text-align:center;padding:34px 28px 30px;border-left:1px solid rgba(217,184,105,.28)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq:first-child{border-left:0}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq::before{content:"\201C";position:absolute;top:-6px;left:50%;transform:translateX(-50%);font-family:Georgia,serif;font-size:90px;line-height:1;color:rgba(217,184,105,.35)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq .q-ic{width:74px;height:74px;margin:26px auto 20px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(217,184,105,.12);border:2px solid #d9b869;color:#d9b869}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq .q-ic svg{width:34px;height:34px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq p{font-family:"Noto Serif JP",serif;font-size:26px;font-weight:900;color:#fff;line-height:1.55;letter-spacing:.04em;margin:0}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-lead{margin:60px auto 0;text-align:center;font-family:"Noto Serif JP",serif;font-size:30px;font-weight:600;color:#fff;line-height:1.8}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-lead>span{display:block;text-wrap:balance}
body.page-template-tmpl-lp-hitosagashi-php .lpx-no-break{display:inline;white-space:nowrap}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-lead b{font-weight:900;background:linear-gradient(transparent 68%,rgba(184,146,58,.55) 68%);padding:0 2px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-note{margin:26px auto 0;text-align:center;font-size:13px;color:rgba(255,255,255,.65)}
@media (max-width:820px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-full{padding:64px 20px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-row{grid-template-columns:1fr;margin-top:36px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq{border-left:0;border-top:1px solid rgba(217,184,105,.28);padding:26px 12px 22px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq:first-child{border-top:0}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq p br{display:none}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq p{font-size:20px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-lead{font-size:21px;margin-top:40px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-full::after{font-size:100px}
}

/* v26: LIMITED 引用符・アイコン撤去、文字のみで構成 */
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq::before{content:none}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq{padding:14px 28px;display:flex;align-items:center;justify-content:center;min-height:150px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq p{font-size:30px}
@media (max-width:820px){ body.page-template-tmpl-lp-hitosagashi-php .lpx-lq{min-height:0;padding:22px 12px} body.page-template-tmpl-lp-hitosagashi-php .lpx-lq p{font-size:21px} }

/* v27: 金帯→通常の細ライン */
body.page-template-tmpl-lp-hitosagashi-php .gold-band{height:2px !important;background:#c9a75c !important;border:0 !important;border-top:0 !important;border-bottom:0 !important;box-shadow:none !important;margin:0 !important}

/* ==== v31: URGENT字間1.5倍 / グラフ見出し装飾 / 他社断られ訴求 ==== */
body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="URGENT"] .lp-title h2{letter-spacing:.06em !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title{display:flex;align-items:center;justify-content:center;gap:18px;font-family:"Noto Serif JP",serif;font-size:23px;font-weight:900;color:var(--green-900,#12281e);letter-spacing:.08em;margin-bottom:6px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title::before,body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title::after{content:"";width:64px;height:2px;flex:0 0 auto}
body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title::before{background:linear-gradient(90deg,transparent,#b8923a)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title::after{background:linear-gradient(270deg,transparent,#b8923a)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-refused{margin:56px auto 6px;text-align:center;font-family:"Noto Serif JP",serif;font-size:22px;font-weight:900;color:#d9b869;letter-spacing:.06em}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-refused + .lpx-lq-lead{margin-top:0}
@media (max-width:820px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title{font-size:17px;gap:10px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title::before,body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title::after{width:30px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-refused{font-size:17px;margin-top:36px}
}

/* ==== v31b: 可能です。グラフィカル化 / POINT表記 ==== */
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp{position:relative;padding:26px 0 6px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp::before{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:640px;max-width:90%;height:220px;background:radial-gradient(closest-side,rgba(217,184,105,.14),transparent 70%);pointer-events:none}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span{position:relative;display:inline-block;background:linear-gradient(180deg,#f0d896 0%,#d9b869 48%,#a8842f 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:#d9b869;text-shadow:none;filter:drop-shadow(0 6px 22px rgba(217,184,105,.25))}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span::before,body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span::after{content:"";position:absolute;width:44px;height:44px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span::before{top:-16px;left:-52px;border-top:3px solid #d9b869;border-left:3px solid #d9b869}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span::after{bottom:-10px;right:-52px;border-bottom:3px solid #d9b869;border-right:3px solid #d9b869}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-card .lpx-num{font-size:26px !important;letter-spacing:.1em}
@media (max-width:820px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span::before{left:-18px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span::after{right:-18px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-card .lpx-num{font-size:20px !important}
}

/* v32: PREPARE NOTE削除に伴い1カラム化 */
body.page-template-tmpl-lp-hitosagashi-php .lpx-prepare{grid-template-columns:1fr !important}

/* v34: FV見出し 一回り拡大・引用符撤去済み */
body.page-template-tmpl-lp-hitosagashi-php .lpx-title{font-size:clamp(42px,5.9vw,72px) !important;line-height:1.28 !important}
@media (max-width:640px){ body.page-template-tmpl-lp-hitosagashi-php .lpx-title{font-size:clamp(34px,9vw,44px) !important} }

/* ==== v34b: SCROLL線1本化 / 行間1.5倍 / 満足度行の間詰め ==== */
body.page-template-tmpl-lp-hitosagashi-php .lpx-scroll-cue span::after{display:none !important;animation:none !important}
body.page-template-tmpl-lp-hitosagashi-php .site-main p{line-height:2.1}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lead{line-height:2.15 !important}
body.page-template-tmpl-lp-hitosagashi-php .lp-sub{line-height:2.1 !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-body{line-height:2.2 !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li{line-height:1.9}
body.page-template-tmpl-lp-hitosagashi-php .card .ans{line-height:2 !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-csat{justify-content:flex-start;gap:26px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-csat > .csat-btn{margin-left:6px}

/* ==== v35: LIMITEDカードをタイポポスター化 / 可能です。括弧撤去 / 他社断られバッジ化 ==== */
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq{position:relative;overflow:hidden;border:1px solid rgba(217,184,105,.35);background:linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,0) 55%);min-height:190px;padding:26px 20px;display:flex;align-items:flex-end;justify-content:center;margin:0 -1px 0 0}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq:first-child{border-left:1px solid rgba(217,184,105,.35)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq .bgword{position:absolute;right:-8px;top:-26px;font-family:"Noto Serif JP",serif;font-weight:900;font-size:120px;line-height:1;color:transparent;-webkit-text-stroke:1.5px rgba(217,184,105,.35);pointer-events:none}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq .case{position:absolute;left:18px;top:14px;font-style:normal;font-size:12px;font-weight:800;letter-spacing:.28em;color:#d9b869;border-bottom:2px solid #d9b869;padding-bottom:6px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq p{font-size:26px;text-align:left;width:100%;padding-left:2px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-refused{display:table;padding:14px 34px;border:2px solid #d9b869;color:#d9b869;background:rgba(217,184,105,.08)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span::before,body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span::after{content:none !important}
@media (max-width:820px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq{min-height:130px;margin:0 0 14px;border-top:1px solid rgba(217,184,105,.35)}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq .bgword{font-size:88px;top:-18px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq p{font-size:20px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-refused{padding:12px 18px;font-size:16px}
}

/* v37: 理由カード 文字拡大＋「詳しく見る」をボタン化 */
body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-card h3{font-size:23px !important;letter-spacing:.03em}
body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-card{padding-bottom:64px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-card::after{content:"詳しく見る ＋" !important;right:14px !important;bottom:14px !important;font-size:14px !important;font-weight:900 !important;color:#fff !important;background:linear-gradient(180deg,#d9b869,#b8923a);padding:10px 18px;letter-spacing:.08em !important;box-shadow:0 3px 10px rgba(184,146,58,.35)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-card:hover::after{transform:translateX(2px)}
@media (max-width:640px){ body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-card h3{font-size:19px !important} body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-card::after{font-size:13px !important;padding:8px 14px} }

/* ==== v38: フォント16px床 (自動生成 256セレクタ) ==== */
body.page-template-tmpl-lp-hitosagashi-php .access-lic{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .access-maplink{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .article-meta .meta-item{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .article-share .share-label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .article-stylish.prose p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .author-body p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .author-label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .author-name small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .author-role{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .auto-toc .toc-allbtn{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .auto-toc .toc-en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .auto-toc .toc-kids li > a{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .auto-toc .toc-row > a{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .auto-toc .toc-row > a::before{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .beerus-reason-head .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .block-title .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .blogcard-ex{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .blogcard-label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .blogcard-title{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .cat-tree-child > a{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .cm-label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .cm-sub{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .col-cat-btn{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .col-cat-count{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .col-search input[type="text"]{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .company-greeting p.tbd-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .contact-form input{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .contact-form label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .contact-form label .required{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .contact-form select{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .contact-form textarea{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .csat-cap small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .csat-cap span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .fab-bubble{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .feat-body p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .feat-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .feat-points li{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .feat-tag{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .floating .btn{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-actions .btn{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-body p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-cta-btn{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-cta-label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-fee-list li{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-fee-list li em{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-field b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-field input{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-fields-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-hint b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-line b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-line span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-need-list{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-node b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-node span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-num .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-opt b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-opt span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-screen > p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-teaser{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .form-consent{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .form-thanks-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .greeting p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lawyer-en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lawyer-firm{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lawyer-text{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .line-modal-badge{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .line-modal-head p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .line-modal-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lp-title .lp-sub{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-after-card li{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-after-label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-after-sub{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-apply > div i{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-apply > div small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-apply b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-apply i{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-apply small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-apply-title{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-apply-title .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-case-badge{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-case-item .t{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-case-item figcaption{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-case-item figcaption b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-grid text{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-src{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-vals .warn{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-x text{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-checklist li::before{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cost-adv .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cost-adv .note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cost-adv p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cost-list li{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cost-list li::before{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cost-title{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-copy .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-sub{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-tel-body small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-donut-center small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-eyebrow{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-flow-item .n.has-ic::after{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-flow-item b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-flow-item p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-flow-phase-label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-hero-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li i{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-body .lpx-pill{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-body > span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-body p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-csat > .csat-btn{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki .result{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki .who{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki dd b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki dl > div{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki-tag{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-kicker{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lawyer p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lead{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-learn li{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-learn-title{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-cons .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-cons b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-cons li::before{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-cons small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-quotes blockquote small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq .case{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-marquee-track i{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-marquee-track span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card .badge::before{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-card p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-method-head p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-movie-body p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-body{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-card .ans{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-osint-card p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-osint-card small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-panel-head .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-panel-steps li{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-panel-steps li span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-pill{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-pillars i{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-pillars small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-points li{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-prepare-note .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-prepare-note p:not(.big){font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-price-card .cond{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-price-card .label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-price-card .price b i{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-price-card .price small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-price-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-price-tax{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-rate-bar span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-rate-body p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-rate-donut small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-rate-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-card .lpx-num{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-card p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-card::after{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-summary{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-reason-summary::before{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-report-body p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-review p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-review-head span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-risk .lpx-risk-list li{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-scroll-cue{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-tl-item .t{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-tl-item p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-topbar{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-typeline{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-urgent-bar b small{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-urgent-label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-urgent-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-urgent-note span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .media-ex{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .media-meta .tag{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .media-meta time{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .media-thumb.empty{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .net-office-img .net-ph{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .network-area{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .network-areas-title{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .office .office-lic{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .office .office-map{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .office-route{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-about .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-about-eyebrow{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-about-img.is-ph span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-about-sign{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-about-text p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-about-vlabel{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-inv-gtitle .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-inv-name{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-inv-pexcerpt{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-inv-peyebrow{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-inv-pmore{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-num-item .l{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-numbers-sub{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-video figcaption{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-video-phtxt{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .p1-video-tag{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .page-numbers{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .price-table{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .price-table thead th{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .reason-item h3 em{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .reason-modal-box > p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .reason-modal-tel{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-form .agree{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-form input[type="email"]{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-form input[type="tel"]{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-form input[type="text"]{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-form label{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-form label .req{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-form select{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-form textarea{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-hero .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .recruit-hero p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .report-cover-body .en{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .report-cover-body p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .report-note{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .report-subject-item span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .report-time span{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .route-step-num{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .route-step-text{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .sec-footer .trust-item{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .share-btn{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .side-cta p{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .side-cta-badge{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .side-ptitle{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .side-title{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .side-toc-list a{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .sign-link{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .single-investigation .sidebar .wf-box{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .survey-body{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .survey-meta{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .survey-scan-badge{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .survey-stars b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .survey-tag{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .tbd{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .tbd-legend{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .tcar .voice-card-more{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .tcar .voice-card-text{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .tcar .voice-card-title{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .video-loading{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .voice-card-more{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .voice-card-text{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .voice-card-title{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .voice-tag{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php body.is-lp .lpx-lead{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php body.is-lp .lpx-typeline{font-size:16px !important}

/* ==== v38: DATAバンド アニメーション増量 ==== */
@keyframes lpxFloatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
@keyframes lpxSpin{to{transform:rotate(360deg)}}
@keyframes lpxBarLoop{0%,15%{transform:scaleY(.15)}55%,75%{transform:scaleY(1)}100%{transform:scaleY(.15)}}
@keyframes lpxNumGlow{0%,100%{text-shadow:0 0 0 rgba(217,184,105,0)}50%{text-shadow:0 0 26px rgba(217,184,105,.5)}}
@keyframes lpxSweep{0%{left:-25%}100%{left:120%}}
body.page-template-tmpl-lp-hitosagashi-php .p1-numbers{position:relative;overflow:hidden}
body.page-template-tmpl-lp-hitosagashi-php .p1-numbers::after{content:"";position:absolute;top:0;bottom:0;width:240px;left:-25%;background:linear-gradient(105deg,transparent,rgba(217,184,105,.12),transparent);transform:skewX(-14deg);animation:lpxSweep 5.2s ease-in-out infinite;pointer-events:none}
body.page-template-tmpl-lp-hitosagashi-php .p1-num-item{animation:lpxFloatY 3.8s ease-in-out infinite}
body.page-template-tmpl-lp-hitosagashi-php .p1-num-item:nth-child(2){animation-delay:.5s}
body.page-template-tmpl-lp-hitosagashi-php .p1-num-item:nth-child(3){animation-delay:1s}
body.page-template-tmpl-lp-hitosagashi-php .p1-num-item:nth-child(4){animation-delay:1.5s}
body.page-template-tmpl-lp-hitosagashi-php .p1-num-item .n{animation:lpxNumGlow 3.8s ease-in-out infinite}
body.page-template-tmpl-lp-hitosagashi-php .p1-num-item:nth-child(2) .n{animation-delay:.5s}
body.page-template-tmpl-lp-hitosagashi-php .p1-num-item:nth-child(3) .n{animation-delay:1s}

/* ==== v76: ストーリーライン見直し実装 ==== */
/* 意味を持たない見出し下の金線を撤去 */
body.page-template-tmpl-lp-hitosagashi-php .lp-title h2::after{
  content:none !important;
  display:none !important;
}

/* ヘッダー：かんたん診断を常設 */
body.page-template-tmpl-lp-hitosagashi-php .lpx-header-diagnosis{
  flex:none;
  white-space:nowrap;
  padding:12px 18px;
  min-height:44px;
}

/* FV：コピーと導線を絞り、1画面で理解できる密度へ */
body.page-template-tmpl-lp-hitosagashi-php .lpx-hero-body{max-width:680px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-hero .lpx-lead{
  max-width:600px;
  margin:22px 0 24px;
  text-wrap:balance;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  gap:12px;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-hero-actions .btn{
  min-height:54px;
  justify-content:center;
  text-align:center;
  line-height:1.45;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-eyebrow{
  color:var(--gold) !important;
  font-size:14px !important;
  font-weight:800 !important;
  line-height:1.8 !important;
  letter-spacing:.04em;
  margin:18px auto 2px !important;
  max-width:620px;
}

/* URGENT直後のCTA：セクション間の空白を作らない */
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-urgent{
  margin:0;
  border-top:3px solid var(--green-900);
}
body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="URGENT"]{
  padding-bottom:0 !important;
}

/* LIMITED + POSSIBLE 統合 */
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-points{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  max-width:1080px;
  margin:34px auto 26px;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-points > div{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
  padding:22px 20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(217,184,105,.32);
  color:#fff;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-points b{
  color:#d9b869;
  font-size:18px;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-points span{
  font-size:15px;
  line-height:1.8;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-cta{
  display:flex;
  width:max-content;
  max-width:100%;
  margin:0 auto 20px;
  justify-content:center;
  text-align:center;
  white-space:normal;
}

/* 汎用カルーセル操作UI */
body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-controls{
  display:none;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:16px;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-arrow{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:none;
  border:2px solid var(--gold);
  border-radius:50%;
  background:var(--green-900);
  color:#fff;
  box-shadow:0 6px 18px rgba(13,57,45,.18);
  font-size:28px;
  line-height:1;
  cursor:pointer;
  transition:transform .2s ease,background .2s ease;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-arrow:hover{transform:translateY(-2px);background:var(--gold);color:var(--green-900)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-arrow:focus-visible{outline:3px solid rgba(197,156,65,.38);outline-offset:3px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-indicator{min-width:112px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-dots{display:flex;align-items:center;justify-content:center;gap:8px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-dot{
  width:10px;
  height:10px;
  padding:0;
  border:0;
  border-radius:50%;
  background:#c8d0cc;
  cursor:pointer;
  transition:width .2s ease,border-radius .2s ease,background .2s ease;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-dot.is-active{width:25px;border-radius:999px;background:var(--gold)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-status{font-family:"Jost",sans-serif;font-size:12px;font-weight:800;letter-spacing:.12em;color:var(--green-700)}

/* モーダル：320px幅でもボタンと電話番号を枠内へ */
body.page-template-tmpl-lp-hitosagashi-php .reason-modal-box{
  max-height:calc(100dvh - 24px);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  overscroll-behavior:contain;
}
body.page-template-tmpl-lp-hitosagashi-php .reason-modal-box > p{
  flex:1 1 auto;
  min-height:90px;
  overflow-y:auto;
  padding-right:5px;
  overscroll-behavior:contain;
}
body.page-template-tmpl-lp-hitosagashi-php .reason-modal-cta{flex:none;background:#fff}
body.page-template-tmpl-lp-hitosagashi-php .reason-modal-cta .btn{
  white-space:normal;
  overflow-wrap:anywhere;
  line-height:1.45;
  padding-left:14px;
  padding-right:14px;
}
body.page-template-tmpl-lp-hitosagashi-php .reason-modal-tel a{white-space:nowrap}

body.page-template-tmpl-lp-hitosagashi-php #lpx-price,
body.page-template-tmpl-lp-hitosagashi-php #quick-request,
body.page-template-tmpl-lp-hitosagashi-php #lpx-contact{scroll-margin-top:120px}

@media (max-width:820px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-points{grid-template-columns:1fr;gap:10px}
  body.page-template-tmpl-lp-hitosagashi-php [data-lpx-carousel]{
    display:flex !important;
    gap:14px !important;
    overflow-x:auto !important;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    overscroll-behavior-inline:contain;
    scrollbar-width:none;
    padding:4px 18px 12px !important;
    margin-left:-18px !important;
    margin-right:-18px !important;
  }
  body.page-template-tmpl-lp-hitosagashi-php [data-lpx-carousel]::-webkit-scrollbar{display:none}
  body.page-template-tmpl-lp-hitosagashi-php [data-lpx-carousel] > *{
    flex:0 0 calc(100% - 36px) !important;
    min-width:0 !important;
    scroll-snap-align:center;
    scroll-snap-stop:always;
    align-self:stretch;
  }
  body.page-template-tmpl-lp-hitosagashi-php .lpx-carousel-controls{display:flex}
}

@media (max-width:760px){
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .container{gap:8px}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .logo{min-width:0}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .logo-img{max-width:42px}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .name{font-size:15px}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .name small{font-size:8px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-header-diagnosis{
    display:inline-flex !important;
    min-height:38px;
    padding:9px 11px;
    font-size:12px;
  }
  body.page-template-tmpl-lp-hitosagashi-php .lpx-hero--photo{padding:42px 0 104px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-hero-actions{
    display:grid !important;
    grid-template-columns:1fr;
    gap:9px;
  }
  body.page-template-tmpl-lp-hitosagashi-php .lpx-hero-actions .btn{width:100%;min-height:50px;padding:12px 14px;font-size:15px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-hero-actions .btn-primary{display:none}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-hero .lpx-lead{font-size:15px !important;line-height:1.9 !important;margin:18px 0 20px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-body h2{font-size:26px !important;line-height:1.65 !important;text-wrap:balance}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-eyebrow{font-size:13px !important;line-height:1.75 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-topbar{font-size:12px !important;line-height:1.45;padding:8px 10px;text-align:center;white-space:normal}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-title br:not(.sp-only){display:none}
}

@media (max-width:390px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-header-diagnosis{font-size:11px;padding:8px 9px}
  body.page-template-tmpl-lp-hitosagashi-php .reason-modal-box{width:calc(100vw - 20px);padding:34px 22px 24px}
  body.page-template-tmpl-lp-hitosagashi-php .reason-modal-box > p{line-height:1.85 !important}
}
body.page-template-tmpl-lp-hitosagashi-php .p1-num-item:nth-child(4) .n{animation-delay:1.5s}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-bars .vz-bar{transform-box:fill-box;transform-origin:center bottom;animation:lpxBarLoop 3.2s ease-in-out infinite}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-bars .vz-bar2{animation-delay:.25s}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-bars .vz-bar3{animation-delay:.5s}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-bars .vz-bar4{animation-delay:.75s}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-clock svg line{transform-box:view-box;transform-origin:40px 28px}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-clock svg line:first-of-type{animation:lpxSpin 30s linear infinite}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-clock svg line:last-of-type{animation:lpxSpin 5s linear infinite}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-donut svg{transform-box:fill-box;transform-origin:center;animation:lpxSpin 8s linear infinite}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-pins .vz-b1{animation:lpxFloatY 2.6s ease-in-out infinite}
body.page-template-tmpl-lp-hitosagashi-php .n-viz-pins .vz-b2{animation:lpxFloatY 2.6s ease-in-out 1.3s infinite}
@media (prefers-reduced-motion:reduce){
  body.page-template-tmpl-lp-hitosagashi-php .p1-numbers::after,body.page-template-tmpl-lp-hitosagashi-php .p1-num-item,body.page-template-tmpl-lp-hitosagashi-php .p1-num-item .n,body.page-template-tmpl-lp-hitosagashi-php .n-viz-bars .vz-bar,body.page-template-tmpl-lp-hitosagashi-php .n-viz-clock svg line,body.page-template-tmpl-lp-hitosagashi-php .n-viz-donut svg,body.page-template-tmpl-lp-hitosagashi-php .n-viz-pins .vz-b1,body.page-template-tmpl-lp-hitosagashi-php .n-viz-pins .vz-b2{animation:none}
}

/* ==== v38c: SPレスポンシブ修正 ==== */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid{grid-template-columns:1fr 1fr !important;width:100% !important;min-width:0 !important;gap:10px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li{min-width:0 !important;width:auto !important}
  body.page-template-tmpl-lp-hitosagashi-php .floating .btn{font-size:16px !important;letter-spacing:0 !important;padding:12px 4px !important;white-space:nowrap;overflow:visible}
}

/* ==== v38d: コラムカルーセル / 実績カード迫力 / 診断ステップ整列 ==== */
@keyframes lpxColScroll{to{transform:translateX(-50%)}}
body.page-template-tmpl-lp-hitosagashi-php .col-carousel{overflow:hidden;position:relative;margin-top:34px}
body.page-template-tmpl-lp-hitosagashi-php .col-track{display:block;width:100%;animation:none}
body.page-template-tmpl-lp-hitosagashi-php .col-set{display:flex;gap:15px;padding-right:15px}
body.page-template-tmpl-lp-hitosagashi-php .col-set:first-child{width:max-content;transition:transform .45s cubic-bezier(.22,.61,.36,1);will-change:transform}
body.page-template-tmpl-lp-hitosagashi-php .col-set[aria-hidden="true"]{display:none}
body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card{width:214px;flex:0 0 auto;border:1px solid rgba(18,63,50,.24);border-radius:3px;box-shadow:0 7px 18px rgba(18,40,30,.08)}
body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card .ph img{width:100%;height:170px;object-fit:cover}
body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card h3{font-size:13px;line-height:1.55}
body.page-template-tmpl-lp-hitosagashi-php .col-carousel + .lpx-carousel-controls{display:flex;margin-top:20px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki{border:1px solid rgba(18,40,30,.12) !important;box-shadow:0 14px 34px rgba(18,40,30,.10) !important;padding:0 0 20px !important;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki:hover{transform:translateY(-6px);box-shadow:0 22px 46px rgba(18,40,30,.16) !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki-tag{display:block !important;background:linear-gradient(135deg,#14301f,#1d4630) !important;color:#fff !important;font-weight:800 !important;padding:12px 20px !important;font-size:16px !important;letter-spacing:.05em;border-radius:0 !important;margin:0 0 6px !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki h3{font-size:20px !important;padding:12px 20px 0;margin:0 !important;line-height:1.6}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki .who{padding:4px 20px 0;margin:0}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki dl{padding:8px 20px 0;margin:0}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki dd b{font-size:27px;color:#b8923a;font-weight:900;letter-spacing:.02em}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki dl > div:last-child{background:rgba(217,184,105,.13);border-top:2px solid #b8923a;padding:10px 12px;margin:8px -12px 0}
body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki .result{margin:14px 20px 0 !important;background:#eef4ef !important;border-left:4px solid #b8923a;padding:14px 16px !important;font-weight:600}
body.page-template-tmpl-lp-hitosagashi-php .flow-map{display:grid !important;grid-template-columns:repeat(4,1fr) !important;gap:10px !important;width:100%}
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node{width:auto !important;min-width:0}
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node b{font-size:16px !important}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-map{grid-template-columns:1fr 1fr !important}
  body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card{width:174px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-jisseki dd b{font-size:22px}
}

/* ==== v39: PREPARE をタグ型チップに刷新（カードグリッド廃止） ==== */
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid{display:flex !important;flex-wrap:wrap;gap:16px;justify-content:center;max-width:1020px;margin:38px auto 0 !important;width:auto !important;grid-template-columns:none !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li{background:#12281e !important;color:#fff !important;border:0 !important;border-radius:2px !important;box-shadow:0 8px 20px rgba(18,40,30,.20);padding:16px 26px !important;display:inline-flex !important;flex-direction:row !important;align-items:center;gap:14px;width:auto !important;min-height:0 !important;transform:none !important;animation:none !important;transition:transform .25s ease,box-shadow .25s ease;position:relative}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li:hover{transform:translateY(-4px);box-shadow:0 14px 28px rgba(18,40,30,.28)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li::before,body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li::after{content:none !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li i{position:static !important;font-size:17px !important;color:#d9b869 !important;font-weight:900;font-style:normal;opacity:1 !important;letter-spacing:.06em}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li svg{width:22px;height:22px;color:#d9b869;background:none !important;border-radius:0 !important;padding:0 !important;flex:0 0 auto}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li b{font-size:18px !important;color:#fff !important;font-weight:900;white-space:nowrap}
body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li small{color:rgba(255,255,255,.72) !important;font-size:16px !important;margin:0 0 0 2px;white-space:nowrap}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid{gap:10px;justify-content:flex-start}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li{padding:12px 16px !important;gap:10px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li small{display:none}
}

/* ==== v40: 診断ワン画面化（コンパクト＋独立高さ） / コラム画像下の空白除去 ==== */
body.page-template-tmpl-lp-hitosagashi-php .flow-app{align-items:start !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-board{padding:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-screen{padding:14px 16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-screen > p{margin:4px 0 10px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-options{gap:10px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-opt{padding:12px 14px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-result{padding:18px 18px 20px !important;top:88px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-need-list,body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-hint{margin:6px 0 !important;line-height:1.65 !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-fee-list{margin:6px 0 !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-note{margin:8px 0 !important;line-height:1.6 !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-cta-wrap{margin-top:10px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-fields{margin-top:8px !important;gap:8px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-fields-note{margin:6px 0 6px !important;line-height:1.5 !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-cta-label{margin:8px 0 6px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-cta-btns{gap:8px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-cta-btns .btn{padding:12px 6px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-map{margin-bottom:12px !important}
body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card{display:flex;flex-direction:column;background:#fff}
body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card .ph{height:170px;min-height:170px;overflow:hidden;margin:0;flex:0 0 auto}
body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card .ph img{width:100%;height:100%;object-fit:cover;display:block}
body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card .body{padding:10px 11px 12px}
body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card .body{text-align:center}
body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card .tag{margin-left:auto;margin-right:auto}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .col-set .col-card .ph{height:113px;min-height:113px}
}

/* ==== v40b: フッター拠点情報のおしゃれ化 ==== */
body.page-template-tmpl-lp-hitosagashi-php .foot-info{display:block;width:min(600px,100%);margin:16px auto 0;max-width:600px;text-align:left}
body.page-template-tmpl-lp-hitosagashi-php .sec-footer .lp-ftop .foot-line{display:flex;align-items:baseline;justify-content:flex-start;gap:18px;padding:11px 0;border-bottom:1px solid rgba(255,255,255,.14);margin:0;text-align:left}
body.page-template-tmpl-lp-hitosagashi-php .foot-info .foot-line:last-child{border-bottom:0}
body.page-template-tmpl-lp-hitosagashi-php .foot-line b{flex:0 0 96px;color:#d9b869;font-size:16px;letter-spacing:.18em;font-weight:800;position:relative;padding-left:16px}
body.page-template-tmpl-lp-hitosagashi-php .foot-line b::before{content:"";position:absolute;left:0;top:calc(50% - 4px);width:7px;height:7px;background:#d9b869;transform:rotate(45deg)}
body.page-template-tmpl-lp-hitosagashi-php .foot-line a{font-size:21px;font-weight:900;letter-spacing:.05em;text-decoration:none}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .sec-footer .lp-ftop .foot-line{flex-direction:column;gap:4px;padding:10px 0}
  body.page-template-tmpl-lp-hitosagashi-php .foot-line b{flex:none}
}

/* v40c: 診断入力ラベルの可視化（濃緑背景上） */
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-field b{color:#d9b869 !important;letter-spacing:.06em}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-fields-note{color:rgba(255,255,255,.75) !important}

/* v40d: METHODセクション非表示（指示によりセクションごと非表示。復活時はこの1行を削除） */
body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="METHOD"]{display:none !important}

/* v41: CASE STUDIESセクション非表示（復活時はこの1行を削除） */
body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="CASE STUDIES"]{display:none !important}

/* ==== v42: 診断結果を質問ボードの下に分割配置（1カラム化＋結果3列） ==== */
body.page-template-tmpl-lp-hitosagashi-php .flow-app{display:block !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-app .flow-board{margin-bottom:18px}
body.page-template-tmpl-lp-hitosagashi-php .flow-result{position:static !important;display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr));gap:2px 36px;align-items:start;padding:24px 28px !important;top:auto !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-result h3{grid-column:1/-1;margin:0 0 10px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-teaser{grid-column:1/-1}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line{padding:8px 0 !important;margin:0 !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-note{grid-column:1/-1;margin:10px 0 0 !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-cta-wrap{grid-column:1/-1;margin-top:14px !important}
@media (max-width:820px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-result{grid-template-columns:1fr;gap:0;padding:20px !important}
}

/* ==== v43: SP時 STRENGTHカードを横スワイプカルーセルに ==== */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="STRENGTH"] .grid.grid-3{display:flex !important;overflow-x:auto;scroll-snap-type:x mandatory;gap:14px;padding:4px 2px 16px;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="STRENGTH"] .grid.grid-3::-webkit-scrollbar{display:none}
  body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="STRENGTH"] .grid.grid-3 > .card{flex:0 0 80%;scroll-snap-align:center;min-width:0}
}

/* v43b: SPのDATAバンド ガタつき解消（1カラム・浮遊停止・折返し防止） */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .p1-numbers-grid{grid-template-columns:1fr !important;gap:26px !important}
  body.page-template-tmpl-lp-hitosagashi-php .p1-num-item{animation:none !important}
  body.page-template-tmpl-lp-hitosagashi-php .p1-num-item .n{white-space:nowrap}
  body.page-template-tmpl-lp-hitosagashi-php .p1-num-item .l{white-space:nowrap}
}

/* v43c: SP診断結果モーダル */
@keyframes flowModalIn{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
body.page-template-tmpl-lp-hitosagashi-php .flow-result-close{display:none}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-modal-open{position:fixed !important;inset:10px !important;z-index:2147483000;overflow-y:auto;display:block !important;box-shadow:0 20px 60px rgba(0,0,0,.45);animation:flowModalIn .3s ease;padding-top:52px !important}
  body.page-template-tmpl-lp-hitosagashi-php body.flow-modal-lock{overflow:hidden}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-modal-open .flow-result-close{display:flex;position:absolute;top:10px;right:10px;width:40px;height:40px;align-items:center;justify-content:center;background:rgba(255,255,255,.14);color:#fff;border:0;font-size:24px;border-radius:2px;z-index:2}
}

/* v44: 診断の地域・電話番号を必須化 */
body.page-template-tmpl-lp-hitosagashi-php .flow-field b .req{display:inline-block;background:#b3403a;color:#fff;font-size:16px;font-weight:800;padding:1px 8px;margin-left:8px;border-radius:2px;vertical-align:middle;line-height:1.5}
body.page-template-tmpl-lp-hitosagashi-php .flow-field input.is-error{border-color:#d64545 !important;box-shadow:0 0 0 3px rgba(214,69,69,.28) !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-fields-note.is-error{color:#ffb4b4 !important;font-weight:700}

/* ==== v45: 診断リデザイン（見やすさ・使いやすさ優先／v40圧縮の巻き戻し） ==== */
body.page-template-tmpl-lp-hitosagashi-php .flow-board{padding:24px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-screen{padding:22px 24px !important;min-height:340px;display:flex;flex-direction:column}
body.page-template-tmpl-lp-hitosagashi-php .flow-screen > p{margin:4px 0 16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-options{display:grid !important;grid-template-columns:1fr 1fr;gap:14px !important;margin-top:auto}
body.page-template-tmpl-lp-hitosagashi-php .flow-opt{padding:20px 22px !important;border:2px solid var(--line-strong,#d8d4c8) !important;min-height:84px;display:flex !important;flex-direction:column;justify-content:center;gap:4px;cursor:pointer;transition:border-color .2s,background .2s,transform .15s;background:#fff}
body.page-template-tmpl-lp-hitosagashi-php .flow-opt:hover{border-color:#b8923a !important;background:rgba(217,184,105,.07);transform:translateY(-2px)}
body.page-template-tmpl-lp-hitosagashi-php .flow-opt b{font-size:18px;font-weight:900;color:var(--green-900,#12281e)}
body.page-template-tmpl-lp-hitosagashi-php .flow-opt span,body.page-template-tmpl-lp-hitosagashi-php .flow-opt small{font-size:16px;color:#5c6a60}
body.page-template-tmpl-lp-hitosagashi-php .flow-map{margin-bottom:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-node{padding:12px 14px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-node b{font-size:16px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-actions{margin-top:14px}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-screen{min-height:0;padding:16px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-options{grid-template-columns:1fr;gap:10px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt{min-height:0;padding:16px 18px !important}
}

/* ==== v46: 診断結果をPCでもモーダル化（常設帯は非表示） ==== */
@keyframes flowModalIn2{from{opacity:0}to{opacity:1}}
body.page-template-tmpl-lp-hitosagashi-php .flow-result{display:none !important}
body.page-template-tmpl-lp-hitosagashi-php body.flow-modal-lock::before{content:"";position:fixed;inset:0;background:rgba(8,18,13,.55);z-index:2147482998}
body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-modal-open{display:grid !important;position:fixed !important;inset:auto !important;left:50% !important;top:50% !important;transform:translate(-50%,-50%);width:min(880px,calc(100vw - 28px));max-height:calc(100vh - 44px);overflow-y:auto;z-index:2147483000;box-shadow:0 30px 80px rgba(0,0,0,.5);animation:flowModalIn2 .28s ease;padding:30px 34px 28px !important}
body.page-template-tmpl-lp-hitosagashi-php body.flow-modal-lock{overflow:hidden}
body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-modal-open .flow-result-close{display:flex;position:absolute;top:12px;right:12px;width:42px;height:42px;align-items:center;justify-content:center;background:rgba(255,255,255,.14);color:#fff;border:0;font-size:24px;border-radius:2px;z-index:2;cursor:pointer}
body.page-template-tmpl-lp-hitosagashi-php #flowResultReopen{margin-left:10px}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-modal-open{width:calc(100vw - 20px);max-height:calc(100vh - 24px);padding:52px 18px 20px !important}
}

/* v46b: モーダルの暗幕/スクロールロック修正（bodyクラス連結） */
body.page-template-tmpl-lp-hitosagashi-php.flow-modal-lock{overflow:hidden !important}
body.page-template-tmpl-lp-hitosagashi-php.flow-modal-lock::before{content:"";position:fixed;inset:0;background:rgba(8,18,13,.55);z-index:2147482998}

/* v47: 診断モーダルの罫線・整列調整（ラベル直下に統一） */
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line{border-bottom:0 !important;padding:8px 0 12px !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line b{display:block;width:100%;padding-bottom:8px;margin-bottom:12px;border-bottom:2px solid rgba(217,184,105,.55)}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line span{display:block;line-height:1.8}
body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-modal-open{gap:4px 44px}
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-note{border-top:1px solid rgba(255,255,255,.16);padding-top:14px !important;margin-top:6px !important}

/* ==== v48: 中間幅(〜900px)のレスポンシブ整え ==== */
@media (max-width:900px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-card{grid-template-columns:1fr !important;display:block !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-photo{margin:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-photo img{width:100% !important;height:auto !important;display:block}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-inline{display:flex !important;flex-direction:column;align-items:center;gap:12px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-inline > *{width:min(420px,100%);justify-content:center;text-align:center;margin:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-tel{display:flex;justify-content:center}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-btns,body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-sub-btns{justify-content:center}
}
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .lp-title h2{font-size:26px !important;line-height:1.5 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lp-title h2 .mark{padding:2px 10px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-title{font-size:clamp(30px,8vw,40px) !important}
}

/* v49: トップバーの折返し修正（項目単位で改行・中央寄せ） */
body.page-template-tmpl-lp-hitosagashi-php .lpx-topbar{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;row-gap:2px;column-gap:14px;padding:8px 12px}
body.page-template-tmpl-lp-hitosagashi-php .lpx-topbar span{white-space:nowrap}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-topbar i{display:none}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-topbar{column-gap:18px}
}

/* v50: タイプライター行の高さ固定（FVの高さ変動防止） */
body.page-template-tmpl-lp-hitosagashi-php .lpx-typeline{display:block;min-height:2em}
@media (max-width:1000px){ body.page-template-tmpl-lp-hitosagashi-php .lpx-typeline{min-height:4em} }
@media (max-width:520px){ body.page-template-tmpl-lp-hitosagashi-php .lpx-typeline{min-height:6.4em} }

/* v51: CHECK見出しの改行制御＋SP文字サイズ */
body.page-template-tmpl-lp-hitosagashi-php .sp-only{display:none}
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .sp-only{display:inline}
  body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="CHECK"] .lp-title h2{font-size:24px !important;line-height:1.55 !important}
  body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="CHECK"] .lp-title h2 .mark{display:inline-block;margin-top:8px;padding:3px 12px;white-space:nowrap}
}
@media (max-width:380px){
  body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="CHECK"] .lp-title h2{font-size:22px !important}
}

/* ==== v52: 見出し折返しの全体対処（均等折返し＋SPサイズ統一） ==== */
body.page-template-tmpl-lp-hitosagashi-php h1,body.page-template-tmpl-lp-hitosagashi-php h2,body.page-template-tmpl-lp-hitosagashi-php h3,body.page-template-tmpl-lp-hitosagashi-php .lp-title h2,body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-body h2{text-wrap:balance}
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .lp-title h2{font-size:24px !important;line-height:1.55 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-body h2{font-size:24px !important;line-height:1.6 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lp-title h2 .mark{display:inline-block;margin-top:8px;padding:3px 12px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-lead{font-size:19px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-lead{text-wrap:balance}
}
@media (max-width:380px){
  body.page-template-tmpl-lp-hitosagashi-php .lp-title h2,body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-body h2{font-size:22px !important}
}

/* v52b: URGENT/LIMITED/NAMEONLY見出しの改行制御・SPコールアウト位置 */
body.page-template-tmpl-lp-hitosagashi-php .nowrap{white-space:nowrap}
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-callout{position:static !important;margin:14px auto 0 !important;display:table;transform:none !important;animation:none !important;opacity:1 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lp-title h2 .mark{white-space:nowrap}
}

/* v52c: グラフ見出し改行制御・出典の均等折返し */
@media (max-width:700px){ body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title{display:block;text-align:center} }
body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-src{text-wrap:balance}

/* v53: URGENT周辺のセンタリング調整 */
body.page-template-tmpl-lp-hitosagashi-php .lp-title h2 .nowrap{display:inline-block}
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="URGENT"] .lp-title h2 .mark{padding:2px 8px;margin-top:0}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-src{display:block;text-align:center !important;text-wrap:initial;font-size:16px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-title{justify-content:center}
}

/* v53b: SPグラフ拡大（フルブリード）・断られバッジ改行 */
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart{margin-left:-20px;margin-right:-20px}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-wrap{padding:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-wrap svg{width:100%;height:auto;display:block}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-refused{padding:12px 16px;line-height:1.7;text-align:center}
}

/* ==== v53c: 可能です。下線撤去＋文字出現 / balance副作用停止 / SPチップ縮小 ==== */
body.page-template-tmpl-lp-hitosagashi-php .lp-title h2{text-wrap:initial}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span{border-bottom:0 !important}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp span i{display:inline-block;font-style:normal;background:linear-gradient(180deg,#f0d896 0%,#d9b869 48%,#a8842f 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;opacity:0;transform:translateY(.45em) scale(.9);transition:opacity .5s ease,transform .65s cubic-bezier(.22,1,.36,1)}
body.page-template-tmpl-lp-hitosagashi-php .lpx-nameonly-stamp.in span i{opacity:1;transform:none}
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid{gap:8px !important;justify-content:center !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li{padding:10px 14px !important;gap:8px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li svg{width:18px !important;height:18px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li i{font-size:16px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li b{font-size:16px !important}
}

/* ==== v53d: SURVEYバッジ折れ修正 / VOICEを2/3サイズ自動カルーセル(SP) ==== */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .survey-card-head{display:flex;flex-wrap:wrap;align-items:center;gap:8px 10px}
  body.page-template-tmpl-lp-hitosagashi-php .survey-tag{white-space:nowrap;font-size:16px !important;padding:4px 10px !important}
  body.page-template-tmpl-lp-hitosagashi-php .survey-stars{white-space:nowrap;display:inline-flex;align-items:center;gap:2px}
  body.page-template-tmpl-lp-hitosagashi-php .voice-grid{display:flex !important;overflow-x:auto;scroll-snap-type:x mandatory;gap:12px;padding:4px 2px 14px;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  body.page-template-tmpl-lp-hitosagashi-php .voice-grid::-webkit-scrollbar{display:none}
  body.page-template-tmpl-lp-hitosagashi-php .voice-grid > .voice-card{flex:0 0 66%;scroll-snap-align:center;min-width:0}
  body.page-template-tmpl-lp-hitosagashi-php .voice-card-avatar{height:120px;overflow:hidden}
  body.page-template-tmpl-lp-hitosagashi-php .voice-card-avatar img{height:100%;width:auto;margin:0 auto;display:block}
  body.page-template-tmpl-lp-hitosagashi-php .voice-card-main{padding:12px 14px !important}
  body.page-template-tmpl-lp-hitosagashi-php .voice-card-main p{font-size:16px;line-height:1.8}
}

/* v55: SPのVOICEカード縦圧縮（本文3行・画像縮小） */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .voice-card-avatar{height:90px !important}
  body.page-template-tmpl-lp-hitosagashi-php .voice-card-main p{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:0}
  body.page-template-tmpl-lp-hitosagashi-php .voice-card-main{padding:10px 12px !important}
  body.page-template-tmpl-lp-hitosagashi-php .voice-card .voice-card-more,body.page-template-tmpl-lp-hitosagashi-php .voice-card-foot{padding:8px 12px !important}
}

/* v55b: PREPAREチップをパズル状に敷き詰め(SP) */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid{justify-content:stretch !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-info-grid li{flex:1 1 auto !important;justify-content:center !important;min-width:150px}
}

/* v55c: LIMITEDカードのゴースト文字撤去 */
body.page-template-tmpl-lp-hitosagashi-php .lpx-lq .bgword{display:none !important}

/* v55d: SPグラフ拡大（640px描画＋横スワイプ） */
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-wrap::-webkit-scrollbar{display:none}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-wrap svg{width:640px !important;max-width:none !important;height:auto}
}

/* v55e: 診断中の下部固定CTA退避 */
body.page-template-tmpl-lp-hitosagashi-php .floating{transition:opacity .25s ease,transform .25s ease}
body.page-template-tmpl-lp-hitosagashi-php .floating.is-hidden-by-diag{opacity:0;pointer-events:none;transform:translateY(24px)}
body.page-template-tmpl-lp-hitosagashi-php.flow-modal-lock .floating{opacity:0;pointer-events:none}

/* ==== v56: SP診断を1画面に圧縮 ==== */
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php #quick-request{padding-top:36px !important;padding-bottom:40px !important}
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .heading-cat{display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .lp-title{margin-bottom:8px !important}
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .lp-title h2{font-size:22px !important}
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .lp-title h2::after{margin-top:10px !important;height:4px !important}
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .lead{margin:2px 0 0 !important;font-size:16px !important}
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .flow-app{margin-top:12px}
  body.page-template-tmpl-lp-hitosagashi-php .flow-board{padding:12px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-map{grid-template-columns:1fr 1fr !important;gap:6px !important;margin-bottom:10px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node{padding:8px 4px !important;text-align:center}
  body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node b{font-size:16px !important;display:block;white-space:nowrap}
  body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node span{display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-screen{padding:12px !important;min-height:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-screen > p{margin:2px 0 10px !important;line-height:1.5 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-options{gap:8px !important;margin-top:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt{padding:12px 14px !important;min-height:0 !important;gap:2px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt b{font-size:17px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-actions{margin-top:10px !important}
}

/* v57: SP診断の選択肢を2列・全件1画面表示 */
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .lp-title .en{display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .lp-title h2{font-size:20px !important}
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .lp-title h2::after{margin-top:8px !important}
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .lead{display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-screen > p{display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-options{display:grid !important;grid-template-columns:1fr 1fr !important;gap:8px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt{padding:12px 10px !important;min-height:56px !important;align-items:center;text-align:center;justify-content:center !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt b{font-size:16px !important;line-height:1.4}
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt span,body.page-template-tmpl-lp-hitosagashi-php .flow-opt small{display:none !important}
}

/* v57b: 選択肢ラベルの語中折れ防止 */
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt{padding:12px 6px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt b{word-break:keep-all;line-break:strict}
}

/* v58: SP予算画面のヒント圧縮（1画面維持） */
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-hint{padding:8px 12px !important;margin:0 0 8px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-hint .flow-hint-col + .flow-hint-col{display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-hint b{font-size:16px !important;margin:0 0 4px !important;display:block}
  body.page-template-tmpl-lp-hitosagashi-php .flow-hint .flow-fee-list{margin:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-fee-list li{padding:2px 0 !important;line-height:1.5 !important;font-size:16px !important}
}

/* ==== v59: 第5問(連絡先)ステップ ==== */
body.page-template-tmpl-lp-hitosagashi-php .flow-map{grid-template-columns:repeat(5,1fr) !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-see-result{grid-column:1/-1;justify-content:center;margin-top:4px}
body.page-template-tmpl-lp-hitosagashi-php #flowOptions .flow-fields{grid-column:1/-1;background:rgba(18,40,30,.04);padding:14px;margin:0 !important}
body.page-template-tmpl-lp-hitosagashi-php #flowOptions .flow-field b{color:var(--green-900,#12281e) !important}
body.page-template-tmpl-lp-hitosagashi-php #flowOptions .flow-fields-note{color:#5c6a60 !important}
body.page-template-tmpl-lp-hitosagashi-php #flowOptions .flow-fields-note.is-error{color:#b3403a !important}
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-map{grid-template-columns:1fr 1fr !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node:nth-child(5){grid-column:1/-1}
}

/* ==== v60: SP診断結果モーダルを1画面圧縮 ==== */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-modal-open{padding:42px 16px 14px !important;max-height:calc(100vh - 16px) !important;width:calc(100vw - 16px) !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result h3{margin:0 0 2px !important;font-size:17px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line{padding:3px 0 5px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line b{padding-bottom:3px !important;margin-bottom:5px !important;font-size:16px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line span{line-height:1.45 !important;font-size:16px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-fee-list li{font-size:16px !important;line-height:1.4 !important;padding:1px 0 !important;margin:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-need-list{display:flex;flex-wrap:wrap;gap:2px 14px;margin:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-need-list li{line-height:1.45 !important;padding:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-note{padding-top:6px !important;margin:2px 0 0 !important;line-height:1.45 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-cta-wrap{margin-top:8px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-cta-toggle{padding:12px 10px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-teaser{display:none !important}
}

/* v61: 相談方法オープン時も1画面（あると◎等を自動的に畳む） */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-cta-open .flow-line:has(#flowNeed){display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-cta-open .flow-note{display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-cta-open .flow-line:has(#flowRoute){display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-cta-label{margin:6px 0 4px !important;font-size:16px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-cta-btns{gap:6px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-cta-btns .btn{padding:12px 4px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-cta-group{margin-top:4px}
}

/* v62: 結果モーダルから料金目安を撤去（予算ステップ・メール送信には残る） */
body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line:has(#flowFee){display:none !important}

/* v62b: 「診断結果を見る」再表示ボタンの崩れ修正 */
body.page-template-tmpl-lp-hitosagashi-php .flow-actions{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
body.page-template-tmpl-lp-hitosagashi-php #flowResultReopen{flex:1 1 100%;margin:4px 0 0 !important;justify-content:center;white-space:nowrap;overflow:visible;padding:13px 10px}

/* v63: CTAバナー見出しの折返し制御(SP) */
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-title{word-break:keep-all;line-break:loose;text-wrap:balance;font-size:19px !important;line-height:1.7 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-sub{text-wrap:balance}
}

/* v63b: バナーkeep-all撤回（明示br方式へ） */
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-title{word-break:normal !important;line-break:auto !important;text-wrap:initial !important}
}

/* v63c: バナー3行目のあふれ対策 */
@media (max-width:700px){ body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner-title{font-size:17.5px !important;letter-spacing:.01em !important} }

/* v65: 「この内容で相談する」で表示が変わる挙動を撤回＋地域/電話行 */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-cta-open .flow-line:has(#flowNeed){display:block !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-cta-open .flow-note{display:block !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-cta-open .flow-line:has(#flowRoute){display:block !important}
}

/* v65b: 全項目表示のまま1画面に収める微調整 */
@media (max-width:640px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-result.is-modal-open{padding:34px 14px 10px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result h3{font-size:16px !important;margin:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line{padding:2px 0 3px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line b{padding-bottom:2px !important;margin-bottom:3px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-line span{line-height:1.35 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-need-list li{line-height:1.35 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-note{padding-top:4px !important;font-size:16px !important;line-height:1.35 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-result .flow-cta-wrap{margin-top:5px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-cta-toggle{padding:11px 8px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-cta-btns .btn{padding:10px 4px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-cta-label{margin:5px 0 3px !important}
}

/* ==== v68: CONTACT相談方法をバナー化 ==== */
body.page-template-tmpl-lp-hitosagashi-php .contact-methods{display:grid;gap:14px}
body.page-template-tmpl-lp-hitosagashi-php .contact-method{display:grid !important;grid-template-columns:54px 1fr;grid-auto-rows:min-content;column-gap:16px;align-items:center;text-align:left !important;padding:18px 20px !important;border:0 !important;border-radius:4px;position:relative;overflow:hidden;box-shadow:0 10px 24px rgba(18,40,30,.18);background:linear-gradient(135deg,#b8923a,#d9b869) !important;color:#fff !important;transition:transform .2s ease,box-shadow .2s ease}
body.page-template-tmpl-lp-hitosagashi-php .contact-method:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(18,40,30,.26)}
body.page-template-tmpl-lp-hitosagashi-php .contact-method.is-line{background:#06C755 !important}
body.page-template-tmpl-lp-hitosagashi-php .contact-method.is-mail{background:linear-gradient(135deg,#12281e,#1d4630) !important}
body.page-template-tmpl-lp-hitosagashi-php .contact-method::after{content:"";position:absolute;right:20px;top:50%;width:10px;height:10px;border-top:2.5px solid rgba(255,255,255,.9);border-right:2.5px solid rgba(255,255,255,.9);transform:translateY(-50%) rotate(45deg)}
body.page-template-tmpl-lp-hitosagashi-php .contact-method .cm-icon{grid-row:1/4;width:54px;height:54px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(255,255,255,.18) !important;color:#fff !important;margin:0 !important}
body.page-template-tmpl-lp-hitosagashi-php .contact-method .cm-icon svg{width:26px;height:26px}
body.page-template-tmpl-lp-hitosagashi-php .contact-method .cm-label{grid-column:2;font-size:16px !important;letter-spacing:.08em;color:rgba(255,255,255,.9) !important;margin:0 !important}
body.page-template-tmpl-lp-hitosagashi-php .contact-method .cm-main{grid-column:2;font-size:22px !important;font-weight:900;color:#fff !important;margin:0 !important;line-height:1.3}
body.page-template-tmpl-lp-hitosagashi-php .contact-method .cm-sub{grid-column:2;font-size:16px !important;color:rgba(255,255,255,.85) !important;margin:0 !important}
@media (min-width:820px){ body.page-template-tmpl-lp-hitosagashi-php .contact-methods{grid-template-columns:repeat(3,1fr)} body.page-template-tmpl-lp-hitosagashi-php .contact-method{grid-template-columns:48px 1fr;padding:20px 22px !important} }

/* v68b: 診断リード文を復活（SPも表示） */
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php #quick-request .lead{display:block !important;font-size:16px !important;margin:6px 0 0 !important;line-height:1.6 !important;text-wrap:balance}
}

/* ==== v77: フォーム3段階フロー（入力→確認→完了） ==== */
.lpx-form-steps{list-style:none;margin:0 auto 26px;padding:0;display:flex;justify-content:center;max-width:620px;counter-reset:none}
.lpx-form-steps li{position:relative;display:flex;flex:1;flex-direction:column;align-items:center;gap:7px;color:#809087;font-size:13px;font-weight:700;letter-spacing:.05em}
.lpx-form-steps li:not(:last-child)::after{content:"";position:absolute;z-index:0;top:17px;left:62%;width:76%;height:2px;background:#d9ddd8}
.lpx-form-steps li b{position:relative;z-index:1;display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#e3e7e3;color:#6d7e75;font-size:15px}
.lpx-form-steps li.is-current{color:#0d392d}
.lpx-form-steps li.is-current b{background:#0d392d;color:#fff;box-shadow:0 0 0 5px rgba(197,156,65,.22)}
.lpx-form-steps li.is-done{color:#8a6a20}
.lpx-form-steps li.is-done b{background:#c59c41;color:#fff}
.lpx-form-steps li.is-done:not(:last-child)::after{background:#c59c41}
body.page-template-tmpl-lp-hitosagashi-php #lpx-contact .lpx-form-steps{margin-top:30px}

body.lpx-form-page{margin:0;min-height:100vh;background:#f7f4ea;color:#14372d;font-family:-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif}
body.lpx-form-page *{box-sizing:border-box}
.lpx-form-page-header{position:relative;z-index:2;min-height:80px;padding:13px max(22px,calc((100vw - 1120px)/2));display:flex;align-items:center;justify-content:space-between;gap:20px;background:#fff;border-top:3px solid #c59c41;box-shadow:0 6px 22px rgba(19,55,45,.08)}
.lpx-form-page-header>a:first-child{display:flex;align-items:center;gap:11px;color:#14372d;text-decoration:none}
.lpx-form-page-header>a:first-child>span:last-child{display:flex;flex-direction:column}
.lpx-form-page-header b{font-size:19px;line-height:1.2}
.lpx-form-page-header small{font-size:10px;letter-spacing:.1em;color:#718078}
.lpx-form-logo-mark{display:grid;place-items:center;width:45px;height:45px;border:2px solid #c59c41;border-radius:50%;color:#a57d22;font-family:Georgia,serif;font-size:26px;font-weight:700}
.lpx-form-page-tel{display:flex;flex-direction:column;align-items:flex-end;color:#14372d;text-decoration:none}
.lpx-form-page-tel b{font-size:22px;letter-spacing:.03em}
.lpx-form-page-main{width:min(920px,calc(100% - 36px));margin:0 auto;padding:54px 0 80px}
.lpx-confirm-card,.lpx-thanks-card{background:#fff;border-top:4px solid #0d392d;border-radius:5px;box-shadow:0 14px 42px rgba(20,55,45,.1);padding:46px 54px}
.lpx-confirm-card>.en,.lpx-thanks-card>.en{text-align:center;margin:0 0 10px;color:#b1872c;font-size:13px;font-weight:800;letter-spacing:.24em}
.lpx-confirm-card h1,.lpx-thanks-card h1{text-align:center;margin:0;color:#14372d;font-size:clamp(24px,4vw,34px);line-height:1.45}
.lpx-confirm-lead,.lpx-thanks-lead{max-width:670px;margin:14px auto 32px;text-align:center;color:#5e6e66;line-height:1.9}
.lpx-confirm-list{margin:0;border-top:1px solid #dce2de}
.lpx-confirm-list>div{display:grid;grid-template-columns:190px 1fr;border-bottom:1px solid #dce2de}
.lpx-confirm-list dt{padding:17px 20px;background:#f1f5f2;font-weight:800;color:#24483e}
.lpx-confirm-list dd{margin:0;padding:17px 22px;line-height:1.8;overflow-wrap:anywhere}
.lpx-confirm-list .is-message dd{white-space:normal}
.lpx-confirm-actions,.lpx-thanks-actions{display:flex;justify-content:center;gap:14px;margin-top:34px}
.lpx-confirm-actions .btn,.lpx-thanks-actions .btn{min-width:220px;text-decoration:none}
.lpx-submit-note{text-align:center;margin:15px 0 0;color:#718078;font-size:13px}
.lpx-form-page-hurry{text-align:center;margin:20px 0 0;padding:14px;border:1px solid #e0d3ad;border-radius:7px;background:#f2ead3;font-weight:700}
.lpx-form-page-hurry a{color:#8a681c}
.lpx-thanks-card{text-align:center}
.lpx-thanks-icon{display:grid;place-items:center;width:72px;height:72px;margin:0 auto 20px;border-radius:50%;background:#0d392d;color:#fff;font-size:40px;font-weight:700}
.lpx-thanks-card.is-error{border-color:#a44336}
.lpx-thanks-card.is-error .lpx-thanks-icon{background:#a44336}
.lpx-thanks-reference{display:inline-block;margin:-12px auto 22px;padding:8px 14px;border-radius:4px;background:#f4ecd6;color:#66511f;font-size:13px;letter-spacing:.03em}
.lpx-thanks-info{max-width:650px;margin:30px auto 0;padding:22px 25px;text-align:left;background:#f1f5f2;border-radius:6px;line-height:1.8}
.lpx-thanks-info b{display:block;margin-bottom:5px}
.lpx-thanks-info p{margin:0;color:#52655c}
.lpx-thanks-info span{font-weight:700;color:#14372d}

@media (max-width:640px){
  .lpx-form-page-header{min-height:66px;padding:9px 14px}
  .lpx-form-logo-mark{width:38px;height:38px;font-size:21px}
  .lpx-form-page-header b{font-size:15px}
  .lpx-form-page-header small{font-size:7px}
  .lpx-form-page-tel small{display:none}
  .lpx-form-page-tel b{font-size:14px}
  .lpx-form-page-main{width:min(100% - 24px,920px);padding:34px 0 54px}
  .lpx-form-steps{margin-bottom:20px}
  .lpx-form-steps li{font-size:11px;gap:6px}
  .lpx-form-steps li b{width:30px;height:30px;font-size:13px}
  .lpx-form-steps li:not(:last-child)::after{top:14px}
  .lpx-confirm-card,.lpx-thanks-card{padding:30px 18px}
  .lpx-confirm-card h1,.lpx-thanks-card h1{font-size:23px}
  .lpx-confirm-lead,.lpx-thanks-lead{margin-bottom:23px;font-size:14px;line-height:1.8}
  .lpx-confirm-list>div{display:block}
  .lpx-confirm-list dt{padding:10px 13px;font-size:13px}
  .lpx-confirm-list dd{padding:13px;font-size:14px}
  .lpx-confirm-actions,.lpx-thanks-actions{flex-direction:column-reverse;gap:10px;margin-top:25px}
  .lpx-confirm-actions .btn,.lpx-thanks-actions .btn{width:100%;min-width:0}
  .lpx-thanks-info{padding:17px;text-align:left;font-size:14px}
  .lpx-form-page-hurry{font-size:13px;line-height:1.6}
}

/* ==== v78: CTAカラーを役割別に統一 ==== */
body.page-template-tmpl-lp-hitosagashi-php .btn-gold,
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-tel,
body.page-template-tmpl-lp-hitosagashi-php .contact-method[href^="tel:"]{
  background:#d1a94f !important;
  border-color:#d1a94f !important;
  color:#fff !important;
}
body.page-template-tmpl-lp-hitosagashi-php .btn-primary,
body.page-template-tmpl-lp-hitosagashi-php .btn-white,
body.page-template-tmpl-lp-hitosagashi-php .contact-method.is-mail{
  background:#123f32 !important;
  border-color:#123f32 !important;
  color:#fff !important;
}
body.page-template-tmpl-lp-hitosagashi-php .btn-line,
body.page-template-tmpl-lp-hitosagashi-php .contact-method.is-line{
  background:#06c755 !important;
  border-color:#06c755 !important;
  color:#fff !important;
}
body.page-template-tmpl-lp-hitosagashi-php .btn-gold:hover,
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-tel:hover{background:#bd943b !important;border-color:#bd943b !important;color:#fff !important}
body.page-template-tmpl-lp-hitosagashi-php .btn-primary:hover,
body.page-template-tmpl-lp-hitosagashi-php .btn-white:hover{background:#0c3026 !important;border-color:#0c3026 !important;color:#fff !important}
body.page-template-tmpl-lp-hitosagashi-php .btn-line:hover{background:#05b64d !important;border-color:#05b64d !important;color:#fff !important}

/* ==== v79: FVの高さを従来比約1.5倍へ ==== */
body.page-template-tmpl-lp-hitosagashi-php .lpx-hero--photo{
  min-height:880px;
  display:flex;
  align-items:center;
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-hero--photo>.container{width:100%}
@media (max-width:760px){
  body.page-template-tmpl-lp-hitosagashi-php .lpx-hero--photo{min-height:560px}
}

/* ==== v80: 診断の現在ステップと入力画面見出しを明確化 ==== */
body.page-template-tmpl-lp-hitosagashi-php .flow-current-step{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
  margin:0 0 18px;
  padding:12px 14px;
  border-left:5px solid #d1a94f;
  background:#123f32;
  color:#fff;
}
body.page-template-tmpl-lp-hitosagashi-php .flow-current-step span{
  color:#d9b869;
  font-family:"Jost",sans-serif;
  font-size:13px;
  font-weight:900;
  letter-spacing:.12em;
  white-space:nowrap;
}
body.page-template-tmpl-lp-hitosagashi-php .flow-current-step strong{font-size:18px;line-height:1.4}
body.page-template-tmpl-lp-hitosagashi-php .flow-current-step em{
  padding:4px 9px;
  border-radius:999px;
  background:#d1a94f;
  color:#123f32;
  font-size:12px;
  font-style:normal;
  font-weight:900;
  white-space:nowrap;
}
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node{position:relative;overflow:hidden}
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node.is-active{
  border:3px solid #d1a94f !important;
  background:#123f32 !important;
  box-shadow:0 8px 22px rgba(18,63,50,.22) !important;
  transform:translateY(-2px);
}
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node.is-active b,
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node.is-active span{color:#fff !important}
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node.is-active::after{
  content:"入力中";
  position:absolute;
  top:0;
  right:0;
  padding:3px 7px;
  background:#d1a94f;
  color:#123f32;
  font-size:10px;
  font-weight:900;
  line-height:1.3;
}
body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node.is-done:not(.is-active)::after{
  content:"✓ 完了";
  position:absolute;
  top:5px;
  right:7px;
  color:#80601a;
  font-size:11px;
  font-weight:900;
}
@media (max-width:700px){
  body.page-template-tmpl-lp-hitosagashi-php .flow-current-step{grid-template-columns:1fr auto;gap:4px 8px;margin-bottom:10px;padding:9px 10px}
  body.page-template-tmpl-lp-hitosagashi-php .flow-current-step span{grid-column:1;font-size:11px}
  body.page-template-tmpl-lp-hitosagashi-php .flow-current-step strong{grid-column:1;font-size:16px}
  body.page-template-tmpl-lp-hitosagashi-php .flow-current-step em{grid-column:2;grid-row:1/3;font-size:10px}
  body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node.is-active::after,
  body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node.is-done:not(.is-active)::after{display:none}
}

/* 金色CTA帯内のみ、電話ボタンを濃緑にして背景とのメリハリを確保 */
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner .lpx-cta-tel{
  background:#123f32 !important;
  border-color:#123f32 !important;
  color:#fff !important;
  box-shadow:0 10px 24px rgba(18,40,30,.24);
}
body.page-template-tmpl-lp-hitosagashi-php .lpx-cta-banner .lpx-cta-tel:hover{
  background:#0c3026 !important;
  border-color:#0c3026 !important;
}

/* ==== v81: iPhone 16 Pro Max / 16 / SE 横幅の総合調整 ==== */
html{max-width:100%;overflow-x:clip}
body.page-template-tmpl-lp-hitosagashi-php{max-width:100%;overflow-x:clip}
body.page-template-tmpl-lp-hitosagashi-php img,
body.page-template-tmpl-lp-hitosagashi-php video,
body.page-template-tmpl-lp-hitosagashi-php iframe{max-width:100%}

@media (max-width:700px){
  /* 2段化していた届出帯を省き、ヘッダーを1段に固定 */
  body.page-template-tmpl-lp-hitosagashi-php .lpx-topbar{display:none !important}
  body.page-template-tmpl-lp-hitosagashi-php .site-sticky{top:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .container{
    width:100% !important;
    max-width:none !important;
    padding:8px 12px !important;
    display:grid !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    gap:8px !important;
  }
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .logo-wrap,
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .logo,
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .name{min-width:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .logo{gap:7px !important}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .logo-img{width:40px !important;height:40px !important;object-fit:contain}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .name{font-size:14px !important;line-height:1.15;white-space:nowrap}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .name small{font-size:7px !important;letter-spacing:.08em;overflow:hidden;text-overflow:ellipsis}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header-cta{min-width:0;gap:0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-header-diagnosis{width:auto;min-width:108px;min-height:40px;padding:9px 11px;font-size:12px !important;justify-content:center}

  /* セクション余白と長文の不自然な分断を抑える */
  body.page-template-tmpl-lp-hitosagashi-php main>.section{padding-top:52px;padding-bottom:52px}
  body.page-template-tmpl-lp-hitosagashi-php .lp-title{margin-bottom:24px}
  body.page-template-tmpl-lp-hitosagashi-php .lp-title h2,
  body.page-template-tmpl-lp-hitosagashi-php .lpx-intro-body h2{overflow-wrap:anywhere}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-lead{
    max-width:520px;
    text-align:center;
    font-size:17px !important;
    line-height:1.9;
    line-break:strict;
    word-break:auto-phrase;
    text-wrap:balance;
  }
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-lead>span{display:block;text-wrap:balance}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-lq-lead b{background:none;color:#d9b869;padding:0}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-no-break{white-space:normal}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-full{padding:52px 18px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-points{margin:24px auto 20px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-points>div{padding:16px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-limited-cta{width:100%;padding:14px 10px;text-align:center;justify-content:center;font-size:14px;line-height:1.45}

  /* URGENT：640px固定SVGと過大な濃緑帯をスマホ幅へ戻す */
  body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="URGENT"]{width:100% !important;margin-left:0 !important;margin-right:0 !important;padding-top:52px !important}
  body.page-template-tmpl-lp-hitosagashi-php section[data-watermark="URGENT"]>.container{width:100% !important;padding-left:18px !important;padding-right:18px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart{margin-left:0 !important;margin-right:0 !important;padding:16px 0 !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-wrap{overflow:hidden !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-chart-wrap svg{width:100% !important;max-width:100% !important;height:auto !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-risk{
    width:100% !important;
    margin:34px 0 0 !important;
    padding:42px 18px 48px !important;
  }
  body.page-template-tmpl-lp-hitosagashi-php .lpx-risk .lpx-risk-sum{font-size:16px !important;line-height:1.8}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-risk .lpx-risk-sum b{font-size:20px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-risk .lpx-risk-title{font-size:23px !important;line-height:1.75;margin-bottom:0}

  /* 診断：長い選択肢を1列にして枠外へのはみ出しを禁止 */
  body.page-template-tmpl-lp-hitosagashi-php .flow-board,
  body.page-template-tmpl-lp-hitosagashi-php .flow-screen,
  body.page-template-tmpl-lp-hitosagashi-php .flow-options,
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt{min-width:0;max-width:100%}
  body.page-template-tmpl-lp-hitosagashi-php .flow-options{grid-template-columns:minmax(0,1fr) !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt{width:100%;padding:13px 14px !important;text-align:left;align-items:flex-start;overflow:hidden}
  body.page-template-tmpl-lp-hitosagashi-php .flow-opt b{width:100%;font-size:15px !important;white-space:normal;word-break:normal;overflow-wrap:anywhere;line-height:1.5}
  body.page-template-tmpl-lp-hitosagashi-php .flow-current-step strong{min-width:0;overflow-wrap:anywhere}

  /* 固定CTA：Safariの表示領域を塞がない高さへ圧縮 */
  body.page-template-tmpl-lp-hitosagashi-php{padding-bottom:96px !important}
  body.page-template-tmpl-lp-hitosagashi-php .floating{
    width:100% !important;
    min-height:0 !important;
    gap:4px !important;
    padding:4px 5px calc(4px + env(safe-area-inset-bottom,0px)) !important;
    overflow:hidden !important;
  }
  body.page-template-tmpl-lp-hitosagashi-php .floating .btn{
    min-width:0 !important;
    min-height:42px !important;
    height:42px !important;
    padding:7px 4px !important;
    gap:5px !important;
    font-size:13px !important;
    line-height:1.2 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
  }
  body.page-template-tmpl-lp-hitosagashi-php .floating .btn span{display:inline !important;min-width:0;white-space:nowrap}
  body.page-template-tmpl-lp-hitosagashi-php .floating .btn svg{width:15px !important;height:15px !important;flex:none}

  /* モーダルはSafariの上下バーを除いた領域内で完結 */
  body.page-template-tmpl-lp-hitosagashi-php .reason-modal-box{width:calc(100vw - 24px);max-height:calc(100dvh - 20px);padding:32px 20px 20px}
  body.page-template-tmpl-lp-hitosagashi-php .reason-modal-ic{width:60px;height:60px;margin-bottom:10px}
  body.page-template-tmpl-lp-hitosagashi-php .reason-modal-box h3{font-size:19px !important;line-height:1.5}
  body.page-template-tmpl-lp-hitosagashi-php .reason-modal-box>p{font-size:14px !important;line-height:1.75 !important}
}

@media (max-width:380px){
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .container{padding-left:8px !important;padding-right:8px !important}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .logo-img{width:34px !important;height:34px !important}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .name{font-size:12px !important}
  body.page-template-tmpl-lp-hitosagashi-php .sec-header .name small{font-size:6px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-header-diagnosis{min-width:96px;padding:8px 7px;font-size:11px !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-title{font-size:28px !important;letter-spacing:.02em !important}
  body.page-template-tmpl-lp-hitosagashi-php .lpx-hero .lpx-lead{font-size:14px !important;line-height:1.8 !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-map .flow-node b{font-size:13px !important}
  body.page-template-tmpl-lp-hitosagashi-php .flow-current-step{grid-template-columns:minmax(0,1fr) auto}
  body.page-template-tmpl-lp-hitosagashi-php .floating .btn{font-size:12px !important}
}

/* v70: 診断のメールアドレス欄（メール相談時のみ必須） */
body.page-template-tmpl-lp-hitosagashi-php .flow-field b .req.opt{background:#6d7e75;font-size:13px;padding:1px 8px;letter-spacing:.02em}

/* v71: 入力中は下部固定CTAを退避 */
body.page-template-tmpl-lp-hitosagashi-php .floating.is-hidden-by-input{opacity:0;pointer-events:none;transform:translateY(24px)}

/* 指示による非表示（復活させる場合はこのブロックを削除） */
body.is-lp section[data-watermark="PREPARE"]{display:none !important}      /* ご相談前に揃えておきたい情報 */
body.is-lp section[data-watermark="SUCCESS"]{display:none !important}      /* 顧客満足度ドーナツ */
body.is-lp section[data-watermark="VOICE"]{display:none !important}        /* お客様の声 */
body.is-lp section[data-watermark="REVIEW"]{display:none !important}       /* ご依頼者の口コミ */
body.is-lp section[data-watermark="COLUMN"]{display:none !important}       /* お役立ちコラム */

/* USP訴求のためFVチップを表示（従来は非表示だった） */


@media (max-width:700px){  }

/* 追従CTA: 「無料」追記で文字が増えたため幅と文字サイズを調整 */
@media (min-width:701px){
  body.is-lp .floating{width:auto}
  body.is-lp .floating .btn{width:200px;padding-left:12px;padding-right:12px;font-size:14.5px;white-space:nowrap}
  body.is-lp .floating .btn span{overflow:visible}
}
@media (max-width:700px){
  body.is-lp .floating .btn{font-size:14px !important;padding:12px 4px !important;white-space:nowrap}
}

/* 追従CTA(SP): 3ボタンとも文言が収まるように */
@media (max-width:700px){
  body.is-lp .floating{display:grid !important;grid-template-columns:1fr 1fr;gap:6px}
  body.is-lp .floating .btn{width:auto !important;min-width:0;font-size:13px !important;padding:12px 2px !important;letter-spacing:0 !important;overflow:visible}
  body.is-lp .floating .btn:last-child{grid-column:1/-1}
  body.is-lp .floating .btn svg{width:15px;height:15px;flex:0 0 auto}
  body.is-lp .floating .btn span{overflow:visible;text-overflow:clip}
}
@media (max-width:360px){ body.is-lp .floating .btn{font-size:12px !important} }

/* FVのUSPチップ */
body.is-lp .lpx-usp{display:flex;flex-wrap:wrap;gap:8px;list-style:none;margin:14px 0 0;padding:0}
body.is-lp .lpx-usp li{background:linear-gradient(180deg,#d9b869,#b8923a);color:#12281e;font-weight:900;font-size:15px;padding:9px 16px;border-radius:2px;letter-spacing:.02em}
@media (max-width:700px){ body.is-lp .lpx-usp li{font-size:13px;padding:7px 11px} }

/* USPチップとCTAボタンの間隔 */
body.is-lp .lpx-usp{margin-bottom:20px}
body.is-lp .lpx-usp + .btn,body.is-lp .lpx-usp ~ .lpx-hero-cta{margin-top:8px}
/* 追従CTA(PC): メールの文字切れ対策 */
@media (min-width:701px){ body.is-lp .floating .btn{width:210px;font-size:14px} }

/* FVのオーバーレイを撤去し、写真をそのまま見せる */
body.is-lp .lpx-hero--photo::before,
body.is-lp .lpx-hero--photo::after{display:none !important}
/* 文字の可読性は影で確保（背景を汚さない） */
body.is-lp .lpx-hero--photo .lpx-title,
body.is-lp .lpx-hero--photo .lpx-lead,
body.is-lp .lpx-hero--photo .lpx-typeline,
body.is-lp .lpx-hero--photo .lpx-hero-note{text-shadow:0 2px 14px rgba(6,20,14,.75),0 1px 3px rgba(6,20,14,.6)}

/* FV文字色: 白背景の写真に合わせて濃色へ（シェードなしで読めるように） */
body.is-lp .lpx-hero--photo .lpx-title{color:#12281e !important;text-shadow:0 1px 0 rgba(255,255,255,.6) !important}
body.is-lp .lpx-hero--photo .lpx-title em{color:#8a6a20 !important;text-shadow:0 1px 0 rgba(255,255,255,.6) !important}
body.is-lp .lpx-hero--photo .lpx-lead{color:#1d3b2c !important;font-weight:600;text-shadow:0 1px 0 rgba(255,255,255,.7) !important}
body.is-lp .lpx-hero--photo .lpx-typeline,
body.is-lp .lpx-hero--photo .lpx-hero-note{color:#3c5348 !important;text-shadow:0 1px 0 rgba(255,255,255,.7) !important}
body.is-lp .lpx-hero--photo .lpx-scroll-cue{color:#3c5348 !important}
body.is-lp .lpx-hero--photo .lpx-scroll-cue span{background:linear-gradient(180deg,#b8923a,transparent) !important}

/* FV(SP): 人物と文字が重ならないよう背景位置を調整し、文字の下地を確保 */
@media (max-width:700px){
  body.is-lp .lpx-hero--photo .lpx-hero-bg{background-position:78% center !important;background-size:cover !important}
  body.is-lp .lpx-hero--photo::before{
    display:block !important;
    background:linear-gradient(180deg,rgba(255,255,255,.92) 0%,rgba(255,255,255,.86) 46%,rgba(255,255,255,.35) 72%,rgba(255,255,255,0) 100%) !important;
  }
  body.is-lp .lpx-hero--photo .lpx-title,
  body.is-lp .lpx-hero--photo .lpx-lead{text-shadow:none !important}
}

/* リスク見出しの改行制御（「ます！」だけが次行に落ちるのを防ぐ） */
body.is-lp .lpx-risk-title .type-line{word-break:keep-all;line-break:strict}
@media (max-width:700px){ body.is-lp .lpx-risk .lpx-risk-title{font-size:19px !important;line-height:1.8 !important} }

/* ==========================================================
   日本語の改行を整える（行末に1〜3文字だけ残るのを防ぐ）
   ========================================================== */
@media (max-width:820px){
  body.is-lp .lpx-intro-eyebrow,
  body.is-lp .lp-sub,
  body.is-lp .lpx-lead,
  body.is-lp .lawyer-lead,
  body.is-lp .faq-q,
  body.is-lp .faq-a,
  body.is-lp .result,
  body.is-lp .lpx-checklist li,
  body.is-lp .lpx-jisseki dd,
  body.is-lp .reason-block p,
  body.is-lp .lpx-reason-card p,
  body.is-lp .card p,
  body.is-lp .lpx-after-card li,
  body.is-lp .lpx-flow-body p,
  body.is-lp .company-table td{
    text-wrap:pretty;              /* 最終行が極端に短くなるのを防ぐ */
    word-break:normal;
    overflow-wrap:anywhere;
    line-break:strict;             /* 句読点・小書き文字の行頭禁止 */
  }
  /* 見出し系は語のまとまりを優先 */
  body.is-lp .lp-title h2,
  body.is-lp .faq-q,
  body.is-lp .lawyer-lead{
    text-wrap:balance;
  }
}

/* 日本語の改行整形を本文全体へ適用（見出し・ボタン・数値は除外） */
@media (max-width:820px){
  body.is-lp p,
  body.is-lp li,
  body.is-lp dd,
  body.is-lp td,
  body.is-lp .faq-q,
  body.is-lp .faq-a{
    text-wrap:pretty;
    word-break:normal;
    overflow-wrap:anywhere;
    line-break:strict;
  }
  /* 例外: レイアウトが崩れると困るもの */
  body.is-lp .flow-opt b,
  body.is-lp .lpx-points li,
  body.is-lp .lpx-usp li,
  body.is-lp .btn,
  body.is-lp .p1-num-item .n,
  body.is-lp .p1-num-item .l,
  body.is-lp .lpx-topbar span,
  body.is-lp .office-addr,
  body.is-lp .foot-line{
    text-wrap:initial;
    overflow-wrap:normal;
  }
}

/* CTAボタンの文言は必ず1行（「メールで無料相談」等の折返し防止） */
body.is-lp .btn,
body.is-lp .btn span,
body.is-lp .lpx-cta-banner-btns .btn,
body.is-lp .lpx-cta-banner-sub-btns .btn,
body.is-lp .contact-method .cm-main,
body.is-lp .floating .btn span{
  white-space:nowrap !important;
  text-wrap:initial !important;
  overflow-wrap:normal !important;
}
@media (max-width:820px){
  body.is-lp .lpx-cta-banner-btns,
  body.is-lp .lpx-cta-banner-sub-btns{flex-wrap:wrap;justify-content:center;gap:8px}
  body.is-lp .lpx-cta-banner-btns .btn,
  body.is-lp .lpx-cta-banner-sub-btns .btn{font-size:15px;padding:13px 16px}
}
@media (max-width:420px){
  body.is-lp .lpx-cta-banner-btns .btn,
  body.is-lp .lpx-cta-banner-sub-btns .btn{font-size:14px;padding:12px 12px}
}

/* 短い見出し・項目が2行に折れるのを抑える（SP） */
@media (max-width:820px){
  body.is-lp .faq-q{font-size:16px !important;line-height:1.7 !important;letter-spacing:0 !important}
  body.is-lp .lpx-checklist li{font-size:16px !important;letter-spacing:0 !important;line-height:1.75 !important}
  body.is-lp .lpx-jisseki dd{font-size:16px !important;letter-spacing:0 !important}
  body.is-lp .lpx-check-list li,
  body.is-lp .lpx-worry li{font-size:16px !important;letter-spacing:0 !important}
}
@media (max-width:400px){
  body.is-lp .faq-q{font-size:15px !important}
  body.is-lp .lpx-checklist li{font-size:15px !important}
}

/* ==========================================================
   ヘッダー：スマホ時のCTAを電話に（No.46）
   PCは電話番号を文字で出しているためボタンは不要。
   760px以下でのみ表示する。
   ========================================================== */
.sec-header-cta .lpx-header-tel { display: none; }
.sec-header-cta .btn-tel {
	background: linear-gradient(135deg, #c9a54a, #b28c33);
	color: #fff;
	border: 0;
}
.sec-header-cta .btn-tel:hover { filter: brightness(1.06); }
@media (max-width: 760px) {
	.sec-header .sec-header-cta .lpx-header-tel {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		flex: none;
		white-space: nowrap;
		min-width: 0;
		padding: 10px 12px;
		font-size: 12px;
		min-height: 40px;
	}
}
@media (max-width: 430px) {
	.sec-header .sec-header-cta .lpx-header-tel { padding: 8px 10px; font-size: 11px; min-height: 38px; }
	.sec-header .sec-header-cta .lpx-header-tel svg { width: 15px; height: 15px; }
}
@media (max-width: 380px) {
	.sec-header .sec-header-cta .lpx-header-tel { padding: 7px 8px; font-size: 10.5px; }
	/* 極小幅ではラベルを短縮して2ボタンを収める */
	.sec-header .sec-header-cta .lpx-header-tel span { font-size: 0; }
	.sec-header .sec-header-cta .lpx-header-tel span::after {
		content: "電話"; font-size: 10.5px;
	}
}

/* ==========================================================
   フォーム：入力例を薄字で表示し、カーソルを合わせた時点で消す
   （標準の placeholder は入力を開始するまで残るため focus で消す）
   ========================================================== */
input::placeholder,
textarea::placeholder {
	color: #9a9689;
	opacity: 1; /* Firefox の既定の減光を打ち消す */
	font-weight: 400;
}
input:focus::placeholder,
textarea:focus::placeholder {
	color: transparent;
}

/* ==========================================================
   ヘッダー（SP）：電話＋LINEの2ボタン構成にする
   ・簡単診断へはSPでは出さない（フッター固定CTAが担う）
   ・gap:0 の上書きを戻してボタン同士の間隔を確保
   ========================================================== */
@media (max-width: 760px) {
	.sec-header .sec-header-cta {
		gap: 8px !important;
		flex-wrap: nowrap;
	}
	/* SPは 電話 → LINE の並び */
	.sec-header .sec-header-cta .lpx-header-diagnosis { display: none !important; }
	.sec-header .sec-header-cta .btn-line {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 6px;
		flex: none;
		white-space: nowrap;
		min-width: 0;
		width: auto;
		padding: 10px 12px;
		font-size: 12px;
		min-height: 40px;
	}
	.sec-header .sec-header-cta .btn-line svg { width: 16px; height: 16px; }
}
@media (max-width: 430px) {
	.sec-header .sec-header-cta { gap: 6px !important; }
	.sec-header .sec-header-cta .btn-line { padding: 8px 10px; font-size: 11px; min-height: 38px; }
	.sec-header .sec-header-cta .btn-line svg { width: 15px; height: 15px; }
}
@media (max-width: 380px) {
	.sec-header .sec-header-cta .btn-line { padding: 7px 8px; font-size: 10.5px; }
	/* 極小幅ではラベルを短縮 */
	.sec-header .sec-header-cta .btn-line span { font-size: 0; }
	.sec-header .sec-header-cta .btn-line span::after { content: "LINE"; font-size: 10.5px; }
}

/* SPヘッダー：既存の gap:0 上書き（body付きセレクタ）に勝たせる＋電話を先頭に */
@media (max-width: 760px) {
	body .sec-header .sec-header-cta.sec-header-cta { gap: 8px !important; }
	body .sec-header .sec-header-cta .lpx-header-tel { order: 1; }
	body .sec-header .sec-header-cta .btn-line { order: 2; }
}
@media (max-width: 430px) {
	body .sec-header .sec-header-cta.sec-header-cta { gap: 6px !important; }
}

/* SPヘッダー：430px以下はラベルを短縮し、ロゴの潰れを防ぐ */
@media (max-width: 430px) {
	body .sec-header .sec-header-cta .lpx-header-tel span,
	body .sec-header .sec-header-cta .btn-line span { font-size: 0; }
	body .sec-header .sec-header-cta .lpx-header-tel span::after {
		content: "電話"; font-size: 12px; font-weight: 700;
	}
	body .sec-header .sec-header-cta .btn-line span::after {
		content: "LINE"; font-size: 12px; font-weight: 700;
	}
	body .sec-header .sec-header-cta .lpx-header-tel,
	body .sec-header .sec-header-cta .btn-line { padding: 9px 12px; }
	body .sec-header .logo .name { font-size: 14px; }
	body .sec-header .logo .name small { display: none; }
}

/* ==========================================================
   数字で見るBeerus：SPで縦積みになった際の縦罫線を消す
   （380px以下にしか横罫線化の指定がなく、381〜900pxで
     項目の左に不自然な縦線が残っていた）
   ========================================================== */
@media (max-width: 900px) {
	.p1-num-item {
		border-left: 0 !important;
		border-top: 1px solid rgba(255, 255, 255, 0.18);
		padding: 20px 0 0;
	}
	.p1-num-item:first-child {
		border-top: 0;
		padding-top: 0;
	}
}

/* ==========================================================
   人探しLP：SPのFV（菊村さんご指摘への対応）
   写真を右にずらし、元画像の「左側の空いた壁」を文字スペース
   として使う。人物は右側に立たせ、顔は文字にかからない。
   ========================================================== */
@media (max-width: 700px) {
	body.is-lp .lpx-hero--photo {
		min-height: 640px !important;
		padding: 30px 0 38px !important;
	}
	body.is-lp .lpx-hero--photo .lpx-hero-bg {
		inset: 0 !important;
		background-size: cover !important;
		background-position: 56% center !important; /* 写真を右へずらす */
		animation: none !important;
	}
	/* 上部は素通し（人物の顔を隠さない）。下半分だけ起こして
	   バッジ・CTAの可読性を確保する。 */
	body.is-lp .lpx-hero--photo::before {
		display: block !important;
		background: linear-gradient(
			180deg,
			rgba(247, 245, 239, 0.34) 0%,
			rgba(247, 245, 239, 0.22) 34%,
			rgba(247, 245, 239, 0.80) 50%,
			rgba(247, 245, 239, 0.96) 66%,
			rgba(247, 245, 239, 0.98) 100%
		) !important;
	}
	body.is-lp .lpx-hero--photo::after { display: none !important; }
	body.is-lp .lpx-hero--photo > .container { position: relative; z-index: 2; }
	/* 見出しとリードは左の空きスペースに収める */
	body.is-lp .lpx-hero--photo .lpx-title,
	body.is-lp .lpx-hero--photo .lpx-lead {
		max-width: 60%;
		text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) !important;
	}
	body.is-lp .lpx-hero--photo .lpx-title { font-size: 30px !important; line-height: 1.32 !important; }
	body.is-lp .lpx-hero--photo .lpx-lead { font-size: 14px !important; }
	body.is-lp .lpx-hero--photo .lpx-hero-note { text-shadow: none !important; }
}
@media (max-width: 390px) {
	body.is-lp .lpx-hero--photo .lpx-title { font-size: 27px !important; }
	body.is-lp .lpx-hero--photo .lpx-title,
	body.is-lp .lpx-hero--photo .lpx-lead { max-width: 64%; }
}

/* ==========================================================
   人探しLP：FVの「かんたん診断」CTAの色を変更
   電話(ゴールド)・メール(ダークグリーン)・LINE(グリーン)と
   重ならない色として、深いネイビーに寄せる。
   ========================================================== */
.lpx-hero-actions .lpx-hero-diagnosis,
.lpx-hero-actions .btn.lpx-hero-diagnosis {
	background: linear-gradient(135deg, #2f4a63, #1f3446) !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
	color: #fff !important;
	box-shadow: 0 10px 24px -12px rgba(31, 52, 70, 0.75) !important;
}
.lpx-hero-actions .lpx-hero-diagnosis:hover {
	background: linear-gradient(135deg, #37566f, #24405a) !important;
	filter: brightness(1.06);
}

/* ==========================================================
   人探しLP：FVのバッジを4つとも同じサイズに揃え、一回り小さく
   （文字量で幅がバラついていたため grid で等幅にする）
   ========================================================== */
body.is-lp .lpx-usp {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px !important;
}
body.is-lp .lpx-usp li {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 38px;
	padding: 7px 8px !important;
	font-size: 13.5px !important;
	line-height: 1.3;
	white-space: nowrap;
}
@media (max-width: 900px) {
	body.is-lp .lpx-usp { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
	body.is-lp .lpx-usp li {
		min-height: 34px;
		padding: 6px 6px !important;
		font-size: 12px !important;
	}
}
@media (max-width: 360px) {
	body.is-lp .lpx-usp li { font-size: 11px !important; }
}

/* 人探しLP：FV下部の空きを詰める（CTA〜SCROLLの間が空きすぎていた） */
@media (max-width: 700px) {
	body.is-lp .lpx-hero--photo { min-height: 556px !important; padding-bottom: 26px !important; }
	body.is-lp .lpx-hero--photo .lpx-scroll-cue { bottom: 6px; font-size: 10px; letter-spacing: .28em; }
	body.is-lp .lpx-hero--photo .lpx-scroll-cue span { height: 26px; }
}
@media (max-width: 430px) {
	body.is-lp .lpx-hero--photo { min-height: 540px !important; }
}
@media (max-width: 360px) {
	body.is-lp .lpx-hero--photo { min-height: 560px !important; }
}

/* 人探しLP：FVのバッジとCTAを一段小さく（1/3ほど縮める） */
body.is-lp .lpx-usp li {
	min-height: 30px !important;
	padding: 5px 6px !important;
	font-size: 12px !important;
}
body.is-lp .lpx-hero-actions .lpx-hero-diagnosis {
	min-height: 0 !important;
	padding: 11px 20px !important;
	font-size: 14px !important;
	border-radius: 4px !important;
}
@media (max-width: 700px) {
	body.is-lp .lpx-usp { gap: 6px !important; }
	body.is-lp .lpx-usp li {
		min-height: 26px !important;
		padding: 4px 5px !important;
		font-size: 10.5px !important;
	}
	body.is-lp .lpx-hero-actions .lpx-hero-diagnosis {
		padding: 10px 14px !important;
		font-size: 13px !important;
	}
}
@media (max-width: 360px) {
	body.is-lp .lpx-usp li { font-size: 10px !important; }
	body.is-lp .lpx-hero-actions .lpx-hero-diagnosis { font-size: 12px !important; }
}

/* ==========================================================
   協力弁護士事務所（SP）
   ・山口先生の写真が大きすぎるため縮小
   ・「弁護士法人しおかぜ しおかぜ法律事務所」を中央揃え
   （PC版は変更しない）
   ========================================================== */
@media (max-width: 767px) {
	.lawyer-photo {
		max-width: 190px !important;
		margin: 0 auto !important;
	}
	.lawyer-firm,
	.lawyer-en,
	.lawyer-lead,
	.lawyer-text {
		text-align: center;
	}
	.lawyer-actions {
		display: flex;
		justify-content: center;
	}
	.lawyer-body { text-align: center; }
}
@media (max-width: 430px) {
	.lawyer-photo { max-width: 168px !important; }
}

/* 人探しLP：FVバッジは横幅を詰める（高さではなく横方向を1/3ほど小さく） */
body.is-lp .lpx-usp {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 6px !important;
}
body.is-lp .lpx-usp li {
	min-height: 26px !important;
	padding: 5px 10px !important;
	font-size: 11.5px !important;
	width: auto !important;
	flex: 0 0 auto;
}
@media (max-width: 700px) {
	body.is-lp .lpx-usp li { padding: 4px 8px !important; font-size: 10.5px !important; }
}

/* 人探しLP：FVバッジを2×2・全て同じ幅（最長の「調査成功率トップクラス」に統一）
   grid を width:max-content にすることで、余白まで伸びず左に詰まる */
body.is-lp .lpx-usp {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	width: max-content;
	max-width: 100%;
	gap: 6px !important;
}
body.is-lp .lpx-usp li {
	width: auto !important;
	justify-content: center;
	text-align: center;
}

/* 人探しLP：FVの診断CTAが横に間延びしていたため、文字幅に合わせる
   （バッジ2列と同じ幅感に揃える） */
body.is-lp .lpx-hero-actions {
	display: flex;
	justify-content: flex-start;
}
body.is-lp .lpx-hero-actions .lpx-hero-diagnosis {
	width: auto !important;
	max-width: 100%;
	align-self: flex-start;
	padding: 11px 22px !important;
}
@media (max-width: 700px) {
	body.is-lp .lpx-hero-actions .lpx-hero-diagnosis { padding: 10px 18px !important; }
}

/* SPでも診断CTAは文字幅に合わせる（5689行の width:100% を上書き） */
@media (max-width: 760px) {
	body.is-lp .lpx-hero-actions .btn.lpx-hero-diagnosis {
		width: auto !important;
		min-height: 0 !important;
		padding: 10px 18px !important;
		font-size: 13px !important;
	}
}

/* SPで .lpx-hero-actions が grid（1列ストレッチ）になっており、
   ボタンが全幅に伸びていたため flex に戻す */
@media (max-width: 760px) {
	body.is-lp .lpx-hero--photo .lpx-hero-actions {
		display: flex !important;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 8px;
	}
}

/* 人探しLP：SP FVの白モヤを撤去（人物をはっきり見せる）
   文字は元画像の白い壁の上に乗るため、モヤなしでも読める。
   バッジ・CTAは自前の背景色を持つので影響なし。 */
@media (max-width: 700px) {
	body.is-lp .lpx-hero--photo::before {
		background: linear-gradient(
			100deg,
			rgba(247, 245, 239, 0.55) 0%,
			rgba(247, 245, 239, 0.30) 34%,
			rgba(247, 245, 239, 0.06) 52%,
			rgba(247, 245, 239, 0) 64%
		) !important;
	}
}

/* 人探しLP：SP FVのバランス調整
   ・CTA下の余白を詰めて、写真・文字・SCROLLの比率を整える
   ・文字ブロックを上下方向で中央寄りに置く */
@media (max-width: 700px) {
	body.is-lp .lpx-hero--photo {
		min-height: 510px !important;
		padding: 24px 0 20px !important;
	}
	body.is-lp .lpx-hero--photo .lpx-usp { margin: 12px 0 0 !important; }
	body.is-lp .lpx-hero--photo .lpx-hero-actions { margin-top: 14px !important; }
	body.is-lp .lpx-hero--photo .lpx-scroll-cue { bottom: 4px; }
}
@media (max-width: 430px) {
	body.is-lp .lpx-hero--photo { min-height: 496px !important; }
}
@media (max-width: 360px) {
	body.is-lp .lpx-hero--photo { min-height: 516px !important; }
}

/* 人探しLP：SCROLLは人物の濃紺スーツの上に来るため白抜きにする */
@media (max-width: 700px) {
	body.is-lp .lpx-hero--photo .lpx-scroll-cue {
		color: #fff !important;
		text-shadow: 0 1px 6px rgba(10, 24, 18, 0.55);
	}
	body.is-lp .lpx-hero--photo .lpx-scroll-cue span {
		background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0)) !important;
	}
}

/* ヘッダー（SP）：ロゴとボタンの間が詰まりすぎていたため余白を確保 */
@media (max-width: 430px) {
	body .sec-header .container {
		padding-left: 14px !important;
		padding-right: 14px !important;
		column-gap: 16px !important;
	}
	body .sec-header .sec-header-cta.sec-header-cta { gap: 7px !important; }
	body .sec-header .sec-header-cta .lpx-header-tel,
	body .sec-header .sec-header-cta .btn-line { padding: 8px 10px !important; }
	body .sec-header .logo { gap: 8px; }
}
@media (max-width: 380px) {
	body .sec-header .container {
		padding-left: 10px !important;
		padding-right: 10px !important;
		column-gap: 12px !important;
	}
	body .sec-header .sec-header-cta .lpx-header-tel,
	body .sec-header .sec-header-cta .btn-line { padding: 7px 8px !important; }
}

/* 実績カード：コメント欄の左の縦線（金のライン）は不要 */
.lpx-jisseki .result,
body.is-lp .lpx-jisseki .result {
	border-left: 0 !important;
	padding-left: 16px !important;
}

/* ヘッダー（SP）：ロゴとボタンが詰まっていたため間隔を確保
   5672行の gap:8px を上書きするため body 付きで詳細度を上げる */
@media (max-width: 700px) {
	body.is-lp .sec-header .container,
	body.page-template-tmpl-lp-hitosagashi-php .sec-header .container,
	body.page-template-tmpl-lp-uwaki-php .sec-header .container {
		column-gap: 18px !important;
	}
}
@media (max-width: 380px) {
	body.is-lp .sec-header .container,
	body.page-template-tmpl-lp-hitosagashi-php .sec-header .container,
	body.page-template-tmpl-lp-uwaki-php .sec-header .container {
		column-gap: 12px !important;
	}
}
