@charset "UTF-8";
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Scss Document */
#main_visual {
  position: relative;
}

.slider .slick-slide {
  max-width: 768px;
}
@media screen and (min-width: 960px) {
  .slider .slick-slide {
    max-width: 960px;
  }
}

.slider {
  position: relative;
  background-color: #000;
}
.slider__img a img {
  width: 100%;
  height: 100%;
}
.slider__img img {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .slider .slick-slide:not(.slick-center) {
    opacity: 0.6;
    transition: 0.2s linear;
  }
}
.arrow_box_slider {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.slide-arrow {
  position: absolute;
  top: 0;
  bottom: -120%;
  margin: auto;
  cursor: pointer;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .slide-arrow {
    position: absolute;
    top: 0;
    bottom: -92%;
  }
}

.prev-arrow {
  left: 5%;
  width: 20px;
  height: 20px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .prev-arrow {
    left: calc((100vw - 740px) / 2);
    z-index: 10;
    width: 20px;
    height: 20px;
    margin-top: -25px;
  }
}
@media screen and (min-width: 960px) {
  .prev-arrow {
    left: calc((100vw - 950px) / 2);
    width: 28px;
    height: 28px;
    margin-top: -33px;
  }
}

.next-arrow {
  right: 5%;
  width: 20px;
  height: 20px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .next-arrow {
    right: calc((100vw - 740px) / 2);
    width: 20px;
    height: 20px;
    margin-top: -25px;
  }
}
@media screen and (min-width: 960px) {
  .next-arrow {
    right: calc((100vw - 950px) / 2);
    width: 28px;
    height: 28px;
    margin-top: -33px;
  }
}

/* Dots */
.slick-dots {
  bottom: 0%;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 20;
}
@media screen and (min-width: 750px) {
  .slick-dots {
    bottom: 1.5%;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 30px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
}
.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 {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  font-family: "slick";
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  color: #b3b3b3;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 750px) {
  .slick-dots li button:before {
    color: #fff;
  }
}
.slick-dots li.slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.row_btns {
  text-align: center;
}

.slick_pause {
  cursor: pointer;
  position: relative;
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  background: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.slick_pause::before,
.slick_pause::after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 15px;
  background: #000;
  content: "";
  transition: opacity 0.4s;
}

.slick_pause::before {
  left: calc(50% - 3px);
}

.slick_pause::after {
  left: calc(50% + 3px);
}

.slick_pause.slick_start::before {
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 13px;
  border-color: transparent transparent transparent #000;
  background: none;
}

.slick_pause.slick_start::after {
  display: none;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: absolute;
  left: 30%;
  transform: translateX(-15%);
  z-index: 10; /* コントロールを画像の上に表示 */
  margin-top: 15px;
}
@media screen and (min-width: 750px) {
  .controls {
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px; /* スライダー画像の下部に配置 */
    margin-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .controls {
    bottom: 10px; /* スライダー画像の下部に配置 */
  }
}

.slick-dots-container {
  margin-right: 10px;
}

/*# sourceMappingURL=slider.css.map */