/* Slider */
/* Arrows */
.is-prev,
.is-next {
  z-index: 10;
  position: absolute;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.is-prev:hover, .is-prev:focus,
.is-next:hover,
.is-next:focus {
  outline: none;
  opacity: .7;
}

.is-prev {
  left: 20px;
  background: url(/assets/img/btn/btn_prev_01.png) no-repeat 50% 50%/100%;
}

.is-next {
  right: 20px;
  background: url(/assets/img/btn/btn_next_01.png) no-repeat 50% 50%/100%;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -35px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 10px;
  width: 10px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: url("/assets/img/btn/btn_pager_01.png") no-repeat 0 0;
  background-size: 10px 10px;
}

.slick-dots li.slick-active button:before {
  background: url("/assets/img/btn/btn_pager_01_c.png") no-repeat 0 0;
  background-size: 10px 10px;
}

@media screen and (max-width: 660px) {
  .is-prev,
  .is-next {
    display: none;
  }
}
