.notice {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin-top: 10px;
    padding: 30px;
}

.notice h2 {
    margin-top: 89px;
    font-size: 48px;
    font-weight: 600;
    line-height: 42px;
}

.notice .select_count {
    margin-top: 33px;
    font-size: 14px;
    text-align: right;
    line-height: 30px;
}

.notice .select_count span {
    color: #0047ba;
}

.notice .list {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.notice .list .item-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    margin-top: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 0 20px 0 20px;
}

.notice .list .item-container.active {
    background-color: #dee3f1
}

.notice .list .item-container .header {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 65px;
    align-items: center;
    justify-content: space-between;
}

.notice .list .item-container .header .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

.notice .list .item-container .header .date {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.notice .list .item-container .detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    border-top: 1px solid #cccccc;
    font-size: 18px;
    line-height: 30px;
    padding: 10px 0 20px 0;
}

.notice .list .item-container .detail .link {
    text-decoration: underline !important;
    color: #0047ba !important;
}

@media (max-width: 650px) {
    .notice .list .item-container .header {
        height: 45px;
    }

    .notice .list .item-container .header .title {
        font-size: 12px;
    }

    .notice .list .item-container .header .date {
        font-size: 9px;
    }

    .notice .list .item-container .detail {
        font-size: 12px;
        line-height: 20px
    }
}

@media (max-width: 500px) {
    .notice .list .item-container .header {
        height: 32px;
        padding: 0 10px 0 10px;
    }

    .notice .list .item-container .header .title {
        font-size: 9px;
    }

    .notice .list .item-container .header .date {
        font-size: 7px;
    }

    .notice .list .item-container .detail {
        font-size: 9px;
        line-height: 15px;
    }
}