
@charset 'UTF-8';

.faq02 {
	margin-bottom: 50px;
}
.faq02 .article {
	padding-bottom: 0;
	margin-bottom: 20px;
	-webkit-transition: padding .4s;
	-o-transition: padding .4s;
	transition: padding .4s;
}
.faq02 .article:last-child {
	margin-bottom: 0;
}
.faq02 .article .title {
	position: relative;
	background: url(../image/faq_icon.png) 18px 14px no-repeat #F4F4F4;
	padding: 15px 60px 14px;
	font-size: 1.8rem;
	line-height: 1.4;
	letter-spacing: 0.05em;
	cursor: pointer;
	border: solid 1px #032C4C;
}
.faq02 .article .title::before,
.faq02 .article .title::after {
    content: '';
    position: absolute;
    z-index: 10;
    top: 26px;
    right: 19px;
    width: 20px;
    height: 2px;
    background: #032c4c;
    transition: .4s;
	transform: rotate(0deg);
}
.faq02 .article .title::after {
	transform: rotate(270deg);
}
.faq02 .article .title:hover {
	text-decoration: underline;
}
.faq02 .article .text::before{
	content: '';
	display: block;
	width: 100%;
	height: 23px;
}
.faq02 .article .text {
	overflow: hidden;
	height: 0;
	padding: 0;
	-webkit-transition: height .4s;
	-o-transition: height .4s;
	transition: height .4s;
}
.faq02 .article.on {
	padding-bottom: 32px;
}
.faq02 .article.on .title::after {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}