/* BASIC css start */

#contents img{
    width: 100%
}

.ani_wrap{position: relative;}

.ani_wrap .position{
    position: absolute;
    
}

.ani_wrap .click {
    position: absolute;
    width: 52%;
    height: 46px;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
}

.ani_wrap .click a{
    display: inline-block;
    width: 100%;
    height: 100%;
}


.point{
    animation:updown 1s ease-in infinite Alternate;
}


@keyframes updown{
    from{
        top:38%;
    }
    to{
        top:41%;
    }    
}
/* BASIC css end */

