@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.slider-wrap {
  width: 960px;
  height: 387px;
  margin: 0 auto;
  position: relative;
}

/* Swiper本体 */
.swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  /* 角丸を効かせるため */
  border-radius: 4px;
  /* ← 追加 */
}

.swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  /*cursor: pointer;*/
}

/* 背景画像（全面） */
.slide-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* コンテンツ */
.slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  align-items: end;
}

/* テキスト */
.slide-text {
  position: relative;
  z-index: 3;
  width: 45%;
  padding: 40px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

/* アイコン */
.slide-text .icon {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
    margin-bottom: 2px;
}

/* タイトル */
.slide-text h2 {
  font-size: 30px;
  font-size: 32px;
  font-weight: 700;
  font-weight: 400;
  margin: 15px 0 10px;
    margin-bottom: 14px;
  line-height: 1.3;
}

/* 本文 */
#mainContents .slide-text p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
  margin-bottom: 0 !important;
  font-size: 16px !important;
}

/* ページネーションをスライド外に */
.swiper-pagination {
  position: static;
  /* ← absoluteを解除 */
  margin-top: 10px;
  text-align: center;
  padding: 10px 5px 10px 10px;
}

/* ドット */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgb(0, 225, 81);
  opacity: 0.5;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  opacity: 1;
}