@charset "UTF-8";

/* スライダー */
.sliderArea{
  width: 100%;
  max-width:100%;
  margin: 0 auto;
  padding: 20px 0;
  background: #555;
  position: relative;
  z-index: 1;
}
.sliderArea::after{
  position: absolute;
  content: '';
  background: url(../img/pattern.png) repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.slick-slide{
  transition: all ease-in-out .3s;
  opacity: .6;
  margin: 0 1vw;
}
.slick-slide img{
  width: 100%;
  height: auto;
  box-shadow: 0px 2px 10px #333;
}
.slick-prev,
.slick-next{
  top:-200%;
  z-index: 1;
}
.slick-prev:before,
.slick-next:before{
  display: none;
}
.slick-current{
  opacity: 1;
}
.thumb{
  margin: 20px 0 0;
}
.thumb .slick-slide{
  cursor: pointer;
}
.thumb .slick-slide:hover{
  opacity: 1;
}
.thumb .slick-list{
  width: 70vw;
  margin: 0 auto;
}

/* fv */
.fvArea{
  width: 100%;
  position: relative;
  padding: 80px 0 100px;
}
.fvArea_img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit:cover;
}
.fvArea_txt1{
  color: #fff;
  text-shadow: 0px 1px 10px #000;
  text-align: center;
  font-size: 47px;
  font-weight: bold;
}
.fvArea_txt1.-sub{
  font-size: 27px;
  margin-bottom: 20px;
}
.fvArea_cta{
  margin: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .fvArea{
    padding: 8vw 0 9vw;
  }
  .fvArea_txt1{
    font-size: 5.5vw;
  }
  .fvArea_txt1.-sub{
    font-size: 3vw;
    margin-bottom: 0;
  }
  .fvArea_cta{
    margin: 6vw 0 0;
  }
}
@media screen and (max-width: 500px) {
  .fvArea{
    padding: 10vw 3vw 11vw;
  }
  .fvArea_txt1{
    font-size: 6vw;
  }
  .fvArea_txt1.-sub{
    font-size: 4vw;
  }
}
/* 今月の強化買取商品 */
.month_item{
  background: #eee;
  padding: 80px 0;
}
.month_item .-list{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2%;
}
.month_item .-list .-item{
  position: relative;
  width: 20%;
}
.month_item .-list .-item::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(255,255,255,0) 0%, #eee 100%);
  left: 0;
  bottom: 0;
}
.month_item .-list .-item a{
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.month_item .-list .-item .reflection{
  width: 100%;
  height: 50px;
  object-fit: cover;
  object-position: bottom;
  transform: scale(1, -1);
  position: relative;
  opacity: .1;
}
@media screen and (max-width: 767px) {
  .month_item{
    padding: 50px 0;
  }
  .month_item .-list{
    flex-wrap: wrap;
    gap: 3%;
  }
  .month_item .-list .-item{
    min-width: 31%;
    width: 18%;
  }
  .month_item .-list .-item::after{
    height: 30px;
  }
  .month_item .-list .-item .reflection{
    height: 30px;
  }
}

/* サービス */
.top_service span{
  color: #EB3323;
}
.top_service .main_txt{
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}
.top_service .sub_txt{
  line-height: 2;
}
.top_service .-img{
  max-width: 560px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_service .main_txt{
    font-size: 25px;
  }
}

/* 買取実績 */
.top_results .-link{
  display: block;
  text-align: right;
  text-decoration: underline;
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.2;
}
