/* セクションを画面いっぱいに */
.sc__mv__about {
  width: 100%;
  height: 70vh; /* ビューポート高さぴったり */
  overflow: hidden;
  position: relative;
  margin-top: 0;
}

.sc__mv__about .sc__inner {
  position: relative;
  display: flex;
}

/* Swiper本体も全画面に合わせる */
.swiper-mv,
.swiper-mv .swiper-wrapper,
.swiper-mv .swiper-slide {
  width: 100%;
  height: 100%;
}

/* 画像を中央配置してトリミング */
.swiper-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* トリミング */
  object-position: center; /* 中央寄せ */
  display: block;
}

/* ABOUT PAGE */
.page-id-43 .page__abs {
  margin-top: 40px;
}


/* 左半分：黒フィルター＋テキスト */
.mv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;      /* 左半分 */
  height: 100%;
  background: rgba(0,0,0,0.6); /* 半透明黒 */
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  justify-content: center;
  text-align: left;
  padding: 2rem;
  padding: 80px;
  gap: 24px;
  pointer-events: none;
}

.sc__block.sc__mv__about .mv-overlay img {
  width: 50%;
  height: auto;
}

@media (max-width: 768px) {
  .mv-overlay {
    width: 100%;
    padding: 40px;
  }
  .page-template-default .wp-block-image {
    margin: 24px 0;
  }
}