@charset "utf-8";
/* CSS Document */
@media (min-width: 766px){
#content_wrap {
	height:703px;
	margin: 0 auto;
}
.cb-slideshow li {
	opacity: 0;
	animation: imageAnimation 12s linear infinite 0s;
}
.cb-slideshow li:nth-child(1) {
	height:703px;
    background:url(../images/bg01.jpg) center top no-repeat;
}
.cb-slideshow li:nth-child(2) { 
    height:703px;
	margin-top:-703px;
    background:url(../images/bg02.jpg) center top no-repeat;
	animation-delay: 3s;
}
.cb-slideshow li:nth-child(3) { 
    height:703px;
	margin-top:-703px;
    background:url(../images/bg03.jpg) center top no-repeat;
	animation-delay: 6s;
}
.cb-slideshow li:nth-child(4) { 
    height:703px;
	margin-top:-703px;
    background:url(../images/bg04.jpg) center top no-repeat;
	animation-delay: 9s;
}
}

@media (max-width: 765px){
#content_wrap {
	height:0;
	/*padding-top: 79.6875%;*/
	background-size: contain;
	margin: 0 auto;
}
.cb-slideshow li {
	opacity: 0;
	animation: imageAnimation 12s linear infinite 0s;
}
.cb-slideshow li:nth-child(1) {
	height:0;
	padding-top:105.8666%;
    background:url(../images/bg01_sp.jpg) center top no-repeat;
	background-size: contain;
}
.cb-slideshow li:nth-child(2) { 
    height:0;
	padding-top:105.8666%;
	margin-top: -105.8666%;
    background:url(../images/bg02_sp.jpg) center top no-repeat;
	background-size: contain;
	animation-delay: 3s;
}
.cb-slideshow li:nth-child(3) { 
    height:0;
	padding-top:105.8666%;
	margin-top: -105.8666%;
    background:url(../images/bg03_sp.jpg) center top no-repeat;
	background-size: contain;
	animation-delay: 6s;
}
.cb-slideshow li:nth-child(4) { 
    height:0;
	padding-top:105.8666%;
	margin-top: -105.8666%;
    background:url(../images/bg04_sp.jpg) center top no-repeat;
	background-size: contain;
	animation-delay: 9s;
}
}

@keyframes imageAnimation {  
	0% { opacity: 0; animation-timing-function: ease-in; }
    16.6665% { opacity: 1; animation-timing-function: ease-out; }
    33.3333% { opacity: 1 }
    49.9995% { opacity: 0 }
    100% { opacity: 0 } 
} 
@-webkit-keyframes imageAnimation {  
	0% { opacity: 0; animation-timing-function: ease-in; }
    16.6665% { opacity: 1; animation-timing-function: ease-out; }
    33.3333%{ opacity: 1 }
    49.9995% { opacity: 0 }
    100% { opacity: 0 } 
}
.no-cssanimations .cb-slideshow li {
	opacity: 1;
}