@charset "UTF-8";

*{
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  line-height: 1;
  text-decoration: none;
}

body {
  width: 100%;
  color: #2b2a27;
  font-family: "Helvetica Neue", "Arial", "Hiragino Sans", "Meiryo", sans-serif;
}


header{
  width: 100vw;
  height: 100vh;
  background-image: url(../img/mainvisual.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.index_contents,
.index_sns{
  padding: 0 40px;
  text-align: center;
}

.index_contents
{
margin: 10% auto;
padding: 0 60px;
}

.img{
  width: 100%;
  height: 100%;
}


h1{
  font-size: 60px;
  line-height: 60px;
}

.index_contents > p {
  margin-top: 40px;
  font-size: 30px;
}



.index_recipes ul{
  display: flex;
}

.index_recipes ul li{
  width: calc(100%/3);
}


.index_recipes ul li img{
width: 100%;
height: 500px;
object-fit: cover;
vertical-align: bottom;
}

.index_sns{
  justify-content: space-between;
  margin: 60px auto;
  width: 300px;
}


.index_sns ul{
  display: flex;
  justify-content: space-around;
}


.index_btn{
  margin: 80px auto;
  width: 300px;
  height: 60px;
  border: 1px solid #000;
}

.index_btn > p{
  color: #161616;
  line-height: 60px;
  text-align: center;
}


.index_btn > p:hover{
  color: blue;
  text-decoration: underline;
}


footer{
  padding: 20px;
  text-align: center;
}


@media (max-width: 834px) {


  .index_recipes ul{
    display: block;
  }
  
  
  .index_recipes ul li{
    width: 100%;
  }

  .index_contents{
  padding: 0 20px;
}


}