@charset "utf-8";

/* ------------------------ Now Loading...画面 ------------------------ */

._screenLoader_ {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff url(./images/loading.gif) center center / 64px 64px no-repeat;
}

@keyframes fadeout {
    0% {
        opacity: 100%;
    }
    100% {
        opacity: 0%;
    }
}

._screenLoader_._fadeout_ {
    animation: fadeout .5s ease-out 0s 1 normal forwards;
}

body._SCRLoder_active_ {
    position: fixed;
    width: 100%;
}

@media all and (max-width: 599px) {
    ._screenLoader_ {
        background-size: 64px 64px;
    }
}