.faq-fv {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.faq-fv img {
	display: block;
	width: 100%;
	height: auto;
}

.faq-content {
	width: 1200px;
	max-width: calc(100% - 40px);
	margin: 60px auto 100px;
}

.faq-entry {
	margin-top: 40px;
}

.faq-section-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-section {
	border: 1px solid #d9d9d9;
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
}

.faq-section-toggle {
	width: 100%;
	padding: 24px 28px;
	border: none;
	background: #f8f8f8;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	text-align: left;
	cursor: pointer;
}

.faq-section-title {
	font-size: 24px;
	font-weight: 700;
	color: #111;
}

.faq-section-icon {
	flex-shrink: 0;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 10px solid #018ef4;
	transition: transform 0.3s ease;
}

.faq-section-toggle[aria-expanded="true"] .faq-section-icon {
	transform: rotate(180deg);
}

.faq-section-panel {
	max-height: 0;
	padding: 0 20px;
	border-top: 1px solid transparent;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease, border-color 0.35s ease;
}

.faq-section-panel.is-open {
	padding: 20px;
	border-top-color: #d9d9d9;
	opacity: 1;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	border: 1px solid #d9d9d9;
	border-radius: 12px;
	background: #fff;
}

.faq-question {
	padding: 24px 28px 24px 92px;
	display: block;
	font-size: 22px;
	font-weight: 600;
	color: #111;
	position: relative;
	border-bottom: 1px solid #d9d9d9;
}

.faq-question-label {
	display: block;
}

.faq-question::before {
	content: "";
	width: 34px;
	height: 34px;
	position: absolute;
	top: 50%;
	left: 28px;
	transform: translateY(-50%);
	background-image: url("../img/common/q.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.faq-answer {
	padding: 24px 28px 24px 92px;
	font-size: 18px;
	line-height: 1.8;
	position: relative;
}

.faq-answer::before {
	content: "";
	width: 34px;
	height: 34px;
	position: absolute;
	top: 24px;
	left: 28px;
	background-image: url("../img/common/a.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.faq-answer > *:first-child {
	margin-top: 0;
}

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

@media (max-width: 767px) {
	.faq-content {
		margin: 40px auto 80px;
	}

	.faq-entry {
		margin-top: 24px;
	}

	.faq-section-list {
		gap: 16px;
	}

	.faq-section-toggle {
		padding: 18px 20px;
	}

	.faq-section-title {
		font-size: 20px;
	}

	.faq-section-panel {
		padding: 0 16px;
	}

	.faq-section-panel.is-open {
		padding: 16px;
	}

	.faq-question {
		padding: 18px 20px 18px 72px;
		font-size: 18px;
	}

	.faq-question::before {
		width: 28px;
		height: 28px;
		left: 20px;
	}

	.faq-answer {
		padding: 18px 20px 18px 72px;
		font-size: 16px;
	}

	.faq-answer::before {
		width: 28px;
		height: 28px;
		top: 18px;
		left: 20px;
	}
}
