/* News Article Styles */
.ep-news-lead {
    font-size: 18px;
    line-height: 1.9;
    color: #3a3226;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #faf8f4 0%, #f5f0e8 100%);
    border-left: 4px solid #bc954c;
    border-radius: 0 8px 8px 0;
}

.ep-news-keypoints {
    margin: 24px 0 36px;
    padding: 24px 28px;
    background: #1a1612;
    border-radius: 10px;
    color: #f0e6d4;
}
.ep-news-keypoints h3 {
    margin: 0 0 14px;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c8a36a;
    font-weight: 700;
}
.ep-news-keypoints ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ep-news-keypoints li {
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.7;
    font-size: 15px;
}
.ep-news-keypoints li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #bc954c;
    border-radius: 50%;
}

.ep-news-quote {
    margin: 28px 0;
    padding: 24px 28px;
    background: #f9f7f3;
    border-left: 4px solid #d4c5a9;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #5a4f42;
}
.ep-news-quote p {
    margin: 0 0 8px;
    line-height: 1.8;
}
.ep-news-quote cite {
    display: block;
    font-style: normal;
    font-size: 13px;
    color: #8a7d6e;
}

.ep-news-related-buildings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0 36px;
}
.ep-news-related-building {
    border: 1px solid rgba(139,108,62,.18);
    background: linear-gradient(180deg, #fffdf9 0%, #f5f0e8 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(41,29,15,.06);
    transition: box-shadow .2s;
}
.ep-news-related-building:hover {
    box-shadow: 0 12px 32px rgba(41,29,15,.12);
}
.ep-news-rb-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.ep-news-rb-body {
    padding: 16px 18px 20px;
}
.ep-news-rb-name {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.45;
}
.ep-news-rb-name a {
    color: inherit;
    text-decoration: none;
}
.ep-news-rb-name a:hover {
    color: #bc954c;
}
.ep-news-rb-meta {
    margin: 0 0 8px;
    color: #6c6258;
    font-size: 12px;
}
.ep-news-rb-catch {
    margin: 0;
    color: #554c43;
    line-height: 1.75;
    font-size: 14px;
}

.ep-news-source {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(139,108,62,.15);
}
.ep-news-source h2 {
    font-size: 16px;
    margin-bottom: 8px;
}

/* 関連ページ（ハブ内部リンク） */
.ep-news-related-pages {
    margin: 40px 0;
    padding: 20px 24px;
    background: #faf8f4;
    border: 1px solid #ece3d3;
    border-radius: 10px;
}
.ep-news-related-pages h2 {
    font-size: 16px;
    margin: 0 0 12px;
}
.ep-news-related-pages ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ep-news-related-pages li {
    padding: 8px 0 8px 20px;
    position: relative;
    line-height: 1.6;
    border-top: 1px solid #ece3d3;
}
.ep-news-related-pages li:first-child {
    border-top: none;
}
.ep-news-related-pages li::before {
    content: '›';
    position: absolute;
    left: 4px;
    top: 7px;
    color: #bc954c;
    font-weight: 700;
}

/* FAQ */
.ep-news-faq {
    margin: 40px 0;
}
.ep-news-faq__item {
    padding: 18px 20px;
    margin: 12px 0;
    background: #faf8f4;
    border: 1px solid #ece3d3;
    border-radius: 10px;
}
.ep-news-faq__q {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1612;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}
.ep-news-faq__q::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    background: #bc954c;
    border-radius: 50%;
}
.ep-news-faq__a {
    margin: 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.8;
    color: #3a3226;
    font-size: 15px;
}
.ep-news-faq__a::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 13px;
    color: #bc954c;
    background: #f0e6d4;
    border-radius: 50%;
    font-weight: 700;
}

@media (max-width: 768px) {
    .ep-news-related-buildings {
        grid-template-columns: 1fr;
    }
    .ep-news-lead {
        font-size: 16px;
        padding: 16px 18px;
    }
}

/* ===== 記事末尾CTA（コラム/お知らせ本文の終端に付与） ===== */
.ep-article-cta {
    margin: 44px 0 8px;
    padding: 30px 26px;
    border: 1px solid var(--ep-line);
    border-radius: var(--ep-radius);
    background: rgba(188, 149, 92, 0.06);
    text-align: center;
}
.ep-article-cta-title {
    font-family: "Noto Serif JP", serif;
    font-size: 19px;
    line-height: 1.5;
    color: var(--ep-ink);
    margin: 0 0 10px;
    letter-spacing: .04em;
}
.ep-article-cta-lead {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ep-charcoal);
    max-width: 640px;
    margin: 0 auto 20px;
    text-align: left;
}
.ep-article-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.ep-article-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border: 1px solid var(--ep-gold);
    border-radius: var(--ep-radius);
    background: transparent;
    /* テーマの .entry-content a 上書きを打ち消し、明地では gold-deep で可読性を確保 */
    color: #7b592f !important;
    font-size: 15px;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.ep-article-cta-btn.is-primary {
    background: var(--ep-ink);
    color: var(--ep-gold) !important;
}
.ep-article-cta-btn:hover,
.ep-article-cta-btn:focus {
    background: var(--ep-ink);
    color: var(--ep-gold) !important;
}
.ep-article-cta-btn.is-primary:hover,
.ep-article-cta-btn.is-primary:focus {
    background: var(--ep-charcoal);
    color: var(--ep-gold-light) !important;
}
@media (max-width: 600px) {
    .ep-article-cta {
        padding: 22px 16px;
    }
    .ep-article-cta-btns {
        flex-direction: column;
    }
    .ep-article-cta-btn {
        width: 100%;
    }
}
