/* メインビジュアル */
.mv_container {
    position: relative;
}

.mv_img {
    min-height: 150px;
    max-height: 300px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv_text {
    position: absolute;
    top: 41%;
    left: 5.5%;
    font-size: clamp(24px, 3.88vw, 56px);
}

/* FAQ */
.faq_container {
    padding-top: 70px;
    min-width: 343px;
}

.faq_question {
    position: relative;
    padding: 40px 0 40px clamp(64px, 8.64vw, 103px);
    font-weight: 500;
    font-size: clamp(14px, 2.5vw, 24px);
    line-height: 160%;
    cursor: pointer;
}

.faq_question::before {
    content: 'Q';
    position: absolute;
    top: 35px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(32px, 4.781vw, 57px);
    height: clamp(32px, 4.781vw, 57px);
    border-radius: 50%;
    background-color: #72b4bd;
    font-size: clamp(16px, 2.5vw, 24px);
    font-family: 'Roboto Slab',
        'Times New Roman',
        serif;
}

.faq_btn {
    margin: .93% 6.59% 0 20px;
    padding-left: 10px;
    width: 14px;
    height: 14px;
    border-bottom: 1.3px solid #101010;
    border-left: 1.3px solid #101010;
    transition: .5s;
    transform: rotate(-45deg);
}

.faq_answer {
    position: relative;
    display: grid;
    border-bottom: 1.5px solid #9d958e;
    background-color: #c7e6c4;
    font-size: clamp(14px, 1.875vw, 18px);
    line-height: 170%;
    transition: .8s grid-template-rows ease;

    grid-template-rows: 0fr;
}

.faq_answer::before {
    content: 'A';
    position: absolute;
    top: 30px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(32px, 4.781vw, 57px);
    height: clamp(32px, 4.781vw, 57px);
    border-radius: 50%;
    background-color: #64b47a;
    font-size: clamp(16px, 2.5vw, 24px);
    font-family: 'Roboto Slab',
        'Times New Roman',
        serif;
}

.faq_toggle .faq_answer {
    grid-template-rows: 1fr;
}

.faq_hidden {
    overflow: hidden;
}

.faq_text {
    margin-right: 16px;
    padding: 30px 0 30px clamp(64px, 8.64vw, 103px);
}

.faq_toggle .faq_btn {
    transform: rotate(-225deg);
}

.faq_list_style {
    padding-left: 1em;
    text-indent: -1em;
}

.faq_list_style::before {
    content: '・';
}

.faq_text_mg {
    margin-top: 1em;
}

/* レスポンシブ 1000px */

@media (max-width: 1000px) {
    /* 余白 */

    .mv {
        margin-top: 120px;
    }
}

/* レスポンシブ 960px */

@media (max-width: 960px) {}


/* レスポンシブ 620px */

@media (max-width: 620px) {
    /* 余白 */

    .mv {
        margin-top: 70px;
    }

    .faq_container {
        padding-top: 20px;
    }

    /* FAQ */

    .faq_btn {
        width: 10px;
        height: 11px;
    }
}