/* ============================================================
 * 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;
	/* v3.3.6: PC余白を削除。SPはフローティングCTA分のpadding-bottomを別途付与（@media内） */
}
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--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__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:
		radial-gradient(ellipse at 100% 0%, rgba(245, 213, 126, 0.25) 0%, transparent 60%),
		linear-gradient(135deg, #fbf6e3 0%, #fffdf6 50%, #fbf6e3 100%);
	border: 2px solid var(--lp-gold);
	border-radius: var(--lp-radius);
	padding: 14px 20px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 8px 18px;
	margin-bottom: 16px;
	box-shadow: 0 4px 16px rgba(184, 146, 79, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
	position: relative;
	overflow: hidden;
}
.lp-fv__live::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #d4af6c 30%, #f5d57e 50%, #d4af6c 70%, transparent 100%);
}
.lp-fv__live-label {
	font-size: 13px;
	font-weight: 800;
	color: var(--lp-gold-dk);
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	gap: 8px;
	grid-column: 1 / -1;
	padding-bottom: 6px;
	border-bottom: 1px dashed rgba(184, 146, 79, 0.3);
}
.lp-fv__live-label::before {
	content: "";
	width: 9px;
	height: 9px;
	background: var(--lp-cta, #1f7a3a);
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(31, 122, 58, 0.2);
	animation: gkm-pulse 2s ease-in-out infinite;
	flex-shrink: 0;
}
@keyframes gkm-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.85); }
}
.lp-fv__live-price {
	font-family: var(--lp-font-serif);
	font-size: 30px;
	font-weight: 900;
	color: var(--lp-gold-dk);
	letter-spacing: 0.02em;
	line-height: 1.1;
}
.lp-fv__live-diff {
	font-size: 13px;
	font-weight: 800;
	padding: 5px 11px;
	border-radius: 6px;
	white-space: nowrap;
	justify-self: end;
	box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.lp-fv__live-diff.is-up { background: rgba(31, 122, 58, 0.12); color: var(--lp-cta); border: 1px solid rgba(31, 122, 58, 0.25); }
.lp-fv__live-diff.is-down { background: #fde8e8; color: #c33; border: 1px solid #f4baba; }
/* ペルソナ別タブ */
.lp-fv__persona { margin-bottom: 18px; }
.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;
}
/* タイトル */
@media (max-width: 600px) {/* v3.3.7: SPで金価格カードのバランス調整 */
.lp-fv__live { padding: 12px 14px; gap: 6px 10px; }
.lp-fv__live-label { font-size: 11.5px; letter-spacing: 0.02em; }
.lp-fv__live-price { font-size: 24px; }
.lp-fv__live-diff { font-size: 12px; padding: 3px 8px; }
}
.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__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);
}
/* ありがちな失敗 */
/* ============================================================
 * 3. 信頼構築（教育）
 * ============================================================ */
.lp-trust {
	padding: 32px 0;
	background: var(--lp-bg-soft);
}
/* ============================================================
 * 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__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__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;
}
@media (max-width: 600px) {.lp-ranking__spec { overflow-x: auto; }
}
/* ============================================================
 * 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);
}
/* ============================================================
 * 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;
}
/* バナー + 特徴リスト レイアウト（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__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-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__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__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; }
}
/* ============================================================
 * 9. 買取ステップ
 * ============================================================ */
.lp-steps {
	padding: 32px 0;
	background: var(--lp-bg-soft);
}
/* ============================================================
 * 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); }
/* ============================================================
 * 11. FAQ
 * ============================================================ */
.lp-faq {
	padding: 32px 0;
	background: var(--lp-bg-soft);
}
.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__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; }
}
/* ============================================================
 * フッター（v3.3.5: リッチ3カラム + ロゴ + 金箔アクセント）
 * ============================================================ */
.lp-footer {
	position: relative;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(245, 213, 126, 0.12) 0%, transparent 60%),
		linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
	color: #fff;
	padding: 56px 0 24px;
	margin-top: 48px;
	overflow: hidden;
}
/* 上部の金箔ライン */
.lp-footer__gold-line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(245, 213, 126, 0.4) 15%,
		#d4af6c 50%,
		rgba(245, 213, 126, 0.4) 85%,
		transparent 100%
	);
	box-shadow: 0 0 12px rgba(212, 175, 108, 0.5);
}
/* 3カラムレイアウト */
.lp-footer__cols {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.6fr;
	gap: 48px;
	margin-bottom: 32px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.lp-footer__col {
	min-width: 0;
}
/* === 左：ブランド === */
.lp-footer__col--brand {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.lp-footer__logo {
	background: linear-gradient(180deg, #ffffff 0%, #fafaf5 100%);
	padding: 12px 18px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 260px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 108, 0.3);
}
.lp-footer__logo img {
	max-width: 100%;
	height: auto;
	display: block;
}
.lp-footer__catch {
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	font-family: var(--lp-font-serif, "Hiragino Mincho ProN", serif);
}
.lp-footer__phone {
	margin: 6px 0 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.04);
	border-left: 3px solid #d4af6c;
	border-radius: 4px;
}
.lp-footer__phone-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.05em;
}
.lp-footer__phone-number {
	font-size: 22px;
	font-weight: 800;
	color: #f5d57e;
	text-decoration: none;
	letter-spacing: 0.02em;
	font-family: "Hiragino Mincho ProN", serif;
	line-height: 1.2;
}
.lp-footer__phone-number:hover { color: #ffe9a8; }
.lp-footer__phone-hours {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
}
/* === 中央：メニュー === */
.lp-footer__heading {
	font-size: 13px;
	font-weight: 700;
	color: #d4af6c;
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(212, 175, 108, 0.25);
	letter-spacing: 0.05em;
}
.lp-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.lp-footer__links li { margin: 0; }
.lp-footer__links a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 13px;
	display: inline-block;
	padding: 2px 0;
	transition: color 0.15s ease, padding-left 0.15s ease;
	position: relative;
}
.lp-footer__links a::before {
	content: "›";
	color: #d4af6c;
	margin-right: 8px;
	font-weight: 700;
	transition: margin-right 0.15s ease;
}
.lp-footer__links a:hover {
	color: #f5d57e;
}
.lp-footer__links a:hover::before {
	margin-right: 12px;
}
/* === 右：表記 === */
.lp-footer__col--notice {
	display: flex;
	flex-direction: column;
}
.lp-footer__notice-text {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 12px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-footer__notice-sub {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}
.lp-footer__notice-sub strong {
	color: #d4af6c;
	font-weight: 700;
}
/* === 底部 === */
.lp-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.lp-footer__copy {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
	letter-spacing: 0.02em;
}
.lp-footer__copy-sub {
	color: rgba(255, 255, 255, 0.35);
	margin-left: 4px;
}
.lp-footer__back-to-top {
	margin: 0;
}
.lp-footer__back-to-top a {
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
	text-decoration: none;
	padding: 6px 14px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	transition: all 0.15s ease;
}
.lp-footer__back-to-top a:hover {
	color: #f5d57e;
	border-color: rgba(212, 175, 108, 0.4);
	background: rgba(212, 175, 108, 0.05);
}
/* === SP対応 === */
@media (max-width: 768px) {.lp-footer { padding: 40px 0 20px; }
.lp-footer__cols {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-bottom: 24px;
		padding-bottom: 24px;
	}
.lp-footer__logo { max-width: 220px; }
.lp-footer__phone-number { font-size: 20px; }
.lp-footer__bottom {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 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年チャート */
/* 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両対応）を使用。
 * ============================================================ */
/* ============================================================
 * 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. 買取ステップ - コンテンツ画像 */
/* ============================================================
 * 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: 33.33%; /* v3.3.14: 新緑バナー 1536:512 ≈ 33.33% */
}
.lp-btn--img-red::before {
	background-image: url('../images/sections/btn-cta-red.png');
	padding-top: 33.33%; /* v3.3.14: 新赤バナー 1536:512 ≈ 33.33%（緑と完全同サイズ） */
}
/* 画像ボタンの場合、中のテキスト要素を視覚的に隠す（スクリーンリーダーには残す） */
.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列 */
@media (max-width: 600px) {.lp-others__grid + p { font-size: 11px; }
}
/* 2位・3位詳細セクション内のボタン */
.lp-others__card .lp-btn-rich {
	min-height: 76px;
	margin-top: 12px;
}
/* ============================================================
 * v3.2.0 — タイトル画像差し替え（共通の画像見出しラッパー）
 * ------------------------------------------------------------
 * テキスト見出しを画像で差し替えるためのスタイル。
 * 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.17%; /* v3.3.14: 新画像 1466:369 ≈ 25.17%（元 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;
}
/* v3.3.14: 緑と赤が同サイズ（1536×512・比率33.33%）になったため、PC・SPとも
   グリッド配分はベース設定（PC: 1fr 1fr / SP: 1fr）のみで完全シンメトリーが実現できる。
   v3.3.11〜v3.3.13 で必要だった padding-top の個別上書きや特殊なgrid-template-columnsは
   すべて不要になった（base の .lp-btn--img-green/red::before に統一比率を設定済み）。 */
/* SP: 1カラム縦並び */
@media (max-width: 600px) {.lp-cta-pair {
		grid-template-columns: 1fr;
		gap: 8px;
		margin: 12px 0;
	}
}
/* ============================================================
 * 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;
	}
}
/* ============================================================
 * v3.3.8 — Contact Form 7（CF7）スタイル
 * テーマの金色トーンに合わせたフォームスタイル
 * CF7が無くても影響なし（CSSセレクタが存在しないだけ）
 * ============================================================ */
/* フォーム全体の余白 */
.wpcf7 {
	max-width: 100%;
	margin: 0 auto;
}
/* 各行（ラベル + 入力） */
.wpcf7-form p {
	margin: 0 0 20px;
	font-size: 14px;
	font-weight: 600;
	color: #2a2a2a;
}
/* ラベル文言 */
.wpcf7-form label {
	display: block;
	margin-bottom: 6px;
	color: #4a4031;
	letter-spacing: 0.02em;
}
/* 必須マーク */
.wpcf7-form .required,
.wpcf7-form label .req {
	display: inline-block;
	background: #c33;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 3px;
	margin-left: 6px;
	vertical-align: 2px;
}
/* テキスト入力・メール・電話・URL・数値・テキストエリア */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	font-weight: 500;
	color: #2a2a2a;
	background: #fff;
	border: 1.5px solid #e0d9c4;
	border-radius: 6px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	font-family: inherit;
	box-sizing: border-box;
}
/* フォーカス時 */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: #c9a86a;
	box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.04);
	background: #fffdf6;
}
.wpcf7-form textarea {
	min-height: 160px;
	line-height: 1.7;
	resize: vertical;
}
/* チェックボックス・ラジオ */
.wpcf7-form .wpcf7-list-item {
	display: inline-block;
	margin: 0 16px 8px 0;
	font-weight: 500;
}
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
	width: 18px;
	height: 18px;
	margin-right: 6px;
	accent-color: #c9a86a;
	vertical-align: -3px;
}
/* 送信ボタン */
.wpcf7-form .wpcf7-submit,
.wpcf7-form input[type="submit"] {
	display: inline-block;
	padding: 14px 48px;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, #c9a86a 0%, #8a6d3b 100%);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 12px rgba(184, 146, 79, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	min-width: 200px;
}
.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(184, 146, 79, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.wpcf7-form .wpcf7-submit:active,
.wpcf7-form input[type="submit"]:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(184, 146, 79, 0.3);
}
.wpcf7-form .wpcf7-submit:disabled,
.wpcf7-form input[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}
/* 送信ボタンを中央揃え */
.wpcf7-form p:has(.wpcf7-submit),
.wpcf7-form p:has(input[type="submit"]) {
	text-align: center;
	margin-top: 32px;
}
/* バリデーションエラー */
.wpcf7-form .wpcf7-not-valid {
	border-color: #c33 !important;
	background: #fef5f5 !important;
}
.wpcf7-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	color: #c33;
	font-size: 12px;
	font-weight: 600;
}
/* 送信完了・エラーメッセージ */
.wpcf7-response-output {
	margin: 24px 0 0 !important;
	padding: 14px 18px !important;
	border-radius: 6px !important;
	border-width: 1.5px !important;
	font-size: 14px !important;
	font-weight: 600;
}
.wpcf7-form.sent .wpcf7-response-output {
	background: #eaf5ed !important;
	border-color: #1f7a3a !important;
	color: #1f7a3a !important;
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
	background: #fef5f5 !important;
	border-color: #c33 !important;
	color: #c33 !important;
}
/* ロード中スピナー */
.wpcf7 .wpcf7-spinner {
	background-color: #c9a86a;
}
/* SP対応 */
@media (max-width: 600px) {.wpcf7-form input[type="text"],
	.wpcf7-form input[type="email"],
	.wpcf7-form input[type="tel"],
	.wpcf7-form input[type="url"],
	.wpcf7-form select,
	.wpcf7-form textarea {
		padding: 11px 12px;
		font-size: 16px; /* iOS のズーム防止 */
	}
.wpcf7-form .wpcf7-submit,
	.wpcf7-form input[type="submit"] {
		width: 100%;
		min-width: 0;
		padding: 14px 24px;
	}
}
