/****************/
/*ニュース*/
/****************/
.news-section {
    margin-top: 20px;
    padding: 0px;
    width: 80%;
    margin: 30px auto 0px auto; /* 上下の余白と、左右の中央寄せ */
}

.news-section ul {
    list-style-type: none; /* リストのマーカーを非表示 */
    padding: 0;
    margin: 0;
}

.news-section li {
    padding: 5px 0; /* 各アイテムの上下の余白を調整 */
    border-bottom: 1px solid #ddd; /* アイテム間に区切り線を追加（オプション） */
    line-height: 1.4; /* 行間を調整 */
    width: 100%;
}

.news-type {
    font-weight: bold; /* ニュース種類を太字に */
    color: #ff0038; /* 任意の色に変更可能 */
    padding: 0 15px; /* 左右に15pxのパディングを追加 */
}

.news-date {
    font-size: 12px; /* 日付のフォントサイズを小さく設定 */
    color: #8c8c8c; /* 日付の色を淡くする */
    margin-bottom: 3px; /* 日付とニュース内容の間に少し余白を追加 */
    padding: 0 15px; /* 左右に15pxのパディングを追加 */
}

.news-content {
    color: #000000; /* 内容の色を設定 */
    font-size: 14px; /* 内容のフォントサイズ */
    line-height: 1.4; /* 行間を調整 */
    padding: 0 20px; /* 左右に15pxのパディングを追加 */
}

.news-section li:last-child {
    border-bottom: none; /* 最後のアイテムには区切り線を追加しない */
}

.news-section h2 {
    margin-bottom: 5px;
    color: #000000; 
    font-size: 28px;
    text-align: center;
    }

.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    width: 100%;
}
.news-header {
    display: flex;
    justify-content: space-between; /* タイトルと日付を左右に配置 */
    align-items: center; /* 同じ行の高さに配置 */
    margin-bottom: 5px;
    background-color: #00000000;
}
.news-list h3 {
    font-size: 20px;
    color: #ff0038;
}

.news-list p {
    font-size: 16px;
    color: #666;
}

.view-all-link {
    display: block;
    text-align: right;
    margin-bottom: 10px;
    margin-right: 10px;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.view-all-link:hover {
    text-decoration: underline;
}