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

/* ========================================
   メインコンテンツ
======================================== */
.main-content {
    padding-top: 56px !important;
}

@media (min-width: 1080px) {
    .main-content {
        padding-top: 80px !important;
    }
}

/* ========================================
   ページヒーローセクション
======================================== */
.page-hero {
    width: 100%;
    height: clamp(280px, 50vw, 400px);
    position: relative;
    background: url('../images/realestate-image.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-hero__content {
    width: 100%;
    height: 100%;
    max-width: var(--container-width);
    padding: 0 var(--padding-sp);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-family: var(--font-ja);
    font-size: clamp(2rem, 6vw, 3.75rem);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: var(--heading-letter-spacing);
    line-height: var(--heading-line-height);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1080px) {
    .page-hero {
        height: auto;
        aspect-ratio: 16 / 6;
        min-height: 320px;
        max-height: 560px;
    }
    
    .page-hero__content {
        padding: 0 var(--padding-pc);
    }
}

/* ========================================
   お知らせセクション
======================================== */
.news-section {
    padding: var(--section-padding-sp);
    background-color: var(--color-white);
    position: relative;
    z-index: 2;
}

.news-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-detail-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .news-section {
        margin-top: 64px;
        padding: var(--section-padding-pc);
    }
}

/* ========================================
   お知らせ一覧
======================================== */
ul#newsList {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 各お知らせアイテム */
.news-item {
    margin: 0;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    border-bottom: 1px solid #e0e0e0;
    list-style: none;
    transition: background-color 0.3s ease;
}

.news-item:first-child {
    padding-top: 0;
}

.news-item:last-child {
    border-bottom: none;
}

/* 日付・カテゴリー・Newバッジエリア */
.news-item__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-item__date {
    font-family: var(--font-ja);
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #666;
    font-weight: 400;
}

/* カテゴリーバッジ */
.news-item__category {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-ja);
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* カテゴリーバッジの色分けクラスは削除 */

/* Newバッジ */
.news-item__new {
    display: inline-block;
    color: var(--color-white);
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 500;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    background: var(--color-primary);
    letter-spacing: 0.05em;
}

/* コンテンツエリア */
.news-item__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 画像 */
.news-item__image {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 10;
}

.news-item__image a {
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.news-item__image a:hover {
    opacity: 0.85;
}

.news-item__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* テキストエリア */
.news-item__text {
    flex: 1;
}

/* タイトル */
.news-item__title {
    font-family: var(--font-ja);
    font-size: clamp(1.25rem, 2.5vw, 1.375rem);
    font-weight: 500;
    color: var(--color-text);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    margin: 0 0 0.75rem 0;
}

.news-item__title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item__title a:hover {
    color: var(--color-primary);
    opacity: 0.7;
}

/* 本文抜粋 */
.news-item__excerpt {
    font-family: var(--font-ja);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
    margin: 0;
}

/* PC版レイアウト */
@media (min-width: 768px) {
    .news-item {
        padding: clamp(2rem, 3vw, 3rem) 0;
    }
    
    .news-item__content {
        flex-direction: row;
        gap: 2rem;
    }
    
    .news-item__image {
        flex: 0 0 360px;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }
    
    .news-item__text {
        flex: 1;
    }
    
    .news-item__excerpt {
        line-height: var(--body-line-height-pc);
    }
}

/* ========================================
   ページャー（ページネーション）
======================================== */
.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 3rem 0 0;
    clear: both;
}

.pager a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: var(--color-text);
    font-family: var(--font-ja);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pager a:hover {
    background: linear-gradient(135deg, #AA82C2 0%, #7C5B8B 100%);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 130, 194, 0.3);
}

/* 現在のページ */
.pager a.current {
    background: linear-gradient(135deg, #AA82C2 0%, #7C5B8B 100%);
    border-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(170, 130, 194, 0.3);
    cursor: default;
    pointer-events: none;
}

/* 前へ・次へボタン */
.pager .prev,
.pager .next {
    padding: 0 1.25rem;
    font-weight: 600;
}

/* 省略記号 */
.overPagerPattern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    color: #999;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0 0.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pager {
        gap: 0.375rem;
        padding: 2rem 0 0;
    }
    
    .pager a {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
        font-size: 0.9rem;
    }
    
    .overPagerPattern {
        min-width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ========================================
   お知らせ詳細ページ
======================================== */
/* 日付・カテゴリー */
.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-detail__date {
    font-family: var(--font-ja);
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #666;
    font-weight: 400;
}

/* 詳細ページのカテゴリーバッジ */
.news-detail__category {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-ja);
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ヒーロー画像（最初の画像） */
.news-detail__hero-image {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 2rem;
    border-radius: 4px;
    overflow: hidden;
}

.news-detail__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* タイトル */
.news-detail__title {
    font-family: var(--font-ja);
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--color-text);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    margin: 0 0 1rem 0;
}

/* 本文コンテンツ */
.news-detail__content {
    font-family: var(--font-ja);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
}

.news-detail__text {
    font-family: var(--font-ja);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--color-text);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
}

/* 画像 */
.detailUpfile {
    text-align: center;
    margin: 2rem 0;
}

.detailUpfile img {
    max-width: 720px;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .news-detail__content {
        line-height: var(--body-line-height-pc);
    }
    
    .news-detail__text {
        line-height: var(--body-line-height-pc);
    }

    .news-detail__meta {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   clearfix（後方互換性）
======================================== */
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}
