/* =====================================================
   お客様の声 一覧・詳細ページ用スタイル
   category-voice.php / single-voice.php
   ※ グリッドのSP/PC切り替えは、他ページの.flexboxSP/.flexboxPCと
     同じ実装（サイト共通ブレイクポイント520px）に合わせています。
   ※ 文字まわり（フォントサイズ・太さ・色）は一旦サイト標準に委ね、
     レイアウトに必要な指定のみ残しています。
===================================================== */

#subText {
	margin-bottom: 30px;
}

/* ---------- 一覧ページ：カードグリッド ---------- */
#voiceArea .voiceCardList {
	box-sizing: border-box;
	width: 100%;
	margin: 10px 0 20px;
	padding: 0 4%;
	list-style: none;
}
#voiceArea .voiceCard {
	box-sizing: border-box;
	width: 48%;
	margin: 0 0 24px;
}
#voiceArea .voiceCard__thumb {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: #f2f2f2;
	border: 1px solid #cecece;
}
#voiceArea .voiceCard__thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#voiceArea .voiceCard__body {
	padding: 10px 2px 0;
}
#voiceArea .voiceCard .voiceTitle {
	font-weight: bold;
	font-size: 1.1em;
	margin-bottom: 8px;
}
#voiceArea .voiceCard .voiceName {
	margin-bottom: 6px;
}
#voiceArea .voiceCard .voiceCol {
	font-size: 0.9em;
	color: #999;
}
#voiceArea .voiceCard__more {
	margin-top: 8px;
	text-align: right;
}

@media screen and (min-width: 520px) {
	#voiceArea .voiceCard {
		width: 31.5%;
	}
}

/* ---------- 詳細ページ ---------- */
.voiceDetail__dl {
	margin: 0 0 20px;
}
.voiceDetail__name {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #cecece;
}
.voiceDetail__title {
	margin-bottom: 16px;
}
.voiceDetail__content p:first-child {
	text-align: center;
	margin-bottom: 20px;
}
.voiceDetail__content img {
	display: inline-block;
	width: 100%;
	max-width: 360px;
	height: auto;
	margin: 0 auto;
}
.voiceDetail__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
}
