/* =================================
   FV「地域最安」バッジ
================================= */

.fv-cheapest-badge {
	--badge-yellow: #ffd400;
	--badge-ink: #1a1a1a;

	position: relative;
	display: grid;
	place-items: center;
	width: clamp(140px, 17.7vw, 340px);
	aspect-ratio: 1;
	color: var(--badge-yellow);
	transform: rotate(-8deg);
	filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.22));
}

.fv-cheapest-badge_shape {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.fv-cheapest-badge_text {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.12em;
	padding: 18% 14%;
	text-align: center;
	color: var(--badge-ink);
	line-height: 1.15;
}

.fv-cheapest-badge_top,
.fv-cheapest-badge_main,
.fv-cheapest-badge_bottom {
	font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.fv-cheapest-badge_top {
	font-size: clamp(10px, 1.2vw, 22px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.3;
	white-space: nowrap;
}

.fv-cheapest-badge_main {
	font-size: clamp(26px, 3.4vw, 64px);
	line-height: 1.05;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.fv-cheapest-badge_bottom {
	font-size: clamp(13px, 1.55vw, 30px);
	font-weight: 700;
	margin-top: 0.1em;
	letter-spacing: 0.08em;
}

/* /test の .fv-section_badge 内では画像幅指定を上書き */
.fv-section_badge .fv-cheapest-badge {
	width: clamp(140px, 17.7vw, 340px);
}

@media (max-width: 1024px) {
	.fv-section_badge .fv-cheapest-badge,
	.fv-cheapest-badge {
		width: clamp(120px, 14vw, 220px);
	}
}

@media (max-width: 768px) {
	.fv-section_badge .fv-cheapest-badge,
	.fv-cheapest-badge {
		width: 118px;
	}

	.fv-cheapest-badge_top {
		font-size: 9px;
		letter-spacing: 0.02em;
	}

	.fv-cheapest-badge_main {
		font-size: 20px;
		letter-spacing: 0.04em;
		white-space: normal;
		max-width: 4.2em;
	}

	.fv-cheapest-badge_bottom {
		font-size: 11px;
	}
}
