/**
 * お客様の声表示ブロックのスタイル
 */

.yonekou-customer-voices {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}

.yonekou-customer-voices__grid {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* 各お客様の声（リスト型） */
.yonekou-customer-voice {
	border-bottom: 1px solid #e0e0e0;
}

.yonekou-customer-voice:last-child {
	border-bottom: 0;
}

.yonekou-customer-voice__container {
	display: flex;
	gap: 25px;
	padding: 30px 0;
}

/* 奇数番目の項目は左右反転 */
.yonekou-customer-voice--reverse .yonekou-customer-voice__container {
	flex-direction: row-reverse;
}

/* 反転時はコンテンツ全体を右寄せ */
.yonekou-customer-voice--reverse .yonekou-customer-voice__content {
	align-items: flex-end;
	text-align: right;
}

/* 反転時は星マークも右寄せ */
.yonekou-customer-voice--reverse .yonekou-customer-voice__rating {
	justify-content: flex-end;
}

/* アイキャッチ画像（左側） */
.yonekou-customer-voice__image {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	background: #f0f0f0;
}

.yonekou-customer-voice__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.yonekou-customer-voice__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.yonekou-customer-voice__no-image {
	color: #999;
	font-size: 12px;
	text-align: center;
}

/* 右カラム（コンテンツ） */
.yonekou-customer-voice__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* 評価（星マーク） */
.yonekou-customer-voice__rating {
	display: flex;
	gap: 5px;
	font-size: 24px;
	line-height: 1;
	margin-bottom: 12px;
}

/* タイトル */
.entry-content .yonekou-customer-voice__title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 14px 0;
	line-height: 1.5;
	color: #3e3d35;
}

.yonekou-customer-voice__star {
	color: #ddd;
}

.yonekou-customer-voice__star.is-filled {
	color: #c8a144; /* アクセントカラー（ゴールド） */
}

/* ディスクリプション */
.yonekou-customer-voice__text {
	font-size: 15px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 14px;
}

/* お客様名 */
.yonekou-customer-voice__customer {
	font-size: 14px;
	font-weight: 600;
	color: #3e3d35;
	text-align: left;
}

/* タブレット表示 */
@media screen and (max-width: 1024px) {
	.yonekou-customer-voices {
		padding: 30px 0;
	}

	.yonekou-customer-voice__container {
		padding: 25px 0;
	}

	.yonekou-customer-voice__image {
		width: 80px;
		height: 80px;
	}

	.yonekou-customer-voice__rating {
		font-size: 20px;
		gap: 4px;
		margin-bottom: 10px;
	}

	.yonekou-customer-voice__title {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.yonekou-customer-voice__text {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.yonekou-customer-voice__customer {
		font-size: 13px;
	}
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
	.yonekou-customer-voices {
		padding: 20px 0;
	}

	.yonekou-customer-voice__container {
		gap: 15px;
		padding: 20px 0;
	}

	.yonekou-customer-voice__image {
		width: 60px;
		height: 60px;
	}

	.yonekou-customer-voice__content {
		gap: 8px;
	}

	.yonekou-customer-voice__title {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.yonekou-customer-voice__rating {
		font-size: 18px;
		margin-bottom: 8px;
	}

	.yonekou-customer-voice__text {
		font-size: 13px;
		margin-bottom: 8px;
	}

	.yonekou-customer-voice__customer {
		font-size: 12px;
	}
}