<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*crossFader*/

#fader4 {
	position: relative;
	width: 100%;
	margin-top: -150px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	clear: both;
	overflow: hidden;
	background-color: aquamarine;
  aspect-ratio: 5 / 2;
}

/* #fader4 {
  position: absolute;　	
  min-width: 641px;
  } */
  

#fader4 img{
  width: 100%;
	position: absolute;/*　画像中心に　*/
	/* left: 50%;
	margin-left: -1000px; */
	display: block;
  cursor:pointer;
}


/* .crossfader{
	position:relative; 
} */

.crossfader img{
	/* position:absolute;
	top:0px;
	left:0px; */
	z-index:8;
	opacity:0;
}

.crossfader .active{
	z-index:10;
	opacity:1.0;
} 

/* .crossfader .last-active{
	z-index:9;
}  */

/* ＝＝SP＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (max-width: 640px) {
#fader4 {
	height: 400px;
  aspect-ratio: 1 / 1;
}
#fader4 img{
	width: 100%;
  height: 400px;
	/* margin-left: -500px; */
  object-fit: cover;
object-position: center center;
}
}
</pre></body></html>