/*!
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::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; }
}
