.faq_page h3 {
    padding: 0 0 1em 1.5em;
    position: relative;
    font-size: min(2.08vw, 18px);
}

.faq_page h3::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: #FF0000;
    position: absolute;
    top: 0;
    left: 0;
}

.accordion_wrap:not(:first-of-type) {
    margin-top: min(13.02vw, 150px);
}

.accordion {
    border-bottom: 1px solid;
}

.accordion:first-of-type {
    border-top: 1px solid;
}

.question {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1.5em 2em 1.5em 0.5em;
    cursor: pointer;
    position: relative;
    transition: all .3s;
}

.accordion.open .question {
    background: #ffffff7e;
    color: #000;
}

.question span.plus {
    content: "";
    display: block;
    width: 0.8em;
    height: 0.8em;
    position: absolute;
    top: 50%;
    right: 1em;
    translate: 0 -50%;
}

.question span.plus::before,
.question span.plus::after {
    content: "";
    display: inline-block;
    background: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    transition: all .3s;
}

.question span.plus::after {
    transform: rotate(90deg);
}

.accordion.open .question span.plus::before,
.accordion.open .question span.plus::after {
    transform: rotate(0);
    background: #000;
}

.question h4 {
    font-size: min(1.82vw, 20px);
    line-height: 1.2;
}

.text_qa {
    font-size: 0.8em;
}

.answer {
    display: none;
    font-size: min(1.82vw, 16px);
    padding: 0.5em 2em 3em 3.2em;
    line-height: 1.5;
    background: #ffffff7e;
    color: #000;
    position: relative;
}

@media (any-hover: hover) {
    .question:hover {
        background: #ffffff7e;
        color: #000;
    }

    .question:hover span.plus::before,
    .question:hover span.plus::after {
        background: #000;
    }
}

@media screen and (max-width:768px) {
    .accordion_wrap:not(:first-of-type) {
        margin-top: min(24vw,100px);
    }
    .faq_page h3 {
        font-size: min(4.27vw, 16px);
    }

    .question h4,
    .answer {
        font-size: min(3.73vw, 14px);
    }
}