/* タイトル（中央寄せ） */
h1 {
    text-align: center;
}

/* 全体コンテナー */
.news-container {
    width: 80%;
    margin: 50px auto;
    margin-top: 100px; /* ヘッダーの固定があるため余白を調整 */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* ニュースのヘッダー部分 */
.news-header {
    text-align: center;
    margin-bottom: 20px;
}

/* 日付・カテゴリ */
.news-date,
.news-category {
    color: gray;
    font-size: 14px;
    margin: 0; /* 連続するので上下余白を調整 */
    padding: 2px 0;
}

/* 概要文 */
.news-summary {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

/* 本文 */
.news-body {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    white-space: pre-wrap;
}

/* 担当部署・問い合わせ先 */
.news-author {
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* PDFなどの資料リンク */
.news-document {
    margin-bottom: 20px;
}
.news-document a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.news-document a:hover {
    color: #003366;
}

/* 画像（任意で使用） */
.news-image {
    text-align: center;
    margin: 20px 0;
}
.news-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 追記・更新日（任意） */
.news-update {
    font-size: 13px;
    color: #666;
    text-align: right;
    margin-top: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-container {
        width: 90%;
        margin-top: 60px;
    }
}
