/* slick様CSS */

/* dots jsでdotsのクラス名をslide-dotsに指定している*/

button{
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slide-dots{
  
}
.slide-dots li{
  display: inline-block;
  margin: 0 20px;
}
.slide-dots li button{
  position: relative;
  text-indent: -9999px;
}
.slide-dots li button:before{
  content: "";
  background-image: url(/images/slide-line-white.png);
  display: block;
  height: 13px;
  width: 34px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.slide-dots li.slick-active button:before{
  content: "";
  background-image: url(/images/slide-line-black.png);
}

@media screen and (max-width:599px){
  .slide-dots li button:before{
    width: 22px;
  }
  .slide-dots li{
    margin: 0 13px;
  }
}