/* 商品ページ全体 */
.product-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1100px;
	margin: 80px auto;
	padding: 0 24px;
	align-items: flex-start;
}

/* 左カラム（商品画像） */
.product-left {
	flex: 1 1 45%;
}
.product-main-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* 右カラム（商品情報） */
.product-right {
	flex: 1 1 50%;
}

.product-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #222;
}
.product-excerpt {
	font-size: 16px;
	color: #555;
	margin-bottom: 20px;
}
.product-price {
	font-size: 22px;
	font-weight: bold;
	color: #c62828;
	margin-bottom: 16px;
}
.product-category {
	font-size: 14px;
	font-weight: 500;
	color: #666;
	margin-bottom: 28px;
}
.product-description {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 32px;
}

/* おすすめポイント */
.product-points h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
	border-left: 4px solid #4a2c2a;
	padding-left: 10px;
}
.product-points ul {
	list-style: disc inside;
	margin: 0;
	padding: 0;
}
.product-points li {
	margin-bottom: 8px;
	font-size: 15px;
	color: #444;
}

/* スタッフカード */
.staff-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	max-width: 900px;
	margin: 50px auto 80px;
	padding: 24px;
	background: #fafafa;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.staff-card-img img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.staff-card-body {
	flex: 1;
}
.staff-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}
.staff-text {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.product-container {
		flex-direction: column;
		gap: 32px;
		padding: 20px;
	}
	.product-title {
		font-size: 24px;
	}
	.product-price {
		font-size: 20px;
	}
	.staff-card {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	.staff-card-img img {
		margin-bottom: 12px;
	}
}

.product-container {
	margin-top: 0px;
}

.l-sidebar {
	display: none;
}
