/*==================================================
スライダーのためのcss
===================================*/
.header-wrapper {
  position: relative;
  /* margin: 0 0 100px 0; */
}

@media screen and (max-width: 1000px) {
  .header-wrapper {
    margin-top: 12px;
  }
}

@media screen and (max-width: 768px) {
  .header-wrapper {
    margin-top: 12px;
  }
}

@media screen and (max-width: 720px) {
  .header-wrapper {
    margin-top: 12px;
  }
}

@media screen and (max-width: 480px) {
  .header-wrapper {
    margin-top: 17px;
  }
}

@media screen and (max-width: 320px) {
  .header-wrapper {
    margin-top: -14px;
  }
}

.header-wrapper .main-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  z-index: 99;
  /*文字の装飾*/
  max-width: 100%;
  width: 916px;
  /* margin-top: 65px; */
  /* padding-bottom: 30px; */
}

@media screen and (max-width: 768px) {
  .header-wrapper .main-copy {
    top: 45%;
  }
}

/* @media screen and (max-width: 768px) { */
.header-wrapper .main-copy img {
  width: 100%;
}
/* } */

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

@media screen and (max-width: 768px) {
  .main_slider {
    height: 40vh;
  }
}

/*　背景画像設定　*/
.slider-item01 {
  background: url(../img/index/main-img01.jpg);
}

.slider-item02 {
  background: url(../img/index/main-img02.jpg);
}

.slider-item03 {
  background: url(../img/index/main-img03.jpg);
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /* height: 100vh; */
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  height: 88vh;
  /* height: 632px !important; */
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

@media screen and (max-width: 768px) {
  .slider-item {
    height: 40vh;
  }
}

/*矢印の設定*/

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff; /*矢印の色*/
  border-right: 2px solid #fff; /*矢印の色*/
  height: 25px;
  width: 25px;
}

@media screen and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    top: 62%;
    height: 12px;
    width: 12px;
  }
}

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

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

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

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0; /*ドットの位置*/
}

@media screen and (max-width: 640px) {
  .slick-dots {
    margin: -35px 0 0 0; /*ドットの位置*/
  }
}

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

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #c4c4c4; /*ドットボタンの色*/
  padding: 6px;
  margin: 5px;
}

@media screen and (max-width: 640px) {
  .slick-dots button {
    padding: 3px;
  }
}

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

#slide_space {
  background: #e9eadf;
  padding: 1% 0;
  margin-bottom: 75px;
}

.construction_slider {
  margin: 0 auto;
  /* width: 80%; */
}

.construction_slider img {
  height: auto;
  width: 100%;
}

.construction_slider li {
  float: left;
  list-style: none;
  position: relative;
  width: 280px;
  margin-right: 4px;
}

.construction_slider li span {
  color: #484848;
  display: block;
  font-size: 0.75em;
  padding: 10px 0;
  text-align: center;
  white-space: nowrap;
}

.construction_slider li span > .br_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .construction_slider li span > .br_sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .construction_slider > .slick-prev,
  .construction_slider > .slick-next {
    display: none;
  }
}
