<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 */
@media (min-width: 1200px){
#content_wrap {
	height:703px;
	margin: 0 auto;
}
.cb-slideshow li {
	opacity: 0;
	animation: imageAnimation 9s linear infinite 0s;
}
.cb-slideshow li:nth-child(1) {
	height:703px;
    background:url(../images/pc/bg01.jpg) center top no-repeat;
}
.cb-slideshow li:nth-child(2) { 
    height:703px;
	margin-top:-703px;
    background:url(../images/pc/bg02.jpg) center top no-repeat;
	animation-delay: 3s;
}
.cb-slideshow li:nth-child(3) { 
    height:703px;
	margin-top:-703px;
    background:url(../images/pc/bg03.jpg) center top no-repeat;
	animation-delay: 6s;
}
}

@media (max-width: 1199px){
#content_wrap {
	height:0;
	/*padding-top: 79.6875%;*/
	background-size: contain;
	margin: 0 auto;
}
.cb-slideshow li {
	opacity: 0;
	animation: imageAnimation 9s linear infinite 0s;
}
.cb-slideshow li:nth-child(1) {
	height:0;
	padding-top:105.8666%;
    background:url(../images/smp/bg01.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/smp/bg02.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/smp/bg03.jpg) center top no-repeat;
	background-size: contain;
	animation-delay: 6s;
}
}

@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;
}</pre></body></html>