/* ==========================================
  2カラムバナー
========================================== */
.col-2-banner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width:768px) {
  .col-2-banner {
    flex-direction: row;
  }
}

.col-2-banner .fs-pt-column__item {
  position: relative;
  padding: 0;
  aspect-ratio: 590 / 332;
  width: 100%;
}

@media screen and (min-width:768px) {
  .col-2-banner .fs-pt-column__item {
    width: 50%;
  }
}

.col-2-banner .fs-pt-column__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.fs-pt-column__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}