.faq-main {
	border-top: 1px solid #e8e8e8;
	border-left: 1px solid #e8e8e8;
	border-right: 1px solid #e8e8e8;
	margin-bottom: 40px;
}

.faq-main__item {
	height: 56px;
	overflow: hidden;
	transition: height 0.5s ease-out;
}

.faq-main__question {
	border-bottom: 1px solid #e8e8e8;
	color: #000;
	font-weight: bold;
	text-align: center;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	padding-right: 40px;
}

.faq-main__question::after {
	content: "▼";
	position: absolute;
	right: 20px;
	transition: transform 0.5s ease-out;
}

.faq-main__item_open .faq-main__question::after {
	transform: rotate(-180deg);
}

.faq-main__answer {
	border-bottom: 1px solid #e8e8e8;
	background-color: #fafafa;
	padding: 15px;
}

.faq-title {
	font-size: 2rem;
		line-height: 2.375rem;
		font-family: "Euclid Circular A", "Sans-serif";
	font-weight: 500;
	margin: 1em 0;
	color: #000;
}
