@charset "utf-8";
/* CSS Document */

#maingazo{
    margin-top: 50px;
    text-align: center;

    }

.box2{
    width: 640px;
	 margin-top: 50px;
     float: left;
        }

.box2a{
    width: 600px;
    font-size: 30pt;
	font-weight:bold;
	text-align:left;
     margin-top: 20px;
     float: left;
        }

.box2b{
     width: 600px;
     margin-top: 15px;
	line-height:35px;
	text-align:left;
     float: left;
                }

.box3a{
    width: 640px;
     margin-top: 20px;
}

.title{
	font-size:30pt;
	margin-top:85px;
	margin-bottom:45px;
    text-align: center;
}


<style type="text/css">
 /*=== 画像の表示エリア ================================= */
.slide {
  position   : relative;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width      : 200px;
  height     : 200px;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 20s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 10s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { opacity: 0 }
   16% { opacity: 1 }
  33% { opacity: 1 }
  49% { opacity: 0 }
 100% { opacity: 0 }
}
</style>