.faq-kv .inner figure img {
	width: 100%;
	height: auto;
	display: block;
}

.faq-lead .text {
	margin-top: 30px;
	line-height: 2;
}

.faq-nav {
	flex-wrap: wrap;
	row-gap: 12px;
}

.faq-section {
	padding-top: 100px;
	padding-bottom: 10px;
}

.faq-section-last {
	padding-bottom: 80px;
}

.faq-list {
	margin-top: 30px;
	border-top: 1px solid #d9d2c7;
}

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

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 26px 70px 26px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	position: relative;
	font: inherit;
	color: #222;
}

.faq-q,
.faq-a {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.faq-q {
	background: #8e7b67;
	color: #fff;
}

.faq-a {
	background: #ede7df;
	color: #8e7b67;
}

.faq-question-text {
	flex: 1 1 auto;
	font-size: 18px;
	line-height: 1.8;
	font-weight: 500;
}

.faq-toggle {
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
}

.faq-toggle::before,
.faq-toggle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: #8e7b67;
	transform: translate(-50%, -50%);
	transition: transform .25s ease, opacity .25s ease;
}

.faq-toggle::before {
	width: 18px;
	height: 2px;
}

.faq-toggle::after {
	width: 2px;
	height: 18px;
}

.faq-item.is-open .faq-toggle::after {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
	display: none;
	padding: 0 0 26px;
}

.faq-answer-inner {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.faq-answer-text {
	flex: 1 1 auto;
	line-height: 2;
	font-size: 16px;
	color: #333;
	padding-top: 6px;
}

.faq-answer-text p:first-child {
	margin-top: 0;
}

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

.faq-answer-text ul,
.faq-answer-text ol {
	margin: 10px 0 10px 1.5em;
}

@media screen and (max-width: 768px) {
	.faq-section {
		padding-top: 60px;
	}

	.faq-question {
		gap: 12px;
		padding: 18px 36px 18px 0;
	}

	.faq-q,
	.faq-a {
		flex: 0 0 34px;
		width: 34px;
		height: 34px;
		font-size: 14px;
	}

	.faq-question-text {
		font-size: 15px;
		line-height: 1.7;
	}

	.faq-answer-inner {
		gap: 12px;
	}

	.faq-answer-text {
		font-size: 14px;
		line-height: 1.9;
	}
}