/* 価格プレビューのスタイル */
.price-preview {
	background-color: #f8f9fa;
	border-radius: 10px;
	padding: 20px 15px;
	margin-bottom: 25px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.price-preview::after {
	content: "詳しく見る ↓";
	display: block;
	font-size: 1em;
	color: #555;
	margin-top: 12px;
	font-weight: 500;
}

.price-preview:hover {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.price-range {
	font-size: 2.4em;
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
	padding: 8px 20px;
	display: inline-block;
	letter-spacing: 0.02em;
}

.price-range.blurred {
	-webkit-filter: blur(6px);
	-ms-filter: blur(6px);
	filter: blur(6px);
	user-select: none;
}

.price-note {
	font-size: 0.9em;
	color: #666;
	margin-top: 5px;
}

/* アフィリエイトボタンの強調 */
.affiliate-button {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.affiliate-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.affiliate-button .button-text {
	font-weight: bold;
}
