<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
#content_wrap {
	height:900px;
	margin: 0 auto;
}
.cb-slideshow li {
	opacity: 0;
	animation: imageAnimation 12s linear infinite 0s;
}
.cb-slideshow li:nth-child(1) {
	height:900px;
    background:url(../images/top/bg01.jpg) center top no-repeat;
}
.cb-slideshow li:nth-child(2) { 
    height:900px;
	margin-top:-900px;
    background:url(../images/top/bg02.jpg) center top no-repeat;
	animation-delay: 3s;
}
.cb-slideshow li:nth-child(3) { 
    height:900px;
	margin-top:-900px;
    background:url(../images/top/bg03.jpg) center top no-repeat;
	animation-delay: 6s;
}
.cb-slideshow li:nth-child(4) { 
    height:900px;
	margin-top:-900px;
    background:url(../images/top/bg04.jpg) center top no-repeat;
	animation-delay: 9s;
}
@keyframes imageAnimation {  
	0% { opacity: 0; animation-timing-function: ease-in; }
    12% { opacity: 1; animation-timing-function: ease-out; }
    25% { opacity: 1 }
    37% { opacity: 0 }
    100% { opacity: 0 } 
} 
@-webkit-keyframes imageAnimation {  
	0% { opacity: 0; animation-timing-function: ease-in; }
    12% { opacity: 1; animation-timing-function: ease-out; }
    25% { opacity: 1 }
    37% { opacity: 0 }
    100% { opacity: 0 } 
}
.no-cssanimations .cb-slideshow li {
	opacity: 1;
}
</pre></body></html>