@charset "UTF-8";

/*===================================
メインビジュアル/スライダーのためのcss
===================================*/

.slider {
  min-height: 532px;
}

.slider .slick-arrow {
  display: none !important;
}

/*　背景画像設定　*/
.slider-item01 {
  background: url(../img/main_bg_top1.jpg);
}
.slider-item02 {
  background: url(../img/main_bg_top2.jpg);
}
.slider-item03 {
  background: url(../img/main_bg_top3.jpg);
}
.slider-item04 {
  background: url(../img/main_bg_top4.jpg);
}
.slider-item05 {
  background: url(../img/main_bg_top5.jpg);
}

.slider-item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 532px;
}

@media screen and (max-width: 768px) {
  .slider {
    min-height: 500px;
  }

  .slider-item01 {
    background: url(../img/sp/main_bg_top1_sp.jpg);
  }

  .slider-item02 {
    background: url(../img/sp/main_bg_top2_sp.jpg);
  }

  .slider-item03 {
    background: url(../img/sp/main_bg_top3_sp.jpg);
  }
  .slider-item04 {
    background: url(../img/sp/main_bg_top4_sp.jpg);
  }
  .slider-item05 {
    background: url(../img/sp/main_bg_top5_sp.jpg);
  }

  .slider-item {
    /* padding: 55px; */
    min-height: 500px;
    background-position: center center;
    background-size: cover;
  }
  .sp_only {
    display: block;
  }
  .mv_ttl .txt01 {
    font-size: 6vw;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .mv_ttl h2 {
    font-size: 12vw;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .mv_ttl h2 span {
    font-size: 10vw;
  }
  .mv_ttl h2 em {
    font-weight: bold;
    font-size: 23vw;
  }
  .mv_ttl .txt02 {
    font-size: 7vw;
  }
  .mv_txt {
    padding: 30px 0;
  }
  .mv_txt p {
    font-size: 4.8vw;
  }
  .mv_ttl .txt03 {
    top: 80%;
  }
}

/*矢印の設定*/
/* .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;
}

.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: -40px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 20px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background: #fff;
}

.slick-dots .slick-active button {
  background: #c4c4c4;
}

/*==================================================
スライダーのためのcss
===================================*/

.slider_sp {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  /* width: 94%; */
  width: 100%;
  margin: 0 auto;
}

.slider_sp figure {
  aspect-ratio: 3 / 2;
}

.slider_sp img {
  /* width: calc(50% - 15px); */
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.slick-slide {
  /* width: 50% !important; */
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider_sp .slick-slide {
  margin: 0 7.5px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  /* top: 42%; */
  top: 25%;
  transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  /* border-top: 2px solid #456800;
    border-right: 2px solid #456800;  */
  height: 25px;
  width: 25px;
  z-index: 10;
  border-radius: 50%;
  box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
}

/* #top_voice_section .slick-prev,
#top_voice_section .slick-next {
    top: 25%;
    transform: translateY(50%);
} */

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  /* transform: rotate(-135deg); */
  background-image: url(../img/sp/slick-prev_arrow.png);
  background-size: cover;
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  /* transform: rotate(45deg); */
  background-image: url(../img/sp/slick-next_arrow.png);
  background-size: cover;
}

@media screen and (min-width: 426px) and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    height: 35px;
    width: 35px;
  }

  /*戻る、次へ矢印の位置*/
  .slick-prev,
  .slick-next {
    top: 25%;
    transform: translateY(-25%);
  }

  #top_voice_section .slick-prev,
  #top_voice_section .slick-next {
    top: 25%;
    transform: translateY(50%);
  }
}

/*ドットナビゲーションの設定*/

.slider_sp .slick-dots {
  /* text-align: center;
    margin: 20px 0 0 0; */
  display: none !important;
}

/* 
.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: #ccc;
}

.slick-dots .slick-active button {
    background: #333;
} */
