@charset "UTF-8";

/* ------------------------------
    area_ttl
------------------------------ */
.area_ttl{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    height: 240px;
    background: url(../img/faq/bg_faq.jpg) no-repeat;
    background-size: cover;
}
.area_ttl .ttl_page{
    text-align: center;
    font-weight: 200;
    font-size: 4.14rem;
    color: #fff;
}

@media screen and (max-width : 768px){
    .area_ttl{
        height: 120px;
    }
    .area_ttl .ttl_page{
        font-size: 1.8rem;
    }
}

/* ------------------------------
    area_menu
------------------------------ */
.area_menu{
    padding: 75px 0 80px;
}
.area_menu .list_menu{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.area_menu .list_menu li{
    width: 384px;
    height: 101px;
    margin-bottom: 25px;
}
.area_menu .list_menu a{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 384px;
    height: 101px;
    padding: 0 6px 6px 0;
    text-decoration: none;
}
.area_menu .list_menu a{
    background: url(../img/common/btn_anker.png) no-repeat;
    transition: all 0.3s ease-out;
}
.area_menu .list_menu a:hover{
    width: 378px;
    height: 95px;
    margin-top: 6px;
    padding: 0;
    transform: translate(6px,0);
}
.area_menu .list_menu .txt{
    font-size: 2.4rem;
    color: #fff;
}
.area_menu .list_menu .link01 .txt{
    font-size: 2.0rem;
}
@media screen and (max-width : 768px){
    .area_menu{
        padding: 8% 0 10%;
    }
    .area_menu .list_menu li{
        width: 48%;
        height: 64px;
        margin-bottom: 10px;
    }
    .area_menu .list_menu a,
    .area_menu .list_menu a:hover{
        width: 100%;
        height: 100%;
        margin-top: 0;
        padding: 0 3px 3px;
        background: url(../img/common/btn_anker_sp.png) no-repeat;
        background-size: 100% auto;
		background-position: center;
        transform: translate(6px,0);
    }
    .area_menu .list_menu .txt,
    .area_menu .list_menu .link01 .txt{
        line-height: 1.5;
        text-align: center;
        font-size: 1.2rem;
    }
}

/* ------------------------------
    sec_faq
------------------------------ */
.sec_faq{
    padding: 80px 0 88px;
    background: url(../img/common/bg_cross01.png) 0 0 repeat-x;
}
.sec_faq .ttl_faq{
    margin-bottom: 35px;
}
.sec_faq .ttl_faq:before{
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-right: 14px;
    vertical-align: middle;
    background: url(../img/common/ico_hd.svg) no-repeat;
    background-size: contain;
}
.sec_faq .ttl_faq .inner_ttl{
    vertical-align: middle;
    font-size: 3.2rem;
}
.sec_faq .dl_faq + .dl_faq{
    margin-top: 26px;
}
.sec_faq .dl_faq{
    border-bottom: 1px solid #330014;
}
.sec_faq .dl_faq dt {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    height: 80px;
    margin-bottom: 6px;
    padding: 0 0 0 28px;
    background: url(../img/common/bg_cross.png) #330014 50% 50%;
    cursor: pointer;
}
.sec_faq .dl_faq dt:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 23px;
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/faq/btn_plus.svg) no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}
.sec_faq .dl_faq dt.open:after{
    transform: translateY(-50%) rotate(45deg);
}
.sec_faq .dl_faq dt .inner_txt{
    font-size: 2.4rem;
    color: #fff;
}
.sec_faq .dl_faq dd{
    display: none;
    padding: 25px 25px 30px;
    border-left: 1px solid #330014;
    border-right: 1px solid #330014;
}
.sec_faq .dl_faq dd .inner_txt{
    line-height: 2.5;
    font-size: 1.7rem;
}
@media screen and (max-width : 768px){
    .sec_faq{
        padding: 13% 0;
    }
    .sec_faq .ttl_faq{
        margin-bottom: 4%;
    }
    .sec_faq .ttl_faq:before{
        width: 15px;
        height: 15px;
        margin-right: 7px;
    }
    .sec_faq .ttl_faq .inner_ttl{
        font-size: 1.8rem;
    }
    .sec_faq .dl_faq + .dl_faq{
        margin-top: 3%;
    }
    .sec_faq .dl_faq dt {
        height: 50px;
        margin-bottom: 3px;
        padding: 0 20px 0 4%;
    }
    .sec_faq .dl_faq dt:after{
        right: 10px;
        width: 15px;
        height: 15px;
    }
    .sec_faq .dl_faq dt .inner_txt{
        line-height: 1.5;
        font-size: 1.2rem;
        color: #fff;
    }
    .sec_faq .dl_faq dd{
        padding: 3% 3% 4%;
    }
    .sec_faq .dl_faq dd .inner_txt{
        line-height: 2.5;
        font-size: 1.1rem;
    }
}