@charset "utf-8";

.first-view{
  height:calc(100vh - 10px);
  background-image:url(../img/index/gazou_top.jpg);
  background-repeat:no-repeat;
  background-position:top center;
  background-size:cover;
  display:flex;
  /* align-items: center; */
  align-items:flex-start
}

.first-view-text {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 68px;
  padding-top: 40px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 10px #4b2c14;
}

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

.first-view-text p {
  font-size: 24px;
  margin-top: 10px;
}

.lead {
  max-width: 1200px;
  margin: 60px auto;
}

.lead p {
  line-height: 2;
  text-align: center;
}

.link-button-area {
  text-align: center;
  margin-top: 40px;
}

.link-button {
  background-color: rgb(255, 220, 220);
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 0 28px;
}

.link-button:hover {
  background-color: rgb(250, 200, 200);
}

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

.recommended h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.recommended h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.item-list {
  display: flex;
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 60px;
  overflow: scroll;
}

.item-list li {
  flex-shrink: 0;
  width: 260px;
  margin-left: 75px;
}

.item-list li:first-child {
  margin-left: 0;
}

.item-list dl {
  margin-top: 20px;
}

.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-top: 15px;
}

@media(max-width:800px){
  .first-view{
    /* height: 960px;画像の高さ */
    width:100%;
    background-image:url(../img/index/gazou_top_sp.jpg);
    align-items:flex-start;
  }

  .first-view-text {
    padding-top: 30px;
    padding-left: 40px;
  }

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

  .first-view-text p {
    font-size: 20px;
    margin-top: 15px;
  }

  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lead p {
    text-align: left;
  }

  .item-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item-list li {
    width: 220px;
    margin-left: 30px;
  }
}


@media(max-width:400px){
  .first-view{
    /* height:calc(100vh-200px); */
    /* height: 946px; 画像の高さに合わせる！ */
    height:calc(100vh - 10px);
    /* width:100%; */
    background-image:url(../img/index/gazou_top_sp.jpg);
    align-items:flex-start;
    background-size:contain;
  }

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

  .first-view-text h1{font-size:26px;line-height:10px;}

  .first-view-text p {
    font-size: 14px;
    margin-top: 15px;
  }

  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lead p {
    text-align: left;
  }

  .item-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item-list li {
    width: 220px;
    margin-left: 30px;
  }
}