
#news-list {
  max-height: 300px;         /* 高さ制限（必要に応じて調整） */
  overflow-y: auto;          /* 縦方向にスクロールを許可 */
  padding: 10px;
  background: #f9f9f9;       /* 背景色（任意） */

}

#news-list::-webkit-scrollbar {
  width: 8px;
}
#news-list::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 4px;
}

#news-list::-webkit-scrollbar-thumb {
  background-color: rgba(144, 238, 144, 0.5); /* ←ここで色を調整 */
  border-radius: 4px;
}

#news-list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(144, 238, 144, 0.8);
}
#news-list::-webkit-scrollbar-track {
  background-color: rgba(220, 255, 240, 0.3); /* 薄い緑背景 */
}


#news {
    max-width: 800px;
    margin: auto;
}

.news-item {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.news-date {
    font-size: 0.9rem;
    color: #888;
}

.news-title {
    margin: 0.2rem 0 0.5rem;
}

.news-body {
    margin: 0;
}
