@charset "utf-8"; @import url(font.css); /* CSS Document */
/**** reset ****/
a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, iframe, img, ins, input, kbd, keygen, label, legend, li, meter, mark, nav, menu, object, ol, output, option, p, pre, progress, q, s, samp, section, small, span, source, strike, sub, sup, table, tbody, tfoot, thead, th, tr, td, video, tt, u, ul, var {
    padding: 0;
    margin: 0;
    font-size: 100%;
    font: inherit;
    border: 0;
    box-sizing: border-box;
    text-decoration: none;
    letter-spacing: -0.01rem;
    font-weight: 400
}

body {
    line-height: 1;
    font-family: 'Noto Sans CJK KR','Malgun Gothic', '맑은 고딕', 'Dotum', '돋움', 'Gulim', '굴림', sans-serif
}

ul, ol {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border-left: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb
}

caption, legend {
    position: relative;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

td, th {
    word-break: break-all;
    vertical-align: middle;
    font-family: 'Noto Sans CJK KR','Malgun Gothic', '맑은 고딕', 'Dotum', '돋움', 'Gulim', '굴림', sans-serif
}

mark, var {
    background: none
}

input, button, select, textarea {
    vertical-align: middle;
    border: 1px solid #dddddd;
    font-family: 'Noto Sans CJK KR','Malgun Gothic', '맑은 고딕', 'Dotum', '돋움', 'Gulim', '굴림', sans-serif
}

button {
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #dddddd;
    font-family: 'Noto Sans CJK KR','Malgun Gothic', '맑은 고딕', 'Dotum', '돋움', 'Gulim', '굴림', sans-serif
}

img, fieldset, iframe {
    border: 0
}

img {
    max-width: 100%;
}

a {
    color: #616161;
}

html {
    font-size: 10px
}

body {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
    letter-spacing: -0.025rem;
}

/* strong, b{font-weight:500} */
#viewTable ul, ol {
    list-style: inherit;
}

/*체크박스*/
.checkbox-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 1.25rem;
}

.checkbox-wrap:last-of-type {
    margin-right: 0;
}

.checkbox-wrap .checkbox {
    position: relative;
}

.checkbox-wrap .checkbox input[type="checkbox"] {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.checkbox-wrap .checkbox span.check-inner {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    direction: ltr;
    background-image: url(../images/check_box.png);
    box-sizing: border-box;
    margin: 0 auto;
}

.checkbox-wrap .checkbox input[type="checkbox"]:checked + span.check-inner {
    background-image: url(../images/check_box_checked.png);
}

.checkbox-wrap .checkbox input[type="checkbox"]:focus + span.check-inner {
    outline: 2px solid #000000
}

.checkbox-wrap label {
    display: block;
    cursor: pointer;
    margin-left: 8px;
    font-size: 1.4rem;
    color: #000;
    font-weight: 300;
    letter-spacing: -0.05em;
}

.checkbox-wrap label:last-of-type {
    margin-right: 0;
}

.checkbox-wrap label.checked {
    color: #0553ac !important;
    font-weight: 500 !important;
}

/*라디오박스*/
.radio-input {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 1.25rem;
}

.radio-input:last-of-type {
    margin-right: 0;
}

.radio-input .radio {
    position: relative;
}

.radio-input .radio input[type="radio"] {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.radio-input .radio span.check-inner {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    background-color: #ffffff;
    width: 18px;
    height: 18px;
    direction: ltr;
    border: 1px solid #dddddd;
    border-radius: 50%;
    border-collapse: separate;
    box-sizing: border-box;
    margin: 0 auto;
}

.radio-input .radio input[type="radio"]:checked + span.check-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #2b63b2;
}

.radio-input .radio input[type="radio"]:focus + span.check-inner {
    outline: 2px solid #000000;
}

.radio-input label {
    display: block;
    cursor: pointer;
    margin-left: 8px;
    font-size: 1.4rem;
    line-height: 1;
    color: #444444;
    font-weight: 400;
}

.radio-input label:last-of-type {
    margin-right: 0;
}

.radio-input label.checked {
    color: #0553ac !important;
    font-weight: 500 !important;
}

/* 웹접근성 바로가기 */
#accessibility a {
    position: fixed;
    left: 0px;
    top: -50px;
    display: block;
    width: 100%;
    height: 48px;
    padding: 15px 0px;
    background-color: #003dad;
    color: #fff;
    line-height: 100%;
    text-align: center;
    font-weight: 400;
    line-height: 100%;
    z-index: 9999;
}

#accessibility a:focus {
    top: 0px;
}

/**/
#seoul-common-gnb {
    min-height: 48px;
    background-color: #0c82e9;
}

#seoul-gnb-plugin .seoul-gnb-holder {
    max-width: 1280px !important;
}

.wrap {
    width: 1280px;
    margin: 0 auto;
}

.header-top {
    height: 80px;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

.header-top .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-top .wrap #logo {
    max-width: 253px;
}

.header-top .wrap #logo a {
    display: block;
}

.header-top .wrap #logo a img {
    width: 100%;
}

.header-top .wrap .m-search {
    display: none;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 23px;
    height: 29px;
    background-image: url(../images/search_btn.png);
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
    text-indent: -999999em;
    border: none;
}

.header-top .wrap .header-search .search-wrap {
    display: flex;
    align-items: center;
    width: 320px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
    border: 3px solid #0e4194;
    box-sizing: border-box;
    padding: 0 10px 0 15px;
}

.header-top .wrap .header-search .search-wrap input[type="text"] {
    width: calc(100% - 50px);
    height: 40px;
    padding: 0 5px;
    box-sizing: border-box;
    font-size: 1.4rem;
    font-weight: 300;
    border: none;
}

.header-top .wrap .header-search .search-wrap button {
    width: 50px;
    height: 50px;
    background-image: url(../images/search_btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    font-size: 0;
    text-indent: -9999999em;
}

.header-top .wrap .header-utils {
    display: flex;
    align-items: center;
}

.header-top .wrap .header-utils .today-weather .temperatures span {
    margin-right: 8px;
    color: #000;
    font-weight: 500;
    font-size: 1.4rem;
}

.header-top .wrap .header-utils .today-weather .temperatures span:last-of-type {
    margin-right: 0;
    font-size: 2rem;
}

.header-top .wrap .header-utils .today-weather .dust ul {
    display: flex;
}

.header-top .wrap .header-utils .today-weather .dust ul li {
    font-size: 1.4rem;
    margin-right: 8px;
}

.header-top .wrap .header-utils .today-weather .dust ul li:last-child {
    margin-right: 0;
}

.header-top .wrap .header-utils .lang-select {
    position: relative;
    width: 144px;
    margin-left: 30px;
}

.header-top .wrap .header-utils .lang-select button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 37px;
    border: 1px solid #dddddd;
    padding: 0 15px;
    background-color: transparent;
    text-align: left;
    border-radius: 3px;
}

.header-top .wrap .header-utils .lang-select button span.text { 
    color: #555555;
}

.header-top .wrap .header-utils .lang-select button span.sr-only {
    display: block;
    width: 9px;
    height: 6px;
    background-image: url(../images/select_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(0deg);
    transition: transform 0.5s;
    font-size:0;
    text-indent:-999999999em;
}

.header-top .wrap .header-utils .lang-select button.on span.sr-only {
    transform: rotate(180deg);
    transition: transform 0.5s;
}

.header-top .wrap .header-utils .lang-select .lang-option {
    display: none;
    position: absolute;
    top: 37px;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    border: 1px solid #dddddd;
    border-top: 0;
}

.header-top .wrap .header-utils .lang-select .lang-option ul li {
    border-bottom: 1px solid #dddddd;
}

.header-top .wrap .header-utils .lang-select .lang-option ul li:last-child {
    border-bottom: 0;
}

.header-top .wrap .header-utils .lang-select .lang-option ul li a {
    display: flex;
    padding: 5px 10px;
    font-size: 1.4rem;
    align-items: center;
    box-sizing: border-box;
}

.header-top .wrap .header-utils .lang-select .lang-option ul li a:hover {
    background-color: #f2f2f2;
}

.header-top .wrap .m-gnb-open {
    display: none;
    width: 24px;
    height: 21px;
    font-size: 0;
    text-indent: -9999999em;
    background-image: url(../images/sitemap_btn.png);
    background-position: center;
    background-repeat: no-repeat;
    border: none;
}

/*GNB PC*/
.gnb {
    position: relative;
    border-bottom: 1px solid #dddddd;
    height: 60px;
    box-sizing: border-box;
}

.gnb .wrap {
    height: 100%;
}

.gnb .wrap ul {
    display: flex;
    align-items: center;
    height: 100%;
}

.gnb .wrap ul > li.depth1-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc( 100% - 24px / 7);
    height: 100%;
}

.gnb .wrap ul > li.depth1-item:last-child {
    /*width:24px;*/
    display: none;
}

.gnb .wrap ul > li.depth1-item button.sitemap {
    display: none;
    width: 24px;
    height: 21px;
    border: none;
    font-size: 0;
    text-indent: -999999em;
    background-image: url(../images/sitemap_btn.png);
    background-repeat: no-repeat;
}

.gnb .wrap ul > li.depth1-item a.depth1 {
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.gnb .wrap ul > li.depth1-item a.depth1 span {
    font-weight: 500;
    color: #000;
}

.gnb .wrap ul > li.depth1-item a.depth1:hover span {
    color: #003dad;
    font-weight: 600;
}

.gnb .wrap ul > li.depth1-item a.depth1:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    margin-left: -25px;
    background-color: #003dad;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}

.gnb .wrap ul > li.depth1-item a.depth1:hover:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

.gnb .wrap ul > li.depth1-item .depth-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 101;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.gnb .wrap ul > li.depth1-item.on .depth-box {
    display: block;
}

.gnb .wrap ul > li.depth1-item .depth-box .in {
    display: flex;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth1-tit {
    width: 25%;
    flex-grow: 1;
    flex-shrink: 0;
    background-color: #f7f8fb;
    background-image: url(../images/gnb_bg.png);
    background-repeat: no-repeat;
    background-position: 110% 30px;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth1-tit span {
    display: block;
    width: 100%;
    font-size: 2.5rem;
    color: #000;
    font-weight: 600;
    text-align: right;
    padding: 3rem 6rem 2.5rem 0rem;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap {
    width: 75%;
    padding-right: calc((100% - 1340px)/2)
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap ol.depth2-list {
    display: flex;
    flex-wrap: wrap;
    padding: 2.5rem 0 0.625rem 1.5rem;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap ol.depth2-list li.depth2-item {
    width: 19.6%;
    margin-bottom: 1.875rem;
    padding: 0 2.5rem;
    box-sizing: border-box;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap ol.depth2-list li.depth2-item a.depth2-tit {
    display: block;
    width: 100%;
    border: 1px solid #fff;
    border-bottom: 1px solid #003dad;
    box-sizing: border-box;
    font-weight: 500;
    padding: 0.625rem 1.125rem;
    /*border-radius:4px;*/
    background-color: #fff;
    color: #003dad;
    font-size: 1.8rem;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap ol.depth2-list li.depth2-item a.depth2-tit:hover {
    background-color: #003dad;
    color: #fff;
    border: 1px solid #003dad;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap ol.depth2-list li.depth2-item {
    width: 19.6%;
    margin-bottom: 1.875rem;
    padding: 0 1.8rem;
    box-sizing: border-box;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap ol.depth2-list li.depth2-item .depth3-wrap ol {
    padding: 0.625rem
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap ol.depth2-list li.depth2-item .depth3-wrap ol li.depth3-item a.depth3-tit {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap ol.depth2-list li.depth2-item .depth3-wrap ol li.depth3-item a.depth3-tit:hover {
    color: #000;
    font-weight: 500;
}

.gnb .wrap ul > li.depth1-item .depth-box .in .depth2-wrap ol.depth2-list li.depth2-item .depth3-wrap ol li.depth3-item a.depth3-tit::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #003dad;
    border-radius: 3px;
    margin-right: 0.625rem;
}

/*GNB Mobile*/
.m-gnb {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    right: -100%;
    top: 0;
    transition: all 0.5s;
    background-color: #f2f2f2;
    z-index: 9999;
    border-left: 1px solid #dddddd;
    overflow-y: auto;
    font-size: 1.4rem;
}

.m-gnb .wrap {
    position : relative;
    width: 100%;
    padding: 0;
}

.m-gnb .m-gnb-top {
    display: none;
    height: 6rem;
    background-color: #fff;
    border-bottom: 1px solid #dddddd;
    padding: 0 1.5rem;
}

.m-gnb .m-gnb-top .m-lang-select {
    position: relative;
    display: flex;
    align-items: center;
}

.m-gnb .m-gnb-top .m-lang-select button.lang-button {
    position: relative;
    display: flex;
    width: 144px;
    align-items: center;
    justify-content: space-between;
    height: 37px;
    border: 1px solid #dddddd;
    padding: 0 15px;
    color: #555555;
    background-color: transparent;
    text-align: left;
    border-radius: 3px;
}

.m-gnb .m-gnb-top .m-lang-select button.lang-button::after {
    content: "";
    display: block;
    width: 9px;
    height: 6px;
    background-image: url(../images/select_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(0deg);
    transition: transform 0.5s;
}

.m-gnb .m-gnb-top .m-lang-select button.lang-button.on::after {
    transform: rotate(180deg);
    transition: transform 0.5s;
}

.m-gnb .m-gnb-top .m-lang-select button.golink {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    width: 37px;
    border-radius: 4px;
    margin-left: 4px;
}

.m-gnb .m-gnb-top .m-lang-select .lang-option {
    display: none;
    position: absolute;
    top: 37px;
    width: 144px;
    background-color: #fff;
    z-index: 2;
    border: 1px solid #dddddd;
    border-top: 0;
}

.m-gnb .m-gnb-top .m-lang-select .lang-option ul li {
    border-bottom: 1px solid #dddddd;
}

.m-gnb .m-gnb-top .m-lang-select .lang-option ul li:last-child {
    border-bottom: 0;
}

.m-gnb .m-gnb-top .m-lang-select .lang-option ul li a {
    display: flex;
    padding: 5px 10px;
    font-size: 1.4rem;
    align-items: center;
    box-sizing: border-box;
}

.m-gnb .m-gnb-top .m-lang-select .lang-option ul li a:hover {
    background-color: #f2f2f2;
}

.m-gnb .m-gnb-top button.m-gnb-close {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 0;
    text-indent: -999999em;
}

.m-gnb .m-gnb-top button.m-gnb-close::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 60%;
    height: 0.3rem;
    border-radius: 0.3rem;
    background-color: #000;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.m-gnb .m-gnb-top button.m-gnb-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 60%;
    height: 0.3rem;
    border-radius: 0.3rem;
    background-color: #000;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.m-gnb ul li.depth1-item a.depth1 {
    position: relative;
    display: block;
    width: 140px;
    height: 4.5rem;
    box-sizing: border-box;
}

.m-gnb ul li.depth1-item a.depth1 span {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
    font-weight: 600;
}

.m-gnb ul li.depth1-item.on a.depth1 span {
    background-color: #003dad;
    color: #fff;
    border-right: 5px solid #17238f
}

.m-gnb ul li.depth1-item .depth-box {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 140px);
}

.m-gnb ul li.depth1-item.on .depth-box {
    display: block;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item .depth2-tit {
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 500;
    height: 4.5rem;
    padding: 0 1rem;
    box-sizing: border-box;
    background-color: #fff;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth2-tit {
    font-weight: 600;
    color: #001b50;
    background-color: #f3f6fc;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item .depth3-wrap {
    display: none;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap {
    display: block;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol {
    padding: 0 2rem;
    background-color: #fff;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol li.depth3-item {
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol li.depth3-item:last-child {
    margin-bottom: 0;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol li.depth3-item a.depth3-tit {
    position: relative;
    display: block;
    padding: 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 500;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol li.depth3-item a.depth3-tit::before {
    content: "-";
    margin-right: 0.5rem;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol li.depth3-item.on a.depth3-tit {
    font-weight: 600;
    color: #000;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol li.depth3-item.on a.depth3-tit::after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background-color: #005eb2;
    opacity: 0.1;
    position: absolute;
    bottom: 4px;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol li.depth3-item .depth4-wrap ol {
    padding: 0 1rem;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol li.depth3-item .depth4-wrap ol li.depth4-item a.depth4-tit {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    padding: 0.25rem 0;
}

.m-gnb ul li.depth1-item.on .depth-box .depth2-wrap .depth2-list .depth2-item.on .depth3-wrap ol li.depth3-item .depth4-wrap ol li.depth4-item a.depth4-tit::before {
    content: "";
    display: block;
    width: 2px;
    height: 2px;
    background-color: #999;
    margin-right: 0.4rem;
}

#lnb {
    position: relative;
    width: 225px;
    padding-top: 25px;
}

#lnb h2 {
    position: relative;
    width: 100%;
    height: 135px;
    margin-bottom: 10px;
}

#lnb h2 span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #003dad;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 500;
    border-radius: 40px;
    border-bottom-left-radius: 0;
    z-index: 1;
    background-image: url(../images/h3_wave.png);
    background-repeat: no-repeat;
}

#lnb h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 10px;
    background-color: #0c82e9;
    z-index: 0;
    border-radius: 40px;
    border-bottom-left-radius: 0;
}

#lnb .lnb-menus {
    border: 1px solid #dddddd;
    border-bottom: 0;
    width: 100%;
    height: auto;
}

#lnb .lnb-menus ul.menus li.depth-item a.lnb-depth1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    border-bottom: 1px solid #dddddd;
    padding: 0 20px;
    font-size: 1.5rem;
    color: #555555;
}

#lnb .lnb-menus ul.menus li.depth-item a.lnb-depth1::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(../images/depth_off.png);
    background-repeat: no-repeat;
    background-position: center;
}

#lnb .lnb-menus ul.menus li.depth-item a.lnb-depth1.no-depth::after {
    display: none;
}

#lnb .lnb-menus ul.menus li.depth-item a.lnb-depth1.on {
    border-bottom: 3px solid #003c75;
    color: #003c75;
    font-weight: 500;
}

#lnb .lnb-menus ul.menus li.depth-item a.lnb-depth1.on::after {
    background-image: url(../images/depth_on.png);
}

#lnb .lnb-menus ul.menus li.depth-item a.lnb-depth1.no-depth.on::after {
    background-image: none;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 {
    display: none;
    border-bottom: 1px solid #dddddd;
    background-color: #f6f9ff;
    padding: 20px;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2.on {
    display: block;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li {
    margin-bottom: 15px;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li:last-child {
    margin-bottom: 0;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li a.lnb-depth2 {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    line-height: 1;
    color: #555555;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li a.lnb-depth2.on {
    color: #003c75;
    text-decoration: underline;
    font-weight: 500;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li a.lnb-depth2::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #727274;
    margin-right: 5px;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li a.lnb-depth2.on::before {
    background-color: #003c75;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li a.lnb-depth2:hover {
    color: #003c75;
    text-decoration: underline;
    font-weight: 500;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li a.lnb-depth2:hover::before {
    background-color: #003c75;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li .depth3 {
    padding: 5px 10px;
    margin-top: 8px;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li .depth3 ul li {
    margin-bottom: 5px;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li .depth3 ul li:last-child {
    margin-bottom: 0;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li .depth3 ul li .lnb-depth3 {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #555555;
}

#lnb .lnb-menus ul.menus li.depth-item .depth2 ul li .depth3 ul li .lnb-depth3::before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background-color: #555555;
    margin-right: 5px;
}

.list-pagination {
    display:flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 40px 0;
}

.list-pagination.pc {
    display:flex;
}

.list-pagination.mobile {
    display:none;
}

.list-pagination .page-control {
    display: flex
}

.list-pagination .page-control a {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #dddddd;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 0;
}

.list-pagination .page-control a.first-page {
    border-right: 0;
}

.list-pagination .page-control a.first-page::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/list_prev_end.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.list-pagination .page-control a.prev-page::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/list_prev.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.list-pagination .page-number {
    display: flex;
    align-items: center;
    vertical-align: top;
    padding: 0 5px
}

.list-pagination .page-number a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 40px;
    height: 40px;
    overflow: hidden;
    text-align: center;
    color: #444;
    border: 1px solid #ddd;
    border-left: 0;
    box-sizing: border-box;
}

.list-pagination .page-number a span {
    font-weight: 400;
}

.list-pagination .page-number a:first-of-type {
    border-left: 1px solid #dddddd;
}

.list-pagination .page-number a.active {
    font-weight: 500;
    border: none;
    background-color: #292e42;
}

.list-pagination .page-number a.active span {
    color: #ffffff;
    padding: 0 2px 2px 2px;
    border-bottom: 1px solid #ffffff
}

.list-pagination .page-number a:hover {
    font-weight: 500;
    border: none;
    background-color: #292e42;
}

.list-pagination .page-number a:hover span {
    color: #ffffff;
    padding: 0 2px 2px 2px;
    border-bottom: 1px solid #ffffff
}

.list-pagination .page-control a.last-page {
    border-left: 0;
}

.list-pagination .page-control a.last-page::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/list_next_end.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.list-pagination .page-control a.next-page::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/list_next.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

#footer .ft-top {
    height: 70px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

#footer .ft-top .wrap {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

#footer .ft-top .wrap .ft-links ul {
    display: flex;
}

#footer .ft-top .wrap .ft-links ul li {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}

#footer .ft-top .wrap .ft-links ul li::before {
    content: "";
    position: absolute;
    right: -0.5px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 12px;
    background-color: #8e8e8e;
}

#footer .ft-top .wrap .ft-links ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

#footer .ft-top .wrap .ft-links ul li:last-child::before {
    display: none;
}

#footer .ft-top .wrap .ft-links ul li a {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
    color: #555555;
}

/* #footer .ft-top .wrap .ft-links ul li:nth-child(4) a { font-weight:500; color:#000; } */
/* #footer .ft-top .wrap .ft-links ul li a.privacy { font-weight:500; color:#000; } */
#footer .ft-top .wrap .ft-links ul li a.organization {
    font-weight: 500;
    color: #000;
}

#footer .ft-top .wrap .ft-sns ul {
    display: flex;
}

#footer .ft-top .wrap .ft-sns ul li {
    margin-right: 5px;
}

#footer .ft-top .wrap .ft-sns ul li:last-child {
    margin-right: 0;
}

#footer .ft-top .wrap .ft-sns ul li a {
    display: block;
    font-size: 0;
    text-indent: -9999999em;
    width: 40px;
    height: 40px;
    border-radius: 50%;
   /* background-color: #999999; */
    background-repeat: no-repeat;
    background-position: center;
}

#footer .ft-top .wrap .ft-sns ul li a.blog {
    background:url(../images/ft_blog.png) no-repeat 50% 50%
}

#footer .ft-top .wrap .ft-sns ul li a.insta {
    background:url(../images/ft_insta.png) no-repeat 50% 50%
}

#footer .ft-top .wrap .ft-sns ul li a.youtube {
    background:url(../images/ft_youtube.png) no-repeat 50% 50%
}

#footer .ft-top .wrap .ft-sns ul li a.facebook {
    background:url(../images/ft_facebook.png) no-repeat 50% 50%
}

#footer .ft-top .wrap .ft-sns ul li a.twitter {
    background:url(../images/main/sns_twitter_new.png) no-repeat 50% 50%
}

#footer .ft-bottom {
    background-color: #f3f3f3;
    padding: 25px 0 80px 0;
}

#footer .ft-bottom .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer .ft-bottom .ft-left {
    display: flex;
    align-items: center;
}

#footer .ft-bottom .ft-logo {
    width: 88px;
    height: 49px;
}

#footer .ft-bottom .ft-logo img {
    width: 100%;
}

#footer .ft-bottom .ft-txt {
    margin-left: 25px;
}

#footer .ft-bottom .ft-txt p {
    font-size: 1.4rem;
    line-height: 2.3rem;
    color: #555555;
    font-weight: 300;
}

#footer .ft-bottom .ft-right {
    display: flex;
    align-items: center;
}

#footer .ft-bottom .ft-right .ft-link-select {
    display: flex;
    width: 236px;
    height: 40px;
    margin-left: 7px;
}

#footer .ft-bottom .ft-right .ft-link-select:first-of-type {
    margin-left: 0;
}

#footer .ft-bottom .ft-right .ft-link-select select {
    width: calc(100% - 45px);
    height: 100%;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    border-right: 0;
    font-size: 1.4rem;
    color: #888888;
    padding: 0 14px;
}

#footer .ft-bottom .ft-right .ft-link-select button {
    border: 1px solid #dddddd;
    background-color: #f3f3f3;
    color: #333333;
    font-size: 1.4rem;
    font-weight: 500;
    width: 45px;
}

#footer .ft-bottom .ft-right .accessibility-mark {
    width: 89px;
    height: 62px;
    margin-left: 30px;
}

#footer .ft-bottom .ft-right .accessibility-mark a {
    display: block;
    width: 100%;
    height: 100%;
}

#footer .ft-bottom .ft-right .accessibility-mark a img {
    width: 100%;
    height: 100%;
}

/* Layer Popup */
.layer_popup_wrap {
    display: none;
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
}

.layer_popup_wrap.show {
    display: block;
    z-index: 10;
}

.layer_popup_wrap.main {
    left: 0;
    width: 100%;
}

.layer_popup_wrap.main.show {
    background-color: rgba(0,0,0,0.2);
}

.layer_popup_wrap .layer_popup {
    height: 100%;
    width: 100%;
    position: absolute;
    /* padding: 50px; */
    box-sizing: border-box;
}

.layer_popup_wrap .layer_popup .layer_popup_window {
    display: none;
    width: 100%;
    max-width: 800px;
    height: 100%;
    max-height: 700px;
    margin: 0px auto;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.layer_popup_wrap .layer_popup .layer_popup_window.short {
    max-height: 600px;
}

.layer_popup_wrap .layer_popup .layer_popup_window.show {
    display: block;
}

.layer_popup_wrap .layer_popup .layer_popup-bg {
    background-color: #020202;
    opacity: 0.5;
    width: 100%;
    height: 9999px;
    position: absolute;
}

/* Layer Popup Simple */
.layer_popup_wrap .layer_popup .layer_popup_simple {
    display: none;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    margin: 0px auto;
}

.layer_popup_wrap .layer_popup .layer_popup_simple.show {
    display: table;
    table-layout: fixed;
    padding: 0 15px;
    box-sizing: border-box;
}

.layer_popup_wrap .layer_popup .layer_popup_simple .popup_box_wrap {
    display: table-cell;
    width: 100%;
    max-width: 1400px;
    vertical-align: middle;
}

.layer_popup_wrap .layer_popup .layer_popup_simple .popup_box_wrap .popup_box {
    position: relative;
    width: 100%;
    max-height: 100%;
    margin: 0 auto;
    border: 1px solid #666;
    box-sizing: border-box;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.layer_popup_wrap .layer_popup .layer_popup_simple .popup_box_wrap .popup_box .popup_top {
    background-color: #f2f2f2;
    color: #000;
    font-size: 1em;
    line-height: 1;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    font-weight: 500;
    letter-spacing: -0.05em;
    box-sizing: border-box;
}

.layer_popup_wrap .layer_popup .layer_popup_simple .popup_box_wrap .popup_box .popup_content {
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.layer_popup_simple .popup_box_wrap .popup_box .title_popup_box {
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    font-family: "NanumSquare", "NanumGothic", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #00a6ff;
    word-break: keep-all;
}

.layer_popup_simple .popup_box_wrap .popup_box .poup_box_content {
    padding-top: 15px;
}

.layer_popup_simple .popup_box_wrap .popup_box .poup_box_content * {
    word-break: keep-all;
}

.layer_popup_simple .popup_box_wrap .popup_box .popup_1day_close {
    margin-top: 20px;
    text-align: center;
}

.layer_popup_simple .popup_box_wrap .popup_box .close_popup {
    position: absolute;
    right: 15px;
    top: 6px;
    display: block;
    width: 22px;
    height: 22px;
    overflow: hidden;
    text-indent: -9999px;
}

.layer_popup_simple .popup_box_wrap .popup_box .close_popup:before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 10px;
    height: 2px;
    background-color: #000;
    transform: translate3D(0,0px,0) rotate(-45deg);
}

.layer_popup_simple .popup_box_wrap .popup_box .close_popup:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 10px;
    height: 2px;
    background-color: #000;
    transform: translate3D(0,0px,0) rotate(45deg);
}

.layer_popup_simple .form-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.layer_popup_simple .form-btns button {
    margin-right: 10px;
}

.layer_popup_simple .form-btns button:last-of-type {
    margin-right: 0;
}

.layer_popup_wrap .layer_popup .layer_popup_common {
    display: none;
    width: auto;
    min-width: 720px;
    max-width: 960px;
    height: 100%;
    margin: 0px auto;
}

.layer_popup_wrap .layer_popup .layer_popup_common.show {
    display: table;
    table-layout: fixed;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box {
    position: relative;
    width: 100%;
    max-height: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    padding: 35px;
    box-sizing: border-box;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .layer-tit {
    font-size: 18px;
    letter-spacing: -0.025em;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #000;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .layer-infotxt {
    margin-top: 35px;
    border: 1px solid #ddd;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f9f9f9
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .layer-infotxt p {
    text-align: center;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.025em;
    color: #666;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .layer-infotxt p a {
    color: #00a6ff;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .layer-infotxt p a:visited {
    color: #00a6ff;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .layer-infotxt ul li {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
    color: #666;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .layer-infotxt ul li:last-child {
    margin-bottom: 0;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .close_popup {
    position: absolute;
    right: 15px;
    top: 10px;
    display: block;
    width: 38px;
    height: 38px;
    overflow: hidden;
    text-indent: -9999px;
    background-color: #fff;
    border-radius: 50%;
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .close_popup:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #333;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.layer_popup_wrap .layer_popup .layer_popup_common .popup_box_wrap .popup_box .close_popup:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #333;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

/*error page*/
#error-wrap {
    width: 1200px;
    margin: 0 auto;
}

#error-wrap .error-box {
    padding: 80px 0;
}

#error-wrap .error-box .error-img {
    font-size: 10rem;
    font-weight: 600;
    text-align: center;
    color: #003dad
}

#error-wrap .error-box strong {
    display: block;
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.05em;
}

#error-wrap .error-box p {
    text-align: center;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

#error-wrap .error-box .error-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

#error-wrap .error-box .error-btns button.beforepage {
    font-size: 1.5rem;
    height: 35px;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 4px;
}

#error-wrap .error-box .error-btns a.homebtns {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0 10px;
    margin-left: 10px;
    box-sizing: border-box;
    background-color: #0553ac;
    color: #fff;
    border-radius: 4px;
}

/*LNB 있는 에러*/
.contents #error-wrap {
    width: 100%;
}

/*로딩*/
.loading {
    background: url(../images/loading1.gif);
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1320px) {
    .wrap {
        width:100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 1240px) {
    #error-wrap {
        width:100%;
        padding: 0;
    }

    #error-wrap .error-box {
        padding: 30px 15px;
    }

    #error-wrap .error-box .error-img {
        font-size: 8rem;
    }

    #error-wrap .error-box strong {
        font-size: 3rem;
    }

    #error-wrap .error-box p {
        font-size: 1.5rem;
    }

    #footer .ft-top {
        height: auto;
    }

    #footer .ft-top .wrap {
        display: block;
        padding: 15px;
        box-sizing: border-box;
    }

    #footer .ft-top .wrap .ft-links ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    #footer .ft-top .wrap .ft-sns {
        margin-top: 15px;
    }

    #footer .ft-top .wrap .ft-sns ul {
        justify-content: center;
    }

    #footer .ft-bottom .wrap {
        flex-wrap: wrap;
    }

    #footer .ft-bottom .ft-left {
        width: 100%;
        justify-content: center;
    }

    #footer .ft-bottom .ft-right {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 25px;
    }

    #footer .ft-bottom .ft-right .accessibility-mark {
    }
}

@media (max-width: 1024px) {
    .header-top .wrap {
        position:relative;
    }

    .header-top .wrap #logo {
        margin: 0 auto;
        max-width: 200px;
    }

    .header-top .wrap .m-search {
        display: block;
    }

    .header-top .wrap .header-search {
        display: none;
        position: absolute;
        left: 0;
        top: 80px;
        padding: 20px 0;
        z-index: 9;
        width: 100%;
        background-color: #ffffff;
        border-bottom: 1px solid #dddddd;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .header-top .wrap .header-search .search-wrap {
        margin: 0 auto;
    }

    .header-top .wrap .header-utils {
        display: none;
    }

    .header-top .wrap .m-gnb-open {
        display: block;
    }

    .gnb {
        display: none
    }

    .m-gnb {
        display: block;
    }

    .m-gnb .m-gnb-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .m-gnb.open {
        right: 0;
        transition: all 0.5s;
    }
}

@media (max-width: 960px) {
    .header-top {
        height:60px;
    }

    .header-top .wrap .header-search {
        top: 60px;
    }

    #footer .ft-bottom {
        background-color: #f3f3f3;
        padding: 25px 0;
    }
}

@media (max-width: 768px) {
    
    #footer .ft-top .wrap .ft-links ul li {
        padding-right:10px;
        margin-right: 10px
    }

    #footer .ft-bottom .ft-right .ft-link-select {
        width: calc(50% - 3.5px);
    }

    #footer .ft-bottom .ft-right .accessibility-mark {
        display: none;
        margin: 15px auto 0 auto;
    }

    .list-pagination .page-control a {
        width: 30px;
        height: 30px;
    }

    .list-pagination .page-control a.first-page::before, .list-pagination .page-control a.last-page::before {
        background-size: 9px 8px;
    }

    .list-pagination .page-control a.next-page::before, .list-pagination .page-control a.prev-page::before {
        background-size: 5px 8px;
    }

    .list-pagination .page-number a {
        width: 30px;
        height: 30px;
    }

    .list-pagination.pc {
        display:none;
    }

    .list-pagination.mobile {
        display:flex;
    }

    /* .list-pagination .page-number { padding:0 20px; }
    .list-pagination .page-number a { display:none; border:none;}
    .list-pagination .page-number a:last-child { display:flex; width:auto; }
    .list-pagination .page-number a.active { display:flex; width:auto; background:transparent; color:#000; border:none; }
    .list-pagination .page-number a.active span { color:#000; padding:0;  border:0;}
    .list-pagination .page-number a.active::after { content:"/"; display:inline; padding:0 2px;}
    .list-pagination .page-number a:hover { background:transparent; color:#000; border:none } */
}

@media (max-width: 640px) {
    html {
        font-size:8.6px
    }

    #error-wrap .error-box .error-img {
        font-size: 6rem;
    }

    #error-wrap .error-box strong {
        font-size: 2rem;
    }

    #error-wrap .error-box p {
        font-size: 1.3rem;
    }

    #error-wrap .error-box .error-btns button.beforepage {
        font-size: 1.2rem;
    }

    #error-wrap .error-box .error-btns a.homebtns {
        font-size: 1.2rem;
    }

    #footer .ft-bottom .ft-right {
        display: block;
    }

    #footer .ft-bottom .ft-right .ft-link-select {
        width: 100%;
        margin-left: 0;
        margin-bottom: 8px;
    }

    #footer .ft-bottom .ft-right .ft-link-select:last-of-type {
        margin-bottom: 0;
    }

    #footer .ft-bottom .ft-left {
        display: block;
        margin-top: 10px;
    }

    #footer .ft-bottom .ft-logo {
        margin: 0 auto;
    }

    #footer .ft-bottom .ft-txt {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }
}


.root_daum_roughmap .wrap_btn_zoom button:focus { outline-offset: -2px; outline:2px solid #ff0000; }