/* -- mobile( ? ~ 767px ) -- */
@media screen and (max-width: 767px) {
    /* footer */
    .footer {
        background: #222;
        color: #fff;
        padding: 30px 0;
    }

    .f-logoZone {
        display: inline-block;
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid #999;
    }

    .f-logoZone p {
        float: left;
    }

    .f-logoZone p:nth-child(2) {
        width: 170px;
        float: right;
    }

    .f-logoZone p:nth-child(2) select {
        width: 100%;
        border-radius: 5px;
        border: 1px solid #999;
        background: transparent;
        color: #fff;
        padding: 10px;
        /*화살표 배경 넣기*/
        background: url('../../images/nav_arrowOn.png') no-repeat 94% 49% transparent; /*화살표 select박스 오른쪽 중앙 배치,배경 흰색*/
        background-size: 12px auto;
        font-size: 14px;
        cursor: pointer;
    }

    .f-logoZone p:nth-child(2) select option {
        color: #333;
    }

    .f-logo {
        width: 20%;
    }

    .f-logo img {
        width: 100px;
        height: auto;
        margin-top: 12px;
    }

    .f-menu {
        margin: 20px 0;
    }
    .f-menu a {
        width: 100%;
        text-align: center;
        display: block;
        color: #fff;
        position: relative;
        font-weight: 400;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-bottom: 15px;
        padding: 8px 0;
        font-size: 14px;
    }

    .f-menu a:first-child {
        font-weight: bold;
    }

    .f-info > div > p > span {
        padding-right: 6px;
    }

    .f-info > div > p {
        font-size: 14px;
        margin-bottom: 10px;
        word-break: keep-all;
    }

    .copyright {
        margin-top: 20px;
        color: #999;
        font-size: 14px;
    }

    .pop_up {
        width: 100%;
        height: 100vh;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        transform: translateX(-200%);
        transition: 1s;
        z-index: 9999;
    }

    .paper {
        position: absolute;
        padding: 50px 20px;
        width: 80%;
        height: 80%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        background: #fff;
    }

    h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .date {
        font-size: 0.875em;
        margin-bottom: 30px;
    }

    .cont_area {
        height: 100%;
    }

    .notice_txt {
        border-top: 2px solid #333;
        height: 90%;
        padding: 20px 0;
        border-bottom: 2px solid #333;
        line-height: 24px;
        overflow-y: scroll;
        font-size: 14px;
        white-space: pre-line;
    }

    .btn_popup {
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .btn_popup img {
        width: 30px;
        height: auto;
    }
}

/* -- tablet( 768px ~ 1199px ) -- */
@media screen and (min-width: 768px) and (max-width: 1339px) {
    /* footer */
    .footer {
        background: #222;
        color: #fff;
        padding: 40px 0 50px 0;
    }

    .f-logoZone {
        display: inline-block;
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid #999;
    }

    .f-logoZone p {
        float: left;
    }

    .f-logoZone p:nth-child(2) {
        float: right;
    }

    .f-logoZone p:nth-child(2) select {
        width: 230px;
        border-radius: 5px;
        border: 1px solid #999;
        background: transparent;
        color: #fff;
        padding: 14px 10px;
        /*화살표 배경 넣기*/
        background: url('../../images/nav_arrowOn.png') no-repeat 94% 49% transparent; /*화살표 select박스 오른쪽 중앙 배치,배경 흰색*/
        background-size: 12px auto;
        font-size: 16px;
        cursor: pointer;
    }

    .f-logoZone p:nth-child(2) select option {
        color: #333;
    }

    .f-logo {
        width: 20%;
    }

    .f-logo img {
        width:130px;
        height: auto;
        margin-top: 14px;
    }

    .f-menu {
        margin: 20px 0;
    }
    .f-menu a {
        color: #fff;
        position: relative;
        font-weight: 400;
    }

    .f-menu a:first-child {
        font-weight: bold;
    }

    .f-menu a::after {
        content: "|";
        padding: 20px;
        color: #999;
    }

    .f-menu a:last-child::after {
        display: none;
    }

    .f-info > div > p > span {
        padding-right: 6px;
    }

    .copyright {
        margin-top: 20px;
        color: #999;
    }

    /* popup */
    .pop_up {
        width: 100%;
        height: 100vh;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        transform: translateX(-200%);
        transition: 1s;
        z-index: 9999;
    }

    .paper {
        position: absolute;
        padding: 50px 20px;
        width: 80%;
        height: 80%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        background: #fff;
    }

    h3 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .date {
        font-size: 0.875em;
        margin-bottom: 30px;
    }

    .cont_area {
        height: 100%;
    }

    .notice_txt {
        border-top: 2px solid #333;
        height: 90%;
        padding: 20px 0;
        border-bottom: 2px solid #333;
        line-height: 30px;
        overflow-y: scroll;
        font-size: 18px;
        white-space: pre-line;
    }

    .btn_popup {
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .btn_popup img {
        width: 40px;
        height: auto;
    }
}


/* -- desktop( 1200px ~ ? ) -- */
@media screen and (min-width: 1340px) {
    /* footer */
    .footer {
        background: #222;
        color: #fff;
        padding: 30px 0 40px 0;
    }

    .f-logoZone {
        padding-bottom: 20px;
        border-bottom: 1px solid #999;
    }

    .f-logoZone p {
        display: inline-block;
        vertical-align: middle;
    }

    .f-logoZone p:nth-child(2) {
        width: 79.8%;
        text-align: right;
    }

    .f-logoZone p:nth-child(2) select {
        width: 230px;
        border-radius: 5px;
        border: 1px solid #999;
        background: transparent;
        color: #fff;
        padding: 14px 10px;
        /*화살표 배경 넣기*/
        background: url('../../images/nav_arrowOn.png') no-repeat 94% 49% transparent; /*화살표 select박스 오른쪽 중앙 배치,배경 흰색*/
        background-size: 12px auto;
        font-size: 1.000em;
        cursor: pointer;
    }

    .f-logoZone p:nth-child(2) select option {
        color: #333;
    }

    .f-logo {
        width: 20%;
    }

    .f-logo img {
        width:120px;
        height: auto;
        margin-top: 10px;
    }

    .f-menu {
        margin: 20px 0;
    }
    .f-menu a {
        color: #fff;
        position: relative;
        font-weight: 400;
        cursor: pointer;
    }

    .f-menu a:first-child {
        font-weight: bold;
    }

    .f-menu a::after {
        content: "|";
        padding: 20px;
        color: #999;
    }

    .f-menu a:last-child::after {
        display: none;
    }

    .f-info > div > p {
        display: inline-block;
        vertical-align: middle;
        position: relative;
    }

    .f-info > div > p > span {
        padding-right: 6px;
    }

    .f-info > div > p::after {
        content: "|";
        padding: 20px;
        color: #999;
    }

    .f-info > div > p:last-child::after {
        display: none;
    }

    .copyright {
        margin-top: 20px;
        color: #999;
    }


    .pop_up {
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.5);
        transform: translateX(-200%);
        transition: 1s;
        z-index: 9999;
    }

    .paper {
        position: absolute;
        padding: 100px;
        width: 80%;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        background: #fff;
    }

    .btn_popup {
        cursor: pointer;
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .notice_txt {
        border-top: 2px solid #333;
        height: 400px;
        padding: 20px 0;
        border-bottom: 2px solid #333;
        line-height: 24px;
        overflow-y: scroll;
        white-space: pre-line;
    }
}