﻿@charset "utf-8";
/*===画像の表示エリア================*/
.slide-show{
 width:100%;
 height:70vw;
 margin: 0 auto;
 position:relative;
}
/*===画像の設定======================*/
.slide-show img{
 width:100%;
 height:100%;
 object-fit:cover;
 animation:show 22s infinite;/*--１巡　写真１１枚×２秒--*/
 opacity:0;
 position:absolute;
 left:0;
 top:0;
}
/*===アニメーションの設定============*/
@keyframes show {
  0% {opacity:0}/*--非表示--*/
 5.55% {opacity:1}/*--表示--*/
 11.11% {opacity:1}/*--表示--*/
 16.66% {opacity:0}/*--非表示--*/
 }
.slide-show img:nth-of-type(1) {
 position: relative;
}
.slide-show img:nth-of-type(1) {
 animation-delay: 0s;
}

.slide-show img:nth-of-type(2) {
 animation-delay: 2s;
}

.slide-show img:nth-of-type(3) {
 animation-delay: 4s;
}

.slide-show img:nth-of-type(4) {
 animation-delay: 6s;
}

.slide-show img:nth-of-type(5) {
 animation-delay: 8s;
}

.slide-show img:nth-of-type(6) {
 animation-delay: 10s;
}

.slide-show img:nth-of-type(7) {
 animation-delay: 12s;
}

.slide-show img:nth-of-type(8) {
 animation-delay: 14s;
}

.slide-show img:nth-of-type(9) {
 animation-delay: 16s;
}

.slide-show img:nth-of-type(10) {
 animation-delay: 18s;
}

.slide-show img:nth-of-type(11) {
 animation-delay: 20s;
}

.slide-show img:nth-of-type(12) {
 animation-delay: 22s;
}