@charset "UTF-8";

/* -------------------- Craft -------------------- */
.craft_top {
  width: 100%;
  height: 350px;
  background: url(../images/craft/craft_top.jpg) no-repeat center center / cover rgba(0,0,0,0.3);
  background-blend-mode:darken;
  margin: 110px 0;
  display: flex;
  align-items: center;
}

.craft_top-content {
  color: #fff;
}

.craft_top-title {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .craft_top {
    margin-top: 132px;
  }
}

/* -------------------- Recommend -------------------- */
.recommend_content {
  border: 1px solid #504949;
  padding: 45px 32px;
  margin-bottom: 96px;
}

.recommend_content-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.666;
  text-align: center;
  margin-bottom: 20px;
}

.recommend_desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.recommend_desc li {
  width: calc((100% - 20px) / 2);
  min-width: 260px;
  position: relative;
  padding-left: 26px;
}

.recommend_desc li::before {
  content: url(../images/craft/check.svg);
  left: 0;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .recommend_content {
    padding: 40px 20px;
  }

  .recommend_desc li {
    width: 100%;
  }
}

/* -------------------- Item list -------------------- */
.item_list {
  margin-bottom: 120px;
}

.item_list-title {
  text-align: center;
  margin-bottom: 60px;
}

.life_title, .care_title {
  padding-bottom: 10px;
  border-bottom: 2px solid #B2D0C2;
  width: 50%;
  margin-bottom: 60px;
}

.life_title::after {
  content: "ライフスタイル";
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.666;
  color: #84A495;
  margin-left: 10px;
}

.care_title::after {
  content: "スキンケア";
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.666;
  color: #84A495;
  margin-left: 10px;
}

.life_content, .care_content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 35px;
  justify-content: center;
}

.life_content {
  margin-bottom: 140px;
}

.care_content {
  margin-bottom: 45px;
}

.item-icon {
  width: 180px;
}

.item_note {
  text-align: right;
  margin-bottom: 120px;
}

.price {
  background-color: #DEEBE5;
  padding: 40px;
}

.price_title {
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  margin-bottom: 18px;
}

.price_list {
  padding-left: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}

.price_list li {
  list-style: disc;
}

@media screen and (max-width: 768px) {
  .life_title, .care_title {
    width: 90%;
  }

  .life_title::after, .care_title::after {
    font-size: 1.2rem;
  }

  .item-icon {
    width: 138px;
  }

  .item_note {
    text-align: left;
  }

  .price_title {
    text-align: center;
  }
}