@charset "utf-8";
/* CSS Document */
.fade_slide{
	position: relative;
	width: 100vw;}
.fade_slide li{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: fade_slide;
	animation-duration: 18s;
	animation-iteration-count: infinite;}
@keyframes fade_slide {
  0%{
    opacity: 0;
  }
  20%{
    opacity: 1;
  }
  80%{
    opacity: 0;
  }
  100%{
    opacity: 0;
    z-index: 0;
  }
}
