@charset "utf-8";

.first-view {
  height: calc(100vh - 110px);
  background-image: url(../img/bottle-img.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.first-view-text {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-bottom: 80px;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 10px #696969;
}
.first-view-text h1 {
  font-family: 'Monserrat',sans-serif;
  font-size: 1.8rem;
  line-height: 36px;
}
.first-view-text p {
  font-size: 1.13rem;
  margin-top: 15px;
}
.lead {
  max-width: 1200px;
  margin: 60px auto;
}
.lead p {
  line-height: 2;
  font-size: 1rem;
  text-align: center;
}
.link-button-area {
  text-align: center;
  margin-top: 40px;
}
.link-button {
  background-color: #ffe4e1;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Montserrat',sans-serif;
  font-size: 14px;
}
.link-button:hover {
  background-color: #ff69b4;
}

.recommended {
  background-color: #f5f5f5;
  padding-top: 45px;
  padding-bottom: 55px;
}
.recommended h2 {
  font-size: 1.38rem;
  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;
}
.check-list {
  display: flex;
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 60px;
  overflow-x: scroll;
}
.check-list li {
  flex-shrink: 0;
  width: 200px;
  margin-left: 75px;
}
.check-list li:first-child {
  margin-left: 0;
}
.check-list dl {
  margin-top: 20px;
}
.check-list dt {
  font-weight: bold;
}
.check-list dd {
  font-size: 1rem;
  line-height: 20px;
  margin-top: 10px;
}
.check-list .kekka {
  font-weight: bold;
  margin-top: 15px;
}

/* media */
@media (max-width: 800px){
  .first-view {
    height: calc(100vh - 50px);
    background-image: url(../img/bottle-img-bg.jpg);
    align-items: flex-start;
    max-height: 300px;
  }
  .first-view-text {
    padding-top: 60px;
    padding-left: 20px;
  }
  .first-view-text h1 {
    font-size: 1.3rem;
    line-height: 25px;
  }
  .first-view-text p {
    font-size: 0.88rem;
    margin-top: 15px;
  }
  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lead p {
    text-align: left;
  }
  .check-list {
    padding-left: 20px;
    padding-right: 20px;
  }
  .check-list li {
    width: 180px;
    margin-left: 30px;
  }


}