#mv_slider{
	position: relative;
}



#hero-slider {
  width: 100%;
  aspect-ratio: 2240 / 720; /* 比率を指定（モダンブラウザ対応） */
  overflow: cover;
}

#hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← これが重要 */
  display: block;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}
/* ドットの位置・色を調整 */
.slick-dots {
	position: static;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 15;
}
.slick-dots li {
        width: 16px !important;
    }
.slick-dots li.slick-active button:before {
    color: #e8380d !important;
    opacity: 1;
}
.slick-dots li button:before {
  color: white;     /* ドットの色 */
  opacity: 0.75;
}
.slick-dots li button {
        width: 12px !important;
        height: 12px !important;
    }


.slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}


#hero-slider::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    content: "";
    height: 40px;
    background-repeat: no-repeat;
    background-image: url(/common/img/index/bg_gray_wave.png);
    background-size: 100% 100%;
    }

/* ドットカスタム（ベース） */
.slick-dots li {
    position: relative;
    margin-top: 0;
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 2px;
    width: 20px;
    height: 6px;
    background-color: #ccc;
    overflow: hidden;
    border-radius: 3px;
}

/* 横の進捗バー */
.slick-dots li .dot-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f00;
  transform: scaleX(0);
  transform-origin: left center;
}

/* ▼ ナビゲーション全体（ドット＋矢印） */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  position: absolute;
  z-index: 20;
  left: 50%;
  transform: translateX(-50%);
    bottom: -10px;
	width: 100%;
}


@media screen and (max-width: 767.499px) {
#hero-slider::before {
    height: 10px;
}
	.slider-nav {
    bottom: auto;
}
   }

/* ▼ 中央の棒を非表示にする */
.arrow {
  position: relative;
  display: inline-block;
  height: 6px;
  margin: 7.1px 0;
  border-radius: 9999px;
  background-color: transparent;  /* ← ここを変更 */
}

/* ▼ ハの字の先端2本（矢印部分） */
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  width: 13px;
  height: 6px;
  border-radius: 9999px;
  background-color: #ccc;
  transform-origin: calc(100% - 3px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

/* ▼ 左矢印用（180度回転） */
.rotate-left {
  transform: rotate(180deg);
}

/* 外枠の矢印ボタン自体（透明なボタンに） */
.nav-arrow {
  background: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
