@charset "utf-8";

.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  /* height: 100vh; */
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider img {}

/*　背景画像設定　*/

.slider-item01 {}

.slider-item02 {}

.slider-item03 {}

.slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /* height: 830px; */
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  position: relative;
}

@media screen and (max-width: 576px) {
  .slider-item {
    width: 100%;
    height: 650px;
    background-repeat: no-repeat;
    position: relative;
  }
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-prev,
.slick-next {
  /* position: absolute; */
  z-index: 3;
  bottom: 20%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  height: 25px;
  width: 25px;
  /* 不要 */
  display: none;
}

@media screen and (max-width: 576px) {

  .slick-prev,
  .slick-next {
    top: 16%;
  }
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

@media screen and (max-width:768px) {
  .slick-prev {
    left: 0.5%;
    transform: rotate(-135deg);
  }
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -25px 0 0 0;

}

@media screen and (max-width: 576px) {
  .slick-dots {
    position: relative;
    z-index: 999;
    text-align: center;
    margin: 20px 0 0 0;
  }
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 50%;
  background: #8798c6;
  border: .5px solid #000;
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

.wrapper {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .slider-item {
    height: 600px;
  }
}