.running_line {
    margin-top: 4vw;
}

.running_line-container{
    height: auto;
    background-color: #A6CDE6;
}

.running_line-ul{
    display: inline-flex;
    list-style-type: none;
    white-space: nowrap;
    padding: 0;
    animation: marquee 20s infinite linear;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.running_line-li{
    color: #FFFFFF;
    font-size: 1.56vw;
    line-height: 110%;
    font-weight: 900;
    position: relative;
    margin-right: 5vw;
    width: auto;
    padding-left: 7vw;
}

.running_line-li::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 100%;
}

@media screen and (max-width: 750px) {
    .running_line-li {
        font-size: 4vw;
    }

    .running_line-li::before {
        width: 2.5vw;
        height: 2.5vw;
        top: 1vw;
    }
}