@charset "utf-8";
.container .row .white {
	color: aliceblue;
}
.container .row .white a{
	color: aliceblue;
}
.container .row .white a:hover{
	color: lightskyblue;
}
.slider-container {
	position: relative;
	width: 100%;
	aspect-ratio: 5/4;
	height: auto;
	overflow: hidden;
}
.slideimg {
	position: absolute;
 	inset: 0;
	opacity: 0;
	background-size: cover;
	animation: slideAnime 18s infinite;
}
.slideimg:nth-of-type(1) { background-image: url(../images/slider-dec-v3.png); animation-delay: 0s; }
.slideimg:nth-of-type(2) { background-image: url(../images/slider-dec-v3_2.png); animation-delay: 3s; }
.slideimg:nth-of-type(3) { background-image: url(../images/slider-dec-v3_3.png); animation-delay: 6s; }
.slideimg:nth-of-type(4) { background-image: url(../images/slider-dec-v3_4.png); animation-delay: 9s; }
.slideimg:nth-of-type(5) { background-image: url(../images/slider-dec-v3_5.png); animation-delay: 12s; }
.slideimg:nth-of-type(6) { background-image: url(../images/slider-dec-v3_6.png); animation-delay: 15s; }

@keyframes slideAnime {
	0%, 30%, 100% { opacity: 0; } /* 非表示のタイミング */
	10%, 20% { opacity: 1; } /* 表示されるタイミング */
}