/*画像スライドショー*/
.groundphotos p {color:rgba(255, 255, 255, 0.897);
	font-size: 60px;
	font-weight: bold;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%,50%);
	white-space: nowrap;
}
.groundphotos {
	height: 100vh;
	position: relative;
}
.image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	background-size: cover;
	background-position: center center;

	animation: image-switch-animation 24s infinite;
}
@keyframes image-switch-animation {
	0%{ opacity: 0;}
	5%{ opacity: 1;}
	25%{ opacity: 1;}
	30%{ opacity: 0;}
	100%{ opacity: 0;}
}
.image:nth-of-type(1) {
	animation-delay: 0s;
}
.image:nth-of-type(2) {
	animation-delay: 4s;
}
.image:nth-of-type(3) {
	animation-delay: 8s;
}
.image:nth-of-type(4) {
	animation-delay: 12s;
}
.image:nth-of-type(5) {
	animation-delay: 16s;
}

.image::before{
	content: "";
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;;
	background: black;
	opacity: 0.4;
}
.src1 {
	background-image: url(./グラウンド1.JPG);
}
.src2 {
	background-image: url(./グラウンド2.JPG);
}
.src3 {
	background-image: url(./グラウンド3.JPG);
}
.src4 {
	background-image: url(./グラウンド4.JPG);
}
.src5 {
	background-image: url(./グラウンド5.JPG);
}