@charset "utf-8";

#voice section {
    margin-top: 30px;
    counter-reset: number 0;
}

#voice section .box {
    background: #eaf8ff;
    padding: 20px;
}

#voice section .box:not(:last-child) {
    margin-bottom: 40px;
}

#voice section .box h3 {
    position: relative;
    margin-top: 0;
    border-left: 0;
    padding: 0;
    padding-bottom: 15px;
    padding-left: 50px;
    margin-bottom: 15px;
    color: #0080C0;
    border-color: #47bcf6;
}

#voice section .box h3::before {
    content: ;
    counter-increment: number 1;
    content: "# VOICE"counter(number);
    display: block;
}

#voice section .box h3::after {
    content: "\f2bd";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 40px;
    color: #47BCF6;
    line-height: 1.4;
}

@media only screen and (max-width: 768px) {

    #voice section {
        margin-top: 20px;
    }

    #voice section .box:not(:last-child) {
        margin-bottom: 20px;
    }
}
