/* お客様の声ページ */

.voice-section {
	background: #fff;
}

.voice-section .section-inner {
	padding-top: 56px;
	padding-bottom: 80px;
}

/* ============================================
   声リスト
   ============================================ */
.voice-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

/* ============================================
   声アイテム
   ============================================ */
.voice-item {
	background: #fff;
	border: 1px solid #e0efe8;
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.voice-item-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.voice-no {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #4da487;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	padding: 4px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.voice-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.voice-name {
	font-size: 15px;
	font-weight: bold;
	color: #333;
}

.voice-area,
.voice-type {
	font-size: 13px;
	color: #777;
	background: #f5f5f5;
	padding: 2px 10px;
	border-radius: 20px;
}

.voice-summary {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	margin: 0 0 16px;
}

/* ============================================
   アコーディオン
   ============================================ */
.voice-accordion-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	color: #4da487;
	font-size: 14px;
	font-weight: bold;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	cursor: pointer;
	padding: 0;
	transition: opacity 0.2s;
}

.voice-accordion-btn:hover {
	opacity: 0.7;
}

.voice-accordion-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	border-right: 2px solid #4da487;
	border-bottom: 2px solid #4da487;
	transform: rotate(45deg);
	transition: transform 0.2s;
	margin-top: -4px;
}

.voice-accordion-btn[aria-expanded="true"] .voice-accordion-icon {
	transform: rotate(-135deg);
	margin-top: 4px;
}

.voice-accordion-btn[aria-expanded="true"] {
	/* ボタンテキスト変更はJSで行う */
}

.voice-accordion-body {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #e0efe8;
}

.voice-accordion-body[hidden] {
	display: none;
}

.voice-detail {
	font-size: 14px;
	line-height: 1.9;
	color: #555;
	margin: 0;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media screen and (max-width: 768px) {
	.voice-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.voice-item {
		padding: 20px;
	}
}
