/*------------------------------------
トップ 横並びブログスライダー 用CSS
------------------------------------*/
.slick-dotted.slick-slider {
  margin-bottom: 60px;
}
.row-slider .slick-list {
  padding: 10px 0;
}
.row-slider .slick-slide {
  padding: 0 15px;
}
.row-slider .item {
  width: calc(33.3333333333% - 20px);
  box-shadow: 0 0 6px #ddd;
  border-radius: 20px;
  padding: 20px;
}
.row-slider .item .thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 12vw;
  border-radius: 20px;
}
.row-slider .item .detail {
  padding-top: 5px;
}
.row-slider .item .detail .date {
  margin: 0;
  font-size: 0.8rem;
}
.row-slider .item .detail .category {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.row-slider .item .detail .title {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}
.row-slider .item .detail .desc {
  font-size: 0.9rem;
  line-height: 1.5;
  min-height: 5em;
  margin-bottom: 0;
}
.row-slider .item .detail .defalt-btn .normal-btn {
  min-width: 170px;
  height: 45px;
  line-height: 39px;
  border-radius: 30px;
  margin-top: 15px;
  font-size: 0.9rem;
}
.row-slider .item .detail .defalt-btn .normal-btn .arrow-circle {
  right: 7px;
  width: 25px;
  height: 25px;
}
.row-slider .item .detail .defalt-btn .normal-btn::before {
  right: 15px;
  width: 10px;
  transform: translateY(-50%);
}
.row-slider .item .detail .defalt-btn .normal-btn::after {
  right: 15px;
  width: 6px;
  height: 6px;
}
.row-slider .slick-arrow {
  z-index: 2 !important;
  background-color: var(--color-main);
  width: 40px;
  height: 40px;
}
.row-slider .slick-prev {
  left: -20px;
  top: 50%;
  z-index: 1;
}
.row-slider .slick-next {
  right: -20px;
  z-index: 1;
  top: 50%;
}
.row-slider .slick-dots {
  bottom: -35px;
}

@media only screen and (max-width: 1080px) {
  .row-slider .item .thumbnail img {
    height: 14vw;
  }
  .row-slider .item .detail .category {
    margin-bottom: 5px;
  }
  .row-slider .item .detail .desc {
    font-size: 0.8rem;
    line-height: 1.5;
    min-height: 6em;
  }
  .row-slider .slick-slide {
    padding: 0 10px;
  }
  .row-slider .item {
    padding: 10px 10px 20px;
  }
  .row-slider .item .thumbnail img {
    height: 23vw;
  }
}

@media only screen and (max-width: 767px) {
  .row-slider .item .detail .title {
    font-size: 0.8rem;
  }
  .row-slider .slick-slide {
    padding: 0 10px;
  }
  .row-slider .item {
    width: 100%;
    padding: 15px;
  }
  .row-slider .item .thumbnail img {
    height: 46vw;
  }
  .row-slider .item .detail .title {
    font-size: 0.9rem;
  }
  .row-slider .item .detail .desc {
    min-height: 70px;
  }
  .row-slider .slick-prev {
    left: -15px;
  }
  .row-slider .slick-next {
    right: -15px;
  }
}