@charset "UTF-8";

.slideWrap {
    overflow: hidden;
}

#topSlide li span {
    color: transparent;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 12s linear infinite 0s;
}
#topSlide li:nth-child(1) span {
    overflow: hidden;
    background: url("../images/top/top_slide02-02@2x.jpg") center center / auto 100% no-repeat; background-size: cover; 
}
#topSlide li:nth-child(2) span {
    overflow: hidden;
    background: url("../images/top/top_slide03@2x.jpg") center center / auto 100% no-repeat; background-size: cover;
    animation-delay: 4s;
}
#topSlide li:nth-child(3) span {
    overflow: hidden;
    background: url("../images/top/top_slide04-03@2x.jpg") center center / auto 100% no-repeat; background-size: cover;
    animation-delay: 8s;
}

@media screen and (min-width:896px) {
    
    #topSlide li:nth-child(1) span {
        background: url("../images/top/top_slide02-02@3x.jpg") center center / auto 100% no-repeat; background-size: cover;
    }
    #topSlide li:nth-child(2) span {
        background: url("../images/top/top_slide03@3x.jpg") center center / auto 100% no-repeat; background-size: cover;
    }
    #topSlide li:nth-child(3) span {
        background: url("../images/top/top_slide04-03@3x.jpg") center center / auto 100% no-repeat; background-size: cover;
    }

}

@keyframes imageAnimation {
    4.16% { opacity: 1; }
    29.16% { opacity: 1; }
    35.33% { opacity: 0; }
    100% { opacity: 0; }
}


/* Show at least something when animations not supported */
.no-cssanimations #topSlide li span {
	opacity: 1;
}