@charset "UTF-8";

/* ============================================================
   お知らせ一覧ページ（Archive News）スタイル
   ============================================================ */

.news-archive-page {
    background-color: #fcfaf5; /* サイト共通の淡いベージュ */
    padding-top: 100px;
}

/* 💡 ページ上部の緑色の帯部分 */
.news-hero {
    background-color: #08A66C;
    background-image: radial-gradient(#0a9662 1px, transparent 1px);
    background-size: 20px 20px;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.news-hero h1 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.news-hero p {
    font-size: 16px;
    opacity: 0.9;
}

.news-list-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 💡 お知らせのリスト（縦に並べる） */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 💡 1つ1つの記事カード */
.news-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.news-link {
    display: block;
    padding: 30px;
    text-decoration: none;
    color: #333;
}

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

.news-date {
    font-size: 14px;
    color: #888;
    font-weight: bold;
}

.news-badge {
    background: #08A66C;
    color: #fff;
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 900;
}

.news-card-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #4a3728; /* 木の色のブラウン */
    line-height: 1.5;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-more {
    color: #08A66C;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* ページネーションのデザイン */
.pagination-area {
    margin-top: 50px;
    text-align: center;
}

.pagination-area .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 4px;
    background: #fff;
    border-radius: 10px;
    color: #4a3728;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.pagination-area .page-numbers.current {
    background: #08A66C;
    color: #fff;
}

/* --- スマホ表示の調整 --- */
@media screen and (max-width: 768px) {
    .news-hero { padding: 60px 20px; }
    .news-hero h1 { font-size: 26px; }
    .news-link { padding: 20px; }
    .news-card-title { font-size: 18px; }
}