@charset 'UTF-8';

.faq-container__block:not(:last-child) {
	margin-bottom: 60px;
}
.faq-box-entries__item {
	margin-bottom: 30px;
}
.faq-box-entry {
	transition: padding .4s;
}
.faq-box-entry__heading {
	position: relative;
	padding: 0 0 0 75px;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.6;
}
.faq-box-entry__heading::before {
	content: 'Q';
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	background: #222222;
	width: 70px;
	height: 100%;
	padding: 0 0 2px;
	color: #FFF;
	font-size: 3.0rem;
	font-family: 'Muli', sans-serif;
	font-weight: normal;
}
.faq-box-entry__heading:hover {
	opacity: 0.8;
}
.faq-box-title {
	position: relative;
	border: 3px solid #EDEDED;
	background: #F9F9F9;
	padding: 16px 55px 16px 20px;
}
.faq-box-title::after {
	content: '';
	position: absolute;
	z-index: 10;
	top: 50%;
	right: 17px;
	width: 23px;
	height: 14px;
	background: url('../image/faq_arrow.png') center no-repeat;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-transform .4s;
	transition: -webkit-transform .4s;
	-o-transition: transform .4s;
	transition: transform .4s;
	transition: transform .4s, -webkit-transform .4s;
}
.faq-box-text {
	position: relative;
	padding: 30px 0 0 100px;
}
.faq-box-text::before {
	content: 'A';
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 30px;
	left: 0;
	background: #CA2222;
	width: 70px;
	height: 70px;
	padding: 0 0 2px;
	color: #FFF;
	font-size: 3.0rem;
	font-family: 'Muli', sans-serif;
	font-weight: normal;
}
.faq-box-entry.-open {
	padding-bottom: 20px;
}
.faq-box-entry.-open .faq-box-title::after {
	-webkit-transform: rotate(180deg) translateY(50%);
	-ms-transform: rotate(180deg) translateY(50%);
	transform: rotate(180deg) translateY(50%);
}

.faq-form__text {
	margin-top: 14px;
	color: #666666;
	font-size: 1.4rem;
	text-align: center;
	line-height: 1.71;
}