#slideshow {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 2;
}
@media screen and (max-width: 979px) {
	#slideshow {
		height: auto;
		padding-top: 52.08%;
	}
}/*--tab*/

#slideshow::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../img/slideshow/wall.png') no-repeat center bottom;
	background-size: cover;
	z-index: 10;
}
#slideshow > li {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	z-index: 4;
}
#slideshow > li.active {
	opacity: 1.0;
	z-index: 10;
	animation: anime 4s 0s 1;
}
@keyframes anime {
	0%{ opacity: 0; }  
	100%{ opacity: 1; }
}
@media screen and (min-width: 980px) {
	#slideshow > li > img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}/*--pc*/
