/* ////////////////////////////////// */
/* トップイメージ画像 */
/* ////////////////////////////////// */
.lower_top_faq {
    background-image: url(../images/faq/topimg.jpg);
    background-size: cover;
    background-position: center 60%;
}


/* ////////////////////////////////// */
/* よくあるご質問 */
/* ////////////////////////////////// */
.faq_area {
    margin: 100px auto 130px;
    max-width: 1000px;
}
.faq_first_txt {
    margin-bottom: 50px;
}
.faq_first_txt .midashi {
    font-size: 24px;
    margin-bottom: 10px;
}
.faq_first_txt .txt {

}
.faq_list {

}
.faq_bottom_txt {
    margin-top: 50px;
}


.faq_block {
    margin-bottom: 30px;
}
.faq_title {
    margin: 50px 0 15px;
    font-size: 18px;
}
.q_area {
    background-color: #fef0ac;
    padding: 20px;
    padding-right: 50px;
}
.a_area {
    padding: 20px;
    border: solid #fef0ac;
    border-top: none;
}
.qa_area_flex {
    display: flex;
    width: 100%;
    align-items: center;
}
.q_area .qa_area_title {
	color: #48575E;
	font-size: 22px;
	margin-right: 15px;
	display: block;
}
.a_area .qa_area_title {
    color: #48575E;
    font-size: 22px;
    margin-right: 15px;
    display: block;
}
.qa_area_txt {
    display: block;
    font-size: 16px;
    margin-top: 2px;
}

/* /////////////////////// */
/* アコーディオン部分 */
/* /////////////////////// */
/*アコーディオンタイトル*/
.title2 {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
    transition: all .5s ease;
}
/*アイコンの＋と×*/
.title2::before,
.title2::after{
    position: absolute;
    content:'';
    width: 20px;
    height: 2px;
    background-color: #48575E;
    
}
.title2::before{
    top:48%;
    right: 25px;
    transform: rotate(0deg);
    
}
.title2::after{    
    top:48%;
    right: 25px;
    transform: rotate(90deg);

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

.title2.close::after{
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
}



/* /////////////////////// */
/* サイズの大きいPC */
/* /////////////////////// */
/*
@media screen and (min-width:1350px){
    .m3_back {
        height: 1200px;
    }
}
@media screen and (min-width:1450px){
    .m3_back {
        height: 1300px;
    }
}
*/

/* /////////////////////// */
/* サイズの小さいPC */
/* /////////////////////// */
@media screen and (max-width:1050px){
    .faq_area {
        width: 750px;
    }
}


/* /////////////////////// */
/* レスポンシブ対応 */
/* /////////////////////// */
@media screen and (max-width:767px){
    .faq_area {
        width: calc(100% - 30px);
        margin: 50px auto 100px;
    }
    .faq_first_txt .midashi {
        font-size: 20px;
    }
    .q_area {
        padding: 15px;
    }
    .a_area {
        padding: 15px;
    }
    .faq_first_txt {
        margin-bottom: 30px;
    }
    .faq_bottom_txt {
        margin-top: 30px;
    }
    .title2::before {
        right: 15px;
    }
    .title2::after {
        right: 15px;
    }
}