@charset "utf-8";
/* Swiper の上書き・調整用（必要に応じて追記） */

/* メイン画像背景：Swiper 既定の position:relative を上書きし、レイアウト押し下げを防ぐ */
.mainimage .mainimage-bg-swiper.swiper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Information：PC は flex グリッド表示のため overflow を可視化（下段カードの影が切れないように） */
@media only screen and (min-width: 1025px) {
  .information-swiper.swiper {
    overflow: visible;
    height: auto !important;
  }

  .information-swiper .swiper-wrapper {
    height: auto !important;
    transform: none !important;
  }
}
