/* 基本スタイル - スクロール問題を解決 */ html, body { overflow-y: visible; height: auto; overflow-x: hidden; } /* コンテナスタイル - 二重スクロール防止 */ .entry-content { overflow: visible; height: auto; position: static; word-wrap: break-word; max-width: 100%; } /* 画像スタイル */ .entry-content img {max-width:100%;height:auto;display…