
.faq {
    display: block;
    position: relative;
    padding: 15px 60px 15px 60px;
    background-color: #fff;
    cursor: pointer;
}

.faq-ttl.active::after,
.faq.active::after {

    content: "\f077";
}

.faq-ttl {
    cursor: pointer;
}

.faq-ttl::after {
    content: "\f078";
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
    vertical-align: top;
    margin-left: 15px;
    font-family: "Font Awesome 5 Free";
}

.faq + .faq {
    margin-top: 1px;
}

.faq.active .faq__drop {
    display: block;
}

.faq .faq__drop {
    display: none;
    margin-top: 10px;
}


.faq::after {
    content: "\f078";
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    color: #ff8e41;
    font-size: 15px;
    height: 100%;
    position: absolute;
    transition: 0.3s;
    right: 24px;
    top: 22px;
}

.faq-wrap {
    counter-reset: myCounter;
    background: #eee;
    display: block;
    padding: 25px;
    border-radius: 28px;
}

.faq-wrap .faq::before {
    counter-increment: myCounter;
    content: counter(myCounter);
    font-family: 'apercu_pro', sans-serif;
    position: absolute;
    left: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: #ff8e41;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 25px;
}

@media screen and (max-width: 767px) {
    .faq {
        padding: 15px 45px 15px 15px;
    }

    .faq-wrap {
        border-radius: 15px;
        padding: 15px;
    }

    .faq-wrap .faq::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        line-height: 20px;
        left: 15px;
        top: 17px;
    }

    .faq__ttl {
        padding-left: 35px;
    }

    .faq::after {
        font-size: 13px;
        right: 20px;
    }
}