.image-text-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px; /* 各段の間隔を調整 */
}

.image-text {
  text-align: left;
  width: 48%; /* 各画像とテキストの幅を調整 */
}

.image-text img {
  max-width: 100%;
  height: auto;
}

.image-text p {
  margin-top: 10px; /* 画像と説明文の間隔を調整 */
}