@charset "utf-8";
/* CSS Document */

/*sm*/
.faq_contents li{
padding-top: 20px;
border-top: 2px solid rgba(230,230,230,1.0);
}

.faq_contents li:last-child{
border-bottom: 2px solid rgba(230,230,230,1.0);
}

.faq_contents h3{
margin-left: 40px;
margin-right: 20px;
}

.faq_question{
position: relative;
margin-bottom: 20px;
font-weight: bold;
cursor: pointer;
}

.faq_question:before{
content: "";
display: inline-block;
position: absolute;
top: 0;
left:　0;
width: 30px;
height: 30px;
background: url(../img/ico_q.svg)center center/cover no-repeat;
}

.faq_question:after{
content: "";
display: inline-block;
position: absolute;
top: 8px;
right: 0;
width: 8px;
height: 8px;
transform: rotate(135deg);
transition: 0.5s;
border-top: 3px solid rgba(110,110,110,1.0);
border-right: 3px solid rgba(110,110,110,1.0);
}

.faq_question.close:after{
transform: rotate(-45deg);
}

.faq_answer{
display: none;
margin-bottom: 20px;
}

/*md*/
@media screen and (min-width: 768px) {
.faq_contents li{
padding-top: 30px;
}

.faq_question{
margin-bottom: 30px;
}

.faq_answer{
margin-bottom: 30px;
}
}