.slider {
	width: 100vw; /* 100vw; */
	height: 60vw; /* 60vw; */
	overflow: hidden;
	position: relative;
	max-width: 100%;
}

.slider div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 60s; /* １枚１０秒に変更 */
	animation-iteration-count: infinite;
 	transform: scale(1.5); /* 最初に画像を大きくしておく */
/*	transform: scale(1);  最初に画像を小さくしておく */
}

@keyframes slide-fade {
	0%{
		opacity: 0;
	}
	20%{
		opacity: 1;
	}
	80%{
		opacity: 0;
		transform: scale(1); /* ここで画像サイズを1に戻す */
/* 		transform: scale(1.5); ここで画像サイズを1.5に戻す */
	}
	100%{
		opacity: 0;
		z-index: 0;
	}
}
/* -- １枚目 */
.slider div:first-of-type{
	background-image: url(https://asakusaherabunakai.jp//image/top/20251203-1.jpg);
}
/* -- ２枚目 */
.slider div:nth-of-type(2){
	background-image: url(https://asakusaherabunakai.jp//image/top/20251203-2.jpg);
	animation-delay: 10s; /* 秒数を変更 */
}
/* -- ３枚目 */
.slider div:nth-of-type(3){
	background-image: url(https://asakusaherabunakai.jp//image/top/20251203-3.jpg);
	animation-delay: 20s; /* 秒数を変更 */
}
/* -- ４枚目 */
.slider div:nth-of-type(4){
	background-image: url(https://asakusaherabunakai.jp//image/top/20251203-4.jpg);
	animation-delay: 30s; /* 秒数を変更 */
}
/* -- ５枚目 */
.slider div:nth-of-type(5){
	background-image: url(https://asakusaherabunakai.jp//image/top/20251203-5.jpg);
	animation-delay: 40s; * 秒数を変更 *
}
/* -- ６枚目 */
.slider div:nth-of-type(6){
	background-image: url(https://asakusaherabunakai.jp//image/top/20251203-6.jpg);
	animation-delay: 50s; * 秒数を変更 *
}
/*
* -- ７枚目 *
.slider div:last-of-type(7){
	background-image: url(https://asakusaherabunakai.jp//image/top/20251203-7.jpg);
	animation-delay: 60s; * 秒数を変更 *
}
* -- ８枚目 *
.slider div:last-of-type(8){
	background-image: url(https://asakusaherabunakai.jp//image/top/20251203-8.jpg);
	animation-delay: 70s; * 秒数を変更 *
}
*/

