.faq-list__q {
    font-size: 2.2rem;
    font-weight: bold;
    color: #028760;
    display: flex;
    margin: 32px 0;
}

@media screen and (max-width: 1024px) {
    .faq-list__q {
        display: block;
        font-size: 1.6rem;
    }
}

.faq-list__q::before {
    display: inline-block;
    min-width: 50px;
    min-height: 50px;
    content: "";
    background: url("../img/qa_icon_q.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 24px;
}

@media screen and (max-width: 1024px) {
    .faq-list__q::before {
        min-width: 36px;
        min-height: 36px;
    }
}

.faq-list__a {
    display: flex;
}

@media screen and (max-width: 1024px) {
    .faq-list__a {
        display: block;
    }
}

.faq-list__a::before {
    display: inline-block;
    min-width: 50px;
    min-height: 50px;
    content: "";
    background: url("../img/qa_icon_a.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 24px;
}

@media screen and (max-width: 1024px) {
    .faq-list__a::before {
        min-width: 36px;
        min-height: 36px;
    }
}