@charset 'UTF-8';
.faq02 {
	margin-bottom: 50px;
}
.faq02 .article {
	padding-bottom: 0;
	margin-bottom: 45px;
	transition: padding .4s;
}
.faq02 .article:last-child {
	margin-bottom: 0;
}
.faq02 .article .title {
	position: relative;
	padding: 0 55px 12px 65px;
	margin-bottom:15px;
	font-size: 2.4rem;
	font-weight:normal;
	line-height: 1.4;
	cursor: pointer;
	border-bottom:1px dotted #333;
transition:opacity 0.3s;
}
.faq02 .article .title::before{
	content:'Q';
	position:absolute;
	left:0;
	top:-8px;
    font-family: 'Assistant', sans-serif;
	font-size:2.2rem;
padding: 6px 14px 7px;
background:#fff;
	border:1px solid #E4E4E4;
	border-radius:15px;
}
.faq02 .article .title::after {
	content: '';
	position: absolute;
	z-index: 10;
	top: 10px;
	right: 20px;
	width: 15px;
	height: 15px;
	background: url('../image/faqicon02.jpg') center no-repeat;
	transition:background 0.4s,  -webkit-transform 0.3s;
	transition:transform 0.3s,  background 0.4s;
	transition:transform 0.3s,  background 0.4s,  -webkit-transform 0.3s;
}
.faq02 .article .title:hover::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.faq02 .article .title:hover {
	text-decoration: none;
	opacity:0.8;
}
.faq02 .article .text {
	overflow: hidden;
	height: 0;
	padding: 0 0;
	transition: height .4s;
}
.faq02 .article.on {
	padding-bottom: 20px;
}
.faq02 .article.on .title::after {
	background: url('../image/faqicon01.jpg') center no-repeat;
}
