@charset "utf-8";

/*==================================================
--- openingAnimation
====================================================*/
/* ローディングアニメーションはstyle.cssで管理 */

/*==================================================
---全体ふわっと
====================================================*/

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*==================================================

---scrollバーアニメーション

====================================================*/
.scrollBox::after {
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}