.faq-section-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 40px;
}

.faq-title {
	font-size: 32px;
	line-height: 1.4;
	font-weight: 700;
	color: #333;
}

.faq-category-title {
	font-size: 24px;
	line-height: 1.4;
	font-weight: 700;
	color: #333;
}

.faq-list {
	border: 1px solid #cfcfcf;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

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

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 20px;
	background: #fff;
	border: none;
	cursor: pointer;
	transition: background .25s ease;
	text-align: left;
}

.faq-item.active .faq-question {
	background: #eef5fc;
}

.faq-icon {
	width: 30px;
	height: 30px;
	margin-right: 14px;
	flex-shrink: 0;
}

.faq-question-text {
	flex: 1;
	font-size: 18px;
	font-weight: 700;
	color: #333;
	line-height: 1.7;
}

.faq-arrow {
	position: relative;
	width: 24px;
	height: 24px;
	border: 1px solid #3498db;
	border-radius: 50%;
	flex-shrink: 0;
}

.faq-arrow::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 1px;
	background: #3498db;
	top: 11px;
	left: 6px;
	transition: .2s;
}
.faq-arrow::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 10px;
	background: #3498db;
	top: 6px;
	left: 11px;
	transition: .2s;
}

/* 開いたら × */
.faq-item.active .faq-arrow::before {
	transform: rotate(45deg);
}
.faq-item.active .faq-arrow::after {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: max-height .35s ease;
}

.faq-answer-inner {
	padding: 20px 64px;
	font-size: 16px;
	line-height: 1.4;
	color: #333;
}

.faq-answer p {
	margin: 0 0 12px;
}

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

.faq-answer ul {
	margin: 12px 0 12px 24px;
}

.faq-answer li {
	margin-bottom: 8px;
}

.faq-answer a {
	color: #0068c8;
	text-decoration: underline;
}

@media (max-width: 767px) {
	.faq-section-section {
		gap: 16px;
		margin-bottom: 0px;
	}
	.faq-title {
		font-size: 24px;
	}
	.faq-category-title {
		font-size: 20px;
	}
	.faq-question{
		padding: 12px 20px;
	}
	.faq-question-text{
		font-size: 16px;	
	}
	.faq-icon {
		width: 24px;
		height: 24px;
	}
	.faq-answer-inner {
		padding: 16px 20px;
		font-size: 12px;
	}
}