@charset "UTF-8";

#top-flash{
	display:flex;
	justify-content:center;
	align-items:center;
}
#top-flash .top-flash-image-slider {
	position:relative;
	width:760px;
	height:470px;
	overflow:hidden;
}
#top-flash .top-flash-image-slider img{
	position:absolute;
	width:100%;
	height:100%;
	object-fit:cover;
	opacity:0;
	animation:fade-animation 15s ease-in-out infinite;
}
#top-flash .top-flash-slider-infinite img:nth-child(1){
	animation-delay:0s;
}
#top-flash .top-flash-slider-infinite img:nth-child(2){
	animation-delay:5s;
}
#top-flash .top-flash-slider-infinite img:nth-child(3){
	animation-delay:10s;
}
@keyframes fade-animation{
	0%,40%,100%{opacity:0;}
	10%,30%{opacity:1;}
}
