/* 2画像並列 */
.image-container {
display: flex;
justify-content: space-between;
max-width: 100%;
margin-top: 1.5em;
}
.image-container img {
width: calc(50% - 4px); /* 画像の幅を親要素の50%から余白分を引いた値に設定 */
box-sizing: border-box;
margin-right: 4px; /* 画像の間に4pxのス…