/* Start PC Device */
@media screen and (min-width: 1440px) {
    /* Start Visual */
    /* Start 1단 배경이미지 */
    section.visual {
        position: relative;
    }
    section.visual .image__area {
        position: absolute;
        top: 0;
        left: 0;
        filter: brightness(.5);
        width: 100%;
    }
    section.visual .image__area > img {
        width: 100%;
        height: 470px;
    }
    /* End 1단 배경이미지 */
    /* End Visual */

    /* Start notice-title */
    section.notice-title {
        position: relative;
    }
    section.notice-title .inner {
        height: 100%;
        min-height: 470px;
    }
    section.notice-title .inner .notice-title__txt {
        position: absolute;
        top: 45%;
        left: 0;
        right: 0;
    }
    section.notice-title .inner .notice-title__txt > span {
        color: #FFF;
        text-align: center;
        font-size: 60px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    /* End notice-title */

    /* Start notice-contents */
    section.notice-contents {
        position: relative;
    }
    section.notice-contents .inner {
        height: 100%;
    }
    section.notice-contents .inner .notice-contents-title {
        height: 100px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:first-child {
        margin-top: 200px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:first-child > span {
        color: #000;
        text-align: center;
        font-size: 45px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.9px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:last-child {
        margin-top: 40px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:last-child > span {
        color: #959595;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 350;
        line-height: normal;
        letter-spacing: -0.48px;
    }

    section.notice-contents .inner .notice-table {
        margin-top: 120px;
        padding-bottom: 263px;
        display: table;
        width: 100%;
    }
    section.notice-contents .inner .notice-table .table {
        width: 100%;
        table-layout: fixed;
    }
    section.notice-contents .inner .notice-table .table .table__head {
        background: #F8F8F8;
        border-bottom: 1px solid #C9C9C9;
        border-top: 1px solid #000 ;
    }
    section.notice-contents .inner .notice-table .table .table__head .col-title {
        padding: 20px 0;
        color: #000;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        font-style: normal;
        line-height: normal;
    }
    section.notice-contents .inner .notice-table .table .table-data {
        border-bottom: 1px solid #C9C9C9;
    }
    section.notice-contents .inner .notice-table .table .table-data .table-text {
        padding: 20px 0;
        color: #000;
        text-align: center;
        font-size: 18px;
        font-weight: 350;
        font-style: normal;
        line-height: normal;

        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    section.notice-contents .inner .notice-table .table .table-data .table-text:nth-child(2) {
        cursor: pointer;
    }
    /* End notice-contents */

    /* Start pagination */
    section.notice-contents .inner .notice-table .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

        position: absolute;
        left: 0;
        right: 0;
        margin-top: 50px;
    }
    section.notice-contents .inner .notice-table .pagination .first-page.disabled,
    section.notice-contents .inner .notice-table .pagination .previous-page.disabled,
    section.notice-contents .inner .notice-table .pagination .next-page.disabled,
    section.notice-contents .inner .notice-table .pagination .last-page.disabled {
        opacity: .3;
    }
    section.notice-contents .inner .notice-table .pagination .first-page.disabled:hover,
    section.notice-contents .inner .notice-table .pagination .previous-page.disabled:hover,
    section.notice-contents .inner .notice-table .pagination .next-page.disabled:hover,
    section.notice-contents .inner .notice-table .pagination .last-page.disabled:hover {
        cursor: default;
        font-weight: 400;
    }
    section.notice-contents .inner .notice-table .pagination .first-page,
    section.notice-contents .inner .notice-table .pagination .previous-page,
    section.notice-contents .inner .notice-table .pagination .page-numbers,
    section.notice-contents .inner .notice-table .pagination .next-page,
    section.notice-contents .inner .notice-table .pagination .last-page {
        width: 30px;
        height: 30px;
        margin: 5px;
        padding: 5px;
        color: #000;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border-radius: 20px;
    }

    section.notice-contents .inner .notice-table .pagination .first-page:hover,
    section.notice-contents .inner .notice-table .pagination .previous-page:hover,
    section.notice-contents .inner .notice-table .pagination .page-numbers:hover,
    section.notice-contents .inner .notice-table .pagination .next-page:hover,
    section.notice-contents .inner .notice-table .pagination .last-page:hover {
        cursor: pointer;
        font-weight: bold;
    }
    section.notice-contents .inner .notice-table .pagination .page-numbers.active {
        background: rgba(0, 160, 233, 1);
        color: #FFF;
        font-weight: 700;
        cursor: default;
    }
    /* End pagination */

    /*footer {
        position: absolute;
        left: 0;
        right: 0;
    }*/
}
/* End PC Device */
/* Start Tablet Device */
@media screen and (min-width: 834px) and (max-width: 1439px) {
    /* Start Visual */
    /* Start 1단 배경이미지 */
    section.visual {
        position: relative;
    }
    section.visual .image__area {
        position: absolute;
        top: 0;
        left: 0;
        filter: brightness(.5);
        width: 100%;
    }
    section.visual .image__area > img {
        width: 100%;
        height: 100%;
        min-height: 390px;
        max-height: 470px;
    }
    /* End 1단 배경이미지 */
    /* End Visual */

    /* Start notice-title */
    section.notice-title {
        position: relative;
    }
    section.notice-title .inner {
        height: 100%;
        min-height: 390px;
        max-height: 470px;
    }
    section.notice-title .inner .notice-title__txt {
        position: absolute;
        top: 55%;
        left: 0;
        right: 0;
    }
    section.notice-title .inner .notice-title__txt > span {
        color: #FFF;
        text-align: center;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    /* End notice-title */

    /* Start notice-contents */
    section.notice-contents {
        position: relative;
    }
    section.notice-contents .inner {
        height: 100%;
    }
    section.notice-contents .inner .notice-contents-title {
        height: 100px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:first-child {
        margin-top: 170px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:first-child > span {
        color: #000;
        text-align: center;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.9px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:last-child {
        margin-top: 40px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:last-child > span {
        color: #959595;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 350;
        line-height: normal;
        letter-spacing: -0.48px;
    }

    section.notice-contents .inner .notice-table {
        margin-top: 120px;
        padding-bottom: 185px;
        display: table;
        width: 100%;
    }
    section.notice-contents .inner .notice-table .table {
        width: 100%;
        table-layout: fixed;
    }
    section.notice-contents .inner .notice-table .table .table__head {
        background: #F8F8F8;
        border-bottom: 1px solid #C9C9C9;
        border-top: 1px solid #000 ;
    }
    section.notice-contents .inner .notice-table .table .table__head .col-title {
        padding: 20px 0;
        color: #000;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        font-style: normal;
        line-height: normal;
    }
    section.notice-contents .inner .notice-table .table .table-data {
        border-bottom: 1px solid #C9C9C9;
    }
    section.notice-contents .inner .notice-table .table .table-data .table-text {
        padding: 20px 0;
        color: #000;
        text-align: center;
        font-size: 18px;
        font-weight: 350;
        font-style: normal;
        line-height: normal;

        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    section.notice-contents .inner .notice-table .table .table-data .table-text:nth-child(2) {
        cursor: pointer;
    }
    /* End notice-contents */

    /* Start pagination */
    section.notice-contents .inner .notice-table .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

        position: absolute;
        left: 0;
        right: 0;
        margin-top: 50px;
    }
    section.notice-contents .inner .notice-table .pagination .first-page.disabled,
    section.notice-contents .inner .notice-table .pagination .previous-page.disabled,
    section.notice-contents .inner .notice-table .pagination .next-page.disabled,
    section.notice-contents .inner .notice-table .pagination .last-page.disabled {
        opacity: .3;
    }
    section.notice-contents .inner .notice-table .pagination .first-page.disabled:hover,
    section.notice-contents .inner .notice-table .pagination .previous-page.disabled:hover,
    section.notice-contents .inner .notice-table .pagination .next-page.disabled:hover,
    section.notice-contents .inner .notice-table .pagination .last-page.disabled:hover {
        cursor: default;
        font-weight: 400;
    }
    section.notice-contents .inner .notice-table .pagination .first-page,
    section.notice-contents .inner .notice-table .pagination .previous-page,
    section.notice-contents .inner .notice-table .pagination .page-numbers,
    section.notice-contents .inner .notice-table .pagination .next-page,
    section.notice-contents .inner .notice-table .pagination .last-page {
        width: 30px;
        height: 30px;
        margin: 5px;
        padding: 5px;
        color: #000;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border-radius: 20px;
    }

    section.notice-contents .inner .notice-table .pagination .first-page:hover,
    section.notice-contents .inner .notice-table .pagination .previous-page:hover,
    section.notice-contents .inner .notice-table .pagination .page-numbers:hover,
    section.notice-contents .inner .notice-table .pagination .next-page:hover,
    section.notice-contents .inner .notice-table .pagination .last-page:hover {
        cursor: pointer;
        font-weight: bold;
    }
    section.notice-contents .inner .notice-table .pagination .page-numbers.active {
        background: rgba(0, 160, 233, 1);
        color: #FFF;
        font-weight: 700;
        cursor: default;
    }
    /* End pagination */

    /*footer {
        position: absolute;
        left: 0;
        right: 0;
    }*/
}
/* End Tablet Device */
/* Start Mobile Device */
@media screen and (max-width: 833px) {
    /* Start Visual */
    /* Start 1단 배경이미지 */
    section.visual {
        position: relative;
    }
    section.visual .image__area {
        position: absolute;
        top: 0;
        left: 0;
        filter: brightness(.5);
        width: 100%;
    }
    section.visual .image__area > img {
        width: 100%;
        height: 100%;
        min-height: 225px;
        max-height: 390px;
    }
    /* End 1단 배경이미지 */
    /* End Visual */

    /* Start notice-title */
    section.notice-title {
        position: relative;
    }
    section.notice-title .inner {
        height: 100%;
        min-height: 225px;
        max-height: 390px;
    }
    section.notice-title .inner .notice-title__txt {
        position: absolute;
        top: 60%;
        left: 0;
        right: 0;
    }
    section.notice-title .inner .notice-title__txt > span {
        color: #FFF;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    /* End notice-title */

    /* Start notice-contents */
    section.notice-contents {
        position: relative;
    }
    section.notice-contents .inner {
        height: 100%;
    }
    section.notice-contents .inner .notice-contents-title {
        height: 60px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:first-child {
        margin-top: 80px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:first-child > span {
        color: #000;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.9px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:last-child {
        margin-top: 24px;
    }
    section.notice-contents .inner .notice-contents-title .news-content-txt:last-child > span {
        color: #959595;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 350;
        line-height: normal;
        letter-spacing: -0.48px;
    }

    section.notice-contents .inner .notice-table {
        margin-top: 60px;
        padding-bottom: 190px;
        display: table;
        width: 100%;
    }
    section.notice-contents .inner .notice-table .table {
        width: 100%;
        table-layout: fixed;
    }
    section.notice-contents .inner .notice-table .table .table__head {
        background: #F8F8F8;
        border-bottom: 1px solid #C9C9C9;
        border-top: 1px solid #000 ;
    }
    section.notice-contents .inner .notice-table .table .table__head .col-title {
        padding: 20px 0;
        color: #000;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        font-style: normal;
        line-height: normal;
    }
    section.notice-contents .inner .notice-table .table .table-data {
        border-bottom: 1px solid #C9C9C9;
    }
    section.notice-contents .inner .notice-table .table .table-data .table-text {
        padding: 20px 10px;
        color: #000;
        text-align: center;
        font-size: 15px;
        font-weight: 350;
        font-style: normal;
        line-height: normal;

        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    section.notice-contents .inner .notice-table .table .table-data .table-text:nth-child(2) {
        cursor: pointer;
    }
    /* End notice-contents */

    /* Start pagination */
    section.notice-contents .inner .notice-table .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

        position: absolute;
        left: 0;
        right: 0;
        margin-top: 50px;
    }
    section.notice-contents .inner .notice-table .pagination .first-page.disabled,
    section.notice-contents .inner .notice-table .pagination .previous-page.disabled,
    section.notice-contents .inner .notice-table .pagination .next-page.disabled,
    section.notice-contents .inner .notice-table .pagination .last-page.disabled {
        opacity: .3;
    }
    section.notice-contents .inner .notice-table .pagination .first-page.disabled:hover,
    section.notice-contents .inner .notice-table .pagination .previous-page.disabled:hover,
    section.notice-contents .inner .notice-table .pagination .next-page.disabled:hover,
    section.notice-contents .inner .notice-table .pagination .last-page.disabled:hover {
        cursor: default;
        font-weight: 400;
    }
    section.notice-contents .inner .notice-table .pagination .first-page,
    section.notice-contents .inner .notice-table .pagination .previous-page,
    section.notice-contents .inner .notice-table .pagination .page-numbers,
    section.notice-contents .inner .notice-table .pagination .next-page,
    section.notice-contents .inner .notice-table .pagination .last-page {
        width: 30px;
        height: 30px;
        margin: 5px;
        padding: 5px;
        color: #000;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border-radius: 20px;
    }

    section.notice-contents .inner .notice-table .pagination .first-page:hover,
    section.notice-contents .inner .notice-table .pagination .previous-page:hover,
    section.notice-contents .inner .notice-table .pagination .page-numbers:hover,
    section.notice-contents .inner .notice-table .pagination .next-page:hover,
    section.notice-contents .inner .notice-table .pagination .last-page:hover {
        cursor: pointer;
        font-weight: bold;
    }
    section.notice-contents .inner .notice-table .pagination .page-numbers.active {
        background: rgba(0, 160, 233, 1);
        color: #FFF;
        font-weight: 700;
        cursor: default;
    }
    /* End pagination */

    /*footer {
        position: absolute;
        left: 0;
        right: 0;
    }*/
}
/* End Mobile Device */