@charset "UTF-8";

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
    padding: 0px;
}

.accordion-area li{
    margin: 10px 0;
}

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

/*アコーディオンタイトル*/
.title_q {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 4% 3% 3% 50px;
    transition: all .5s ease;
    text-align: left;
}
/*アコーディオン Qマーク*/
.question {
    content: url("../images/faq/icon_Q.svg");  /*画像のURL*/
    margin-right:18px;  /*画像右の余白*/
    display: block;
    float: left;
    margin-top: -7px;
}
/*アコーディオン Aマーク*/
.answer {
    content: url("../images/faq/icon_A.svg");  /*画像のURL*/
    margin-right:18px;  /*画像右の余白*/
    display: block;
    float: left;
    margin-top: 0px;
}

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

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

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

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0 3% 3% 3%;
    padding: 3%;
    text-align: left;
}
.box p {
    margin-bottom: 0px;
    padding-bottom: 0px;
}