.book_logo h4 {
  width: 100%;
  text-align: center;
}
.book_logo img {
  width: 80%;
  margin: 0 auto;
}

.recipe_books {
  max-width: 1200px;
  padding: 0 20px;
  margin: 50px auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recipe_books {
    padding: 0;
  }
}
.recipe_books h3 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .recipe_books h3 {
    padding: 0;
    font-size: 22px;
  }
}

.recipe_books_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recipe_books_list .nav__item {
  width: 31%;
  margin: 30px 0;
}
.recipe_books_list .nav__item .book_img {
  max-width: 300px;
  margin: 30px auto;
  border: 1px solid #ccc;
}
.recipe_books_list h4 {
  font-size: 22px;
  text-align: center;
  padding: 20px 0 20px;
  border-top: 1px solid #e54848;
  border-bottom: 1px solid #e54848;
  position: relative;
}
.recipe_books_list h4 span {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 1.8em;
  font-weight: bold;
  color: #e54848;
  margin-right: 10px;
  font-family: "century gothic";
}
@media screen and (max-width: 767px) {
  .recipe_books_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .recipe_books_list .nav__item {
    width: 100%;
  }
  .recipe_books_list .book_img {
    width: 70%;
  }
  .recipe_books_list h4 {
    font-size: 18px;
    padding: 10px 0 10px 0;
  }
}

.book_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.book_link li {
  width: 46%;
  margin: 0 2%;
}
.book_link li a {
  display: block;
  padding: 10px 0;
  text-align: center;
  background: #e54848;
  color: #fff;
  border: 1px solid #e54848;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.book_link li a:hover {
  background: #fff;
  color: #e54848;
}
/*# sourceMappingURL=book.css.map */