@charset "UTF-8";

.first-view-area {
  background-image: url(../image/first-view-pc.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.first-view-logo {
  width: 450px;
}

.lead-area {
  text-align: center;
  border-bottom: solid;
  border-color: rgba(167, 131, 98, 0.3);
}

.link-button-area {
  text-align: center;
}

.link-button {
  background-color: #b98e51;
  color: #ffffff;
  display: inline-block;
  min-width: 180px;
  line-height: 50px;
  border-radius: 24px;
  font-family: "Bradley Hand",sans-serif;
  font-size: 30px;
  margin-bottom: 90px;
}

.lead {
  max-width: 1200px;
  margin: 75px auto 70px;
  font-family: "小塚ゴシック Pr6N",sans-serif;
  
  
}

.lead h1 {
  font-size: 25px;
  padding-bottom: 50px;
  font-weight: 200;
}

.lead p {
  font-size: 15px;
  color: #282726;
  line-height: 2;
}


.link-button:hover {
  background-color: rgba(123, 76, 32, 0.7);
  transition: 0.6s ;
}

.reccomended-area {
  text-align: center;
  display: flex;
  justify-content: center;
}


.recommended-area h2 {
  padding-top: 90px;
  text-align: center;
  font-size: 24px;
  font-family: "brevia", sans-serif;
font-weight: 700;
font-style: normal;
}

.recommended p {
  text-align: center;
  position: relative;
  margin-top: 10px;
}

.recommended p::after {
  content: '';
  position: absolute;
  display: block;
  width: 36px;
  height: 3px;
  background-color: #593718;
  margin-top: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.item-list {
  display: flex;
  padding-top: 90px;
  padding-bottom: 40px;
  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-area{
    background-image: url(../image/first-view-mobile.png);
    background-size: cover;
    display: flex;
  justify-content: center;
  align-items: center;

  }

  .first-view-logo {
    width: 300px;
  }

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

  .lead h1 {
    font-size: 20px;
  }
  
  .lead p {
    font-size: 10px;
  }
  
  .recommended h2 {
    font-size: 20px;
  }

  .recommended p {
    font-size: 10px;
  }

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

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

}