@charset "UTF-8";
/* CSS Document */
/*アコーディオンタイトル*/

#faq{
    padding-top: 0px;
}

#faq h2{
	font-size: 2.5rem;
	margin-bottom: 60px;
}


.faq_area{
	margin-top: 30px;
	margin-bottom: 30px;
}

.faq_bg{
    margin: 0;
    background-image:url("../img/faq_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.faq_area h2{
	font-size: 1.5em;
	text-align: center;
}

.accordion-area{
    list-style: none;
    width: 90%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.accordion-area section {
	border: 1px solid #ccc;
}


.faq_title {
    position: relative;
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.faq_title::before,
.faq_title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.faq_title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.faq_title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.faq_title.close::before{
	transform: rotate(45deg);
}

.faq_title.close::after{
	transform: rotate(-45deg);
}

.faq_box {
    display: none;
    background: #fcf6fb;
	margin:0 3% 3% 3%;
    padding: 3%;
}

@media screen and (max-width:640px) {

    #faq h2{
        font-size: 1.6rem;
        margin-bottom: 60px;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        color: #f08080;
        text-shadow: 3px 3px 2px #ccc;
        font-family: 'Shippori Mincho', serif;
    }
}