/* お知らせ一覧ページ専用スタイル */
.news-page-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.news-page-section .container {
    max-width: none;
    padding: 0 20px;
}

.news-page-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-page-section .section-title {
    color: #fd7e14;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-page-section .section-description {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.news-page-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .news-page-content {
        max-width: 900px;
    }
}

.news-list {
    margin-bottom: 3rem;
}

.news-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.news-item-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.news-date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    min-width: 80px;
}

.news-category {
    background: #fd7e14;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.news-content {
    margin-bottom: 1.5rem;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #fd7e14;
}

.news-excerpt {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.news-read-more {
    text-align: right;
}

.read-more-link {
    color: #fd7e14;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #e56b00;
    text-decoration: underline;
}

/* ページネーション */
.news-pagination {
    text-align: center;
    margin-top: 3rem;
}

.news-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.news-pagination .page-numbers li {
    margin: 0;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.news-pagination .page-numbers a:hover {
    background: #fd7e14;
    color: white;
    border-color: #fd7e14;
}

.news-pagination .page-numbers .current {
    background: #fd7e14;
    color: white;
    border-color: #fd7e14;
}

.news-pagination .page-numbers .prev,
.news-pagination .page-numbers .next {
    font-weight: 600;
}

/* 投稿なしの場合 */
.no-posts {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.no-posts p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-page-section {
        padding: 2rem 0;
    }
    
    .news-page-section .section-title {
        font-size: 2rem;
    }
    
    .news-item-content {
        padding: 1.5rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
    }
    
    .news-pagination .page-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .news-pagination .page-numbers a,
    .news-pagination .page-numbers span {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
} 