/* -----------------------------------------
   News Layout Styles
----------------------------------------- */
.news-wrapper {
    background: #ffffff;
    min-height: 100vh;
    padding: 120px 20px 80px; /* ナビゲーションバーの高さ分を確保 */
    display: flex;
    justify-content: center;
}

.news-container {
    width: 100%;
    max-width: 800px; /* デザイナーが推奨する、視線移動が疲れない可読性の高い横幅 */
    margin: 0 auto;
}

/* パンくずリスト */
.breadcrumb {
    display: flex;
    list-style: none;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.breadcrumb li {
    color: #999999;
}

.breadcrumb li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb li a:hover {
    color: var(--primary-color);
}

.breadcrumb li::after {
    content: '/';
    margin: 0 10px;
    color: #dddddd;
}

.breadcrumb li.current::after {
    display: none;
}

.breadcrumb li.current {
    color: var(--text-dark);
    font-weight: 700;
}

/* ニュースヘッダー */
.news-header {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.news-category-tag {
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    background: var(--text-dark);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.news-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* アイキャッチ画像 */
.news-eyecatch {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.eyecatch-dummy {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
    position: relative;
}

.eyecatch-dummy::before {
    content: 'Featured Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 0, 0, 0.15);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ニュース本文（エディトリアル・スタイル） */
.news-body {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.8;
}

.news-body p {
    margin-bottom: 25px;
}

.news-body p.lead {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.news-body h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 50px 0 20px;
    padding-left: 12px;
    border-left: 3px solid var(--primary-color);
    letter-spacing: 0.5px;
}

.news-body ul {
    margin: 0 0 30px 20px;
}

.news-body li {
    margin-bottom: 10px;
}

.news-body strong {
    color: var(--text-dark);
}

/* 引用ブロックの洗練された表現 */
.news-body blockquote {
    background: #fafafa;
    border-left: 3px solid var(--text-dark);
    padding: 20px 25px;
    margin: 35px 0;
    font-style: italic;
    color: var(--text-muted);
}

/* 戻るボタン導線 */
.news-footer-actions {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
}

.btn-back {
    display: inline-block;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 45px;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: var(--text-dark);
    color: #ffffff;
}
/* =========================================
   News List Page Styles (一覧ページ用)
========================================= */
.news-list-wrapper {
    background: #ffffff;
    min-height: 100vh;
    padding: 150px 20px 100px;
}

.news-list-container {
    width: 100%;
    max-width: 900px; /* 一覧は少し広めにとる */
    margin: 0 auto;
}

.news-list-header {
    text-align: center;
    margin-bottom: 70px;
    animation: FadeInUp 0.8s cubic-out;
}

.news-sub-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.news-main-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
}

/* ニュースリストのレイアウト */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: FadeInUp 1.1s cubic-out;
}

.news-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(255, 74, 141, 0.1);
    border-color: rgba(255, 74, 141, 0.2);
}

.news-item-thumb {
    width: 160px;
    height: 110px;
    border-radius: 10px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    margin-right: 30px;
}

/* ダミー画像用グラデーション */
.thumb-1 { background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%); }
.thumb-2 { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }
.thumb-3 { background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%); }
.thumb-4 { background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%); }

.news-item-content {
    flex-grow: 1;
    padding-right: 20px;
}

.news-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.news-category-tag.bg-dark { background: var(--text-dark); }
.news-category-tag.bg-pink { background: var(--primary-color); }
.news-category-tag.bg-gray { background: #999999; }

.news-item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    transition: color 0.2s;
}

.news-item:hover .news-item-title {
    color: var(--primary-color);
}

.news-item-arrow {
    font-size: 24px;
    color: #dddddd;
    font-weight: 300;
    transition: all 0.3s;
    margin-right: 10px;
}

.news-item:hover .news-item-arrow {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.page-current {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--text-dark);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
}

.page-link:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.page-link:last-child {
    width: auto;
    border-radius: 20px;
    padding: 0 20px;
    letter-spacing: 1px;
}

.page-dots {
    color: #aaaaaa;
    font-weight: 700;
}