   /* ---  QBK NEWS& NEWS CSS--- */
 

    

        /* --- パンくずリスト --- */
        .breadcrumb-wrapper {
            background-color: #f8f9fa;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
        }

        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 0.8rem;
            color: #666;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .breadcrumb li:not(:last-child)::after {
            content: "\f054";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-left: 10px;
            font-size: 0.7rem;
            color: #888888;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
            color: var(--hover-blue);
        }

        /* --- ページヘッダー (写真背景対応) --- */
        .page-title-area {
            /* デフォルト背景色（画像がない場合） */
            background-color: #19427A;
            color: var(--white);
            /* padding: 20px 0;*/
            text-align: center;
            
            /* 背景画像設定 */
            background-size: cover;
            background-position: center;
            position: relative;

            /* 高さを固定、中身を上下中央に配置 */
            min-height: 120px; 
            display: flex;
            align-items: center; /* 上下中央 */
            justify-content: center; /* 左右中央 */
            padding: 20px 20px;
        }


        .page-title-content {
            position: relative;
            z-index: 2; /* フィルターより上に表示 */
            width: 100%;
        }

        .page-title-area h2 {
            font-size: 1.8rem;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        /* サブタイトルがある場合の設定 */
        .page-title-area .en-title {
            font-size: 1em;
            opacity: 0.9;
            font-weight: normal;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            /*margin-top: 10px; /* h2との間隔 */
            display: block;
        }

        /* --- メインコンテンツ --- */
        .main-wrapper {
            background-image: url(''); 
            background-repeat: no-repeat;
            background-position: top 30px left;
            background-color: #f7f8f9; 
            /*background-size: 100% auto; */
            padding: 50px 0 80px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 250px;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }


        .section-title {
            font-size: 1.1em;
            color: var(--primary-color);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
            margin-bottom: 40px;
            font-weight: bold;
        }


        /* 九州ブロックNews リスト*/
        .news-full-list {
            background-color: var(--bg-translucent);
            border-radius: 1px;
            padding: 25px 20px; /* 上下パディングを微調整 */
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        .news-row {
            display: flex;
            align-items: center; /* タイトルと日付の高さを揃える */
            padding: 15px 0; /* 余白を詰める */
            border-bottom: 1px solid #e0e0e0;
            gap: 20px;
        }

        .news-row:first-child { padding-top: 0; }
        .news-row:last-child { border-bottom: none; padding-bottom: 0; }

        .news-meta {
            width: 80px; 
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
			font-size: 0.95rem;
        }

        /* ナンバリング用のスタイル */
        .news-number {
            display: block;
            font-size: 0.95rem;
            font-family: var(--font-main); 
            color: var(--primary-color);
            font-weight: normal;
        }

        .news-content {
            flex: 1;
        }

        .news-title {
            font-size: 0.95rem;
            font-weight: normal;
            line-height: 1.5;
            margin: 0;
        }

        .news-title a:hover {
            color: var(--hover-blue);
            text-decoration: underline;
        }


        /* ページネーション */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
        }

        .page-num {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--white);
            border: 1px solid #ddd;
            border-radius: 4px;
            font-weight: bold;
            transition: 0.3s;
        }

        .page-num.active {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .page-num:hover:not(.active) {
            background-color: #eee;
        }

        /* サイドバー */
        .sidebar-section {
            margin-bottom: 30px;
        }

        .sidebar-title {
            font-size: 1.1rem;
            color: var(--primary-color);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 8px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .archive-list li a {
            display: block;
            padding: 10px 0;
            border-bottom: 1px dotted #ccc;
            font-size: 0.9rem;
        }

        .archive-list li a:hover {
            color: var(--hover-blue);
        }

        /* --- レスポンシブ --- */
        @media (max-width: 900px) {
            .content-grid { grid-template-columns: 1fr; }
            .header-inner { padding-right: 20px; }
            .right-border { display: none; }
            
            /* ハンバーガー表示 */
            .hamburger { display: flex; }

            /* ニュースリストのレスポンシブ */
            .news-row { flex-direction: row; gap: 15px; align-items: center; }
            .news-meta { width: auto; flex-shrink: 0; margin-bottom: 0; }
            
        }

            /* スマホで幅が狭い場合は縦積みに切り替える */
            @media (max-width: 480px) {
               .news-row { flex-direction: column; align-items: flex-start; gap: 5px; }


            }

/* 装飾関連（SP） */
@media ( min-width : 768px ) {
.none_sp, .spOnly {display:none; }

}
