/*body全体共通部分*/
body {
  width:1130px;
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic ProN";
}

img{
  image-rendering:-webkit-optimize-contrast;
}


/*header部分*/
header{
  width:100%;
  height:80px;
  background-color:white;
  opacity:0.9;
  text-align:center;
  line-height:80px;
  font-size:40px;
  position:fixed;
  left:0;/*fixed適用した時のテキストの左右のズレの調整*/
  right:0;/*fixed適用した時のテキストの左右のズレの調整*/
  z-index:10;
}

.non-fixed{
  height:80px;/*header部分fixedによる重なり打消し疑似要素*/
}

/*top-button*/
.return-button{
  width:5%;
  height:10%;
  position:fixed;
  right:15%;
  bottom:5%;
  z-index:10;
}

.return-button img{
  width:100%;
  height:100%;
}

/*main-wrapper部分*/
.main-wrapper{
  width:100%;
  height:auto;
}

.items{
  width:90%;
  height:auto;
  margin:0 auto;
}

.items-img{
  width:50%;
  height:250px;
  margin:0 auto 20px auto;
}

.items img{
  width:100%;
  height:250px;
  margin:0 auto;
}

.items-int{
  width:90%;
  height:200px;
  margin:0　auto 0 auto;
}


/*footer部分*/
footer{
  width:100%;
  height:80px;
  position:relative;
}

.footer-left{
  width:0.5%;
  height:80%;
  background-color:rgba(4, 27, 184, 0.9);
  position:absolute;
  top:10%;
  left:0;
}

.footer-left-bottom{
  width:100%;
  height:40%;
  background-color:rgba(82, 176, 244, 0.53);
  position:absolute;
  top:60%;
}

.footer-center{
  width:40%;
  padding-top:25px;
  padding-left:20px;
  font-size:20px;
  /*background-color:green;*/
  position:absolute;
  left:1%;
}
