/* FAQセクション */
.faq-section {
	background: #f7f7ed;
	padding: 6rem 0;
}


.faq-title {
	font-size: 2em;
	font-weight: bold;
	color: #222;
	text-align: center;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
}

.faq-lead {
	font-size: 1.08em;
	color: #444;
	text-align: center;
	margin-bottom: 32px;
}

.faq-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.faq-item {
	background: #fff;
	margin-bottom: 22px;
	overflow: hidden;

}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding: 0;
	background: none;
	border: none;
	width: 100%;
	font-size: 1em;
	box-sizing: border-box;
	position: relative;
	border: 2px solid #00A0E9;

}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	background: #00A0E9;
	color: #fff;
	font-size: 1.4em;
	font-weight: bold;
	margin: 0 14px 0 0px;
}

.faq-question-text {
	flex: 1 1 auto;
	background: #fff;
	padding: 18px 0;
	border: none;
	text-align: left;
}

.faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	margin: 0 16px 0 12px;
	font-size: 1.6em;
	color: #00A0E9;
	background: #fff;
	border-radius: 50%;
	border: 2px solid #00A0E9;
	transition: background 0.2s, color 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
	background: #00A0E9;
	color: #fff;
}

.faq-icon svg {
	width: 1em;
	height: 1em;
	display: block;
}


.faq-icon {
	width: 32px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	margin-right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6em;
	color: #00A0E9;
	background: #fff;
	border-radius: 50%;
	border: 2px solid #00A0E9;
	transition: background 0.2s, color 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
	background: #00A0E9;
	color: #fff;
}

.faq-icon svg {
	width: 1em;
	height: 1em;
	display: block;
}

.faq-answer {
	padding: 18px 22px 18px 54px;
	font-size: 1.05em;
	color: #222;
	line-height: 1.9;
	background: #f7f7ed;
	display: none;
}

.faq-item.open .faq-answer {
	display: block;
}

@media (max-width: 700px) {
	.faq-inner {
		padding: 0 4px;
	}

	.faq-answer {
		padding: 16px 10px 16px 44px;
		font-size: 0.98em;
	}

	.faq-question {
		font-size: 1em;
		padding: 14px 10px 14px 8px;
	}
}