<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* デスクトップ */
@media (min-width: 1180px){
#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/desktop/header_bg01.jpg") center top no-repeat;
}
.cb-slideshow li:nth-child(2) { 
    height:900px;
	margin-top:-900px;
    background:url("../images/desktop/header_bg02.jpg") center top no-repeat;
	animation-delay: 3s;
}
.cb-slideshow li:nth-child(3) { 
    height:900px;
	margin-top:-900px;
    background:url("../images/desktop/header_bg03.jpg") center top no-repeat;
	animation-delay: 6s;
}
.cb-slideshow li:nth-child(4) { 
    height:900px;
	margin-top:-900px;
    background:url("../images/desktop/header_bg04.jpg") center top no-repeat;
	animation-delay: 9s;
}
}

/* タブレット */
@media screen and (min-width:600px) and (max-width:1179px) {
#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: calc(1170/1536*100%);
    background:url(../images/tablet/header_bg01.jpg) center top no-repeat;
	background-size: contain;
}
.cb-slideshow li:nth-child(2) { 
    height:0;
	padding-top: calc(1170/1536*100%);
	margin-top: -76.171875%;
    background:url(../images/tablet/header_bg02.jpg) center top no-repeat;
	background-size: contain;
	animation-delay: 3s;
}
.cb-slideshow li:nth-child(3) { 
    height:0;
	padding-top: calc(1170/1536*100%);
	margin-top: -76.171875%;
    background:url(../images/tablet/header_bg03.jpg) center top no-repeat;
	background-size: contain;
	animation-delay: 6s;
}
.cb-slideshow li:nth-child(4) { 
    height:0;
	padding-top: calc(1170 / 1536 * 100%);
	margin-top: -76.171875%;
    background:url(../images/tablet/header_bg04.jpg) center top no-repeat;
	background-size: contain;
	animation-delay: 9s;
}
}

/* スマホ */
@media screen and (min-width:10px) and (max-width:599px) {
#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: calc(584 / 750 * 100%);
    background:url(../images/smp/header_bg01.jpg) center top no-repeat;
	background-size: contain;
}
.cb-slideshow li:nth-child(2) { 
    height:0;
	padding-top: calc(584 / 750 * 100%);
	margin-top: calc(584 / 750 * -100%);
    background:url(../images/smp/header_bg02.jpg) center top no-repeat;
	background-size: contain;
	animation-delay: 3s;
}
.cb-slideshow li:nth-child(3) { 
    height:0;
	padding-top: calc(584 / 750 * 100%);
	margin-top: calc(584 / 750 * -100%);
    background:url("../images/smp/header_bg03.jpg") center top no-repeat;
	background-size: contain;
	animation-delay: 6s;
}
.cb-slideshow li:nth-child(4) { 
    height:0;
	padding-top: calc(584 / 750 * 100%);
	margin-top: calc(584 / 750 * -100%);
    background:url("../images/smp/header_bg04.jpg") center top no-repeat;
	background-size: contain;
	animation-delay: 9s;
}
}

@keyframes imageAnimation {  
	0% { opacity: 0; animation-timing-function: ease-in; }
    12.5% { opacity: 1; animation-timing-function: ease-out; }
    25% { opacity: 1 }
    37.5% { opacity: 0 }
    100% { opacity: 0 } 
} 
@-webkit-keyframes imageAnimation {  
	12.5% { opacity: 1; animation-timing-function: ease-out; }
    25% { opacity: 1 }
    37.5% { opacity: 0 }
    100% { opacity: 0 } 
}
.no-cssanimations .cb-slideshow li {
	opacity: 1;
}
</pre></body></html>