/*============================================================*/

/*    RF28のラインナップ */

/*============================================================*/

section.recommend {
  margin: 0;
}
section.recommend > .container {
  border-top: 1px solid #B4B4B4;
  padding-top: 45px;
}
section.recommend .recommend_title {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

section.recommend h2 {
  font-size: 26px;
  margin: 0 20px 0 0;
}

section.recommend p {
  font-size: 14px;
  margin: 0;
}

section.recommend .recommend_slider {
  position: relative;
  padding: 0;
}

section.recommend .slick-track {
  display: flex;
  align-items: stretch;
}

section.recommend .recommend_slider .recommend_item {
  font-size: 12px;
  position: relative;
  padding: 0 1.5vw 205px;
  float: inherit;
}

section.recommend .recommend_slider .recommend_item_img {
  text-align: center;
  margin-bottom: 10px;
}
section.recommend .recommend_slider .recommend_item_img img {
  margin: auto;
  max-height: 200px;
  width: auto;
}
section.recommend .recommend_slider .recommend_item_cart {
  width: 80%;
  height: 205px;
  position: absolute;
  bottom: 0;
}
section.recommend .recommend_slider .recommend_item_inner > * {
  margin: 0 0 15px; 
}
section.recommend .recommend_slider .recommend_item_inner > *:last-child{
  margin-bottom: 0;
}

section.recommend .recommend_slider .recommend_item_name {
  font-size: 14px;
  margin-bottom: 10px;
}
section.recommend .recommend_slider .recommend_item_desc {
  margin-bottom: 12px;
}
section.recommend .recommend_slider .recommend_item_label {
  border: 1px solid #333;
  display: inline-block;
  padding: 3px 5px;
  margin: 0 0 5px;
}
section.recommend .recommend_slider .recommend_item_price {
  margin: 0 0 5px;
}
section.recommend .recommend_slider .recommend_item_btn {
  width: 100%;
  color: #FFF;
  background-color: #9C9C9C;
  text-align: center;
  padding: 10px;
}
section.recommend .recommend_slider .recommend_item_nomal {}
section.recommend .recommend_slider .recommend_item_teiki .recommend_item_label {
  border-color: #F97C76;
}
section.recommend .recommend_slider .recommend_item_teiki .recommend_item_btn {
  background-color: #F97C76;
}




@media screen and (max-width: 767px) {
  section.recommend {
    padding: 0 3vw;
  }
  section.recommend > .container {
    padding-top: 12vw;
  }
  section.recommend .recommend_title {
    display: block;
    margin-bottom: 5vw;
  }
  section.recommend h2 {
    font-size: 5vw;
    margin: 0 0 2.8vw 0;
  }
  section.recommend p {
    font-size: 3.4vw;
  }

  section.recommend .recommend_slider {
    width: 80%;
    margin: auto;
  }  
  section.recommend .slick-track {
    display: flex;
    align-items:flex-start;
  }
  section.recommend .recommend_slider .recommend_item {
    font-size: 3.5vw;
    padding: 0 1vw;
  }
  section.recommend .recommend_slider .recommend_item_img {
    margin-bottom: 2vw;
  }
  section.recommend .recommend_slider .recommend_item_cart {
    width: 100%;
    height: auto;
    position: static;
  }
  
  section.recommend .recommend_slider .recommend_item_inner > * {
    margin: 0 0 5vw; 
  }
  section.recommend .recommend_slider .recommend_item_inner > *:last-child{
    margin-bottom: 0;
  }

  
  section.recommend .recommend_slider .recommend_item_name {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
  section.recommend .recommend_slider .recommend_item_desc {
    margin-bottom: 5vw;
  }
  section.recommend .recommend_slider .recommend_item_label {
    padding: 1vw 2vw;
    margin: 0 0 2vw;
  }
  section.recommend .recommend_slider .recommend_item_price {
    font-size: 3.5vw;
    margin: 0 0 1.5vw;
  }
  section.recommend .recommend_slider .recommend_item_btn {
    padding: 3vw;
  }
}

/* slick arrow */

.slick-list {
  max-height: 1000px !important;
}
section.recommend .slick-prev {
  position: absolute;
  transform: translate(0, -50%);
  top: 40%;
  left: -60px;
}
section.recommend .slick-next {
  position: absolute;
  transform: translate(0, -50%);
  top: 40%;
  right: -50px;
}
section.recommend .slick-prev:before {
  content: "" !important;
}
section.recommend .slick-prev:after {
  display: block;
  content: "";
  width: 22px;
  height: 44px;
  background: url(../img/arrow_prev.png) no-repeat center center;
  background-size: contain;
}
section.recommend .slick-next:before {
  content: "" !important;
}
section.recommend .slick-next:after {
  display: block;
  content: "";
  width: 22px;
  height: 44px;
  background: url(../img/arrow_next.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  section.recommend .slick-prev {
    top: 40vw;
    left: -8vw;
  }
  section.recommend .slick-prev:after {
    width: 5vw;
    height: 10vw;
  }
  section.recommend .slick-next {
    top: 40vw;
    right: -8vw;
  }
  section.recommend .slick-next:after {
    width: 5vw;
    height: 10vw;
  }
}