/* n00000370.c00000120.ThemeA */

a {
    text-decoration-line: none;
}

.logoCust {
    width: 50px;
    height: 50px;
    display: inline-block;
}

    .logoCust img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }
.an {
    animation-duration: 7s;
    animation-name: an_slidein;
    animation-iteration-count:infinite;

}

@keyframes an_slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

.article {
    animation-duration: 9s;
    animation-name: article_slidein;
    animation-iteration-count: infinite;
}

@keyframes article_slidein {
    from {
        margin-left: 70%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}


