@charset "utf-8";
/* align-items: center; 文字センター位置  */
.first-view {
  height: calc(100vh - 110px);
  background-image: url(../images/menu/menu_top.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
/* H1とキャッチコピーの位置調整 */
.first-view-text {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-bottom: 80px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  line-height: 72px;
}

.first-view-text p {
  font-size: 22px;
  margin-top: 20px;
  line-height: 30px;
}

/* 　トップ　READ文　 */
.lead {
  max-width: 1200px;
  margin: 60px auto;
  margin-top: 20px ;
}

.lead p {
  line-height: 2;
  font-size: 20px;
  text-align: center;
}
/* リンクボタン　位置 */
.link-button-area {
  text-align: center;
  margin-top: 40px;
}
/* リンクボタン フォント、サイズ各種設定*/
.link-button {
  background-color: #ffbb6e;
  display: inline-block;
  min-width: 300px;
  min-height: 60px;
  line-height: 60px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
}

.link-button:hover {
  background-color: #f7ea99;
}

.recommended {
  background-color: #fbebeb;
  padding-top: 45px;
  padding-bottom: 55px;
}

.recommended h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.recommended h2::after {
  content: '';
  display: block;
  width: 350px;
  height: 3px;
  background-color: #7f1111;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.item-list {
  display: flex;
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
}
/* 商品のサイズ、間隔調整 defflex-shrink: 0; width: 260px; margin-left: 75px;*/
.item-list li {
  flex-shrink: 1;
  width: 100%;
  margin-left: 10px;
  background-color: rgb(246, 225, 206);
}

.item-list dl {
  margin: 10px;
}

.item-list dt {
  font-weight: bold;
}

.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.item-list .price {
  font-weight: bold;
  margin: 10px;
}

.item-list li:first-child {
  margin-left: 0;
}
.instagram_qr{
  width: 100px;
}

@media (max-width: 800px) {
  .first-view {
    height: calc(100vh - 50px);
    background-image: url(../images/menu/menu_top-sp.jpg);
    align-items: flex-start;
  }

  .first-view-text {
    padding-top: 60px;
    padding-left: 10px;
  }

  .first-view-text h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .first-view-text p {
    font-size: 14px;
    margin-top: 15px;
    line-height: 25px;
  }
  /* 　トップ　モバイル　READ文　 */
    .lead {
      margin-top: 5px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .lead p {
      font-size: 15px;
      text-align: left;
      line-height: 30px;
    }

  .recommended h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
  }
  
  .recommended h2::after {
    content: '';
    display: block;
    width: 260px;
    height: 3px;
    background-color: #000000;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .item-list {
    display: block;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 0px;
    /* margin-left: auto;
    margin-right: auto; */
  }
  
  .item-list li {
    flex-shrink: 1;
    width: 100%;
    margin: 0px;
    padding-bottom: 5px;
  }
}