.goods-faq_area {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 50px;
}

.goods-faq_area h2.goods-faq_head {
    background: #fff;
    border-bottom: solid 2px #22AB37;
    border-radius: 0;
    padding: 20px 0;
    color: #222;
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    margin: 0 auto 20px;
}

/* FAQ accordion */
.faq-acc {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-acc>li {
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.faq-acc>li:last-child {
    border-bottom: 1px solid #ddd;
}

.faq-acc_question {
    position: relative;
    padding: 23px 44px 23px 16px;
    cursor: pointer;
}

.faq-acc_question p {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;

    display: grid;
    grid-template-columns: 3.2em 1fr;
    column-gap: 12px;
    align-items: start;

}

.faq-acc_question span {
    display: inline-block;
    color: #22AB37;
    font-size: 20px;
}

.faq-acc_question::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #22AB37;
    border-bottom: 2px solid #22AB37;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .2s ease;
}

.faq-acc_ans {
    border-top: 1px dotted #BDBDBD;
    display: none;
    padding: 23px 44px 23px 16px;
}

.faq-acc_ans p {
    margin: 0;
    line-height: 26px;
    color: #707070;
    font-size: 16px;

    display: grid;
    grid-template-columns: 3.2em 1fr;
    column-gap: 12px;
    align-items: start;
}

.faq-acc_ans span {
    display: inline-block;
    color: #F46472;
    font-size: 20px;
    font-weight: 600;

    margin-right: 0;
}

.faq-acc>li.is-open .faq-acc_question::after {
    transform: translateY(-50%) rotate(-135deg);
}

@media (max-width: 768px) {
    .goods-faq_area {
        width: auto;
        margin: 0 20px 30px 20px;
    }

    .goods-faq_area h2.goods-faq_head {
        background: #fff;
        color: #222;
        border-radius: 0;
        padding: 0;
        border-bottom: solid 2px #33b558;
        font-size: 20px;
        font-weight: 600;
    }

    /* FAQ accordion */
    .faq-acc {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .faq-acc>li {
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

    .faq-acc_question {
        position: relative;
        padding: 19px 30px 19px 19px;
        cursor: pointer;
    }

    .faq-acc_question p {
        margin: 0;
        font-weight: 600;
        font-size: 16px;
        line-height: 28px;

        display: grid;
        grid-template-columns: 2.1em 1fr;
        column-gap: 8px;
        align-items: start;

        text-indent: 0;
        margin-left: 0;
    }

    .faq-acc_question span {
        display: inline-block;
        color: #22AB37;
        font-size: 18px;
        margin-right: 0;
    }

    .faq-acc_question::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid #22AB37;
        border-bottom: 2px solid #22AB37;
        transform: translateY(-50%) rotate(45deg);
        transition: transform .2s ease;
    }

    .faq-acc_ans {
        border-top: 1px dotted #BDBDBD;
        display: none;
        padding: 19px 43px 19px 19px;
    }

    .faq-acc_ans p {
        margin: 0;
        line-height: 26px;
        color: #222;
        font-size: 14px;

        display: grid;
        grid-template-columns: 2.1em 1fr;
        column-gap: 8px;
        align-items: start;

        text-indent: 0;
        margin-left: 0;
    }

    .faq-acc_ans span {
        display: inline-block;
        color: #F46472;
        font-size: 18px;
        font-weight: 600;
        margin-right: 0;
    }

    .faq-acc>li.is-open .faq-acc_question::after {
        transform: translateY(-50%) rotate(-135deg);
    }
}