.slider-wrap{
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.main-slider img{
  width: 100%;
  height: auto;
  display:block;
  object-fit: cover;
}

.thumb-slider{
  margin-top: 12px;
  padding: 10px 160px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.8);
}
@media screen and (max-width:768px){
  .thumb-slider{
    padding: 5px 10px 0;
    margin-top: 0;
    position: relative;
    background-color: #D3E3F6;
  }
}


.thumb-slider .slick-slide{
  padding: 0 6px;
}

@media screen and (max-width:768px){
  .thumb-slider .slick-slide{
    padding: 0;
  }
}

.thumb-slider img{
  width: 100%;
  max-width: 138px;
  height: auto;
  display:block;
  border-radius: 8px;
  cursor: pointer;
  opacity: .65;
  transition: opacity .2s ease;
}

.thumb-slider .slick-current img{
  opacity: 1;
}

/* サムネの矢印やドットは不要なら消す */
.thumb-slider .slick-arrow,
.thumb-slider .slick-dots{
  display:none !important;
}
.to-serviceLink {
  position: absolute;
  bottom: -7px;
  left: 0;
  z-index:20;
}
.to-caceLink {
  position: absolute;
  bottom: -7px;
  right: 0;
  z-index:20;
}

.to-serviceLink img {
  max-width: 145px;
}
.to-caceLink img {
  max-width: 145px;
}
@media screen and (max-width:768px){
  .to-serviceLink img {
    width: 100px;
  }
  .to-caceLink img {
    width: 100px;
  }
}

.sp_mvbottom {
  display: none;
}
@media screen and (max-width:768px){
  .sp_mvbottom {
    display: grid;
    place-content: center;
    background-color: rgba(33, 117, 210, 1);
  }
  .sp_mvbottom img {
    max-width: 159px;
  }
}

/* /////////////////事例スライド */

.c-type-slider-C .swiper-slide {
  position: relative;
}

/* 白オーバーレイ */
.c-type-slider-C .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6); /* ←濃さはここで調整 */
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* アクティブ（中央）はオーバーレイを消す */
.c-type-slider-C .swiper-slide.swiper-slide-active::after {
  opacity: 0;
}