/** 画像の下に余白を追加 */
.entry-content img {
    max-height: 90vh; /** 画像の高さを最大に **/
    width: auto; /** 画像の幅を自動調整 **/
    padding-bottom: 20px;
    display: block; /** marginを適用するため **/
    margin: 0 auto; /** 中央に配置 */

    /** 画像が画面の幅より大きい場合に、横スクロールを表示させないため **/
    max-width: 100%;
    height: auto;  
}

.entry-content .st-kaiwa-face img,
.entry-content .st-kaiwa-face2 img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    padding-bottom: 0;
}


/***** [snaf_post_images]のスタイル ****/
div.post-images {
    display: flex;
}

/** 画像を縦に並べる */
div.post-images.column {
    flex-direction: column;
    align-items: center;
}


/** 画像を横に並べる */
div.post-images.row {
    flex-direction: row;
}

div.post-images.row img {
    padding-right: 20px;
}
