.image-row {
    display: flex;
    justify-content: center; /* 中央揃え */
    gap: 10px; /* 画像間の隙間 */
}

.image-container {
    width: 30%;
    text-align: center;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
