/* ===========================================
   News Archive (お知らせ)
   =========================================== */
.news-archive-list {
    display: flex;
    flex-direction: column;
}

.news-archive-item {
    position: relative;
    border-bottom: 1px solid #D9D5CD;
}

/* 矢印の横線 */
.news-archive-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 31.5px;
    height: 1px;
    background: #65BAA9;
    margin: auto;
}

/* 矢印の先端 */
.news-archive-item::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 1px;
    background: #65BAA9;
    transform: rotate(45deg);
    margin: auto;
}


.news-archive-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: clamp(16px, 2vw, 24px) 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news-archive-link:hover {
    opacity: 0.7;
}

.news-archive-date {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #5BA699;
    flex-shrink: 0;
}

.news-archive-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: #5BA699;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
}

.news-archive-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #30403E;
    margin: 0;
    padding-right: 50px;
}


/* ========================================
   News Single Page (お知らせ詳細)
======================================== */

.news-single-section {
}

.news-single-container {
    max-width: 1120px;
}

.news-single-header {
    margin-bottom: clamp(30px, 4vw, 50px);
}

.news-single-meta {
    margin-bottom: 15px;
}

.news-single-date {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #5BA699;
}

.news-single-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    color: #5BA699;
    margin: 0;
    padding-bottom: 20px;
}

.news-single-content p {
    margin-top: 20px;
}

.news-single-content a{
    text-decoration: underline;
    color: #DDA5C9;
}


.news-single-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 20px;
    background: url('../images/page-title-line.svg') no-repeat left center;
    background-size: contain;
}

.news-single-content {
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 400;
    line-height: 2;
    color: #333;
}

/* アイキャッチ画像 */
.news-image {
    max-width: 736px;
    max-height: 464px;
    margin-bottom: clamp(24px, 3vw, 40px);
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    max-height: 464px;
    object-fit: cover;
}

/* ブロックエディタ：段落 */
.news-single-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #444444;
    margin-top: 0;
    margin-bottom: clamp(24px, 3vw, 40px);
}

/* ブロックエディタ：H2（ペンアイコン付き） */
.news-single-content h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #444444;
    margin: clamp(30px, 4vw, 50px) 0 clamp(15px, 2vw, 20px);
}

.news-single-content h2::before {
    content: '';
    display: block;
    width: 31px;
    height: 20px;
    background: url('../images/slash.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

/* ブロックエディタ：H3 */
.news-single-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: #444444;
    margin: clamp(20px, 3vw, 30px) 0 clamp(10px, 1.5vw, 15px);
}

/* ブロックエディタ：H4（縦線付き） */
.news-single-content h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #444444;
    margin: clamp(20px, 3vw, 30px) 0 clamp(10px, 1.5vw, 15px);
}

.news-single-content h4::before {
    content: '';
    display: block;
    width: 3px;
    height: 14px;
    background: #4B80A6;
    border-radius: 1px;
    flex-shrink: 0;
}

/* ブロックエディタ：リスト */
.news-single-content ul,
.news-single-content ol {
    margin: clamp(15px, 2vw, 20px) 0;
    padding-left: 0;
    list-style: none;
}

.news-single-content ul li,
.news-single-content ol li {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 0.5em;
}

.news-single-content ul li::before {
    content: '・';
    flex-shrink: 0;
}

.news-single-content ol {
    counter-reset: list-counter;
}

.news-single-content ol li {
    counter-increment: list-counter;
}

.news-single-content ol li::before {
    content: counter(list-counter) '. ';
    flex-shrink: 0;
    min-width: 1em;
}

/* ブロックエディタ：画像 */
.news-single-content img {
    max-width: 736px;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: clamp(24px, 3vw, 40px);
}


@media (max-width: 768px) {
    .news-archive-link {
        flex-wrap: wrap;
    }

    .news-archive-title {
        width: 100%;
    }
}
