@charset "UTF-8";

.slideWrap {
    overflow: hidden;
}

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

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

}

@-webkit-keyframes imageAnimation {
    0% { opacity: 0; animation-timing-function: ease-in; }
    4.16% { opacity: 1; }
    29.16% { opacity: 1; }
    35.33% { opacity: 0; }
    100% { opacity: 0; }
}
@-moz-keyframes imageAnimation {
    0% { opacity: 0; animation-timing-function: ease-in; }
    4.16% { opacity: 1; }
    29.16% { opacity: 1; }
    35.33% { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes imageAnimation {
    0% { opacity: 0; animation-timing-function: ease-in; }
    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;
}