.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;
}

/* ua-02.html用：画像1/4（25%）、文章3/4（75%）のレイアウト */
.img-col-ua02 {
  display: flex;
  gap: 2%;
}
.img-col-ua02 .wp-block-column:first-child {
  flex: 3;
}
.img-col-ua02 .wp-block-column:last-child {
  flex: 1;
}
.img-col-ua02 img {
  width: 100%;
  object-fit: cover;
}
/* ua-02.html用：最初のh4のmargin-topを40pxに設定 */
.img-col-ua02 .wp-block-column:first-child h4.wp-block-heading:first-of-type {
  margin-top: 40px;
}
/* ua-02.html用：768px以上で画像を80px左寄せ、文章のmargin-rightを調整、画像サイズを70%に */
@media screen and (min-width: 769px) {
  .img-col-ua02 .wp-block-column:last-child figure {
    margin-left: -75px;
  }
  .img-col-ua02 .wp-block-column:first-child {
    margin-right: 30px;
  }
  img[src*="ua-02-04.jpg"] {
    width: 65% !important;
    max-width: 65%;
  }
}

/* レスポンシブ対応 */
/* 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%;
  }
  /* ua-02.html用のレスポンシブ対応 */
  .img-col-ua02 {
    flex-direction: column;
    gap: 20px;
  }
  .img-col-ua02 .wp-block-column:first-child,
  .img-col-ua02 .wp-block-column:last-child {
    flex: 1 1 100%;
    width: 100%;
  }
  /* ua-02-04.jpgを768px以下で50%の大きさに */
  img[src*="ua-02-04.jpg"] {
    width: 50% !important;
    max-width: 50%;
  }
  /* 768px以下では左寄せとmargin-rightをリセット */
  .img-col-ua02 .wp-block-column:last-child figure {
    margin-left: 0;
  }
  .img-col-ua02 .wp-block-column:first-child {
    margin-right: 0;
  }
}
