
.dropdown .dropdown__ttl {
    color: #475669;
    font-family: 'apercu_pro', sans-serif;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    display: block;

    background-color: #ffffff;
    padding: 0 45px 0 65px;
    position: relative;
    border-radius: 5px;
    line-height: 50px;
}

.dropdown__ttl.red::before {
    color: inherit;
}

.dropdown {
    border-radius: 3px;
    position: relative;
    background-color: #d4e4f2;
    padding: 15px;
}

.dropdown__ttl.active::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dropdown__ttl::after {
    content: "\f078";
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    color: #ff8e41;
    font-size: 22px;
    position: absolute;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    right: 15px;
    top: 0;
}

.dropdown__inner {
    background: rgb(255, 255, 255);
    margin: 10px 0 0 0;
    padding: 15px;
    border-radius: 5px;
}

.dropdown__ttl::before {
    font-weight: bold;
    color: #ff8e41;
    background: center/contain no-repeat;
    position: absolute;
    width: 32px;
    height: 32px;
    left: 20px;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-size: 25px;
}


@media screen and (max-width: 599px) {
    .dropdown {
        padding: 10px;
    }

    .dropdown__ttl::before {
        display: none;
    }

    .dropdown__ttl::after {
        font-size: 12px;
        right: 15px;
    }

    .dropdown .dropdown__ttl {
        padding: 0 15px;
        font-size: 14px;line-height: 40px;
    }
}