.notice_list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    height: auto;
    gap: 1em;
    margin-bottom: 2em;
}
.notice_list > .notice_box {
    display: block;
    width: 100%;
    height: auto;
    font-weight: 300;
}
.notice_list > .notice_box.opened {
    font-weight: 500;
}
.notice_list > .notice_box > .subject_box {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: auto;
    padding-bottom: .5em;
}
.notice_list .subject_box > .subject {
    font-size: 1em;
    cursor: pointer;
}
.notice_list .subject_box > .subject:hover {
    font-weight: 600;
}
.notice_list .subject_box > .subject > .no {
    color: var(--text-no);
}
.notice_list .subject_box > .right {
    display: flex;
    width: fit-content;
    height: auto;
    justify-content: right;
    align-items: center;
    flex-wrap: nowrap;
}
.notice_list .subject_box > .right > a {
    display: block;
    width: 1.5em;
    height: auto;
} 
.notice_list .subject_box > .right > a > img {
    display: block;
    width: 100%;
    height: auto;
}
.notice_list > .notice_box > .body_box {
    display: block;
    width: 100%;
    height: auto;
    padding: 1em;
    background-color: var(--bg-16);
    line-height: 1.5em;
    font-weight: 400;
    margin-bottom: 1em;
}
.notice_list .body_box > .reg_dt {
    color: var(--text-desc);
    font-size: .9375em;
}
.notice_list .body_box > .board_action_list {
    font-size: .875em;
    font-weight: 400;
}
.notice_list .body_box > .board_action_list img {
    width: 2em;
    height: 1em;
    object-fit: contain;
}

.sortable-placeholder {
    list-style: none;
    background-color: var(--bg-08) !important ;
}
