/* よくある質問ページ */

.faq-section {
	background: #fff;
}

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

/* ============================================
   カテゴリ
   ============================================ */
.faq-category {
	margin-bottom: 56px;
}

.faq-category:last-child {
	margin-bottom: 0;
}

.faq-category-title {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: #4da487;
	padding: 12px 20px;
	border-radius: 6px;
	margin-bottom: 4px;
}

/* ============================================
   FAQリスト
   ============================================ */
.faq-list {
	margin: 0;
}

.faq-item {
	border-bottom: 1px solid #e0efe8;
}

.faq-item:first-child {
	border-top: 1px solid #e0efe8;
}

/* 質問 */
.faq-question {
	margin: 0;
}

.faq-btn {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	background: none;
	border: none;
	padding: 20px 8px;
	cursor: pointer;
	text-align: left;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	transition: background 0.15s;
}

.faq-btn:hover {
	background: #f7fdf9;
}

.faq-q-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #4da487;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	border-radius: 50%;
	flex-shrink: 0;
}

.faq-q-text {
	flex: 1;
	font-size: 16px;
	font-weight: bold;
	color: #333;
	line-height: 1.6;
}

.faq-icon {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-right: 2px solid #4da487;
	border-bottom: 2px solid #4da487;
	transform: rotate(45deg);
	flex-shrink: 0;
	transition: transform 0.2s;
	margin-top: -4px;
	margin-right: 8px;
}

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

/* 回答 */
.faq-answer {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 4px 8px 24px 8px;
	margin: 0;
}

.faq-answer[hidden] {
	display: none;
}

.faq-a-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #e8f5ef;
	color: #4da487;
	font-size: 16px;
	font-weight: bold;
	border-radius: 50%;
	flex-shrink: 0;
}

.faq-a-text {
	flex: 1;
	font-size: 15px;
	line-height: 1.9;
	color: #555;
	margin: 4px 0 0;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media screen and (max-width: 768px) {
	.faq-category-title {
		font-size: 16px;
	}

	.faq-q-text {
		font-size: 15px;
	}

	.faq-btn {
		gap: 12px;
		padding: 16px 4px;
	}

	.faq-answer {
		gap: 12px;
		padding-bottom: 20px;
	}
}
