@charset "UTF-8";
/*-------------------------------

	カスタムCSS

-------------------------------*/

/* 追加1oc20250827 */
.infoimage-row3 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* 必要に応じて折り返し */
}
.infoimage-row3 img {
  width: 100%; /* 初期幅 */
}

/* レスポンシブ対応 */
@media only screen and (min-width: 1024px) {
  .infoimage-row3 img {
   width: 32%; /* 小画面 */
   margin-right: 5px;
  }
  .infoimage-row3 img:last-child {
  margin-right: 0; /* 最後の画像は右マージンをなくす */
}
}

/* 追加2oc20250827 */
.infoimage-row2 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* 必要に応じて折り返し */
}
.infoimage-row2 img {
  width: 100%; /* 初期幅 */
}

/* レスポンシブ対応 */
@media only screen and (min-width: 1024px) {
  .infoimage-row2 img {
   width: 48%; /* 小画面 */
   margin-right: 5px;
  }
  .infoimage-row2 img:last-child {
  margin-right: 0; /* 最後の画像は右マージンをなくす */
}
}


