@charset "utf-8";
@media screen and (max-width:768px) {
    .cv-fixed.UpMove {
        position: fixed;
        width: 100%;
        animation: UpAnime 0.5s forwards
    }

    @keyframes UpAnime {
        from {
            opacity: 1;
            transform: translateY(0)
        }

        to {
            opacity: 0;
            transform: translateY(50px)
        }
    }

    .cv-fixed.DownMove {
        position: fixed;
        width: 100%;
        animation: DownAnime 0.5s forwards
    }

    @keyframes DownAnime {
        from {
            opacity: 0;
            transform: translateY(50px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }
}