@charset "UTF-8";

/* 親要素（コンテナ）の設定 */
.colum109 {
    display: flex;
    justify-content: center;
    /* 中身を左右の中央に配置 */
    padding: 20px;
    /* 必要に応じて上下左右に余白を設ける */
}

/* 画像自体のサイズ設定 */
.colum109 img {
    max-width: 100%;
    width: 1100px;
    /* 「適切なサイズ」を指定 */
    height: auto;
}