/* お知らせページ専用スタイル */

/* ヒーローセクション */
.news-hero {
    position: relative;
    background: linear-gradient(135deg, #FFF9ED 0%, #F5EFE0 100%);
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.news-hero-content {
    position: relative;
    z-index: 1;
}

.news-hero-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
}

.news-label {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #C9A961;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* お知らせメインセクション */
.news-main {
    padding: 80px 0;
    background: #f8f9fa;
}

/* カテゴリーフィルター */
.news-filter {
    margin-bottom: 50px;
    text-align: center;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.filter-btn:hover {
    border-color: #C9A961;
    color: #C9A961;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #ffffff;
    border-color: #C9A961;
    color: #C9A961;
    font-weight: 500;
}

/* お知らせリスト */
.news-list {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* お知らせカード */
.news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.news-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 10px;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #C9A961;
}

.news-date-year {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 2px;
}

.news-date-day {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.news-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 400;
    white-space: nowrap;
    font-family: 'Noto Sans JP', sans-serif;
}

.news-category i {
    font-size: 0.9rem;
}

.news-category.important {
    background: #fff3cd;
    color: #856404;
}

.news-category.news {
    background: #e7f3ff;
    color: #004085;
}

.news-category.media {
    background: #f8d7da;
    color: #721c24;
}

.news-category.event {
    background: #d4edda;
    color: #155724;
}

.news-card-body {
    padding: 25px;
    flex: 1;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.5;
    font-family: 'Noto Serif JP', serif;
}

.news-title a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #C9A961;
}

.news-excerpt {
    color: #4a4a4a;
    line-height: 1.75;
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C9A961;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.news-read-more:hover {
    gap: 12px;
    color: #b39a6d;
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

/* お知らせ詳細ページ */
.news-detail-main {
    padding: 80px 0;
    background: #ffffff;
}

.news-detail-container {
    max-width: 800px;
    margin: 0 auto;
}

.news-detail-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

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

.news-detail-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a4a4a;
    font-size: 0.95rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.news-detail-date i {
    color: #C9A961;
}

.news-detail-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
    font-family: 'Noto Serif JP', serif;
}

.news-detail-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1a1a1a;
    font-family: 'Noto Sans JP', sans-serif;
}

.news-detail-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C9A961;
    font-family: 'Noto Serif JP', serif;
}

.news-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 30px 0 15px;
    font-family: 'Noto Serif JP', serif;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content ul,
.news-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.news-detail-content strong {
    color: #2c2c2c;
    font-weight: 600;
}

/* 移転情報ボックス */
.relocation-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #C9A961;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.relocation-info h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Noto Serif JP', serif;
}

.relocation-info h3 i {
    color: #C9A961;
}

.address-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.address-label {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-bottom: 8px;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
}

.address-text {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
}

.address-box.new-address {
    border: 2px solid #C9A961;
    background: #fffef8;
}

.address-box.new-address .address-label {
    color: #C9A961;
}

.date-highlight {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    margin: 15px 0;
    font-family: 'Noto Sans JP', sans-serif;
    border: 2px solid #C9A961;
}

/* 戻るリンク */
.back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a4a4a;
    text-decoration: none;
    margin-top: 50px;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.back-to-list:hover {
    background: #f8f9fa;
    border-color: #C9A961;
    color: #C9A961;
}

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

.pagination-btn {
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #ffffff;
    border-color: #C9A961;
    color: #C9A961;
}

.pagination-btn.active {
    background: #C9A961;
    border-color: #C9A961;
    color: #ffffff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 空状態 */
.news-empty {
    text-align: center;
    padding: 80px 20px;
}

.news-empty i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.news-empty p {
    color: #666;
    font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-hero {
        padding: 80px 0 60px;
    }

    .news-hero-title {
        font-size: 2rem;
    }

    .news-main {
        padding: 50px 0;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .news-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-date {
        min-width: 60px;
    }

    .news-title {
        font-size: 1.15rem;
    }

    .news-detail-title {
        font-size: 1.5rem;
    }

    .news-detail-content {
        font-size: 1rem;
    }

    .relocation-info {
        padding: 20px;
    }

    .address-text {
        font-size: 1rem;
    }
}
