/* ============================================================
 * Gold Kaitori Media v3.1.0 - LP styles (ワイヤーフレーム準拠)
 * ------------------------------------------------------------
 * 参考: https://kaitori-top.com/gold/rank_p.php
 *      ワイヤーフレーム: 全14セクション
 *
 * 設計思想:
 *   - シンプル・縦長・情報密度重視
 *   - 白ベース + 朱色（#c8181a）+ 金（#c8a142）+ 緑CTA（#2c8a3e）
 *   - 過度な装飾を避け、テキストの読みやすさを最優先
 *   - 画像差し替え部分はグレーのプレースホルダで明示
 * ============================================================ */

/* === Variables === */
:root {
	--lp-primary:    #c8181a;     /* 朱色（強調・電話CTA） */
	--lp-primary-dk: #9a1416;
	--lp-primary-lt: #fdf2f2;
	--lp-cta:        #2c8a3e;     /* 緑（メインCTA：WEB申込） */
	--lp-cta-dk:     #1f6a2e;
	--lp-cta-lt:     #e8f5ec;
	--lp-gold:       #c8a142;     /* 金 */
	--lp-gold-dk:    #8c6f1c;
	--lp-gold-lt:    #fff8e6;
	--lp-text:       #2a2620;     /* 本文 */
	--lp-text-soft:  #555;
	--lp-muted:      #8a8a8a;
	--lp-bg:         #fff;
	--lp-bg-soft:    #faf7f0;     /* セクション背景（薄ベージュ） */
	--lp-bg-alt:     #f5efe0;
	--lp-border:     #e6dfd0;
	--lp-border-soft: #f0ebe0;
	--lp-shadow:     0 2px 8px rgba(0, 0, 0, 0.06);
	--lp-shadow-md:  0 4px 16px rgba(140, 111, 28, 0.12);
	--lp-shadow-lg:  0 8px 32px rgba(140, 111, 28, 0.18);
	--lp-radius:     6px;
	--lp-radius-lg:  10px;
	--lp-font:       -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
	--lp-font-serif: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
	--lp-container:  720px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }

body.is-lp {
	margin: 0;
	font-family: var(--lp-font);
	color: var(--lp-text);
	background: var(--lp-bg-soft);
	line-height: 1.75;
	font-size: 15px;
	-webkit-font-smoothing: antialiased;
	padding-bottom: 80px;
}
body.is-lp img,
body.is-lp svg { max-width: 100%; height: auto; display: block; }
body.is-lp a { color: inherit; text-decoration: none; }
body.is-lp ul, body.is-lp ol { padding-left: 0; list-style: none; margin: 0; }
body.is-lp button { font-family: inherit; }

.lp-container {
	max-width: var(--lp-container);
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

.sp-only { display: none; }
@media (max-width: 600px) {
	.sp-only { display: inline; }
}

/* ============================================================
 * Common section title
 * ============================================================ */
.lp-section-title {
	text-align: center;
	font-family: var(--lp-font-serif);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.45;
	color: var(--lp-text);
	margin: 0 0 24px;
	padding: 16px 0;
	border-top: 2px solid var(--lp-gold);
	border-bottom: 2px solid var(--lp-gold);
	letter-spacing: 0.02em;
}
.lp-section-title__icon {
	display: inline-block;
	margin-right: 6px;
	font-size: 0.95em;
}
@media (max-width: 600px) {
	.lp-section-title { font-size: 18px; padding: 12px 0; }
}

/* ============================================================
 * Buttons
 * ============================================================ */
.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2px;
	padding: 14px 24px;
	border-radius: var(--lp-radius);
	font-weight: 700;
	text-align: center;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	cursor: pointer;
	border: none;
	font-family: inherit;
	line-height: 1.4;
	color: #fff;
}
.lp-btn:hover { transform: translateY(-1px); color: #fff; }
.lp-btn--block { display: flex; width: 100%; margin-top: 12px; }
.lp-btn--xl { padding: 18px 28px; font-size: 16px; }
.lp-btn--sm { padding: 8px 14px; font-size: 12px; gap: 0; }

.lp-btn--primary {
	background: linear-gradient(135deg, var(--lp-cta) 0%, var(--lp-cta-dk) 100%);
	box-shadow: 0 3px 10px rgba(44, 138, 62, 0.3);
}
.lp-btn--primary:hover { box-shadow: 0 5px 14px rgba(44, 138, 62, 0.4); }

.lp-btn--tel {
	background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dk) 100%);
	box-shadow: 0 3px 10px rgba(200, 24, 26, 0.3);
}
.lp-btn--tel:hover { box-shadow: 0 5px 14px rgba(200, 24, 26, 0.4); }

.lp-btn--secondary {
	background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-dk) 100%);
	box-shadow: 0 3px 10px rgba(140, 111, 28, 0.3);
	color: #fff;
}
.lp-btn--secondary:hover { box-shadow: 0 5px 14px rgba(140, 111, 28, 0.4); color: #fff; }

.lp-btn__sub { font-size: 12px; font-weight: 600; opacity: 0.95; }
.lp-btn__main {
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0.05em;
	font-family: Arial, sans-serif;
}
.lp-btn__note { font-size: 11px; opacity: 0.85; font-weight: 500; margin-top: 2px; }
.lp-btn--xl .lp-btn__main { font-size: 26px; }

@media (max-width: 600px) {
	.lp-btn--xl .lp-btn__main { font-size: 20px; }
	.lp-btn--xl { padding: 14px 16px; font-size: 14px; }
}

/* ============================================================
 * Image Placeholder (グレー)
 * ============================================================ */
[class*="image-placeholder"],
[class*="banner-placeholder"],
[class*="chart-placeholder"] {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		repeating-linear-gradient(
			135deg,
			#ececec 0,
			#ececec 8px,
			#e0e0e0 8px,
			#e0e0e0 16px
		);
	color: #666;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	border-radius: var(--lp-radius);
	border: 1px dashed #b8b8b8;
	padding: 24px;
	min-height: 160px;
	margin: 12px 0;
}
[class*="image-placeholder"] span,
[class*="banner-placeholder"] span,
[class*="chart-placeholder"] span {
	line-height: 1.6;
}
[class*="image-placeholder"] small,
[class*="banner-placeholder"] small,
[class*="chart-placeholder"] small {
	display: block;
	font-size: 11px;
	color: #888;
	margin-top: 4px;
}

/* ============================================================
 * 0. STICKY BAR（カウントダウン）
 * ============================================================ */
.lp-sticky-bar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dk) 100%);
	color: #fff;
	padding: 8px 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	font-size: 13px;
}
.lp-sticky-bar__campaign {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	text-align: center;
}
.lp-sticky-bar__icon { font-size: 16px; }
.lp-sticky-bar__text { font-weight: 700; }
.lp-sticky-bar__text strong { color: var(--lp-gold-lt); padding: 0 2px; }
.lp-sticky-bar__countdown {
	background: rgba(255, 255, 255, 0.18);
	padding: 2px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-family: Arial, sans-serif;
}
.lp-sticky-bar__countdown strong { color: var(--lp-gold-lt); }
.lp-sticky-bar__cta {
	background: var(--lp-gold);
	color: #1c1812 !important;
	padding: 4px 12px;
	border-radius: 4px;
	font-weight: 800;
	font-size: 12px;
	text-decoration: none;
	white-space: nowrap;
}
@media (max-width: 600px) {
	.lp-sticky-bar { font-size: 11px; padding: 6px 0; }
	.lp-sticky-bar__campaign { gap: 4px; }
	.lp-sticky-bar__countdown { font-size: 10px; padding: 2px 6px; }
	.lp-sticky-bar__cta { font-size: 11px; padding: 3px 8px; }
}

/* ============================================================
 * 1. FV
 * ============================================================ */
.lp-fv {
	background: #fff;
	padding: 24px 0 32px;
	border-bottom: 4px solid var(--lp-gold);
}

/* LIVE 金価格 */
.lp-fv__live {
	background: linear-gradient(135deg, var(--lp-gold-lt) 0%, #fff 100%);
	border: 2px solid var(--lp-gold);
	border-radius: var(--lp-radius);
	padding: 12px 16px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 16px;
	box-shadow: var(--lp-shadow);
}
.lp-fv__live-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--lp-gold-dk);
	letter-spacing: 0.05em;
}
.lp-fv__live-price {
	font-family: var(--lp-font-serif);
	font-size: 24px;
	font-weight: 900;
	color: var(--lp-gold-dk);
	letter-spacing: 0.02em;
}
.lp-fv__live-diff {
	font-size: 13px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 4px;
}
.lp-fv__live-diff.is-up { background: var(--lp-primary-lt); color: var(--lp-primary); }
.lp-fv__live-diff.is-down { background: #e8f5ec; color: var(--lp-cta); }

/* ペルソナ別タブ */
.lp-fv__persona { margin-bottom: 18px; }
.lp-fv__persona-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--lp-text);
	margin: 0 0 8px;
	text-align: center;
}
.lp-fv__persona-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 6px;
}
.lp-fv__persona-tab {
	background: #fff;
	border: 2px solid var(--lp-border);
	border-radius: var(--lp-radius);
	padding: 10px 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--lp-text-soft);
	cursor: pointer;
	transition: all 0.15s ease;
	text-align: center;
}
.lp-fv__persona-tab:hover {
	border-color: var(--lp-gold);
	color: var(--lp-gold-dk);
}
.lp-fv__persona-tab.is-active {
	background: var(--lp-gold);
	border-color: var(--lp-gold-dk);
	color: #fff;
}
.lp-fv__persona-tab-icon {
	display: block;
	font-size: 18px;
	margin-bottom: 2px;
}

/* タイトル */
.lp-fv__title {
	font-family: var(--lp-font-serif);
	font-size: 26px;
	font-weight: 900;
	line-height: 1.45;
	margin: 0 0 18px;
	text-align: center;
	color: var(--lp-text);
}
.lp-fv__title em {
	font-style: normal;
	color: var(--lp-primary);
	border-bottom: 3px solid var(--lp-gold);
	padding-bottom: 1px;
}
@media (max-width: 600px) {
	.lp-fv__title { font-size: 21px; }
}

.lp-fv__scroll-hint {
	text-align: center;
	color: var(--lp-muted);
	font-size: 12px;
	margin: 16px 0 0;
}

/* ============================================================
 * 1. 簡易査定シミュレーター（FV内）
 * ============================================================ */
.lp-sim {
	background: var(--lp-bg-soft);
	border: 2px solid var(--lp-gold);
	border-radius: var(--lp-radius-lg);
	padding: 16px;
	margin-bottom: 16px;
	box-shadow: var(--lp-shadow-md);
}
.lp-sim__title {
	font-size: 13px;
	font-weight: 800;
	color: var(--lp-gold-dk);
	margin: 0 0 12px;
	text-align: center;
}
.lp-sim__title-icon { margin-right: 4px; }
.lp-sim__form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 12px;
}
.lp-sim__row label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--lp-text);
}
.lp-sim__row select,
.lp-sim__row input {
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid var(--lp-border);
	border-radius: 4px;
	background: #fff;
	font-family: inherit;
}
.lp-sim__result {
	background: #fff;
	border: 2px dashed var(--lp-primary);
	border-radius: var(--lp-radius);
	padding: 14px;
	text-align: center;
	margin-bottom: 8px;
}
.lp-sim__result-label {
	display: block;
	font-size: 12px;
	color: var(--lp-text-soft);
	margin-bottom: 4px;
}
.lp-sim__result-num {
	font-family: var(--lp-font-serif);
	font-size: 24px;
	font-weight: 900;
	color: var(--lp-primary);
	letter-spacing: 0.02em;
}
.lp-sim__result-tilde { font-size: 16px; color: var(--lp-text-soft); margin: 0 4px; }
.lp-sim__note {
	font-size: 11px;
	color: var(--lp-muted);
	text-align: center;
	margin: 0;
}
@media (max-width: 480px) {
	.lp-sim__form { grid-template-columns: 1fr; }
	.lp-sim__result-num { font-size: 20px; }
}

/* ============================================================
 * 2. 共感・問題提起
 * ============================================================ */
.lp-empathy {
	padding: 32px 0;
	background: var(--lp-bg);
}
.lp-empathy__case {
	background: var(--lp-text);
	color: #fff;
	border-radius: var(--lp-radius-lg);
	padding: 20px 16px;
	margin-bottom: 20px;
	text-align: center;
}
.lp-empathy__case-label {
	font-family: var(--lp-font-serif);
	font-size: 16px;
	font-weight: 800;
	margin: 0 0 12px;
}
.lp-empathy__case-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 8px;
	margin-bottom: 12px;
}
.lp-empathy__case-item {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--lp-radius);
	padding: 12px 8px;
}
.lp-empathy__case-item.is-best {
	background: rgba(245, 213, 126, 0.18);
	border-color: var(--lp-gold);
}
.lp-empathy__case-shop {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 4px;
}
.lp-empathy__case-item strong {
	font-family: var(--lp-font-serif);
	font-size: 18px;
	font-weight: 900;
	color: #fff;
}
.lp-empathy__case-item.is-best strong { color: var(--lp-gold-lt); }
.lp-empathy__case-conclusion {
	font-size: 14px;
	font-weight: 700;
	margin: 0;
	color: var(--lp-gold-lt);
}
.lp-empathy__case-conclusion strong {
	color: var(--lp-primary);
	background: #fff;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: var(--lp-font-serif);
	font-size: 16px;
}

/* ありがちな失敗 */
.lp-empathy__failures {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 20px;
}
.lp-empathy__failure {
	background: var(--lp-primary-lt);
	border: 1px solid var(--lp-primary);
	border-left: 4px solid var(--lp-primary);
	border-radius: var(--lp-radius);
	padding: 14px;
}
.lp-empathy__failure-label {
	display: inline-block;
	background: var(--lp-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 3px;
	margin-bottom: 6px;
}
.lp-empathy__failure h3 {
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 4px;
	color: var(--lp-text);
}
.lp-empathy__failure p {
	font-size: 12px;
	color: var(--lp-text-soft);
	margin: 0;
	line-height: 1.6;
}
@media (max-width: 600px) {
	.lp-empathy__failures { grid-template-columns: 1fr; }
}

.lp-empathy__lead {
	background: var(--lp-cta-lt);
	border: 1px solid var(--lp-cta);
	border-radius: var(--lp-radius);
	padding: 14px 16px;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}
.lp-empathy__lead-icon { margin-right: 4px; }
.lp-empathy__lead strong { color: var(--lp-cta-dk); }

/* ============================================================
 * 3. 信頼構築（教育）
 * ============================================================ */
.lp-trust {
	padding: 32px 0;
	background: var(--lp-bg-soft);
}
.lp-trust__purpose {
	background: #fffce8;
	border: 1px solid #ffd966;
	border-radius: var(--lp-radius);
	padding: 12px 14px;
	font-size: 12px;
	color: var(--lp-text);
	margin-bottom: 20px;
	line-height: 1.7;
}
.lp-trust__purpose-icon { margin-right: 4px; }
.lp-trust__purpose strong { color: var(--lp-primary-dk); }

.lp-trust__ng-list {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: 16px 20px;
	margin-bottom: 24px;
}
.lp-trust__ng-list li {
	position: relative;
	padding: 10px 0 10px 28px;
	font-size: 14px;
	border-bottom: 1px dashed var(--lp-border);
	line-height: 1.6;
}
.lp-trust__ng-list li:last-child { border-bottom: none; }
.lp-trust__ng-list li::before {
	content: "✕";
	position: absolute;
	left: 4px;
	top: 10px;
	color: var(--lp-primary);
	font-weight: 900;
	font-size: 16px;
}

.lp-trust__good-title {
	font-family: var(--lp-font-serif);
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 14px;
	color: var(--lp-text);
	text-align: center;
}
.lp-trust__good-icon { color: var(--lp-cta); margin-right: 4px; }
.lp-trust__good-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	margin-bottom: 20px;
}
.lp-trust__good-item {
	background: #fff;
	border: 2px solid var(--lp-cta);
	border-radius: var(--lp-radius-lg);
	padding: 16px 10px;
	text-align: center;
	box-shadow: var(--lp-shadow);
}
.lp-trust__good-num {
	display: inline-block;
	background: var(--lp-cta);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 3px;
	margin-bottom: 8px;
}
.lp-trust__good-icon-large {
	display: block;
	font-size: 28px;
	font-weight: 900;
	color: var(--lp-cta);
	font-family: var(--lp-font-serif);
	margin-bottom: 6px;
}
.lp-trust__good-item strong {
	display: block;
	font-size: 13px;
	font-weight: 800;
	color: var(--lp-text);
	line-height: 1.4;
}
@media (max-width: 600px) {
	.lp-trust__good-grid { grid-template-columns: 1fr; }
	.lp-trust__good-icon-large { font-size: 24px; }
}

.lp-trust__next {
	background: var(--lp-gold-lt);
	border: 1px solid var(--lp-gold);
	border-radius: var(--lp-radius);
	padding: 12px 14px;
	font-size: 13px;
	margin: 0;
	line-height: 1.6;
}
.lp-trust__next-icon { color: var(--lp-gold-dk); margin-right: 4px; }
.lp-trust__next strong { color: var(--lp-gold-dk); }

/* ============================================================
 * 4. ランキングTOP3（第1回）
 * ============================================================ */
.lp-ranking {
	padding: 32px 0;
	background: var(--lp-bg);
}
.lp-ranking__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
	margin-bottom: 24px;
}
.lp-ranking__card {
	background: #fff;
	border: 2px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: 14px 10px;
	text-align: center;
	box-shadow: var(--lp-shadow);
}
.lp-ranking__card--1 {
	border: 2px solid var(--lp-cta);
	box-shadow: 0 0 0 1px var(--lp-cta), var(--lp-shadow-md);
	background: linear-gradient(180deg, var(--lp-cta-lt) 0%, #fff 30%);
}
.lp-ranking__card--2 {
	border-color: #c0c0c0;
	background: linear-gradient(180deg, #f5f5f5 0%, #fff 30%);
}
.lp-ranking__card--3 {
	border-color: #d4a574;
	background: linear-gradient(180deg, #fdf2e6 0%, #fff 30%);
}
.lp-ranking__rank {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-bottom: 6px;
}
.lp-ranking__rank-medal { font-size: 22px; }
.lp-ranking__rank-num {
	font-family: var(--lp-font-serif);
	font-weight: 900;
	font-size: 16px;
}
.lp-ranking__card--1 .lp-ranking__rank-num { color: var(--lp-cta-dk); }
.lp-ranking__image-placeholder {
	min-height: 80px;
	margin: 0 0 8px;
	font-size: 11px;
	padding: 8px;
}
.lp-ranking__name {
	font-size: 15px;
	font-weight: 800;
	margin: 0 0 4px;
	font-family: var(--lp-font-serif);
}
.lp-ranking__score {
	font-size: 11px;
	margin: 0 0 8px;
	color: var(--lp-text-soft);
	line-height: 1.4;
}
.lp-ranking__stars {
	display: block;
	color: var(--lp-gold);
	font-size: 13px;
	letter-spacing: 1px;
}
.lp-ranking__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	justify-content: center;
	margin-bottom: 10px;
	min-height: 36px;
}
.lp-ranking__badge {
	background: var(--lp-primary-lt);
	color: var(--lp-primary-dk);
	border: 1px solid var(--lp-primary);
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 3px;
}
.lp-ranking__card .lp-btn {
	font-size: 12px;
	padding: 8px 6px;
	width: 100%;
	margin: 0;
	gap: 0;
}

@media (max-width: 600px) {
	/* v3.2.4: SPでも3カラム横並びを維持（縦並びにしない） */
	.lp-ranking__grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 6px;
	}
	/* SPの極小幅でも収まるよう、カード内の各要素を圧縮 */
	.lp-ranking__card {
		padding: 8px 4px;
	}
	.lp-ranking__rank { gap: 2px; margin-bottom: 4px; }
	.lp-ranking__rank-medal { font-size: 16px; }
	.lp-ranking__rank-num { font-size: 12px; }
	.lp-ranking__image { margin: 0 0 4px; }
	.lp-ranking__image img {
		max-height: 70px;     /* SPではロゴ高さを抑える */
		object-fit: contain;
	}
	.lp-ranking__image-placeholder { min-height: 60px; }
	.lp-ranking__name {
		font-size: 12px;
		line-height: 1.25;
		margin: 0 0 2px;
		word-break: keep-all;
		overflow-wrap: anywhere;
	}
	.lp-ranking__score {
		font-size: 9px;
		line-height: 1.3;
		margin: 0 0 4px;
	}
	.lp-ranking__stars { font-size: 10px; letter-spacing: 0; }
	.lp-ranking__badges {
		gap: 2px;
		min-height: auto;
		margin-bottom: 6px;
	}
	.lp-ranking__badge {
		font-size: 8.5px;
		padding: 1px 3px;
		line-height: 1.3;
	}
	/* CTAボタン：超小型化 */
	.lp-ranking__card .lp-btn-rich {
		padding: 6px 2px;
		min-height: auto;
	}
	.lp-ranking__card .lp-btn-rich__rank {
		font-size: 9px;
		padding: 1px 4px;
		gap: 1px;
		display: inline-flex;
		align-items: center;
		margin-bottom: 2px;
	}
	.lp-ranking__card .lp-btn-rich__rank-icon { font-size: 10px; }
	.lp-ranking__card .lp-btn-rich__main {
		font-size: 11px;
		font-weight: 700;
		line-height: 1.2;
		margin: 2px 0;
	}
	.lp-ranking__card .lp-btn-rich__main-arrow { font-size: 10px; }
	.lp-ranking__card .lp-btn-rich__sub {
		font-size: 9px;
		line-height: 1.2;
		margin-top: 2px;
	}
}

/* v3.2.4: さらに極小画面（〜380px）でも崩れないよう微調整 */
@media (max-width: 380px) {
	.lp-ranking__grid { gap: 4px; }
	.lp-ranking__card { padding: 6px 3px; }
	.lp-ranking__name { font-size: 11px; }
	.lp-ranking__badge { font-size: 8px; }
}

/* スペック比較表 */
.lp-ranking__spec {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	overflow: hidden;
	margin-top: 16px;
}
.lp-ranking__spec-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}
.lp-ranking__spec-table th,
.lp-ranking__spec-table td {
	padding: 10px 8px;
	border-bottom: 1px solid var(--lp-border-soft);
	text-align: left;
	line-height: 1.5;
	vertical-align: middle;
}
.lp-ranking__spec-table thead th {
	background: var(--lp-text);
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	text-align: center;
	border-bottom: none;
}
.lp-ranking__spec-table thead th.is-rank1 {
	background: var(--lp-cta);
}
.lp-ranking__spec-table tbody th {
	background: var(--lp-bg-soft);
	color: var(--lp-text);
	font-weight: 700;
	width: 22%;
	font-size: 11px;
}
.lp-ranking__spec-table tbody td {
	width: 26%;
	font-size: 11px;
}
.lp-ranking__spec-table tbody td.is-rank1 {
	background: var(--lp-cta-lt);
	font-weight: 600;
}
.lp-ranking__spec-note {
	background: var(--lp-gold-lt);
	border-top: 1px solid var(--lp-gold);
	padding: 10px 14px;
	font-size: 11px;
	color: var(--lp-gold-dk);
	margin: 0;
	text-align: center;
}

@media (max-width: 600px) {
	.lp-ranking__spec { overflow-x: auto; }
	.lp-ranking__spec-table { min-width: 540px; }
}

/* ============================================================
 * 5. 緊急性訴求（後で売ろうが一番のリスク）
 * ============================================================ */
.lp-urgency {
	padding: 32px 0;
	background: var(--lp-primary-lt);
	border-top: 4px solid var(--lp-primary);
	border-bottom: 4px solid var(--lp-primary);
}
.lp-urgency .lp-section-title {
	background: #fff;
	color: var(--lp-primary-dk);
	border-color: var(--lp-primary);
}
.lp-urgency__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
	align-items: stretch;
}
.lp-urgency__chart-placeholder {
	min-height: 200px;
	margin: 0;
}
.lp-urgency__text {
	background: #fff;
	border: 1px solid var(--lp-primary);
	border-radius: var(--lp-radius);
	padding: 16px;
	font-size: 13px;
	line-height: 1.7;
}
.lp-urgency__highlight {
	font-family: var(--lp-font-serif);
	font-size: 16px;
	font-weight: 800;
	color: var(--lp-primary-dk);
	margin: 0 0 8px;
	line-height: 1.5;
}
.lp-urgency__highlight strong {
	font-size: 22px;
	display: block;
	color: var(--lp-primary);
}
.lp-urgency__highlight small {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: var(--lp-text-soft);
}
.lp-urgency__text > p {
	margin: 0 0 12px;
	color: var(--lp-text-soft);
}
.lp-urgency__warning {
	background: #fff5f5;
	border-left: 4px solid var(--lp-primary);
	padding: 10px 12px;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1.6;
	color: var(--lp-text);
}
.lp-urgency__warning-icon { margin-right: 4px; }
.lp-urgency__warning strong { display: inline-block; color: var(--lp-primary-dk); margin-bottom: 2px; }

@media (max-width: 600px) {
	.lp-urgency__layout { grid-template-columns: 1fr; }
}

/* ============================================================
 * 6. 1位業者 詳細解説
 * ============================================================ */
.lp-detail {
	padding: 32px 0;
	background: var(--lp-bg);
}

/* Q&A */
.lp-detail__qa {
	background: var(--lp-cta-lt);
	border: 1px solid var(--lp-cta);
	border-left: 4px solid var(--lp-cta);
	border-radius: var(--lp-radius);
	padding: 14px 16px;
	margin-bottom: 14px;
}
.lp-detail__qa-q {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.6;
}
.lp-detail__qa-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: var(--lp-cta);
	color: #fff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 900;
	flex-shrink: 0;
	font-family: var(--lp-font-serif);
}
.lp-detail__qa-q strong { color: var(--lp-text); font-weight: 800; }
.lp-detail__qa-a {
	font-size: 13px;
	line-height: 1.75;
	color: var(--lp-text-soft);
	margin: 0 0 10px;
	padding-left: 30px;
}
.lp-detail__qa-a strong { color: var(--lp-cta-dk); font-weight: 700; }
.lp-detail__qa-conclusion {
	background: #fff;
	border-left: 3px solid var(--lp-cta);
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 700;
	color: var(--lp-cta-dk);
	margin: 0;
	border-radius: 0 4px 4px 0;
}
.lp-detail__qa-check { margin-right: 4px; }

/* バナー + 特徴リスト レイアウト（v3.2.7: バランス改善） */
.lp-detail__layout {
	display: grid;
	grid-template-columns: minmax(280px, 360px) 1fr; /* バナー幅を 240→280-360 に拡大 */
	gap: 24px;
	margin: 24px 0;
	align-items: center; /* バナー中心と箇条書き中心を揃える */
}
.lp-detail__banner-placeholder {
	min-height: 200px;
	margin: 0;
}
.lp-detail__features {
	margin: 0;
	padding: 0;
	list-style: none;
}
.lp-detail__features li {
	position: relative;
	padding: 7px 0 7px 26px;
	font-size: 13px;
	line-height: 1.55;
	border-bottom: 1px dashed var(--lp-border);
}
.lp-detail__features li:last-child { border-bottom: none; }
.lp-detail__features li::before {
	content: "✓";
	position: absolute;
	left: 4px;
	top: 7px;
	color: var(--lp-cta);
	font-weight: 900;
	font-size: 14px;
}
.lp-detail__features li small {
	display: block;
	font-size: 11px;
	color: var(--lp-muted);
	margin-top: 2px;
}
@media (max-width: 600px) {
	.lp-detail__layout {
		grid-template-columns: 1fr;
		align-items: stretch;
		gap: 16px;
	}
}

.lp-detail__sub-title {
	font-family: var(--lp-font-serif);
	font-size: 18px;
	font-weight: 800;
	margin: 24px 0 14px;
	padding-left: 12px;
	border-left: 4px solid var(--lp-gold);
	color: var(--lp-text);
}
.lp-detail__sub-icon { margin-right: 4px; }

/* 口コミ */
.lp-detail__voice {
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	padding: 14px 16px;
	margin-bottom: 12px;
}
.lp-detail__voice-stars {
	color: var(--lp-gold);
	letter-spacing: 1px;
	margin-right: 8px;
}
.lp-detail__voice-tag {
	display: inline-block;
	background: var(--lp-cta);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 3px;
	margin-bottom: 6px;
}
.lp-detail__voice-body {
	font-size: 13px;
	line-height: 1.85;
	margin: 4px 0;
	color: var(--lp-text);
}
.lp-detail__voice-profile {
	font-size: 11px;
	color: var(--lp-muted);
	margin: 0;
	padding-top: 6px;
	border-top: 1px dashed var(--lp-border);
}

/* 買取実績 */
.lp-detail__examples {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
	margin-bottom: 8px;
}
.lp-detail__example {
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	padding: 12px;
	text-align: center;
}
.lp-detail__example-no {
	display: inline-block;
	background: var(--lp-gold);
	color: #1c1812;
	font-size: 11px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 3px;
	margin-bottom: 8px;
}
.lp-detail__example-image-placeholder {
	min-height: 90px;
	margin: 0 0 8px;
	font-size: 11px;
	padding: 8px;
}
.lp-detail__example-price {
	display: block;
	font-family: var(--lp-font-serif);
	font-size: 16px;
	font-weight: 900;
	color: var(--lp-primary-dk);
	margin: 4px 0;
}
.lp-detail__example-name {
	font-size: 11px;
	color: var(--lp-text-soft);
	margin: 0;
	line-height: 1.5;
}
.lp-detail__examples-note {
	font-size: 11px;
	color: var(--lp-muted);
	background: var(--lp-gold-lt);
	border-left: 3px solid var(--lp-gold);
	padding: 8px 12px;
	margin: 0 0 16px;
}
@media (max-width: 600px) {
	.lp-detail__examples { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
 * 7. 「これ売れる？」不安解消
 * ============================================================ */
.lp-resolve {
	padding: 32px 0;
	background: var(--lp-bg-soft);
}
.lp-resolve__purpose {
	background: #fffce8;
	border: 1px solid #ffd966;
	border-radius: var(--lp-radius);
	padding: 12px 14px;
	font-size: 12px;
	margin-bottom: 20px;
	line-height: 1.7;
}
.lp-resolve__purpose-icon { margin-right: 4px; }
.lp-resolve__purpose strong { color: var(--lp-primary-dk); }

.lp-resolve__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}
.lp-resolve__item {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: 14px 10px;
	text-align: center;
	box-shadow: var(--lp-shadow);
}
.lp-resolve__item-icon {
	display: block;
	font-size: 32px;
	margin-bottom: 6px;
}
.lp-resolve__item strong {
	display: block;
	font-size: 13px;
	font-weight: 800;
	color: var(--lp-text);
	margin-bottom: 8px;
	line-height: 1.4;
}
.lp-resolve__item-ok {
	display: inline-block;
	background: var(--lp-cta-lt);
	color: var(--lp-cta-dk);
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 3px;
	border: 1px solid var(--lp-cta);
}
@media (max-width: 600px) {
	.lp-resolve__grid { grid-template-columns: 1fr 1fr; }
}

.lp-resolve__conclusion {
	background: var(--lp-cta-lt);
	border: 1px solid var(--lp-cta);
	border-radius: var(--lp-radius);
	padding: 14px 16px;
	font-size: 13px;
	margin: 0;
	line-height: 1.7;
}
.lp-resolve__conclusion-icon { color: var(--lp-cta); margin-right: 4px; font-weight: 900; }
.lp-resolve__conclusion strong { color: var(--lp-cta-dk); }

/* ============================================================
 * 8. 2位・3位 詳細
 * ============================================================ */
.lp-others {
	padding: 32px 0;
	background: var(--lp-bg);
}
.lp-others__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}
.lp-others__card {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: 16px;
	box-shadow: var(--lp-shadow);
}
.lp-others__card--2 { border-top: 4px solid #c0c0c0; }
.lp-others__card--3 { border-top: 4px solid #d4a574; }
.lp-others__head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px dashed var(--lp-border);
}
.lp-others__medal { font-size: 20px; }
.lp-others__rank-num {
	font-family: var(--lp-font-serif);
	font-size: 16px;
	font-weight: 800;
	color: var(--lp-text);
}
.lp-others__banner-placeholder {
	min-height: 120px;
	margin: 0 0 12px;
	font-size: 11px;
	padding: 8px;
}
.lp-others__features li {
	position: relative;
	padding: 6px 0 6px 4px;
	font-size: 13px;
	line-height: 1.5;
	border-bottom: 1px dashed var(--lp-border-soft);
}
.lp-others__features li:last-child { border-bottom: none; }

.lp-others__voice {
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	padding: 10px 12px;
	margin: 12px 0;
}
.lp-others__voice-stars {
	color: var(--lp-gold);
	font-size: 12px;
	letter-spacing: 1px;
}
.lp-others__voice p {
	font-size: 12px;
	color: var(--lp-text-soft);
	margin: 4px 0 0;
	line-height: 1.6;
}

@media (max-width: 600px) {
	.lp-others__grid { grid-template-columns: 1fr; }
}

.lp-others__note {
	background: var(--lp-gold-lt);
	border: 1px solid var(--lp-gold);
	border-left: 4px solid var(--lp-gold);
	border-radius: var(--lp-radius);
	padding: 12px 14px;
	font-size: 12px;
	margin: 0;
	line-height: 1.6;
}
.lp-others__note-icon { margin-right: 4px; }
.lp-others__note strong { color: var(--lp-gold-dk); }

/* ============================================================
 * 9. 買取ステップ
 * ============================================================ */
.lp-steps {
	padding: 32px 0;
	background: var(--lp-bg-soft);
}
.lp-steps__purpose {
	background: #fffce8;
	border: 1px solid #ffd966;
	border-radius: var(--lp-radius);
	padding: 12px 14px;
	font-size: 12px;
	margin-bottom: 20px;
	line-height: 1.7;
}
.lp-steps__purpose-icon { margin-right: 4px; }
.lp-steps__purpose strong { color: var(--lp-primary-dk); }

.lp-steps__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	margin-bottom: 20px;
	position: relative;
}
.lp-steps__list li {
	background: #fff;
	border: 2px solid var(--lp-cta);
	border-radius: var(--lp-radius-lg);
	padding: 14px 6px;
	text-align: center;
	position: relative;
}
.lp-steps__list li:not(:last-child)::after {
	content: "▶";
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--lp-cta);
	font-size: 14px;
	z-index: 2;
}
.lp-steps__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--lp-cta);
	color: #fff;
	border-radius: 50%;
	font-family: var(--lp-font-serif);
	font-weight: 900;
	font-size: 14px;
	margin-bottom: 6px;
}
.lp-steps__list strong {
	display: block;
	font-size: 12px;
	font-weight: 800;
	color: var(--lp-text);
	line-height: 1.4;
}
@media (max-width: 600px) {
	.lp-steps__list { grid-template-columns: 1fr 1fr; }
	.lp-steps__list li:not(:last-child)::after { display: none; }
}

.lp-steps__safety {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.lp-steps__safety-item {
	background: #fff;
	border: 1px solid var(--lp-cta);
	border-top: 4px solid var(--lp-cta);
	border-radius: var(--lp-radius);
	padding: 14px 12px;
	text-align: center;
}
.lp-steps__safety-tag {
	display: inline-block;
	background: var(--lp-cta);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 3px;
	margin-bottom: 6px;
}
.lp-steps__safety-item strong {
	display: block;
	font-family: var(--lp-font-serif);
	font-size: 14px;
	font-weight: 800;
	color: var(--lp-cta-dk);
	margin-bottom: 4px;
	line-height: 1.4;
}
.lp-steps__safety-item small {
	display: block;
	font-size: 11px;
	color: var(--lp-text-soft);
}
@media (max-width: 600px) {
	.lp-steps__safety { grid-template-columns: 1fr; }
}

/* ============================================================
 * 10. ランキング再掲（第2回）
 * ============================================================ */
.lp-recap {
	padding: 32px 0;
	background: var(--lp-bg);
}
.lp-recap__scroll {
	overflow-x: auto;
	margin-bottom: 16px;
}
.lp-recap__table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--lp-radius-lg);
	overflow: hidden;
	box-shadow: var(--lp-shadow);
}
.lp-recap__table th,
.lp-recap__table td {
	padding: 12px 10px;
	border-bottom: 1px solid var(--lp-border-soft);
	text-align: center;
	font-size: 13px;
	line-height: 1.5;
	vertical-align: middle;
}
.lp-recap__table thead th {
	background: var(--lp-text);
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	border-bottom: none;
}
.lp-recap__table thead th.is-rank1 {
	background: var(--lp-cta);
}
.lp-recap__table tbody th {
	background: var(--lp-bg-soft);
	color: var(--lp-text);
	font-weight: 700;
	width: 22%;
	font-size: 12px;
	text-align: left;
}
.lp-recap__table tbody td.is-rank1 {
	background: var(--lp-cta-lt);
	font-weight: 600;
}
.lp-recap__table strong { color: var(--lp-cta-dk); }

.lp-recap__ctas {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 8px;
}
.lp-recap__ctas .lp-btn {
	margin: 0;
	font-size: 12px;
	padding: 12px 8px;
	gap: 0;
}
@media (max-width: 600px) {
	.lp-recap__ctas { grid-template-columns: 1fr; }
}

/* ============================================================
 * 11. FAQ
 * ============================================================ */
.lp-faq {
	padding: 32px 0;
	background: var(--lp-bg-soft);
}
.lp-faq__purpose {
	background: #fffce8;
	border: 1px solid #ffd966;
	border-radius: var(--lp-radius);
	padding: 12px 14px;
	font-size: 12px;
	margin-bottom: 20px;
	line-height: 1.7;
}
.lp-faq__purpose-icon { margin-right: 4px; }
.lp-faq__purpose strong { color: var(--lp-primary-dk); }

.lp-faq__list { display: flex; flex-direction: column; gap: 10px; }
.lp-faq__item {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	padding: 0;
	overflow: hidden;
}
.lp-faq__item summary {
	padding: 14px 18px;
	font-size: 14px;
	font-weight: 700;
	color: var(--lp-text);
	cursor: pointer;
	list-style: none;
	position: relative;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--lp-primary);
	font-weight: 900;
	font-size: 20px;
	transition: transform 0.2s ease;
}
.lp-faq__item[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}
.lp-faq__item p {
	padding: 0 18px 16px;
	font-size: 13px;
	line-height: 1.85;
	color: var(--lp-text-soft);
	margin: 0;
	border-top: 1px dashed var(--lp-border);
	padding-top: 14px;
}

/* ============================================================
 * 12. 最終CTA
 * ============================================================ */
.lp-final {
	padding: 32px 0;
	background: var(--lp-bg);
}
.lp-final__hero {
	background: var(--lp-text);
	color: #fff;
	border-radius: var(--lp-radius-lg);
	padding: 24px 20px;
	text-align: center;
	margin-bottom: 16px;
}
.lp-final__hero-title {
	font-family: var(--lp-font-serif);
	font-size: 24px;
	font-weight: 900;
	margin: 0 0 8px;
	color: var(--lp-gold-lt);
}
.lp-final__hero-lead {
	font-size: 14px;
	margin: 0;
	opacity: 0.9;
	line-height: 1.7;
}
.lp-final__banner-placeholder {
	min-height: 100px;
	margin-bottom: 16px;
}
.lp-final__points {
	background: var(--lp-cta-lt);
	border: 1px solid var(--lp-cta);
	border-radius: var(--lp-radius);
	padding: 12px 16px;
	margin-bottom: 16px;
}
.lp-final__points li {
	padding: 4px 0;
	font-size: 14px;
	line-height: 1.6;
}
.lp-final__points li strong { color: var(--lp-primary-dk); }

.lp-final__sub-ctas {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 12px;
}
.lp-final__sub-ctas .lp-btn { margin: 0; font-size: 13px; padding: 10px 8px; }
@media (max-width: 600px) {
	.lp-final__sub-ctas { grid-template-columns: 1fr; }
}

/* ============================================================
 * 13. 離脱ポップアップ
 * ============================================================ */
.lp-exit-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 200;
	align-items: center;
	justify-content: center;
}
.lp-exit-modal.is-open {
	display: flex;
}
.lp-exit-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(2px);
}
.lp-exit-modal__inner {
	position: relative;
	background: #fff;
	border-radius: var(--lp-radius-lg);
	border: 3px solid var(--lp-primary);
	padding: 24px 20px;
	max-width: 460px;
	width: calc(100% - 32px);
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.lp-exit-modal__close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 28px;
	color: var(--lp-muted);
	cursor: pointer;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.lp-exit-modal__close:hover { background: var(--lp-bg-soft); }
.lp-exit-modal__hello {
	text-align: center;
	font-family: var(--lp-font-serif);
	font-size: 18px;
	margin: 0 0 16px;
	line-height: 1.5;
}
.lp-exit-modal__hello-icon { display: inline-block; margin-right: 4px; font-size: 22px; }
.lp-exit-modal__hello strong { color: var(--lp-primary-dk); }

.lp-exit-modal__quick {
	background: var(--lp-gold-lt);
	border: 1px solid var(--lp-gold);
	border-radius: var(--lp-radius);
	padding: 14px;
	margin-bottom: 14px;
}
.lp-exit-modal__quick-title {
	font-size: 13px;
	font-weight: 700;
	margin: 0 0 10px;
	text-align: center;
	color: var(--lp-gold-dk);
}
.lp-exit-modal__quick-form {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}
.lp-exit-modal__quick-form label {
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}
.lp-exit-modal__quick-form input {
	flex: 1;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid var(--lp-border);
	border-radius: 4px;
	font-family: inherit;
}
.lp-exit-modal__quick-result {
	background: #fff;
	border: 2px dashed var(--lp-primary);
	border-radius: var(--lp-radius);
	padding: 10px;
	text-align: center;
	font-size: 13px;
}
.lp-exit-modal__quick-result strong {
	font-family: var(--lp-font-serif);
	font-size: 22px;
	color: var(--lp-primary);
	margin-left: 6px;
}
.lp-exit-modal__close-text {
	text-align: center;
	font-size: 12px;
	color: var(--lp-muted);
	margin: 12px 0 0;
	cursor: pointer;
}
.lp-exit-modal__close-text:hover { color: var(--lp-text); }

/* ============================================================
 * 14. フローティングCTA（SP固定）
 * ============================================================ */
.lp-floating-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--lp-cta);
	z-index: 90;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
	display: none;
}
.lp-floating-cta__main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	color: #fff;
	font-weight: 800;
	text-align: center;
	background: var(--lp-cta);
	transition: background 0.15s ease;
	min-height: 60px;
	max-height: 60px;
}
.lp-floating-cta__main:hover { background: var(--lp-cta-dk); color: #fff; }
.lp-floating-cta__main-text {
	font-size: 13px;
	letter-spacing: 0.02em;
}
@media (max-width: 900px) {
	.lp-floating-cta { display: block; }
	body.is-lp { padding-bottom: 70px; }
}

/* ============================================================
 * フッター
 * ============================================================ */
.lp-footer {
	background: var(--lp-text);
	color: #fff;
	padding: 32px 0 24px;
	margin-top: 32px;
}
.lp-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	margin-bottom: 16px;
	font-size: 13px;
}
.lp-footer__links a {
	color: #fff;
	opacity: 0.85;
	text-decoration: underline;
}
.lp-footer__links a:hover { opacity: 1; }
.lp-footer__notice {
	font-size: 12px;
	opacity: 0.75;
	line-height: 1.7;
	margin: 0 0 16px;
}
.lp-footer__copy {
	font-size: 11px;
	opacity: 0.6;
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 12px;
}

/* ============================================================
 * v3.1.1 — 画像差し込み対応のスタイル追加
 * ------------------------------------------------------------
 * プレースホルダ要素を実画像に差し替えたため、
 * img タグを直接スタイリングするセレクタを追加。
 * ============================================================ */

/* ランキング第1回：3社ロゴ */
.lp-ranking__image {
	background: #fff;
	border-radius: var(--lp-radius);
	border: 1px solid var(--lp-border);
	overflow: hidden;
	margin: 0 0 8px;
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lp-ranking__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
}

/* 緊急性訴求：金相場25年チャート */
.lp-urgency__chart {
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	overflow: hidden;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lp-urgency__chart img {
	width: 100%;
	height: auto;
	display: block;
}

/* 1位業者詳細：公式バナー */
.lp-detail__banner {
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-detail__banner:hover {
	transform: translateY(-2px);
	box-shadow: var(--lp-shadow-md);
}
.lp-detail__banner a {
	display: block;
	width: 100%;
	height: 100%;
}
.lp-detail__banner img {
	width: 100%;
	height: auto;
	display: block;
}

/* 1位業者：買取実績写真5枚 */
.lp-detail__example-image {
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	overflow: hidden;
	margin: 0 0 8px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lp-detail__example-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 2位・3位 詳細：各バナー */
.lp-others__banner {
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	overflow: hidden;
	margin: 0 0 12px;
	transition: transform 0.15s ease;
}
.lp-others__banner:hover { transform: translateY(-2px); }
.lp-others__banner a {
	display: block;
	width: 100%;
}
.lp-others__banner img {
	width: 100%;
	height: auto;
	display: block;
}

/* 最終CTA：1位バナー */
.lp-final__banner {
	background: var(--lp-bg-soft);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	overflow: hidden;
	margin: 0 0 16px;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-final__banner:hover {
	transform: translateY(-2px);
	box-shadow: var(--lp-shadow-md);
}
.lp-final__banner a {
	display: block;
	width: 100%;
}
.lp-final__banner img {
	width: 100%;
	height: auto;
	display: block;
}

/* ============================================================
 * v3.1.2 — FV 見出しを画像に置き換え
 * ------------------------------------------------------------
 * ペルソナタブ + テキスト見出しを廃止し、
 * デザイン済みのキャッチコピー画像（PC/SP両対応）を使用。
 * ============================================================ */

.lp-fv__headline {
	margin: 0 -16px 20px;
	padding: 0;
	overflow: hidden;
	border-radius: 0;
}
.lp-fv__headline picture,
.lp-fv__headline img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

@media (min-width: 601px) {
	.lp-fv__headline {
		margin: 0 -16px 24px;
		max-width: calc(var(--lp-container) + 32px);
	}
}

/* SPでは余白なくフル幅 */
@media (max-width: 600px) {
	.lp-fv__headline {
		margin: 0 -16px 16px;
	}
}

/* JSで使われていたペルソナタブセレクタは未使用に。
   万一旧キャッシュで残っても害がないよう、display:noneでフォールバック保険。 */
.lp-fv__persona,
.lp-fv__title {
	/* 後方互換のため、もしテンプレートに残っていても非表示 */
}

/* ============================================================
 * v3.1.2 — ペルソナタブ + クリエイティブ画像切替
 * ------------------------------------------------------------
 * .lp-fv__creatives 内の3枚のクリエイティブを
 * タブクリックで切り替え表示する。
 * ============================================================ */

.lp-fv__creatives {
	position: relative;
	margin: 0 -16px 20px;
	overflow: hidden;
	border-radius: 0;
	background: var(--lp-bg-soft);
}

/* デフォルトは全部非表示 */
.lp-fv__creative {
	display: none;
	width: 100%;
}

/* アクティブな画像だけ表示 */
.lp-fv__creative.is-active {
	display: block;
	animation: lp-fv-fade-in 0.25s ease;
}

@keyframes lp-fv-fade-in {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

.lp-fv__creative picture,
.lp-fv__creative img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

@media (min-width: 601px) {
	.lp-fv__creatives {
		margin: 0 -16px 24px;
	}
}

@media (max-width: 600px) {
	.lp-fv__creatives {
		margin: 0 -16px 16px;
	}
}

/* ペルソナタブのスタイル微調整（より目立たせる） */
.lp-fv__persona-tab {
	position: relative;
}
.lp-fv__persona-tab.is-active::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid var(--lp-gold-dk);
}

/* ============================================================
 * v3.1.5 — 3セクションを画像差し替えに変更
 * ------------------------------------------------------------
 * 5. 緊急性訴求、6. 1位詳細Q&A、9. 買取ステップ
 * の各コンテンツを画像（PC/SP両対応）に置き換え
 * ============================================================ */

/* 5. 緊急性訴求 - コンテンツ画像 */
.lp-urgency__content-image {
	margin: 0 -16px 20px;
	overflow: hidden;
}
.lp-urgency__content-image picture,
.lp-urgency__content-image img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}
@media (min-width: 601px) {
	.lp-urgency__content-image {
		margin: 0 -16px 24px;
		max-width: calc(var(--lp-container) + 32px);
	}
}
@media (max-width: 600px) {
	.lp-urgency__content-image {
		margin: 0 -16px 16px;
	}
}

/* 6. 1位詳細 Q&A - コンテンツ画像 */
.lp-detail__qa-image {
	margin: 0 -16px 24px;
	overflow: hidden;
}
.lp-detail__qa-image picture,
.lp-detail__qa-image img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}
@media (min-width: 601px) {
	.lp-detail__qa-image {
		margin: 0 -16px 28px;
		max-width: calc(var(--lp-container) + 32px);
	}
}
@media (max-width: 600px) {
	.lp-detail__qa-image {
		margin: 0 -16px 20px;
	}
}

/* 9. 買取ステップ - コンテンツ画像 */
.lp-steps__content-image {
	margin: 0 -16px;
	overflow: hidden;
}
.lp-steps__content-image picture,
.lp-steps__content-image img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}
@media (min-width: 601px) {
	.lp-steps__content-image {
		margin: 0 -16px;
		max-width: calc(var(--lp-container) + 32px);
	}
}

/* ============================================================
 * v3.1.5 — CTAボタン画像差し替え用クラス
 * ------------------------------------------------------------
 * 既存の lp-btn--primary / --tel と並べて
 * lp-btn--img-green / --img-red を指定すると
 * 中身のテキストを完全に画像で覆う形に切り替わる。
 *
 * 中のtext要素はSEO・アクセシビリティ用に残しつつ、
 * 画面上は画像のみが見える状態にする。
 * ============================================================ */

.lp-btn--img-green,
.lp-btn--img-red {
	position: relative;
	background: transparent !important;
	box-shadow: none !important;
	padding: 0 !important;
	overflow: hidden;
	border-radius: 0;
	min-height: auto;
	display: block !important;
	width: 100%;
	height: auto;
	transition: transform 0.15s ease, filter 0.15s ease;
}
.lp-btn--img-green::before,
.lp-btn--img-red::before {
	content: "";
	display: block;
	width: 100%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
}
.lp-btn--img-green::before {
	background-image: url('../images/sections/btn-cta-green.png');
	padding-top: 42.47%; /* v3.2.5: 876:372 ≈ 42.47% */
}
.lp-btn--img-red::before {
	background-image: url('../images/sections/btn-cta-red.png');
	padding-top: 41.87%; /* v3.2.5: 879:368 ≈ 41.87% */
}

/* 画像ボタンの場合、中のテキスト要素を視覚的に隠す（スクリーンリーダーには残す） */
.lp-btn--img-green > *,
.lp-btn--img-red > * {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* ホバーエフェクト */
.lp-btn--img-green:hover,
.lp-btn--img-red:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
}

/* SP対応：余白を抑える */
@media (max-width: 600px) {
	.lp-btn--img-green,
	.lp-btn--img-red {
		margin-top: 8px;
	}
}

/* ============================================================
 * v3.1.6 — セクション画像差し替え用スタイル
 * ------------------------------------------------------------
 * 共感(02), 信頼構築(03), 比較表(04後半) を画像化。
 * セクションは余白だけ残してコンテナ内画像を1枚配置。
 * ============================================================ */

.lp-section--image {
	padding: 24px 0;
}
.lp-section--image .lp-container {
	padding-left: 12px;
	padding-right: 12px;
}
.lp-section-image {
	display: block;
	background: #fff;
	border-radius: var(--lp-radius-lg);
	overflow: hidden;
	box-shadow: var(--lp-shadow);
	margin: 0;
}
.lp-section-image img,
.lp-section-image picture {
	display: block;
	width: 100%;
	height: auto;
}

/* 元のセクション専用ペインが空でも余分な背景にならないよう調整 */
.lp-empathy.lp-section--image,
.lp-trust.lp-section--image {
	background: var(--lp-bg-soft);
}

/* ranking__spec が画像版に置き換わった時の余白だけ調整 */
.lp-ranking__spec.lp-section--image {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	margin-top: 16px;
}
.lp-ranking__spec.lp-section--image .lp-section-image {
	box-shadow: var(--lp-shadow);
}

@media (max-width: 600px) {
	.lp-section--image { padding: 16px 0; }
	.lp-section--image .lp-container {
		padding-left: 8px;
		padding-right: 8px;
	}
}

/* ============================================================
 * v3.1.7 — リッチCTAボタン
 * ------------------------------------------------------------
 * ランキングカード／2位3位詳細／比較表後の3CTA で使う、
 * 統一感のあるリッチなボタンデザイン。
 * 既存の lp-btn--primary / --secondary を上書き拡張する形。
 * ============================================================ */

.lp-btn-rich {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 100%;
	padding: 14px 16px;
	border-radius: 8px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
	line-height: 1.4;
	border: none;
	color: #fff;
	position: relative;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	box-shadow:
		0 4px 0 rgba(0, 0, 0, 0.15),
		0 6px 16px rgba(0, 0, 0, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
	min-height: 76px;
}

.lp-btn-rich::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255, 255, 255, 0.4) 50%,
		transparent 100%
	);
	pointer-events: none;
	transition: left 0.6s ease;
}

.lp-btn-rich:hover {
	transform: translateY(-3px);
	color: #fff;
	filter: brightness(1.05);
	box-shadow:
		0 6px 0 rgba(0, 0, 0, 0.18),
		0 10px 24px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.lp-btn-rich:hover::before {
	left: 100%;
}
.lp-btn-rich:active {
	transform: translateY(1px);
	box-shadow:
		0 2px 0 rgba(0, 0, 0, 0.18),
		0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 順位ラベル */
.lp-btn-rich__rank {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	background: rgba(0, 0, 0, 0.18);
	padding: 2px 10px;
	border-radius: 99px;
	margin-bottom: 2px;
}
.lp-btn-rich__rank-icon { font-size: 14px; line-height: 1; }

/* メインテキスト */
.lp-btn-rich__main {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.02em;
}
.lp-btn-rich__main-arrow {
	display: inline-block;
	transition: transform 0.2s ease;
	font-weight: 700;
}
.lp-btn-rich:hover .lp-btn-rich__main-arrow {
	transform: translateX(4px);
}

/* サブテキスト（「査定無料・最短即日」） */
.lp-btn-rich__sub {
	font-size: 11px;
	font-weight: 600;
	opacity: 0.92;
	letter-spacing: 0.03em;
}

/* === カラーバリエーション === */

/* 1位：緑(=メインCTA) */
.lp-btn-rich--rank1 {
	background: linear-gradient(180deg, #38a049 0%, #2c8a3e 50%, #1f6a2e 100%);
}

/* 2位：ゴールド寄り */
.lp-btn-rich--rank2 {
	background: linear-gradient(180deg, #d9b964 0%, #c8a142 50%, #8c6f1c 100%);
}

/* 3位：深いブロンズ */
.lp-btn-rich--rank3 {
	background: linear-gradient(180deg, #c9985f 0%, #b07a3d 50%, #7d5524 100%);
}

/* ランキングカード内サイズ（ややコンパクト） */
.lp-ranking__card .lp-btn-rich {
	min-height: 64px;
	padding: 10px 12px;
}
.lp-ranking__card .lp-btn-rich__main { font-size: 14px; }
.lp-ranking__card .lp-btn-rich__rank { font-size: 11px; }
.lp-ranking__card .lp-btn-rich__sub { font-size: 10px; }

/* 比較表後の3列 */
.lp-recap__ctas .lp-btn-rich { min-height: 80px; }
@media (max-width: 600px) {
	.lp-recap__ctas { grid-template-columns: 1fr; gap: 10px; }
	.lp-recap__ctas .lp-btn-rich { min-height: 70px; }
	.lp-others__grid + p { font-size: 11px; }
}

/* 2位・3位詳細セクション内のボタン */
.lp-others__card .lp-btn-rich {
	min-height: 76px;
	margin-top: 12px;
}

/* ============================================================
 * v3.2.0 — タイトル画像差し替え（ペルソナ見出し / シミュレーター見出し）
 * ------------------------------------------------------------
 * 既存のテキスト見出し（.lp-fv__persona-label / .lp-sim__title）を
 * 画像で差し替えるためのスタイル。
 * PCでもSPでも同一の画像を使い、横幅100%で自動スケール。
 * SEO・アクセシビリティ用に元のテキストはvisually-hiddenで残す。
 * ============================================================ */

/* 共通：画像見出し用ラッパー */
.lp-img-title {
	display: block;
	width: 100%;
	margin: 0 0 14px;
	line-height: 0; /* 画像下の余白を除去 */
}
.lp-img-title::before {
	content: "";
	display: block;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
}

/* テキストはスクリーンリーダーには残す */
.lp-img-title > .lp-img-title__sr {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* ペルソナ見出し画像（💡 あなたの状況に近いものを選んでください） */
/* v3.2.3: 新しい白ベース画像に差し替え＋サイズ縮小（720→500px、SPも横幅80%に） */
.lp-img-title--persona {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
.lp-img-title--persona::before {
	background-image: url('../images/sections/persona-label-title.png');
	padding-top: 17.32%; /* v3.2.3: 1917:332 ≈ 17.32% */
}

/* シミュレーター見出し画像（📊 簡易査定シミュレーター） */
.lp-img-title--sim {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 14px;
}
.lp-img-title--sim::before {
	background-image: url('../images/sections/sim-title.png');
	padding-top: 25.25%; /* v3.2.1: 1418:358 ≈ 25.25% */
}

/* SP最適化 */
@media (max-width: 600px) {
	.lp-img-title--persona {
		max-width: 88%;       /* v3.2.3: SPでも幅100%だとデカすぎたので少し小さく */
		margin-bottom: 8px;
	}
	.lp-img-title--sim {
		max-width: 100%;
		margin-bottom: 10px;
	}
}

/* ============================================================
 * v3.2.2 — CTAペア横並びレイアウト（緑+赤の2ボタン）
 * ------------------------------------------------------------
 * .lp-cta-pair で囲うと、PC: 横並び（50/50）／SP: 縦並びだが
 * 高さも幅も従来より小さくなり、ページ全体が締まる。
 *
 * 新クラス: lp-cta-pair
 * 改修クラス: lp-btn--img-green / --img-red を `.lp-cta-pair` 子で小型化
 * ============================================================ */

.lp-cta-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 16px 0;
	align-items: stretch;
}

/* ペア内ではボタンの背景画像を小さめのアスペクト比で表示 */
.lp-cta-pair .lp-btn--img-green::before,
.lp-cta-pair .lp-btn--img-red::before {
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
}

/* ペア外（単独配置時）の高さは従来通り。
   ペア内ではPC・SP共に画像比率を保ちつつ小さめに */

/* SP: 1カラム縦並びだが従来の lp-btn--xl より小さく */
@media (max-width: 600px) {
	.lp-cta-pair {
		grid-template-columns: 1fr;
		gap: 8px;
		margin: 12px 0;
	}
	.lp-cta-pair .lp-btn--img-green::before {
		padding-top: 42.47%; /* v3.2.5: 元アスペクト比維持 */
	}
	.lp-cta-pair .lp-btn--img-red::before {
		padding-top: 41.87%;
	}
}

/* ============================================================
 * v3.2.2 — リッチな2位/3位サブCTA（最終CTA直下）
 * ------------------------------------------------------------
 * 旧: 平坦な金色グラデのテキストボタン
 * 新: 業者ロゴ + 順位バッジ + キャッチコピー + 矢印 のカード型
 * ============================================================ */

.lp-final__sub-ctas {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 18px;
}

.lp-sub-cta {
	display: grid;
	grid-template-columns: auto 80px 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	text-decoration: none;
	color: #2a2a2a;
	background: #fff;
	border: 2px solid var(--lp-gold, #c9a86a);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(201, 168, 106, 0.25);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	position: relative;
	overflow: hidden;
}

/* 背景に金グラデの淡いオーバーレイ */
.lp-sub-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(246, 239, 220, 0.6) 0%, rgba(255, 255, 255, 0) 60%);
	pointer-events: none;
	z-index: 0;
}

.lp-sub-cta > * {
	position: relative;
	z-index: 1;
}

.lp-sub-cta:hover {
	transform: translateY(-2px);
	border-color: #b8924f;
	box-shadow: 0 6px 16px rgba(184, 146, 79, 0.22), inset 0 0 0 1px rgba(201, 168, 106, 0.4);
}

.lp-sub-cta__rank {
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, #c9a86a 0%, #a87d3b 100%);
	padding: 4px 8px;
	border-radius: 6px;
	white-space: nowrap;
	letter-spacing: 0.02em;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.lp-sub-cta__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 56px;
	background: #fff;
	border: 1px solid #ece4cf;
	border-radius: 6px;
	overflow: hidden;
	flex-shrink: 0;
}

.lp-sub-cta__logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.lp-sub-cta__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.lp-sub-cta__name {
	font-size: 15px;
	font-weight: 800;
	color: #2a2a2a;
	letter-spacing: 0.02em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lp-sub-cta__catch {
	font-size: 11px;
	color: #8a6d3b;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lp-sub-cta__arrow {
	font-size: 18px;
	font-weight: 900;
	color: #b8924f;
	transition: transform 0.18s ease;
}

.lp-sub-cta:hover .lp-sub-cta__arrow {
	transform: translateX(3px);
}

/* SP: 縦並び＋少しコンパクト */
@media (max-width: 600px) {
	.lp-final__sub-ctas {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.lp-sub-cta {
		grid-template-columns: auto 64px 1fr auto;
		gap: 8px;
		padding: 10px 12px;
	}
	.lp-sub-cta__logo {
		width: 64px;
		height: 44px;
	}
	.lp-sub-cta__name {
		font-size: 14px;
	}
	.lp-sub-cta__catch {
		font-size: 10px;
	}
	.lp-sub-cta__rank {
		font-size: 11px;
		padding: 3px 6px;
	}
}

/* ============================================================
 * v3.2.6 — Exit Modal banner mode（管理画面で画像をアップした場合）
 * ============================================================ */
.lp-exit-modal__banner {
	display: block;
	width: 100%;
	margin: 0 0 8px;
	border-radius: 8px;
	overflow: hidden;
	transition: transform .15s ease;
}
.lp-exit-modal__banner:hover {
	transform: translateY(-2px);
}
.lp-exit-modal__banner img {
	display: block;
	width: 100%;
	height: auto;
}

/* ============================================================
 * v3.3.3 — 「改めて：今すぐ使うべきTOP3」のリッチサブCTA（3社並列）
 * ------------------------------------------------------------
 * 既存の .lp-sub-cta スタイルを継承しつつ、3カラム配置にする
 * ============================================================ */

.lp-recap__sub-ctas {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
	margin-top: 16px;
	margin-bottom: 16px;
}

/* 3カラムは横幅が狭いので、各要素を圧縮 */
.lp-recap__sub-ctas .lp-sub-cta {
	grid-template-columns: auto 56px 1fr auto;
	gap: 8px;
	padding: 12px 12px;
}
.lp-recap__sub-ctas .lp-sub-cta__rank {
	font-size: 11px;
	padding: 3px 6px;
}
.lp-recap__sub-ctas .lp-sub-cta__logo {
	width: 56px;
	height: 40px;
}
.lp-recap__sub-ctas .lp-sub-cta__name {
	font-size: 13px;
	letter-spacing: 0;
}
.lp-recap__sub-ctas .lp-sub-cta__catch {
	font-size: 10px;
	letter-spacing: 0;
}
.lp-recap__sub-ctas .lp-sub-cta__arrow {
	font-size: 16px;
}

/* 1位カードを少し強調（緑系のアクセント） */
.lp-recap__sub-ctas .lp-sub-cta--rank1 {
	border-color: var(--lp-cta, #1f7a3a);
	box-shadow: 0 2px 8px rgba(31, 122, 58, 0.15), inset 0 0 0 1px rgba(31, 122, 58, 0.25);
}
.lp-recap__sub-ctas .lp-sub-cta--rank1::before {
	background: linear-gradient(135deg, rgba(220, 240, 225, 0.6) 0%, rgba(255, 255, 255, 0) 60%);
}
.lp-recap__sub-ctas .lp-sub-cta--rank1 .lp-sub-cta__rank {
	background: linear-gradient(135deg, #1f7a3a 0%, #0e5224 100%);
}
.lp-recap__sub-ctas .lp-sub-cta--rank1 .lp-sub-cta__arrow {
	color: var(--lp-cta, #1f7a3a);
}
.lp-recap__sub-ctas .lp-sub-cta--rank1:hover {
	border-color: #0e5224;
	box-shadow: 0 6px 16px rgba(31, 122, 58, 0.25), inset 0 0 0 1px rgba(31, 122, 58, 0.4);
}

/* SP: 1カラム縦並びで通常サイズに戻す */
@media (max-width: 600px) {
	.lp-recap__sub-ctas {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.lp-recap__sub-ctas .lp-sub-cta {
		grid-template-columns: auto 64px 1fr auto;
		gap: 8px;
		padding: 10px 12px;
	}
	.lp-recap__sub-ctas .lp-sub-cta__logo {
		width: 64px;
		height: 44px;
	}
	.lp-recap__sub-ctas .lp-sub-cta__name {
		font-size: 14px;
	}
}
