@charset "UTF-8";

/* Dots */
.slick-dots {
  /*position: absolute;*/
  /*bottom: -25px;*/
  top: 10px;
  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  /*top: 450px;*/
  width: 12px;
  height: 12px;
  margin: 0 9px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  /*padding: 5px;*/
  color: transparent;
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover::before,
.slick-dots li button:focus::before {
  opacity: 1;
}
.slick-dots li button::before {
  /*font-family: 'slick';
  font-size: 6px;
  line-height: 20px;*/
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  content: '';
  text-align: center;
  border-radius: 50%;
  opacity: .5;
  background-color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button::before {
  opacity: .75;
  color: black;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    top: 10px;
  }
  .slick-dots li {
    margin: 0 4px;
	/*top: 360px;*/
  }
  .slick-dots li button::before {
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 480px) {
  .slick-dots {
    top: 10px;
  }
  .slick-dots li {
    margin: 0 4px;
	/*top: 300px;*/
  }
  .slick-dots li button::before {
    width: 8px;
    height: 8px;
  }
}

@media screen and (min-width: 1300px) {
  .slick-dots {
    top: 28px;
  }
}


/*
.slide-dots {
  margin: 0;
  padding: 0;
  text-align: center;
}
.slide-dots {
  display: inline-block;
  margin: 0 10px;
}
.slide-dots button {
  position: relative;
  text-indent: -9999px;
}
.slide-dots button::before {
  background-image: url(表示されてない用の画像のパス);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  cursor: pointer;
  height: 13.5px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
  width: 13.5px;
}
.slide-dots .slick-active button::before {
  background-image: url(表示されてる用の画像のパス);
}
button {
  background: none;
  border: none;
  outline: none;
  padding: 0 7px;
}
*/