/* kv */
.main-visual-bg {
  position: relative;
  overflow: hidden;
}

.kv-text {
  z-index: 1;
  min-width: 100%;
}

.kv-text source,
.kv-text img {
  display: block;
  min-width: 100%;
}

.kv-wrap {
  max-width: 100%;
  overflow: hidden;
}

.kv-swiper {
  width: 100%;
}

.kv-swiper .swiper-slide {
  height: unset;
}

/* 自社社員紹介 */
.employee-introduction-swiper-wrap {
  background-color: #E9ECF4;
  max-width: 100%;
  padding: 70px 0;
  overflow: hidden;
}

/* Swiper全体 */
.swiper-container-wrap {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.swiper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.employee-introduction-swiper {
  width: 89%;
}

/* スライド横並び */
.swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
}

/* スライドエリア */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
}

.employee-introduction-swiper .swiper-slide {
  /* Swiperの自動高さ制御を無効化 */
  height: auto !important;
}

.swiper-slide picture,
.swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
}

.h100v picture,
.h100v img {
  height: calc(100dvh - var(--height-header-with-border));
}

/* ページネーション */
.swiper-pagination {
  z-index: 5 !important;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: -60px;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  background: #7189DA;
}

/* ナビゲーションボタン */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 5;
  width: auto;
  height: auto;
  align-self: center;
  cursor: pointer;
}

.swiper-button-prev {
  left: 30px;
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

@media (max-width: 768px) {
  .employee-introduction-swiper {
    width: 86%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: 38%;
    height: 37px;
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-button-next {
    right: 10px;
  }

  .swiper-button-prev img,
  .swiper-button-next img {
    width: 60%;
  }
}