    /* --- ベーススタイル --- */
    :root {
        --main-blue: #00509e;
        --accent-orange: #ff8c00;
        --accent-yellow: #ffeb3b;
        --accent-green: #4caf50;
        --text-dark: #333;
        --bg-light: #f9f9f9;
    }
    body {
        font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
        margin: 0;
        padding: 0;
        background-color: var(--bg-light);
        color: var(--text-dark);
        line-height: 1.6;
    }
    a { text-decoration: none; color: var(--main-blue); transition: color 0.3s; }
    a:hover { color: var(--accent-orange); }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
    img { max-width: 100%; height: auto; }

   
header {
    /* linear-gradientの記述を削除し、単色の白(#fff)に置き換えます */
    background: #fff; 
    border-bottom: 3px solid var(--accent-yellow);
    padding: 15px 0;
}
   
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .logo-area { flex: 1 1 300px; }
    .header-info {
        text-align: right;
        font-size: 0.9rem;
        color: #666;
    }
    .issue-date {
        font-weight: bold;
        color: var(--main-blue);
        font-size: 1.1rem;
    }

    /* --- グローバルナビゲーション --- */
    .global-nav {
        background-color: var(--main-blue);
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-item a {
        display: block;
        padding: 12px 20px;
        color: white;
        font-weight: bold;
    }
    .nav-item a:hover {
        background-color: var(--accent-orange);
        color: white;
    }

    /* --- メインコンテンツレイアウト --- */
    .main-container {
        display: grid;
        grid-template-columns: 1fr 250px; /* メイン記事と右サイドバー */
        gap: 20px;
        margin-top: 20px;
    }
    @media (max-width: 768px) {
        .main-container { grid-template-columns: 1fr; }
    }

    /* --- トップニュース（ヒーローエリア） --- */
    .top-news-hero {
        background: linear-gradient(135deg, var(--accent-yellow), #fff9c4);
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        border-left: 10px solid var(--accent-orange);
    }
    .hero-label {
        display: inline-block;
        background-color: var(--accent-orange);
        color: white;
        padding: 5px 10px;
        font-weight: bold;
        border-radius: 4px;
        margin-bottom: 10px;
    }
    .hero-title {
        font-size: 2rem;
        margin: 10px 0;
        color: var(--main-blue);
        line-height: 1.3;
    }
    .hero-summary { font-size: 1.1rem; }
    .hero-link {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 25px;
        background-color: var(--main-blue);
        color: white;
        font-weight: bold;
        border-radius: 25px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .hero-link:hover { background-color: var(--accent-orange); color: white;}

    /* --- お悔やみ・天気・広告エリア --- */
    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    .info-card {
        background: white;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        text-align: center;
    }
    .info-title {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--main-blue);
        margin-bottom: 15px;
        border-bottom: 2px solid var(--accent-yellow);
        display: inline-block;
    }
    /* お悔やみリンク */
    .okuyami-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; }
    .okuyami-btn {
        padding: 5px 10px;
        background-color: #e3f2fd;
        color: var(--main-blue);
        border-radius: 4px;
        font-size: 0.9rem;
    }
    .okuyami-btn:hover { background-color: var(--accent-orange); color: white; }
    /* 天気 */
    .weather-box { display: flex; justify-content: space-around; align-items: center; }
    .weather-item { text-align: center; }

    /* --- 最新ニュースリスト --- */
    .news-section-title {
        font-size: 1.5rem;
        color: var(--text-dark);
        border-left: 8px solid var(--accent-green);
        padding-left: 15px;
        margin-bottom: 20px;
    }
    .news-list { list-style: none; padding: 0; }
    .news-item {
        background: white;
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 6px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        transition: transform 0.2s;
    }
    .news-item:hover { transform: translateY(-3px); }
    .news-item a {
        display: flex;
        flex-direction: column;
    }
    .news-title {
        font-size: 1.1rem;
        font-weight: bold;
        color: var(--main-blue);
    }
    .news-meta {
        font-size: 0.85rem;
        color: #888;
        margin-top: 5px;
    }
    .news-date { color: var(--accent-orange); font-weight: bold; margin-right: 10px; }

    /* --- サイドバー --- */
    .sidebar-section {
        background: white;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    .sidebar-title {
        font-size: 1.1rem;
        font-weight: bold;
        color: var(--text-dark);
        border-bottom: 2px solid var(--accent-green);
        padding-bottom: 5px;
        margin-bottom: 15px;
    }
    .sidebar-menu { list-style: none; padding: 0; }
    .sidebar-menu li a {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
    }
    .sidebar-menu li a img { margin-right: 10px; }
    
    /* 広告枠の調整 */
    .ad-slot-center { text-align: center; margin: 20px 0; }

    /* --- フッター --- */
    footer {
        background-color: var(--main-blue);
        color: white;
        padding: 30px 0;
        margin-top: 40px;
        text-align: center;
    }
    .footer-links a { color: #bbdefb; margin: 0 10px; }
    .copyright { margin-top: 20px; font-size: 0.9rem; }


/* ========== 【最終版】天気表示 強制一行化 CSS ========== */
.info-grid .info-card:nth-child(2) {
    /* 天気カードが最低限占めるべき幅を強制的に確保 */
    min-width: 290px !important; 
}
.weather-box { 
    display: flex; 
    flex-wrap: nowrap !important; /* 絶対に折り返さない */
    justify-content: space-around;
    padding: 0 5px; 
    align-items: flex-start;
}
.weather-item { 
    flex: 0 0 47% !important; /* 各項目が幅の47%を占めるように固定 */
    text-align: center; 
}
.weather-item p {
    font-size: 0.9rem;
    margin-bottom: 3px; 
}
.weather-item > div {
    /* アイコンを左右に並べるためにFlexを適用 */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}
.weather-item > span {
    display: block;
    font-size: 0.75rem !important; /* テキストを最小化 */
    line-height: 1; 
    color: #555;
    white-space: nowrap !important; /* テキストの折り返しを絶対禁止 */
    margin-top: 2px;
}

/* ================================================== */