<style type="text/css">
 /*=== 画像の表示エリア ================================= */
.slide {
  position   : relative;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width      : 1200px;
  height     : 400px;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  left       : -200%;
  animation  : slideAnime 6s ease 1;
}
 
 /*=== スライドのアニメーションを段差で開始する =========*/ 
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 3s }
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { left: 0 }
   5% { left: 0     }
  45% { left: 0     }
  50% { left: 100%  }
 100% { left: 200%  }
}
</style>
