@charset "UTF-8";
/*--------------------------------
index.html
業務実績　CASE
---------------------------------*/
.case {
  position: relative;
}
.case-bg {
  padding: clamp(30px, 6vw, 90px) 0;
}
.case-bg::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(156deg, #39668f 51.5%, #7896b2 89.99%);
  z-index: -1;
}

.case .section-title {
  margin-bottom: clamp(30px, 3.5vw, 40px);
}

#swiper-case .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

#swiper-case {
  margin-bottom: min(10vw, 70px);
}

#swiper-case .swiper-wrapper {
  flex-direction: column;
  gap: 30px;
}
.swiper-slide {
  min-width: 100%;
  height: auto;
}
.case-item {
  border: 2px solid #bbd9e3;
  background: #fff;
  padding: 3.77% 5.65%;
  height: 100%;
  width: 100%;
}
.case-item_row {
  display: flex;
  gap: 16px;
}

.case-item_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-item_title {
  display: flex;
  gap: 10px;
  align-items: center;
}
.case-item_industry {
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-item_icon {
  min-width: 50px;
  height: auto;
}
.case-item_icon img {
  width: 100%;
}

.case-item_img {
  width: 30%;
  flex-shrink: 0;
  background-color: lightblue;
  display: flex;
}

.case-item_img img {
  object-fit: cover;
}

.case-item_service {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.case-item_industry {
  color: var(--text);
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 8px;
}

.case-item_record {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.case-item_num {
  font-family: urw-din, sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-right: 2px;
}

.case-item_tag {
  border-radius: 60px;
  background: #dce3ea;
  display: flex;
  padding: 7px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--navy01);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.case-item_desc {
  margin-top: 16px;
  line-height: 1.7;
  text-align: justify;
}

/* スライドの矢印PCで非表示 */
.case .swiper-button-next::after,
.case .swiper-button-prev::after {
  display: none;
}
/* スライドのページネーションPCで非表示 */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  display: none;
}
@media screen and (max-width: 767px) {
  /* スライドの矢印SPで表示 */
  .case .swiper-button-next::after,
  .case .swiper-button-prev::after {
    display: none;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: block;
  }
  #swiper-case .swiper-outer {
    position: relative;
    width: 100%;
  }

  #swiper-case .swiper-wrapper {
    flex-direction: row;
    gap: 0px;
  }
  .case-item {
    width: 100%;
  }
  .case-item_row {
    flex-direction: column;
  }
  .case-item_img {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    object-fit: cover;
    background-color: lightblue;
  }

  .case-item_img img {
    width: 100%;
    height: auto;
  }
  /* 前へ次への矢印カスタマイズ */
  .case .swiper-button-prev,
  .case .swiper-button-next {
    /* height: 40px;
    width: 40px; */
    /* height: 25px;
    width: 25px; */
    /* position: relative; */
  }
  /* 前へ次への矢印カスタマイズ */
  .case .swiper-button-prev::after,
  .case .swiper-button-next::after {
    display: inline-block;
    content: "";
    margin: auto;
    height: 40px;
    width: 40px;
    position: absolute;
  }
  /* 前への矢印カスタマイズ */
  .case .swiper-button-prev::after {
    background: url(../img/top/case-arrow-previous.svg) no-repeat;
    left: 70%;
    background-size: contain;
  }
  /* 次への矢印カスタマイズ */
  .case .swiper-button-next::after {
    background: url(../img/top/case-arrow-next.svg) no-repeat;
    right: 70%;
    background-size: contain;
  }
  /* ページネーション */
  /* スライドのページネーションPCで非表示 */
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    display: block;
  }

  #swiper-case .swiper-pagination {
    position: absolute;
  }

  #swiper-case .swiper-pagination-bullet {
    background-color: var(--navy);
  }

  #swiper-case .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
  }
  #swiper-case {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 575px) {
  .case .swiper-button-prev::after {
    left: -10%;
  }
  .case .swiper-button-next::after {
    right: -10%;
  }
}
/*--------------------------------
case.html
---------------------------------*/

.case-lead {
  margin-bottom: 16px;
  line-height: 1.6rem;
}
