@charset 'UTF-8';

.faq {
	margin-bottom: 56px;
}
.faq .article {
	background: #F3F6FA;
	padding-bottom: 0;
	margin-bottom: 10px;
	-webkit-transition: padding .4s;
	-o-transition: padding .4s;
	transition: padding .4s;
}
.faq .article:last-child {
	margin-bottom: 0;
}
.faq .article .title {
	position: relative;
	padding: 29px 90px 26px 30px;
	color: #000;
	font-size: 1.8rem;
	line-height: 1.4;
	cursor: pointer;
}
.faq .article .title::after {
	content: '';
	position: absolute;
	z-index: 10;
	top: 50%;
	right: 30px;
	width: 40px;
	height: 40px;
	background: url('../image/faq_icon.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 .article .title:hover {
	opacity: 0.6;
}
.faq .article .text {
	overflow: hidden;
	height: 0;
	padding: 0 30px;
	-webkit-transition: height .4s;
	-o-transition: height .4s;
	transition: height .4s;
}
.faq .article.on {
	padding-bottom: 20px;
}
.faq .article.on .title::after {
	-webkit-transform: rotate(180deg) translateY(50%);
	-ms-transform: rotate(180deg) translateY(50%);
	transform: rotate(180deg) translateY(50%);
}

.faq-contact {
	text-align: center;
}
.faq-contact a {
	text-decoration: underline;
}
.faq-contact a:hover {
	text-decoration: none;
}
