@CHARSET "UTF-8";
.faq {
	width: 90%;
	margin: 10px auto 50px;
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #312f2f;
}
.faq li {
	width: 100%;
	border-top: 1px solid #312f2f;
}
.faq li .question {
	display: flex;
	align-items: center;
	position: relative;
	min-height: 73px;
	height: auto;
	padding: 18px 30px 18px 24px;
	color: #312f2f;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer;
	text-align: left;
}
.faq li .question:before {
	position: absolute;
	top: 18px;
	left: 0;
	margin-right: 8px;
	color: #312f2f;
	font-family: "Roboto","sans-serif";
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	content: 'Q';
}
.faq li .question .icon {
	display: block;
	position: absolute;
	top: 38px;
	right: 20px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
}
.faq li .question .icon:before,
.faq li .question .icon:after {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 2px;
	margin-top: -1px;
	background: #c00;
	content: '';
}
.faq li .question .icon:after {
	transform: rotate(90deg);
}
.faq li .question.-active .icon:after {
	opacity: 0;
}
.faq li .answer {
	display: none;
	position: relative;
	margin-top: 0;
	padding-bottom: 34px;
	padding-left: 24px;
}
.faq li .answer.js-active {
	display: block;
}
.faq li .answer {
	padding-right: 40px;
	padding-bottom: 20px;
	letter-spacing: -.3px;
}
.faq li .answer:before {
	position: absolute;
	top: 1px;
	left: 0;
	margin-right: 0;
	color: #c00;
	font-family: "Roboto","sans-serif";
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	content: 'A';
}
.faq li .answer p,
.faq li .answer a {
	display: block;
	width: 100%;
	text-align: left;
	padding-bottom: 10px;
}}
.faq li .answer a {
	margin-top: 5px;
	text-decoration: underline;
}
@media only screen and (max-width: 768px) {
	
}
@media only screen and (max-width: 428px) {
	.anchorlink li {
		margin: 10px 5px;
		width: calc(100%/2 - 20px);
	}
	.anchorlink li a {
		font-size: 13px;
	}
	.faq li .question,
	.faq li .answer {
		font-size: 14px;
	}
}
