.price-container {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 50px;
	max-width: 1000px;
	margin: auto;
}

/* 価格カードのスタイル */
.price-card {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}

.price-header {
	background-color: var(--bs-primary);
	color: #fff;
	padding: 20px 0;
	text-align: center;
}

.price-header.recommended {
	background-color: #28a745; /* 濃いめの緑 */
}

.price-card-body {
	padding: 15px;
	text-align: center;
}

.price-figure {
	font-size: 2.5rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
}

.price-figure .small-text {
	font-size: 1.2rem;
	font-weight: normal;
	color: #6c757d;
}

.feature-list {
	list-style: none;
	padding: 0;
	text-align: left;
	margin-bottom: 30px;
}

.feature-list li {
	padding: 8px 0;
	border-bottom: 1px dashed #e9ecef;
}

.feature-list li i {
	color: var(--bs-primary);
	margin-right: 10px;
}
