*{
  padding: 0;
  margin: 0;

}
body{
  font-family: 'ヒラギノ角ゴ StdN','Hiragino Kaku Gothic StdN','Arial Black',sans-serif;
  

}
header{
  text-align: center;
  background: lightblue;
  padding: 30px 20px;
  /*色の指定できず*color: #313131;*/


}
header h1{
  font-size: 40px;
  padding-bottom: 20px;
  

}
nav ul{
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  /*background: #313131;
   color: #FFF;*/


  
}
.hero-box img{
  width: 100%;

}
.one{
  text-align: center;
  background: white;
  padding: 30px 20px;


}
.one h2{
  font-size: 35px;
  padding-bottom: 20px;


}
.two{
  text-align: center;
  background: black;
  padding: 30px 20px;
  color: white;

}
.two h2{
  font-size: 35px;
  padding-bottom: 20px;


}
.two p{
  padding: 20px;

}
.three img{
  width: 100%;

}
aside{
  text-align: center;
  background: white;
  padding: 30px 20px;


}
aside h2{
  font-size: 35px;
  padding-bottom: 20px;

}
aside h3{
  font-size: 30px;
  padding-bottom: 20px;

}
aside figure{
  background: lightblue;
  padding: 20px 50px;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  margin-top: 10px;
}
aside  .instagram-media{
  text-align: center;
  background: white;
  padding: 30px 20px;
}

footer{
  text-align: center;
  background-color: black;
  color: white;
  padding: 10px;

}



/*ボタンのデザイン追加分*/
.button001 a{
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3 ease-in-out;
  font-weight: 500;

}
 .button001 a:hover{
   background: #313131;
   color: #FFF;

 }

 .button001 a:after {
   content: '';
   width: 5px;
   height: 5px;
   border-top: 3px solid #313131;
   border-right: 3px solid #313131;
   transform: rotate(45deg) translateY(-50%);
   position: absolute;
   top: 50%;
   right: 20px;
   border-radius: 1px;
   transition: 0.3s ease-in-out;


 }
 .button001 a:hover:after {
   border-color: #FFF;

 }
