.is-layout-flex {
  display: flex;
  gap: 2%;
}
.img-col2 .wp-block-column{
  flex: 1;
}
.img-col2 .wp-block-column:first-child {
  flex: 3;
}
.img-col2 .wp-block-column:last-child {
  flex: 1;
}
.img-col2 img{
  /*height: 360px;*/
  object-fit: cover;
  width: 100%;
  padding-top: 0;
}
img[src*="ua-01-06.jpg"] {
  width: 280px !important;
  max-width: 280px;
}

/* レスポンシブ対応 */
/* 768px以下（タブレット・モバイル） */
@media screen and (max-width: 768px) {
  .is-layout-flex {
    flex-direction: column;
    gap: 20px;
  }
  .img-col2 .wp-block-column {
    flex: 1 1 100%;
    width: 100%;
  }
  .img-col2 .wp-block-column:first-child,
  .img-col2 .wp-block-column:last-child {
    flex: 1 1 100%;
  }
  img[src*="ua-01-06.jpg"] {
    width: 100% !important;
    max-width: 100%;
  }
}
