/* ユーザー向けお知らせ詳細 */
.ClientNoticeItemPage {
    display: grid;
    gap: 16px;
}

.NoticeItemBody {
    display: grid;
    gap: 16px;
}

.NoticeMeta {
    color: var(--SubText1);
    font-size: 0.9em;
}

.NoticeSummary {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #ececec;
    background-color: #fff;

    .SectionTitle {
        font-size: 0.95em;
        font-weight: bold;
        color: var(--Gray_Main1);
    }

    p {
        margin: 0;
        line-height: 1.7;
        color: var(--MainText2);
        white-space: pre-wrap;
    }
}

.NoticeCover {
    .CoverImage {
        width: 100%;
        max-width: 760px;
        border-radius: 8px;
        border: 1px solid #ececec;
        background-color: #f9f9f9;
    }
}

.NoticeContentBlocks {
    display: grid;
    gap: 14px;
}

.ContentBlock {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 8px;
    /* border: 1px solid #ececec;
    background-color: #fff; */

    .BlockHeading {
        margin: 0;
        line-height: 1.4;
        color: var(--MainText1);
    }

    .BlockText {
        margin: 0;
        line-height: 1.8;
        color: var(--MainText1);
        white-space: pre-wrap;
    }

    .BlockImage {
        width: 100%;
        max-width: 760px;
        border-radius: 8px;
        border: 1px solid #ececec;
        background-color: #f9f9f9;
    }
}

.EmptyContent {
    color: var(--SubText1);
}

.BackLinkWrap {
    display: flex;
    justify-content: flex-start;
}
