.customer-voice__lead {
	display: block;
	text-align: center;
	margin-bottom: var(--g-sec--md);
}

/* 口コミ親要素 */
.customer-voice__list {
	--count: 1;
	--gap: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--gap);
	margin-bottom: var(--g-sec--lg);
}
@media (min-width: 960px) {
	.customer-voice__list {
		--count: 3;
	}
}

/* 各口コミ */
.customer-voice__item {
	min-height: 21.75rem;
	width: calc((100% - var(--gap) * (var(--count) - 1)) / var(--count));
	border-radius: .5rem;
	background: var(--c-light);
	padding: 1.5rem 0.625rem;
	border: var(--bd-w--sm) solid #e6e6e6;
	font-weight: var(--fw-lg);
}
@media (min-width: 600px) {
	.customer-voice__item {
		max-width: 22.5rem;
	}
}

.customer-voice__summary {
	display: flex;
	gap: .5rem;
	border-bottom: var(--bd-w--sm) dashed #e6e6e6;
	padding-bottom: 1rem;
	margin-bottom: .5rem;
}
.customer-voice__img img {
	max-width: 5rem;
	min-width: 5rem;
}
.customer-voice__name {
	background: #f4f8fb;
}
.customer-voice__name p {
	padding-left: .5rem;
}

