@charset "utf-8";

#SLIDEVIEW{
    width: 100%;
    background-color: #FFFFFF;
    border-top: #FFFFFF 2px solid;
    border-bottom: #FFFFFF 2px solid;
    }

/*=== 画像の表示エリア ================================= */
.slide {
    position   : relative;
    overflow   : hidden;
    width       : 100%;
    max-width: 720px;
    aspect-ratio: 2 / 1;
    object-fit: cover;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
/*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
 /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 50s ease infinite;
}
 
/*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 10s }
.slide img:nth-of-type(3) { animation-delay: 20s }
.slide img:nth-of-type(4) { animation-delay: 30s }
.slide img:nth-of-type(5) { animation-delay: 40s }
 
/*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { opacity: 0 }
   3% { opacity: 1 }
  17% { opacity: 1 }
  20% { opacity: 0 }
 100% { opacity: 0 }
}