.news-scroll-box {
    height: 250px;          /* 枠の高さ（お好みで調整） */
    overflow-y: auto;       /* 内容が多い時だけスクロールバーを表示 */
    border: 1px solid #ddd; /* 枠線 */
    padding: 15px;          /* 内側の余白 */
    background: #fff;       /* 背景色 */
}

/* スクロールバー自体のデザイン（任意：細くする場合など） */
.news-scroll-box::-webkit-scrollbar {
    width: 8px;
}
.news-scroll-box::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}