.noticeList {
    width: 100%;
}

.noticeList > * {
    margin: var(--original_container_margin) 0;
}
.noticeList > *:first-child {
    margin-top: 0;
}
.noticeList > *:last-child {
    margin-bottom: 0;
}

.noticeList > .noticeController {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    border-bottom: solid 1px var(--document_general_color_use);
}

.noticeList > .noticeController > * {
    margin: 0 var(--original_container_margin);
}
.noticeList > .noticeController > *:first-child {
    margin-left: 0;
}
.noticeList > .noticeController > *:last-child {
    margin-right: 0;
}
.noticeList > .noticeController > button {
    border-bottom: none;
}

.noticeList > .notice {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.noticeList > .notice > .date {
    white-space: nowrap;
}
.noticeList > .notice > .message {
    margin-left: var(--original_container_margin);
}
.noticeList > .notice > .message > a {
    font-style: normal;
    font-weight: var(--document_general_font_normal);
    font-size: inherit;
    border-bottom: none;
    color: var(--document_general_color_use);
    background-color: transparent;
}
.noticeList > .notice > .message > a:hover {
    border-bottom: none;
    background-color: var(--document_general_color_half);
}
