body{
    margin-top: -0px; 
}
.topbody{
    margin-top: -50px; 
}
hr {
    margin-top: 10px;
  margin-bottom: 3px;
    border: none;
    height: 1px;
    /* Set the hr color */
    color: #b0c7d1; /* old IE */
    background-color: #b0c7d1; /* Modern Browsers */
}


.slide {
  position   : relative;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width      : 100%;
  height     : 500px;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 48s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 8s }
.slide img:nth-of-type(3) { animation-delay: 16s }
.slide img:nth-of-type(4) { animation-delay: 24s }
.slide img:nth-of-type(5) { animation-delay: 32s }
 .slide img:nth-of-type(6) { animation-delay: 40s }
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { opacity: 0 }
   3% { opacity: 1 }
  17% { opacity: 1 }
  20% { opacity: 0 }
 100% { opacity: 0 }
}