/*--------------
　　kv
--------------*/
.qakv {
    margin: 0.1rem auto 0;
    width: 100%;
    height: 216px;
    background: url(../image/qa_kv_pc.jpg) center center / cover no-repeat;
    position: relative;
}
.qakv_text {
    color: #F8F8F8;
    padding-top: 85px;
}
.qakv_text p {
    display: inline;
}
.bigtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 34px;
}
.smalltitle {
    font-size: 16px;
    padding-left: 10px;
    vertical-align: middle;
}
@media (max-width: 750px){
    .qakv {
        margin: 7rem auto 0;
        width: 100%;
        height: 12rem;
        background: url(../image/qa_kv_sp.jpg) center center / cover no-repeat;
        position: relative;
    }
    .qakv_text {
        padding-top: 4.5rem;
        padding-left: 1rem;
    }
    .bigtitle {
        font-size: 2rem;
    }
    .smalltitle {
        font-size: 0.8rem;
        padding-left: 1rem;
    }
}

/*--------------
　　タイトル
--------------*/
.qatitle {
    width: 100%;
    background-color: #F8F8F8;
    padding: 80px 0 120px;
}
.qatitle h2 span.decoration::before {
    background-image: url("../image/h2_decoration_r.svg");
}
@media (max-width: 750px){
    .qatitle {
        padding: 4rem 0 6rem;
    }
}

/*--------------
　　Q&A一覧
--------------*/
.qalist {
    width: 100%;
    background-color: #F8F8F8;
    padding-bottom: 95px;
}
.qalist_read {
    font-size: 18px;
    text-align: center;
    margin-bottom: 85px;
}
.qalist_content {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 0;
    border-bottom: solid 1px #000;
}
.qalist_q {
    font-size: 18px;
    color: #BF1734;
    margin-bottom: 25px;
}
.qalist_q::before {
    content: "";
    background-image: url("../image/qa_q.svg");
    display: inline-block;
    width: 27px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}
.qalist_a {
    font-size: 16px;
    line-height: 27px;
    padding-left: 40px;
}
.qalist_a::before {
    content: "";
    background-image: url("../image/qa_a.svg");
    display: inline-block;
    width: 27px;
    height: 20px;
    margin-left: -40px;
    margin-right: 8px;
    vertical-align: middle;
}
@media (max-width: 750px){
    .qalist {
        padding-bottom: 4.5rem;
    }
    .qalist_read {
        font-size: 0.9rem;
        margin-bottom: 4.2rem;
    }
    .qalist_content {
        max-width: 90%;
        padding: 3rem 0;
    }
    .qalist_q {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    .qalist_q::before {
        width: 1.3rem;
        height: 0.9rem;
        margin-right: 0.5rem;
    }
    .qalist_a {
        font-size: 0.8rem;
        line-height: 1.3rem;
        padding-left: 2rem;
    }
    .qalist_a::before {
        width: 1.3rem;
        height: 0.9rem;
        margin-left: -2rem;
        margin-right: 0.4rem;
    }
}