/**
 * トップページ専用 CSS（rakuda-top-agent-more-demo.html 準拠）
 *
 * front-page.php からだけ読み込む。他ページには出さない。
 * ヘッダー／フッター／追従 CTA は css/header.css と css/footer.css。
 * 参考HTMLの後半上書きは残している。
 */

/* ================= 共通（#front） ================= */
#front {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	color: #17181d;
	line-height: 1.9;
	letter-spacing: normal;
	font-feature-settings: normal;
	-webkit-font-smoothing: antialiased;
}

#front *,
#front *::before,
#front *::after {
	box-sizing: border-box;
	letter-spacing: normal;
	font-feature-settings: normal;
}

#front a {
	color: inherit;
	text-decoration: none;
}

:root {
	--bg: #ffffff;
	--tint: #fff6eb; /* ごく薄いオレンジ */
	--ink: #17181d; /* ニュートラルな墨色（紺をやめて軽く） */
	--sub: #565c72;
	--line: #ece8e1;
	--orange: #f3a246; /* ブランドオレンジ（ロゴ実測） */
	--grad: linear-gradient(135deg, #ffae4e, #ef8414);
	--grad-deep: linear-gradient(135deg, #f08a18, #e56e00);
	--line-green: #17994f;
	--shadow: 0 20px 50px rgba(23, 24, 29, 0.08);
	--shadow-s: 0 4px 16px rgba(23, 24, 29, 0.06);
	--r: 20px;
	--body: 'Zen Kaku Gothic New', sans-serif;
	--num: 'Outfit', sans-serif;
}

#front a {
	color: inherit;
	text-decoration: none;
}
#front :focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 3px;
	border-radius: 6px;
}
#front .wrap {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 24px;
}
#front .reveal {
	opacity: 0;
	transform: translateY(14px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}

@media (prefers-reduced-motion: reduce) {
	#front .reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
#front .reveal.in {
	opacity: 1;
	transform: none;
}
#front h1,
#front .sec-head h2 {
	text-wrap: balance;
}
#front .nb {
	display: inline-block;
}
@media (max-width: 760px) {
	#front .pc {
		display: none !important;
	}
}
@media (min-width: 761px) {
	#front .sm {
		display: none !important;
	}
}
#front .grad-text {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ================= 共通ボタン ================= */

#front .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 700;
	line-height: 1.4;
	border-radius: 13px;
	cursor: pointer;
	transition:
		transform 0.15s,
		box-shadow 0.15s,
		opacity 0.15s;
	border: none;
	font-family: var(--body);
}
#front .btn:hover {
	transform: translateY(-2px);
}
#front .btn-main {
	background: #e8770f;
	color: #fff;
	padding: 12px 26px;
	font-size: 15px;
	box-shadow: 0 5px 14px rgba(232, 119, 15, 0.2);
}
#front .btn-line {
	background: var(--line-green);
	color: #fff;
	padding: 13px 24px;
	font-size: 15px;
	box-shadow: 0 5px 14px rgba(23, 153, 79, 0.18);
}

/* ================= HERO ================= */
#front .hero {
	position: relative;
	padding: 84px 0 76px;
	overflow: hidden;
}

@media (max-width: 900px) {
	#front .hero {
		padding: 48px 0 56px;
	}
}
#front .blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.5;
	pointer-events: none;
}
#front .blob.b1 {
	width: 480px;
	height: 480px;
	background: #ffd9a8;
	top: -180px;
	right: -120px;
}
#front .blob.b2 {
	width: 360px;
	height: 360px;
	background: #ffeeda;
	bottom: -160px;
	left: -140px;
}
#front .hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 52px;
	align-items: center;
}

@media (max-width: 900px) {
	#front .hero-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}
#front .kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1.5px solid var(--line);
	background: #fff;
	color: var(--sub);
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	padding: 7px 18px;
	margin-bottom: 22px;
}

@media (max-width: 560px) {
	#front .kicker {
		font-size: 12px;
	}
}
#front .kicker i {
	font-style: normal;
	color: #e8770f;
}
#front h1 {
	font-weight: 900;
	font-size: clamp(30px, 4.6vw, 50px);
	line-height: 1.42;
	margin: 0 0 18px;
	letter-spacing: 0.01em;
}

@media (max-width: 560px) {
	#front h1 {
		font-size: 28px;
		line-height: 1.5;
	}
}
#front .lede {
	font-size: 17px;
	color: #454b63;
	margin: 0 0 20px;
}

@media (max-width: 560px) {
	#front .lede {
		font-size: 15px;
	}
}
#front .lede b {
	color: var(--ink);
}
#front .promise {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

@media (max-width: 560px) {
	#front .promise {
		justify-content: center;
	}
}
#front .promise span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink);
	padding: 7px 15px;
	background: #fff;
}

@media (max-width: 560px) {
	#front .promise span {
		font-size: 12.5px;
		padding: 6px 13px;
	}
}
#front .promise span::before {
	content: '✓';
	color: #e8770f;
	font-weight: 900;
}

/* 相談スターター */
#front .starter {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow: var(--shadow);
	padding: 30px 28px 24px;
	position: relative;
}
#front .starter::before {
	content: 'かんたん・無料';
	position: absolute;
	top: -14px;
	left: 24px;
	background: var(--grad-deep);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	border-radius: 999px;
	padding: 4px 16px;
	letter-spacing: 0.06em;
}
#front .starter h2 {
	font-size: 19px;
	font-weight: 900;
	margin: 6px 0 4px;
}
#front .starter p.hint {
	margin: 0 0 18px;
	font-size: 13px;
	color: var(--sub);
}
#front .choices {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
}

@media (max-width: 560px) {
	#front .choices {
		grid-template-columns: 1fr;
	}
}
#front .choice {
	border: 2px solid var(--line);
	background: #fff;
	border-radius: 16px;
	padding: 20px 10px 16px;
	text-align: center;
	cursor: pointer;
	font-family: var(--body);
	transition:
		border-color 0.15s,
		background 0.15s,
		transform 0.15s;
}

@media (max-width: 560px) {
	#front .choice {
		display: flex;
		align-items: center;
		justify-content: space-between;
		text-align: left;
		padding: 16px 18px;
	}
}
#front .choice:hover {
	transform: translateY(-3px);
	border-color: var(--orange);
}
#front .choice b {
	font-size: 16.5px;
	font-weight: 900;
	display: block;
	letter-spacing: 0.03em;
}
#front .choice span {
	font-size: 11.5px;
	color: var(--sub);
	display: block;
	margin-top: 5px;
	line-height: 1.5;
}

@media (max-width: 560px) {
	#front .choice span {
		margin-top: 2px;
	}
}
#front .choice[aria-pressed='true'] {
	border-color: #e8770f;
	background: var(--tint);
	box-shadow: 0 6px 18px rgba(232, 119, 15, 0.16);
}
#front .choice[aria-pressed='true'] b {
	color: #c96a00;
}
#front .starter .go {
	margin-top: 16px;
	width: 100%;
	padding: 16px;
	font-size: 16.5px;
	font-weight: 900;
	letter-spacing: 0.04em;
}
#front .starter .go[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
}
#front .starter .sub-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 13px;
	font-size: 13px;
}
#front .starter .sub-actions a {
	color: var(--sub);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ================= セクション共通 ================= */
#front section.block {
	padding: 76px 0;
}

@media (max-width: 560px) {
	#front section.block {
		padding: 56px 0;
	}
}

@media (min-width: 761px) {
	#front section.block {
		padding: 82px 0;
	}
}
#front .sec-head {
	margin-bottom: 32px;
}
#front .eyebrow {
	font-size: 12.5px;
	letter-spacing: 0.12em;
	color: #e8770f;
	font-weight: 700;
	display: block;
	margin-bottom: 8px;
}
#front .sec-head h2 {
	font-size: clamp(23px, 3.2vw, 32px);
	font-weight: 900;
	margin: 0 0 10px;
	line-height: 1.55;
	text-align: left;
}

@media (max-width: 560px) {
	#front .sec-head h2 {
		font-size: 21px;
	}
}
#front .sec-head p {
	margin: 0;
	color: #454b63;
	font-size: 16px;
}

/* ================= 正直宣言（#promise） ================= */
#front .honest {
	background: var(--tint);
}
#front .honest-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 820px) {
	#front .honest-cards {
		grid-template-columns: 1fr;
	}
}
#front .hcard.main {
	grid-column: 1/-1;
	border: 2px solid #f3c98e;
	background: linear-gradient(180deg, #fffdf9, #fff6eb);
}
#front .hcard.main b {
	font-size: 23px;
}
#front .hcard.main p {
	font-size: 16px;
}
#front .hcard {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 26px 24px 22px;
	box-shadow: var(--shadow-s);
}
#front .hcard .no {
	font-family: var(--num);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.1em;
}
#front .hcard b {
	font-size: 19px;
	font-weight: 900;
	display: block;
	margin: 8px 0 8px;
}
#front .hcard p {
	margin: 0;
	font-size: 15px;
	color: #454b63;
	line-height: 2;
}
#front .hcard a {
	color: #c96a00;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ================= YouTube（#videos） ================= */
#front .yt-head {
	display: flex;
	align-items: flex-end;
	gap: 8px 16px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
#front .yt-head .sec-head {
	margin-bottom: 0;
}

#front .yt-actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 14px;
}
#front .yt-actions .more {
	font-size: 13.5px;
	font-weight: 700;
	color: #c96a00;
	text-decoration: underline;
	text-underline-offset: 3px;
}
#front .yt-nav {
	display: flex;
	gap: 8px;
}

@media (max-width: 560px) {
	#front .yt-nav {
		display: none;
	}
}
#front .yt-nav button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid var(--line);
	background: #fff;
	color: var(--ink);
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	transition:
		border-color 0.15s,
		background 0.15s;
	padding-bottom: 4px;
}
#front .yt-nav button:hover {
	background: var(--tint);
	border-color: var(--orange);
}
#front .yt-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 16px 0 20px;
}
#front .yt-tabs span {
	font-size: 12.5px;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	padding: 5px 17px;
	color: var(--sub);
	cursor: pointer;
	font-weight: 700;
	background: #fff;
}
#front .yt-tabs span.on {
	background: var(--grad-deep);
	border-color: transparent;
	color: #fff;
}
#front .yt-rail {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 4px 4px 16px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
#front .yt-rail::-webkit-scrollbar {
	display: none;
}
#front .yt-card {
	flex: 0 0 238px;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-s);
	transition: transform 0.15s;
}

@media (max-width: 560px) {
	#front .yt-card {
		flex-basis: 200px;
	}
}
#front .yt-card:hover {
	transform: translateY(-3px);
}
#front .thumb {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #1e1f24, #3a3c44);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
#front .thumb::after {
	content: '';
	width: 46px;
	height: 32px;
	background: #e33;
	border-radius: 9px;
	position: absolute;
}
#front .thumb::before {
	content: '';
	border-style: solid;
	border-width: 8px 0 8px 14px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	z-index: 1;
	margin-left: 3px;
}
#front .thumb .tag {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(255, 255, 255, 0.94);
	color: #c96a00;
	font-size: 11.5px;
	font-weight: 700;
	border-radius: 6px;
	padding: 1px 8px;
	z-index: 2;
}
#front .yt-card .body {
	padding: 12px 14px 14px;
}
#front .yt-card .body p {
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 1.65;
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 64px;
}
#front .yt-card .body small {
	display: flex;
	gap: 14px;
	font-size: 12.5px;
	color: var(--sub);
	font-family: var(--num);
}

/* ================= エージェント（#agents） ================= */
#front .agents {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

@media (max-width: 860px) {
	#front .agents {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	#front .agents {
		grid-template-columns: 1fr;
	}
}
#front .agent {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 18px 20px;
	box-shadow: var(--shadow-s);
	transition: transform 0.15s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
#front .agent:hover {
	transform: translateY(-3px);
}
#front .agent .meta span {
	font-size: 12px;
	font-weight: 700;
	color: #c96a00;
	background: var(--tint);
	border-radius: 999px;
	padding: 3px 12px;
}
#front .agent .meta b {
	display: block;
	font-size: 16px;
	font-weight: 900;
	margin-top: 8px;
}
#front .agent .meta small {
	display: block;
	font-size: 13px;
	color: var(--sub);
	line-height: 1.5;
	margin-top: 3px;
}
#front .agent .arrow {
	color: #e8770f;
	font-weight: 900;
	font-size: 18px;
	flex: none;
}
#front .agent-foot {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	color: var(--sub);
}
#front .agent-foot a {
	color: #c96a00;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ================= 実績と声（#proof） ================= */
#front .proof {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
#front .stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 40px;
}

@media (max-width: 760px) {
	#front .stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
#front .stat {
	text-align: center;
}
#front .stat b {
	font-family: var(--num);
	font-weight: 700;
	font-size: clamp(34px, 4.4vw, 48px);
	display: block;
	line-height: 1.15;
	background: var(--grad-deep);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
#front .stat b small {
	font-size: 17px;
	font-family: var(--body);
	font-weight: 900;
}
#front .stat span {
	font-size: 13px;
	color: var(--sub);
	font-weight: 700;
}
#front .voices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 760px) {
	#front .voices {
		grid-template-columns: 1fr;
	}
}
#front .voice {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 24px;
	box-shadow: var(--shadow-s);
}
#front .voice p {
	margin: 0 0 10px;
	font-size: 14.5px;
	line-height: 2;
}
#front .voice p::before {
	content: '“';
	color: #e8770f;
	font-size: 26px;
	font-weight: 900;
	margin-right: 2px;
}
#front .voice small {
	color: var(--sub);
	font-size: 13px;
	font-weight: 700;
}

/* ================= エリア（#area） ================= */
#front .area-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

@media (max-width: 760px) {
	#front .area-cards {
		grid-template-columns: 1fr;
	}
}
#front .area {
	background: var(--tint);
	border: 1px solid #f5e3c8;
	border-radius: 16px;
	padding: 20px 22px;
}
#front .area b {
	font-size: 16px;
	font-weight: 900;
	color: #c96a00;
	display: block;
	margin-bottom: 4px;
}
#front .area p {
	margin: 0;
	font-size: 13.5px;
	color: var(--sub);
}
#front .area-note {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 700;
	color: #e8770f;
}

/* FAQは css/faq.css */

/* 最終CTAは css/final-cta.css */

/* ヘッダー／フッター／追従CTAは css/header.css と css/footer.css */

/* ================= 違い（#difference） ================= */
#front .diff-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 820px) {
	#front .diff-grid {
		grid-template-columns: 1fr;
	}
}
#front .diff-card {
	border-radius: var(--r);
	padding: 26px 26px 20px;
	border: 1px solid var(--line);
	background: #fff;
}
#front .diff-card.rakuda {
	border: 2px solid #f3c98e;
	background: linear-gradient(180deg, #fffdf9, #fff6eb);
	box-shadow: var(--shadow-s);
}
#front .diff-card h3 {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 900;
	color: var(--sub);
}
#front .diff-card.rakuda h3 {
	color: #c96a00;
}
#front .diff-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}
#front .diff-card li {
	font-size: 13.5px;
	color: var(--sub);
	line-height: 1.8;
	padding-left: 24px;
	position: relative;
}
#front .diff-card li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: #c9c4bb;
}
#front .diff-card.rakuda li {
	color: var(--ink);
}
#front .diff-card.rakuda li::before {
	content: '✓';
	color: #e8770f;
	font-weight: 900;
}
#front .diff-note {
	margin-top: 14px;
	font-size: 12.5px;
	color: var(--sub);
}
/* 3ステップの流れ */
#front .steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 34px;
}

@media (max-width: 760px) {
	#front .steps {
		grid-template-columns: 1fr;
	}
}
#front .step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 22px 20px;
	box-shadow: var(--shadow-s);
	position: relative;
}
#front .step .n {
	font-family: var(--num);
	font-weight: 700;
	font-size: 26px;
	background: var(--grad-deep);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
}
#front .step b {
	display: block;
	font-size: 15.5px;
	font-weight: 900;
	margin: 8px 0 6px;
}

@media (max-width: 760px) {
	#front .doc.wide b {
		margin-top: 12px;
	}
}

#front .doc b {
	text-align: center;
}

@media (max-width: 760px) {
	#front .doc b {
		align-self: end;
		font-size: 15px;
		margin: 0 0 4px;
		text-align: left;
	}
}

#front .doc p {
	text-align: center;
}

@media (max-width: 760px) {
	#front .doc p {
		text-align: left;
	}
}

#front .step p {
	margin: 0;
	font-size: 13px;
	color: var(--sub);
	line-height: 1.8;
}
/* stats 4列化 */
#front .stats {
	grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 760px) {
	#front .stats {
		grid-template-columns: 1fr !important;
	}
}
#front .voices-head {
	font-weight: 900;
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 4px 14px;
	flex-wrap: wrap;
}

#front .voices-head i {
	font-style: normal;
	color: #e8770f;
}

#front .voices-head p {
	font-size: 16px;
	margin: 0;
}

#front .case-more-wrap {
	display: flex;
	gap: 14px;
}

/* 相談メニュー（タップさせない表示専用タグ） */
#front .topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
}
#front .topics span {
	background: var(--tint);
	border: 1px solid #f5e3c8;
	color: #b06105;
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	padding: 6px 15px;
}
#front a.go {
	display: flex;
	text-align: center;
}

/* 実物資料の画像訴求（WebP圧縮＋lazy load必須） */
#front .docs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 30px;
}

@media (max-width: 760px) {
	#front .docs {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}
#front .doc {
	display: flex;
	flex-direction: column;
	text-align: center;
}

@media (max-width: 760px) {
	#front .doc {
		display: grid;
		grid-template-columns: 112px 1fr;
		column-gap: 14px;
		align-items: center;
		text-align: left;
	}
}
#front .doc-ph {
	aspect-ratio: 3/4;
	border: 2px dashed #e3c896;
	border-radius: 12px;
	background: #fffdf9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #b06105;
	line-height: 1.8;
	padding: 10px;
}
#front .doc-ph small {
	font-size: 11px;
	font-weight: 500;
	color: var(--sub);
	margin-top: 8px;
}
#front .doc p {
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 760px) {
	#front .doc p {
		align-self: start;
		font-size: 12.5px;
	}
}

@media (max-width: 760px) {
	#front .doc img {
		grid-row: 1/3;
		width: 112px;
	}
}

@media (max-width: 760px) {
	#front .doc-frame {
		grid-row: 1/3;
		width: 112px;
	}
}

@media (max-width: 760px) {
	#front .doc.wide {
		display: block;
	}
}
#front .go2 {
	margin-top: 10px;
	width: 100%;
	padding: 14px;
	font-size: 15px;
	display: flex;
}

/* ----- HERO（後半の上書き） ----- */
#front .jisseki {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0 0 16px;
}

@media (max-width: 560px) {
	#front .jisseki {
		justify-content: center;
	}
}
#front .jnum {
	font-family: var(--num);
	font-weight: 700;
	font-size: clamp(38px, 4.6vw, 52px);
	line-height: 1;
}
#front .junit {
	font-size: 17px;
	font-weight: 900;
}
#front .jlabel {
	font-size: 14px;
	font-weight: 700;
	color: #454b63;
	margin-left: 4px;
}
#front .micro {
	margin: 12px 0 0;
	font-size: 13px;
	color: #565c72;
	line-height: 1.7;
	text-align: center;
}
#front .alt-row {
	display: flex;
	gap: 10px;
	margin-top: 14px;
}
#front .alt {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	padding: 12px 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	transition: transform 0.15s;
}
#front .alt:hover {
	transform: translateY(-2px);
}
#front .alt.line {
	color: #12813f;
	border: 1.5px solid #9fd8b4;
	background: #f2fbf5;
}
#front .alt.tel {
	color: var(--ink);
	border: 1.5px solid var(--line);
	background: #fff;
}

#front .why {
	font-size: 15px;
	font-weight: 900;
	color: #454b63;
	margin: 0 0 6px;
}

/* 比較表（4項目・一目で分かる対比型） */
#front .cmp {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	box-shadow: var(--shadow-s);
}
#front .cmp-h {
	background: #f5f3ef;
	padding: 15px;
	font-weight: 900;
	font-size: 15px;
	text-align: center;
	color: #565c72;
}

@media (max-width: 560px) {
	#front .cmp-h {
		font-size: 13.5px;
	}
}
#front .cmp-h.r {
	background: var(--grad-deep);
	color: #fff;
}
#front .cmp-c {
	padding: 16px 18px;
	color: #565c72;
	border-top: 1px solid var(--line);
	background: #fff;
	display: flex;
	align-items: center;
}

@media (max-width: 560px) {
	#front .cmp-c {
		font-size: 13px;
		padding: 13px 5px;
	}
}

#front .cmp-c.r {
	background: #fff8ee;
	font-weight: 900;
	color: var(--ink);
	gap: 10px;
}

#front .cmp-c p {
	margin: 0;
}

#front .cmp-c p {
	font-size: 14.5px;
}

@media (max-width: 560px) {
	#front .cmp-c p {
		font-size: 13px;
	}
}

#front .cmp-c.r p {
	font-size: 15.5px;
}

@media (max-width: 560px) {
	#front .cmp-c.r p {
		font-size: 13.5px;
	}
}

/* 手数料の正直な注記 */
#front .honest-note {
	margin-top: 18px;
	background: #fff;
	border: 1.5px solid #f3c98e;
	border-radius: 14px;
	padding: 18px 22px;
	font-size: 14.5px;
	line-height: 1.95;
	color: #454b63;
}
#front .honest-note b {
	color: var(--ink);
}
/* セクション内の小見出し */
#front .subhead {
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 900;
	margin: 60px 0 8px;
	line-height: 1.5;
}
#front .sublede {
	margin: 0 0 22px;
	color: #454b63;
	font-size: 15.5px;
}
/* 資料：書類名ではなく「何が分かるか」を主役に */
#front .doc {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 14px;
	text-align: left;
	box-shadow: var(--shadow-s);
}

@media (max-width: 760px) {
	#front .doc {
		padding-inline: clamp(0.438rem, -0.024rem + 1.89vw, 0.875rem);
	}
}

#front .doc .doc-ph {
	aspect-ratio: 4/3;
}
#front .doc b {
	display: block;
	font-size: 15px;
	font-weight: 900;
	margin: 12px 0 3px;
	line-height: 1.6;
}

@media (min-width: 761px) {
	#front .doc-frame {
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-height: 0;
		padding: 8px;
		border: 1px solid var(--line);
		border-radius: 12px;
		margin-bottom: 12px;
	}
	#front .doc b {
		margin-top: auto;
	}
}
#front .doc p {
	margin: 0;
	font-size: 13px;
	color: #565c72;
	font-weight: 700;
}
/* 流れ：大きく・矢印つき */
#front .step {
	position: relative;
}
#front .step .n {
	font-size: 32px;
}
#front .step b {
	font-size: 18px;
}
#front .step p {
	font-size: 15px;
	color: #454b63;
}
#front .step:not(:last-child)::after {
	content: '→';
	position: absolute;
	right: -16px;
	top: 50%;
	transform: translateY(-50%);
	color: #e8770f;
	font-weight: 900;
	font-size: 22px;
	z-index: 2;
}

@media (max-width: 760px) {
	#front .step:not(:last-child)::after {
		display: none;
	}
}
#front .mini-cta {
	text-align: center;
	margin-top: 38px;
}
#front .mini-cta p {
	font-weight: 900;
	font-size: 16.5px;
	margin: 0 0 14px;
	text-align: center;
}
#front .mini-cta .btn-main {
	padding: 16px 38px;
	font-size: 16px;
}

/* 動画カードの出演者名 */
#front .cast {
	display: block;
	margin-top: 7px;
	font-size: 12px;
	font-weight: 700;
	color: #c96a00;
}
/* ----- エージェント（後半の上書き） ----- */
#front .agents-feature {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 16px;
}

@media (max-width: 860px) {
	#front .agents-feature {
		grid-template-columns: 1fr;
	}
}
#front .af {
	background: #fff;
	border: 1.5px solid #f3c98e;
	border-radius: 18px;
	padding: 20px;
	box-shadow: var(--shadow-s);
}
#front .af-top {
	display: flex;
	gap: 14px;
	align-items: center;
}
#front .af-photo {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	flex: none;
	border: 2px dashed #e3c896;
	background: #fffdf9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: #b06105;
	text-align: center;
	line-height: 1.4;
	overflow: hidden;
}
#front .af-photo small {
	font-size: 8.5px;
	font-weight: 500;
	color: #8a8f9f;
}
#front .af-area {
	font-size: 12px;
	font-weight: 700;
	color: #c96a00;
	background: var(--tint);
	border-radius: 999px;
	padding: 3px 12px;
}
#front .af-top b {
	display: block;
	font-size: 17px;
	font-weight: 900;
	margin-top: 7px;
}
#front .af-top small {
	display: block;
	font-size: 13px;
	color: #565c72;
	line-height: 1.6;
	margin-top: 3px;
}
#front .af-quote {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.85;
	color: #454b63;
	background: var(--tint);
	border-radius: 12px;
	padding: 10px 14px;
}
#front .af-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 14px;
	flex-wrap: wrap;
}
#front .af-btn {
	background: #fff7ed;
	color: #c96a00;
	border: 1px solid #f3c98e;
	font-size: 13.5px;
	font-weight: 700;
	border-radius: 11px;
	padding: 10px 18px;
}
#front .af-link {
	font-size: 13px;
	font-weight: 700;
	color: #c96a00;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* エージェントの横スクロールレール */
#front .agents-rail {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 4px 4px 16px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
#front .agents-rail::-webkit-scrollbar {
	display: none;
}
#front .agents-rail .af {
	flex: 0 0 310px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
}

@media (max-width: 560px) {
	#front .agents-rail .af {
		flex-basis: 280px;
	}
}
#front .agents-rail .af .af-top {
	margin-bottom: auto;
}

/* ----- 実績と声（後半の上書き） ----- */
#front .proof {
	padding: 54px 0 58px;
}

@media (min-width: 761px) {
	#front .proof {
		padding: 62px 0 68px;
	}
}
#front .stats {
	margin-bottom: 26px !important;
}
#front .stat b {
	font-size: clamp(42px, 5.2vw, 60px) !important;
}
#front .stat b small {
	font-size: 20px !important;
}
#front .stat b .cnt {
	font-size: 26px !important;
	font-family: var(--num);
	font-weight: 700;
}
#front .stat span {
	font-size: 14.5px !important;
	color: #454b63 !important;
	line-height: 1.6;
}
#front .voices-head {
	font-size: 17px;
}
#front .voice .vq {
	display: block;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.75;
	margin-bottom: 10px;
}
#front .voice .vq::before {
	content: '“';
	color: #e8770f;
	font-size: 26px;
	font-weight: 900;
	margin-right: 2px;
}
#front .voice p::before {
	content: none;
}
#front .voice p {
	font-size: 15px;
	color: #454b63;
}
#front .voice small {
	font-size: 14px;
}
#front .voice .vt {
	display: block;
	margin-top: 4px;
	color: #565c72;
	font-weight: 700;
}
/* ----- エリア（後半の上書き） ----- */
#front .area b {
	font-size: 17px;
}
#front .area p {
	font-size: 15px;
	color: #454b63;
}
#front .area-note {
	font-size: 15px;
	color: #454b63;
	font-weight: 700;
}
#front .area-cta {
	margin-top: 14px;
	padding: 15px 34px;
	font-size: 15.5px;
}
#front .diff-note {
	font-size: 13.5px !important;
}

/* フッター：読める大きさ＋免許情報 */

/* ヘッダー：電話の整形 */

/* モバイル固定バー：主・副・電話 */

/* フッター：4ブロック */

/* 実データ反映用 */
#front .stats-note {
	font-size: 13px;
	color: #565c72;
	text-align: center;
	margin: -12px 0 34px;
}
#front .case-more {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #c96a00;
	text-decoration: underline;
	text-underline-offset: 3px;
}
#front a.voice {
	display: block;
	color: inherit;
}
#front .voices {
	grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 860px) {
	#front .voices {
		grid-template-columns: 1fr !important;
	}
}
#front .voice .vq {
	font-size: 17px;
}
#front .voice .vt {
	color: #c96a00;
	text-decoration: underline;
	text-underline-offset: 3px;
}
#front .doc img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 760px) {
	#front .doc img {
		border-radius: 10px;
		border: 1px solid var(--line);
	}
}
#front .doc-table {
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 12px;
	background: #fff;
}
#front .dt-head {
	display: block;
	font-size: 11px;
	font-weight: 700;
	color: #565c72;
	margin-bottom: 8px;
}
#front .doc-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 11px;
}
#front .doc-table th {
	background: #f5f3ef;
	font-weight: 700;
	padding: 5px 6px;
	text-align: left;
	border: 1px solid #eee8de;
}
#front .doc-table td {
	padding: 5px 6px;
	border: 1px solid #eee8de;
	color: #454b63;
}
#front .dt-foot {
	display: block;
	font-size: 10px;
	color: #8a8f9f;
	margin-top: 8px;
}
#front .thumb-img {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: #1e1f24;
}
#front .thumb-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
#front .thumb-img .tag {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(255, 255, 255, 0.94);
	color: #c96a00;
	font-size: 11.5px;
	font-weight: 700;
	border-radius: 6px;
	padding: 1px 8px;
}
#front .yt-card .body p {
	min-height: auto;
}
#front .af-photo.has {
	border: 2px solid #f3c98e;
	padding: 0;
}
#front .af-photo.has img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* CTAの押せる感の担保 */
#front .go {
	flex-direction: column;
	gap: 3px;
}
#front .go .go-l {
	line-height: 1.3;
}
#front .go .go-s {
	font-size: 12px;
	font-weight: 700;
	opacity: 0.92;
	letter-spacing: 0.05em;
}
#front .btn-main:hover {
	box-shadow: 0 8px 20px rgba(232, 119, 15, 0.32);
}
#front .alt.line {
	color: #0e7a3c;
	border: 1.5px solid #35b56b;
	background: #eefbf3;
}
#front .alt.tel {
	color: var(--ink);
	border: 1.5px solid #cfc9be;
	background: #f7f5f0;
}
#front .alt-note {
	margin: 10px 0 0;
	font-size: 12.5px;
	color: #565c72;
	text-align: center;
}

/* ハンバーガーメニュー（スマホのみ） */

/* 追従3ボタン */

/* 原文引用の声 */
#front .voice .vq {
	font-size: 15.5px;
	line-height: 1.9;
	margin-bottom: 12px;
}

/* v6調整 */
#front .gbadge {
	display: inline-flex;
	align-items: center;
	background: #fff;
	border: 1.5px solid #f3c98e;
	color: #b06105;
	font-size: 12.5px;
	font-weight: 700;
	border-radius: 999px;
	padding: 6px 16px;
	margin-bottom: 16px;
}

@media (max-width: 560px) {
	#front .gbadge {
		justify-content: center;
		width: 100%;
		max-width: 360px;
		font-size: 11.5px;
		padding: 5px 5px;
	}
}
#front .gline {
	font-size: 13.5px;
	color: #565c72;
	line-height: 1.9;
	margin: -4px 0 18px;
}

@media (max-width: 560px) {
	#front .gline {
		font-size: 13px;
	}
}
#front .starter .go::after,
#front .btn-invert::after {
	content: none;
}
#front .alt::after {
	content: none;
}
#front .alt.tel {
	background: #faf8f4;
	border-color: #c9c4ba;
}
#front .alt.line {
	border-color: #3fb56b;
}

@media (max-width: 560px) {
	#front .hero-grid > div:first-child {
		text-align: center;
	}
}
/* 視覚強化：アイコン・地図・写真スペース */
#front .hcard {
	position: relative;
}
#front .hicon {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 46px;
	height: 46px;
	stroke: #e8770f;
	fill: none;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.9;
}

@media (max-width: 560px) {
	#front .hicon {
		top: 20px;
		right: 18px;
		width: 38px;
		height: 38px;
	}
}
#front .hcard.main .hicon {
	width: 56px;
	height: 56px;
}

@media (max-width: 560px) {
	#front .hcard.main .hicon {
		width: 44px;
		height: 44px;
	}
}
#front .hcard b {
	padding-right: 56px;
}

@media (max-width: 560px) {
	#front .hcard b {
		padding-right: 44px;
	}
}
#front .hcard.main b {
	padding-right: 70px;
}

@media (max-width: 560px) {
	#front .hcard.main b {
		padding-right: 52px;
	}
}
#front .cico {
	width: 19px;
	height: 19px;
	flex: none;
	margin-right: 10px;
	stroke: #9a917f;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ----- エリア（地図レイアウトの上書き） ----- */
#front .area-wrap {
	display: grid;
	grid-template-columns: 290px 1fr;
	gap: 30px;
	align-items: center;
}

@media (max-width: 860px) {
	#front .area-wrap {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}
#front .jmap {
	width: 100%;
	height: auto;
}

@media (max-width: 860px) {
	#front .jmap {
		max-width: 280px;
		margin: 0 auto;
		display: block;
	}
}
#front .area-col .area-cards {
	grid-template-columns: 1fr;
	gap: 10px;
}

#front .jmap-legend {
	margin: 12px 0 0;
	font-size: 12.5px;
	color: #565c72;
	font-weight: 700;
}

@media (max-width: 860px) {
	#front .jmap-legend {
		text-align: center;
	}
}
#front .jmap-legend span {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 4px;
	vertical-align: -2px;
	margin-right: 5px;
}
#front .lg1 {
	background: #f3a246;
}
#front .lg2 {
	background: #f8cf9b;
}
#front .hero-photo {
	margin-top: 20px;
	aspect-ratio: 5/2;
	border: 2px dashed #e3c896;
	border-radius: 14px;
	background: #fffdf9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #b06105;
	text-align: center;
	line-height: 1.7;
}

@media (max-width: 560px) {
	#front .hero-photo {
		margin-left: auto;
		margin-right: auto;
	}
}
#front .hero-photo small {
	font-size: 11px;
	font-weight: 500;
	color: #8a8f9f;
}

/* ----- HERO v7（後半の上書き） ----- */
#front .hero.hero-v7 {
	padding: 54px 0 34px;
	min-height: 650px;
	background: #fff;
}

@media (max-width: 980px) {
	#front .hero.hero-v7 {
		padding-top: 42px;
	}
}

@media (max-width: 620px) {
	#front .hero.hero-v7 {
		padding: 32px 0 22px;
		min-height: 0;
	}
}

@media (min-width: 761px) {
	#front .hero.hero-v7 {
		padding-bottom: 42px;
	}
}
#front .hero-v7 .blob.b1 {
	width: 520px;
	height: 520px;
	top: -220px;
	right: -130px;
	opacity: 0.38;
}
#front .hero-v7 .blob.b2 {
	width: 300px;
	height: 300px;
	bottom: -180px;
	left: -120px;
	opacity: 0.32;
}
#front .hero-grid-v7 {
	grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
	gap: 14px;
	align-items: center;
	min-height: 560px;
}

@media (max-width: 980px) {
	#front .hero-grid-v7 {
		grid-template-columns: 1fr;
		gap: 6px;
		min-height: auto;
	}
}

@media (max-width: 620px) {
	#front .hero-grid-v7 {
		display: flex;
		flex-direction: column;
	}
}
#front .hero-copy {
	position: relative;
	z-index: 4;
	padding: 14px 0 22px;
}

@media (max-width: 980px) {
	#front .hero-copy {
		max-width: 720px;
		margin: 0 auto;
		text-align: center;
		padding-bottom: 4px;
	}
}

@media (max-width: 620px) {
	#front .hero-copy {
		width: 100%;
		text-align: center;
		padding: 0;
	}
}
#front .hero-copy .gbadge {
	margin-bottom: 18px;
}

@media (max-width: 620px) {
	#front .hero-copy .gbadge {
		margin-bottom: 14px;
	}
}
#front .hero-copy h1 {
	font-size: clamp(34px, 4.35vw, 50px);
	line-height: 1.38;
	margin-bottom: 18px;
	letter-spacing: 0.005em;
}

@media (max-width: 620px) {
	#front .hero-copy h1 {
		font-size: 29px;
		line-height: 1.48;
		margin-bottom: 14px;
	}
}
#front .hero-copy h1 .hero-accent {
	color: #df760f;
}
#front .hero-copy .lede {
	font-size: 16.5px;
	line-height: 1.95;
	margin-bottom: 10px;
}

@media (max-width: 980px) {
	#front .hero-copy .lede {
		text-align: center;
	}
}

@media (max-width: 620px) {
	#front .hero-copy .lede {
		font-size: 14.5px;
		line-height: 1.9;
		margin-bottom: 10px;
	}
}
#front .hero-copy .gline {
	max-width: 600px;
	margin: 0 0 18px;
	font-size: 13.2px;
	line-height: 1.85;
}

@media (max-width: 980px) {
	#front .hero-copy .gline {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}

@media (max-width: 620px) {
	#front .hero-copy .gline {
		font-size: 12.2px;
		line-height: 1.75;
		margin-bottom: 12px;
	}
}
#front .hero-copy .jisseki {
	margin: 0 0 14px;
}

@media (max-width: 980px) {
	#front .hero-copy .jisseki {
		justify-content: center;
	}
}

@media (max-width: 620px) {
	#front .hero-copy .jisseki {
		justify-content: center;
		margin-bottom: 10px;
	}
}
#front .hero-copy .jnum {
	font-size: clamp(40px, 4.2vw, 50px);
}

@media (max-width: 620px) {
	#front .hero-copy .jnum {
		font-size: 38px;
	}
}
#front .hero-copy .promise {
	gap: 7px;
	margin-bottom: 22px;
}

@media (max-width: 980px) {
	#front .hero-copy .promise {
		justify-content: center;
	}
}

@media (max-width: 620px) {
	#front .hero-copy .promise {
		justify-content: center;
		margin-bottom: 18px;
	}
}
#front .hero-copy .promise span {
	font-size: 12.5px;
	padding: 6px 12px;
}

@media (max-width: 620px) {
	#front .hero-copy .promise span {
		font-size: 11.5px;
		padding: 5px 10px;
	}
}
#front .hero-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px;
	margin-top: 2px;
	width: 100%;
	max-width: 530px;
}

@media (max-width: 980px) {
	#front .hero-actions {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 620px) {
	#front .hero-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
		max-width: none;
		gap: 8px;
	}
}
#front .hero-actions .hero-main {
	grid-column: 1/-1;
	width: 100%;
	min-height: 54px;
	padding: 14px 22px;
	font-size: 15.5px;
	font-weight: 900;
	box-shadow: 0 8px 20px rgba(232, 119, 15, 0.22);
}

@media (max-width: 620px) {
	#front .hero-actions .hero-main {
		grid-column: 1/-1;
		width: 100%;
		min-height: 54px;
	}
}
#front .hero-actions .hero-sub {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 11px 10px;
	border-radius: 12px;
	font-size: 13.2px;
	font-weight: 800;
	text-align: center;
}

@media (max-width: 620px) {
	#front .hero-actions .hero-sub {
		min-height: 48px;
		font-size: 12.4px;
		padding: 9px 7px;
	}
}
#front .hero-actions .hero-line {
	color: #0e7a3c;
	border: 1.5px solid #3fb56b;
	background: #eefbf3;
}
#front .hero-actions .hero-tel {
	color: var(--ink);
	border: 1.5px solid #d4cec4;
	background: #faf8f4;
}
#front .hero-note {
	margin: 10px 0 0;
	font-size: 11.8px;
	color: #777b88;
	line-height: 1.7;
}

@media (max-width: 620px) {
	#front .hero-note {
		font-size: 11px;
		margin-top: 8px;
	}
}

#front .hero-visual {
	position: relative;
	z-index: 3;
	height: 590px;
	min-width: 0;
	overflow: visible;
}

@media (max-width: 980px) {
	#front .hero-visual {
		height: 560px;
		max-width: 720px;
		width: 100%;
		margin: 0 auto;
	}
}

@media (max-width: 620px) {
	#front .hero-visual {
		order: 2;
		height: auto;
		margin-top: 10px;
		width: calc(100% + 24px);
		margin-left: -12px;
		aspect-ratio: 596 / 470;
	}
}
#front .hero-visual::before {
	content: '';
	position: absolute;
	inset: 24px 0 -1px 4%;
	border-radius: 42% 42% 32px 32px;
	background: radial-gradient(circle at 54% 33%, rgba(255, 255, 255, 0.98) 0 35%, rgba(255, 245, 232, 0.78) 68%, rgba(255, 236, 213, 0.3) 100%);
	z-index: 0;
}

@media (max-width: 620px) {
	#front .hero-visual::before {
		inset: 14px 0 0px;
		border-radius: 28px;
	}
}
#front .hero-visual::after {
	content: '';
	position: absolute;
	left: 8%;
	right: 2%;
	bottom: 17px;
	height: 92px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 74%);
	z-index: 3;
	pointer-events: none;
}

@media (max-width: 620px) {
	#front .hero-visual::after {
		bottom: 8px;
	}
}
#front .people-stage {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 34px;
}
#front .person {
	position: absolute;
	display: block;
	height: auto;
	max-width: none;
	filter: drop-shadow(0 18px 20px rgba(30, 31, 35, 0.09));
	user-select: none;
	-webkit-user-drag: none;
}
#front .person-yamaki {
	width: 61%;
	left: 2%;
	bottom: -3px;
	z-index: 1;
}

@media (max-width: 980px) {
	#front .person-yamaki {
		width: 56%;
		left: 8%;
	}
}

@media (max-width: 620px) {
	#front .person-yamaki {
		width: 56%;
		left: 8%;
		bottom: 0;
	}
}
#front .person-suzuki {
	width: 65%;
	right: -1.5%;
	bottom: -4px;
	z-index: 2;
}

@media (max-width: 980px) {
	#front .person-suzuki {
		width: 59%;
		right: 5%;
	}
}

@media (max-width: 620px) {
	#front .person-suzuki {
		width: 57%;
		right: 4%;
		bottom: 0;
	}
}
#front .people-caption {
	position: absolute;
	left: 8%;
	right: 3%;
	bottom: 20px;
	z-index: 5;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 8px;
}

@media (max-width: 980px) {
	#front .people-caption {
		left: 12%;
		right: 9%;
	}
}

@media (max-width: 620px) {
	#front .people-caption {
		left: 3%;
		right: 5%;
		bottom: 7px;
		align-items: flex-end;
	}
}
#front .people-copy {
	max-width: 315px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(236, 232, 225, 0.95);
	box-shadow: 0 8px 26px rgba(23, 24, 29, 0.07);
	border-radius: 14px;
	padding: 11px 15px;
}

@media (max-width: 620px) {
	#front .people-copy {
		max-width: 235px;
		padding: 8px 11px;
		border-radius: 12px;
	}
}
#front .people-copy .yt-kicker {
	display: block;
	color: #c96a00;
	font-size: 11.5px;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}

@media (max-width: 620px) {
	#front .people-copy .yt-kicker {
		font-size: 10px;
	}
}
#front .people-copy b {
	display: block;
	font-size: 14px;
	line-height: 1.6;
}

@media (max-width: 620px) {
	#front .people-copy b {
		font-size: 11.8px;
	}
}
#front .people-names {
	font-size: 11.5px;
	color: #6c7180;
	font-weight: 700;
	line-height: 1.55;
	text-align: right;
	padding: 0 2px 2px;
}

@media (max-width: 620px) {
	#front .people-names {
		font-size: 9.8px;
		padding-bottom: 5px;
	}
}
#front .people-names strong {
	display: block;
	color: #272a31;
	font-size: 13px;
}

@media (max-width: 620px) {
	#front .people-names strong {
		font-size: 11.3px;
	}
}

/* ================= 後半レイヤー（v8：MEDIA / BOOK / COLUMN / LINE / 地図） ================= */
/* 本文の不自然な強制改行を減らし、文章は幅に応じて自然に流す */
#front .sec-head p,
#front .hcard p,
#front .sublede,
#front .area-note,
#front .diff-note,
#front .honest-note,
#front .agent-foot {
	word-break: normal;
	overflow-wrap: anywhere;
}
#front .sec-head p .nb,
#front .hcard p .nb,
#front .sublede .nb,
#front .area-note .nb,
#front .diff-note .nb,
#front .honest-note .nb,
#front .agent-foot .nb {
	display: inline;
}
@media (max-width: 760px) {
	#front .sec-head p br.pc,
	#front .hcard p br.pc,
	#front .sublede br.pc,
	#front .area-note br.pc,
	#front .diff-note br.pc,
	#front .honest-note br.pc {
		display: none;
	}
}
#front .wrap {
	max-width: 1140px;
}

/* ================= MEDIA PROOF ================= */
#front .media-proof {
	position: relative;
	background: #fff;
	border-top: 1px solid #eee9e2;
	border-bottom: 1px solid #eee9e2;
	padding: 24px 0 27px;
	overflow: hidden;
}

@media (max-width: 620px) {
	#front .media-proof {
		padding: 18px 0 21px;
	}
}
#front .media-proof-title {
	text-align: center;
	margin: 0 0 15px;
	font-size: 12.5px;
	font-weight: 900;
	color: #656a78;
	letter-spacing: 0.13em;
}

@media (max-width: 620px) {
	#front .media-proof-title {
		margin-bottom: 11px;
	}
}
#front .media-proof-title strong {
	color: #c96a00;
	font-size: 14px;
}
#front .media-marquee {
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

@media (prefers-reduced-motion: reduce) {
	#front .media-marquee {
		mask-image: none;
		-webkit-mask-image: none;
	}
}
#front .media-track {
	display: flex;
	width: max-content;
	gap: 12px;
	animation: mediaMove 34s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
	#front .media-track {
		animation: none;
		transform: none;
		flex-wrap: wrap;
		justify-content: center;
		width: auto;
		padding: 0 18px;
	}
}
#front .media-logo {
	height: 52px;
	min-width: 150px;
	padding: 0 24px;
	border: 1px solid #ece8e1;
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3f4452;
	font-weight: 900;
	white-space: nowrap;
	box-shadow: 0 2px 10px rgba(23, 24, 29, 0.025);
}

@media (max-width: 620px) {
	#front .media-logo {
		height: 44px;
		min-width: 126px;
		padding: 0 17px;
		font-size: 12px;
	}
}
#front .media-logo.big {
	font-size: 18px;
}

@media (max-width: 620px) {
	#front .media-logo.big {
		font-size: 15px;
	}
}
#front .media-logo.small {
	font-size: 13px;
	letter-spacing: 0.01em;
}
#front .media-logo em {
	font-style: normal;
	color: #e8770f;
}
#front .media-more {
	display: block;
	width: max-content;
	margin: 12px auto 0;
	font-size: 12px;
	color: #777b88;
	text-decoration: underline;
	text-underline-offset: 3px;
}
@keyframes mediaMove {
	to {
		transform: translateX(-50%);
	}
}

/* ================= BOOK ================= */
#front .book-band {
	padding: 54px 0;
	background: #fffaf3;
	border-top: 1px solid #f3e8d8;
	border-bottom: 1px solid #f3e8d8;
}
#front .book-inner {
	display: grid;
	grid-template-columns: 170px 1fr auto;
	gap: 30px;
	align-items: center;
}

@media (max-width: 760px) {
	#front .book-inner {
		grid-template-columns: 105px 1fr;
		gap: 18px;
	}
}
#front .book-mock {
	width: 142px;
	aspect-ratio: 3/4;
	margin: auto;
	background: linear-gradient(155deg, #fff 0 68%, #f4a54d 68%);
	border: 1px solid #e8dfd4;
	box-shadow: 0 16px 32px rgba(72, 52, 30, 0.14);
	padding: 19px 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform: rotate(-2deg);
}

@media (max-width: 760px) {
	#front .book-mock {
		width: 96px;
		padding: 12px 9px;
	}
}
#front .book-mock .bk-small {
	font-size: 8.5px;
	font-weight: 700;
	color: #777;
	line-height: 1.6;
}

@media (max-width: 760px) {
	#front .book-mock .bk-small {
		font-size: 6.5px;
	}
}
#front .book-mock .bk-title {
	font-size: 17px;
	font-weight: 900;
	line-height: 1.55;
	color: #222;
}

@media (max-width: 760px) {
	#front .book-mock .bk-title {
		font-size: 11.5px;
	}
}
#front .book-mock .bk-title em {
	font-style: normal;
	color: #dc720e;
}
#front .book-mock .bk-auth {
	font-size: 8.5px;
	font-weight: 700;
	color: #fff;
	text-align: right;
}

@media (max-width: 760px) {
	#front .book-mock .bk-auth {
		font-size: 6.5px;
	}
}
#front .book-copy .eyebrow {
	margin-bottom: 4px;
}
#front .book-copy h2 {
	font-size: clamp(21px, 2.6vw, 29px);
	line-height: 1.55;
	margin: 0 0 9px;
	text-align: left;
}
#front .book-copy p {
	margin: 0;
	color: #565c72;
	font-size: 14.5px;
	line-height: 1.95;
	max-width: 650px;
}

@media (max-width: 760px) {
	#front .book-copy p {
		font-size: 13.5px;
	}
}
#front .book-meta {
	display: block;
	margin-top: 8px;
	font-size: 12.5px;
	color: #7b7f8b;
}
#front .book-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #e9b678;
	background: #fff;
	color: #b96306;
	font-weight: 900;
	border-radius: 12px;
	padding: 13px 20px;
	white-space: nowrap;
}

@media (max-width: 760px) {
	#front .book-link {
		grid-column: 1/-1;
		width: 100%;
	}
}

@media (max-width: 760px) {
	#front .book-link {
		grid-column: 1/-1;
	}
}

/* ================= KNOWLEDGE / COLUMN ================= */
#front .knowledge {
	background: #faf9f7;
}
#front .knowledge-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 25px;
}

@media (max-width: 760px) {
	#front .knowledge-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}
}
#front .knowledge-head .sec-head {
	margin: 0;
}
#front .knowledge-more {
	font-size: 13.5px;
	font-weight: 700;
	color: #c96a00;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
}
#front .column-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 760px) {
	#front .column-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin-inline: auto;
	}
}
#front .column-card {
	background: #fff;
	border: 1px solid #ebe7e0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(23, 24, 29, 0.045);
	transition:
		transform 0.18s,
		box-shadow 0.18s;
}

#front .column-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(23, 24, 29, 0.075);
}
#front .column-visual {
	aspect-ratio: 16/8.2;
	position: relative;
	overflow: hidden;
	background: #f4eee5;
	display: flex;
	align-items: center;
	justify-content: center;
}

#front .column-visual.has-thumb::before,
#front .column-visual.has-thumb::after {
	content: none;
}
#front .column-visual.has-thumb img {
	position: absolute;
	inset: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
#front .column-noimg {
	position: relative;
	z-index: 2;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #c4b39a;
}

@media (max-width: 760px) {
	#front .column-noimg {
		font-size: 48px;
	}
}

#front .column-visual::before,
#front .column-visual::after {
	content: '';
	position: absolute;
	border-radius: 50%;
}
#front .column-visual::before {
	width: 145px;
	height: 145px;
	background: #ffe0bb;
	right: -35px;
	top: -55px;
}
#front .column-visual::after {
	width: 92px;
	height: 92px;
	background: #f7c47f;
	left: -25px;
	bottom: -45px;
}
#front .column-body {
	padding: 17px 18px 20px;
}

@media (max-width: 760px) {
	#front .column-body {
		padding: 14px 15px;
	}
}

#front .column-body .column-cat-wrap {
	display: flex;
	gap: 4px 12px;
	flex-wrap: wrap;
}
#front .column-cat {
	display: block;
	font-size: 11px;
	color: #c96a00;
	font-weight: 900;
}
#front .column-card h3 {
	font-size: 15px;
	line-height: 1.75;
	margin: 7px 0 10px;
	font-weight: 700;
}

/* ================= LINE ================= */
#front .line-section {
	padding: 0 0 72px;
	background: #faf9f7;
}

@media (max-width: 760px) {
	#front .line-section {
		padding-bottom: 52px;
	}
}

@media (min-width: 761px) {
	#front .line-section {
		padding-bottom: 54px;
	}
}
#front .line-panel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px 60px;
	border: 2px solid #73d59a;
	background: #f3fff7;
	border-radius: 20px;
	padding: 26px 30px;
	box-shadow: 0 7px 22px rgba(23, 153, 79, 0.08);
}

@media (max-width: 760px) {
	#front .line-panel {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 22px 18px;
	}
}
#front .line-copy {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: center;
}

@media (max-width: 760px) {
	#front .line-copy {
		align-items: flex-start;
		flex-wrap: wrap;
	}
}
#front .line-badge {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: #19a957;
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--num);
	font-weight: 900;
	font-size: 15px;
	flex: none;
}

@media (max-width: 760px) {
	#front .line-badge {
		width: 50px;
		height: 50px;
		border-radius: 14px;
	}
}

#front .line-text {
}

#front .line-text h2 {
	font-size: 22px;
	margin: 0 0 6px;
	line-height: 1.55;
}

@media (max-width: 760px) {
	#front .line-text h2 {
		font-size: 18px;
	}
}
#front .line-text p {
	margin: 0;
	font-size: 13.5px;
	color: #4f5960;
	line-height: 1.85;
}
#front .line-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

@media (max-width: 760px) {
	#front .line-actions {
		justify-content: center;
	}
}
#front .line-qr {
	width: 92px;
	height: 92px;
	background: #fff;
	border: 1px solid #dce7df;
	border-radius: 8px;
	padding: 5px;
}

@media (max-width: 760px) {
	#front .line-qr {
		width: 82px;
		height: 82px;
	}
}
#front .line-qr img {
	width: 100%;
	height: 100%;
	display: block;
}
#front .line-btn {
	background: #19a957;
	color: #fff;
	padding: 15px 24px;
	border-radius: 12px;
	font-weight: 900;
	white-space: nowrap;
	box-shadow: 0 6px 16px rgba(25, 169, 87, 0.16);
}

@media (max-width: 760px) {
	#front .line-btn {
		flex: 1;
		text-align: center;
		padding: 14px 12px;
	}
}

/* 地図：円の抽象図をやめ、実際の日本列島の形＋対応地点へ */
#front .jmap-real {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
#front .area-wrap {
	grid-template-columns: 340px 1fr;
	gap: 38px;
}

@media (max-width: 860px) {
	#front .area-wrap {
		grid-template-columns: 1fr;
	}
}
#front .area-mapbox {
}

@media (max-width: 860px) {
	#front .area-mapbox {
		max-width: 390px;
		margin: auto;
		width: 100%;
	}
}
#front .area-map-caption {
	text-align: center;
	font-size: 11.5px;
	color: #737885;
	margin-top: 0;
}
#front .jmap-legend {
	margin-top: 14px;
}

/* ----- BOOK / エリア / LINE / FAQ（v9 上書き） ----- */
/* 実際の書影をそのまま使用 */
#front .book-inner {
	grid-template-columns: 170px minmax(0, 1fr) auto;
	gap: clamp(1.125rem, -1.174rem + 4.83vw, 2.125rem);
}

@media (max-width: 760px) {
	#front .book-inner {
		grid-template-columns: 108px minmax(0, 1fr);
		gap: 18px;
	}
}

@media (max-width: 470px) {
	#front .book-inner {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

#front .book-cover-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}
#front .book-cover {
	display: block;
	width: 156px;
	height: auto;
	border-radius: 3px;
	box-shadow: 0 18px 34px rgba(52, 42, 30, 0.16);
	transform: rotate(-1deg);
}

@media (max-width: 760px) {
	#front .book-cover {
		width: 98px;
	}
}

@media (max-width: 470px) {
	#front .book-cover {
		width: 120px;
	}
}

#front .book-copy h2 br {
	display: none;
}

/* 対応エリア：説明を一本化し、日本だけを明瞭な緑で表示 */
#front .area-section {
	background: #fff;
}
#front .area-heading {
	margin-bottom: 26px;
}
#front .area-heading h2 {
	font-size: clamp(28px, 3.2vw, 36px);
}
#front .area-wrap {
	grid-template-columns: 360px minmax(0, 1fr);
	gap: 44px;
	align-items: center;
}

@media (max-width: 860px) {
	#front .area-wrap {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
#front .area-mapbox {
	border: 0;
	background: #fff;
	box-shadow: none;
}

@media (max-width: 860px) {
	#front .area-mapbox {
		margin: 0 auto;
	}
}
#front .jmap-real {
	filter: drop-shadow(0 8px 18px rgba(39, 119, 62, 0.08));
}
#front .area-col .area-cards {
	gap: 12px;
}
#front .area {
	background: var(--tint);
	border-color: #f5e3c8;
	padding: 22px 24px;
}
#front .area b {
	color: #c96a00;
}
#front .area-note {
	margin-top: 20px;
	padding: 14px 18px;
	border-radius: 12px;
	background: #f7f8f7;
	color: #606771;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.8;
}

/* ----- LINE（幅揃えの上書き） ----- */
#front .line-section .wrap {
	max-width: 1140px;
}
#front .line-panel {
	width: 100%;
	margin: 0;
}

/* v11 CTA wording / sizing consistency */

#front .line-btn {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* ----- MEDIA PROOF（後半の上書き） ----- */
#front .media-proof {
	padding: 22px 0 17px;
	background: #fff;
	border-top: 1px solid #eee9e2;
	border-bottom: 1px solid #eee9e2;
	overflow: hidden;
}

@media (max-width: 620px) {
	#front .media-proof {
		padding: 17px 0 14px;
	}
}
#front .media-proof-title {
	margin: 0 0 13px;
	text-align: center;
	font-size: 13px;
	font-weight: 900;
	color: #505563;
	letter-spacing: 0.035em;
}

@media (max-width: 620px) {
	#front .media-proof-title {
		font-size: 11px;
		margin-bottom: 9px;
	}
}
#front .media-proof-title .group-label {
	color: #343944;
}
#front .media-proof-title .sep {
	padding: 0 4px;
	color: #a3a5aa;
}

@media (max-width: 620px) {
	#front .media-proof-title .sep {
		padding: 0 2px;
	}
}
#front .media-proof-title strong {
	font-size: 14px;
	color: #c96a00;
}

@media (max-width: 620px) {
	#front .media-proof-title strong {
		font-size: 12px;
	}
}
#front .media-marquee {
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

@media (prefers-reduced-motion: reduce) {
	#front .media-marquee {
		mask-image: none;
		-webkit-mask-image: none;
	}
}
#front .media-track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: 80px;
	animation: mediaMoveFinal 38s linear infinite;
	padding: 5px 0;
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	#front .media-track {
		animation: none;
		transform: none;
		flex-wrap: wrap;
		justify-content: center;
		width: auto;
		padding: 2px 18px;
	}
}

@media (max-width: 620px) {
	#front .media-track {
		gap: 27px;
	}
}
#front .media-item {
	width: 178px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

@media (max-width: 620px) {
	#front .media-item {
		width: 116px;
	}
}
#front .media-item img {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.88;
	filter: saturate(0.88);
	transition:
		opacity 0.18s,
		filter 0.18s,
		transform 0.18s;
}

@media (max-width: 620px) {
	#front .media-item img {
		width: 138px;
	}
}
#front .media-item.compact img {
}

@media (max-width: 620px) {
	#front .media-item.compact img {
	}
}
#front .media-item:hover img {
	opacity: 1;
	filter: saturate(1);
	transform: translateY(-1px);
}
#front .media-proof-note {
	margin: 9px auto 0;
	max-width: 960px;
	padding: 0 24px;
	text-align: center;
	font-size: 10.5px;
	line-height: 1.7;
	color: #8a8f9a;
}

@media (max-width: 620px) {
	#front .media-proof-note {
		font-size: 9.5px;
		padding: 0 18px;
	}
}
#front .media-more {
	display: block;
	width: max-content;
	margin: 6px auto 0;
	font-size: 11.5px;
	color: #737885;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 620px) {
	#front .media-more {
		font-size: 10.5px;
	}
}
@keyframes mediaMoveFinal {
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	#front .media-track .media-item:nth-child(n + 11) {
		display: none;
	}
}

/* ----- エージェント「もっと見る」（後半の上書き） ----- */
#front .agents-rail .af-more {
	flex: 0 0 310px;
	scroll-snap-align: start;
	min-height: 100%;
	border: 1.5px solid #f3c98e;
	border-radius: 18px;
	background: linear-gradient(135deg, #fffdf9, #fff4e6);
	box-shadow: var(--shadow-s);
	overflow: hidden;
}

@media (max-width: 560px) {
	#front .agents-rail .af-more {
		flex-basis: 280px;
	}
}

#front .af-more-link {
	min-height: 100%;
	height: 100%;
	padding: 28px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 14px;
	transition:
		transform 0.15s ease,
		background 0.15s ease;
}

#front .af-more-link:hover {
	background: #fff0da;
}

#front .af-more-icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--grad-deep);
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 8px 20px rgba(232, 119, 15, 0.18);
}

#front .af-more-kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #c96a00;
}

#front .af-more-title {
	font-size: 20px;
	font-weight: 900;
	line-height: 1.55;
}

#front .af-more-text {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.8;
	color: var(--sub);
}

#front .af-more-cta {
	margin-top: 2px;
	font-size: 14px;
	font-weight: 900;
	color: #c96a00;
	text-decoration: underline;
	text-underline-offset: 4px;
}
