/* 全体****************************************************** */
.faq_page {
    background-image: url(../img/faq/faq_top_backimg.png);
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
}

@media screen and (max-width:768px) {
    .faq_page {
        background-image: url(../img/faq/faq_top_backimg_sp.png);
    }
}

/* faq_sec01****************************************************** */
.faq_sec01 {
    width: 100vw;
    height: 44vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq_top_subttl {
    margin-top: 6.5vw;
    font-weight: 600;
}

.faq_top_ttl {
    margin-top: 2.8vw;
    font-weight: 700;
}

.faq_sec01 .recruit_breadcrumb {
    margin-top: 3vw;
}

.faq_link_btns {
    width: 45vw;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
justify-content:center;
column-gap:5vw;
}

.faq_link_btn {
    margin-top: 8vw;
}

.faq_link_btn a {
    width: 20vw;
    height: 4vw;
    display: flex;
    color: white;
    align-items: center;
    background-color: #262e40;
    padding-left: 3vw;
    position: relative;
    border-radius: 4vw;
}

.faq_link_btn a::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 8.5px;
    background-image: url(../img/faq/faq_top_btn_arrow.png);
    background-size: cover;
    right: 1.5vw;
}

/* .faq_top_txt {
    margin-top: 2.5vw;
    line-height: 2
}

.faq_top_annotation {
    margin-top: 2vw;
} */
@media screen and (max-width:1000px) {
    .faq_link_btns {
        width:55vw;
    }
    .faq_link_btn a {
        width:25vw;
    }
}
@media screen and (max-width:768px) {
    .faq_sec01 {
        height: 115vw;
    }

    .faq_top_subttl {
        margin-top: 22.4vw;
    }

    .faq_top_ttl {
        margin-top: 8vw;
    }

    .faq_top_txt {
        margin-top: 14vw;
    }

    .faq_top_annotation {
        margin-top: 8vw;
    }

    .faq_link_btns {
        width: 80vw;
        flex-direction: column;
    }

    .faq_link_btn a {
        width: 80vw;
        height: 16.5vw;
        padding-left: 6vw;
        border-radius: 20vw;
    }

    .faq_link_btn a::after {
        right: 8vw;
    }
}

/* faq_sec02 ~ 04 ****************************************************** */
.faq_sec02,
.faq_sec03,
.faq_sec04 {
    width: 62.5vw;
    max-width: 1200px;
    margin: 0 auto;
}

.faq_sec_inn {
    margin-top: 4.8vw;
        margin-bottom: 4.8vw;
        padding-bottom: 4.8vw;
}

.faq_sec02_inn {
    border-bottom: 1px solid #262e40;
}

@media screen and (max-width:768px) {
    .faq_sec02,
    .faq_sec03,
    .faq_sec04 {
        width: 90vw;
    }
    .faq_sec_inn {
        margin-top: 9.6vw;
        margin-bottom: 9.6vw;
        padding-bottom: 9.6vw;
    }
}

/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 62.5vw;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .accordion-area {
        width: 90vw;
    }
}

.faq_sec_ttl {
    position: relative;
    padding-left: 4vw;
    margin-bottom: 2.4vw;
    font-weight:600;
}

.faq_sec_ttl::before {
    position: absolute;
    content: '';
    height: 2px;
    width: 2.5vw;
    background-color: #2fbce1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-area li {
    margin: 20px 0;
}

.accordion-area .faq_sec_box {
    background-color: #d5f2f9;
    border-radius: 2.6vw;
    position: relative;
}

.accordion-area .faq_sec_box::before {
    position: absolute;
    content: '';
    background-image: url(../img/faq/q_box_mark.png);
    width: 4vw;
    height: 4vw;
    left: 4vw;
    top: 2vw;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width:768px) {
    .faq_sec_ttl {
        padding-left: 10vw;
        margin-bottom: 6vw;
    }

    .faq_sec_ttl::before {
        width: 7.5vw;
    }

    .accordion-area .faq_sec_box {
        border-radius: 5.2vw;
    }

    .accordion-area .faq_sec_box::before {
        width: 8vw;
        height: 8vw;
        left: 4vw;
        top: 6.5vw;
        background-size: cover;
        background-position: center;
    }
}

/*アコーディオンタイトル*/
.q_box {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: 600;
    padding: 3.5vw 9vw 3.5vw 9vw;
    transition: all .5s ease;
    line-height: 1.5;
}

/*アイコンの＋と×*/
.q_box::before,
.q_box::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background-color: #262e40;

}

.q_box::before {
    top: 48%;
    right: 45px;
    transform: rotate(0deg);

}

.q_box::after {
    top: 48%;
    right: 45px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.q_box.close::before {
    transform: rotate(45deg);
}

.q_box.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.a_box {
    display: none;
    /*はじめは非表示*/
    margin: 0 3.5vw 3.5vw 3.5vw;
    padding: 3%;
    border-top: 1px solid #262e40;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .q_box {
        padding: 7vw 18vw 7vw 15vw;
    }

    .a_box {
        padding: 3%;
    }

    .q_box::before,
    .q_box::after {
        height:1px;
        width: 20px;
    }

    .q_box::before {
        top: 50%;
        right: 30px;
    }

    .q_box::after {
        top: 50%;
        right: 30px;
    }
}

.faq_sec_box_inn_list{
    list-style:disc;
    padding-left:2rem;
}