@charset "utf-8";

#top_layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
}

#top_layout.on:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e9e9e9;
    position: absolute;
    left: 0;
    top: 110px;
    z-index: 10;
}

#top_layout .top_wrap {
    position: absolute;
    height: 110px;
}

#top_layout .top_wrap #logo {
    position: absolute;
    top: 42px;
    left: 5%;
    width: 363px;
    height: 37px;
    z-index: 10;
}

#top_layout .top_wrap #logo > a {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    overflow: visible;
}

#top_layout .top_wrap #logo > .f-logo {
    display: block;
    background: url(../../images/home/main_logo.png) no-repeat;
    width: 226px;
    height: 37px;
    /*background-size: 60%;
    width: 363px;
    height: 37px;*/
    margin-left: 10px;
    position: relative;
}

#gnb_layout.open #logo > a.f-logo {
    background: url(../../images/home/main_logo.png) no-repeat; /* 메뉴 오픈 시 컬러 로고 */
    background-size: contain;
}

#top_layout .top_wrap .utile_wrap {
    position: absolute;
    top: 45px;
    right: 5%;
    z-index: 10;
}

#top_layout .top_wrap .utile_wrap > li {
    float: left;
    margin-right: 15px;
}

#top_layout .top_wrap .utile_wrap > li.site-link {
    display: inline-block;
}

#top_layout .top_wrap .utile_wrap > li.site-link a {
    font-size: 16px;
    color: #fff;
    line-height: 130%;
    font-weight: 500;
}

#top_layout .top_wrap .utile_wrap > li.site-link a:hover,
#top_layout .top_wrap .utile_wrap > li.site-link a:focus,
#top_layout .top_wrap .utile_wrap > li.site-link a:active {
    border-bottom: 1px solid #000000;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link {
    margin-left: 10px;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .btn-allmenu {
    display: block;
    width: 16px;
    height: 14px;
    background: transparent;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .btn-allmenu .hamburger {
    display: flex;
    align-self: center;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .btn-allmenu .hamburger span {
    align-self: flex-end;
    height: 3px;
    width: 100%;
    background: #FFF;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .btn-allmenu .hamburger .meat {
    width: 100%;
    transition: all 200ms ease-in-out;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .btn-allmenu:hover .hamburger .meat,
#top_layout .top_wrap .utile_wrap > li.allmenu-link .btn-allmenu:focus .hamburger .meat {
    width: 100%;
}

#top_layout .top_wrap .utile_wrap > li.pc {
    display: inline-block;
}

#top_layout .top_wrap .utile_wrap > li.pc .btn-allmenu {
    font-size: 16px;
    color: #222;
}

#top_layout .top_wrap .utile_wrap > li.mo {
    display: none;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .allmenu {
    display: block;
    width: 16px;
    height: 14px;
    background: transparent;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .allmenu .hamburger {
    display: flex;
    align-self: center;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .allmenu .hamburger span {
    align-self: flex-end;
    height: 3px;
    width: 100%;
    background: #fff;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .allmenu .hamburger .meat {
    width: 100%;
    transition: all 200ms ease-in-out;
}

#top_layout .top_wrap .utile_wrap > li.allmenu-link .allmenu:hover .hamburger .meat,
#top_layout .top_wrap .utile_wrap > li.allmenu-link .allmenu:focus .hamburger .meat {
    width: 100%;
}

#top_layout .top_wrap .utile_wrap > li.pc .allmenu {
    font-size: 16px;
    color: #222;
}

#gnb_layout {
    position: relative;
    height: 64px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    overflow: hidden;
    width: 100%;
    color: #000;
    margin: 0;
    z-index: 9;
}

#gnb_layout.open {
    position: relative; /* 자식 절대 위치 요소 기준 */
    z-index: 10; /* 다른 요소보다 위에 뜨도록 기본 설정 */
    background-color: #fff;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

#gnb_layout.open:after {
    position: absolute;
    top: 112px;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #bebebe;
    background: #fff;
    content: "";
}

#gnb_layout #gnb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 64px;
    z-index: 2;
}

#gnb_layout #gnb .layout {
    position: relative;
    padding: 0;
    text-align: center;
    z-index: 3;
    height: 110px;
}

#gnb_layout.open #gnb .fl-logo {
    position: absolute;
    display: inline-block; /* 인라인 요소라서 블록처럼 영역을 가짐 */
    top: 42px;
    left: 5%;
    margin-left: 9px;
    width: 226px; /* 로고 이미지 가로 크기 */
    height: 37px; /* 로고 이미지 세로 크기 */
    background: url("../../images/home/sub_logo.png") no-repeat center center;
    text-indent: -9999px; /* 텍스트 숨기기 (대체 텍스트는 sr-only로 제공) */
    overflow: hidden;
    z-index: 1000; /* 최상단 표시 */
}

#gnb_layout #gnb .layout:after {
    content: "";
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100vh;
    /*background-color: #fff;*/
    min-height: 300px;
    z-index: 2;
    visibility: visible;
}

#gnb_layout .depth1_ul {
    display: inline-block;
    height: 100%;
    float: none;
    margin-left: 70px;
}

#gnb_layout .depth1_ul:after {
    display: block;
    content: "";
    clear: both;
}

#gnb_layout .depth1_ul > li {
    display: inline-block;
    margin: 0 10px; /*대메뉴사이간격조절*/
    vertical-align: top;
}

#gnb_layout .depth1_ul > li.on span {
    font-weight: 800;
    color: #000;
}

#gnb_layout .depth1_ul > li.on span::before {
    opacity: 1;
}

#gnb_layout .depth1_ul > li > a {
    position: relative;
    display: block;
    height: 100%;
    transition: all 0.3s;
    text-align: center;
}

#gnb_layout .depth1_ul > li > a span {
    display: block;
    height: 100%;
    padding: 0 40px;
    line-height: 110px;
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    font-family: "GmarketSansMedium", sans-serif;
}

#gnb_layout.open .depth1_ul > li > a span {
    color: #000; /* open 상태에서 글자색 검정 */
}

/* 현재 선택된 메뉴 (active) 글자색 검정 */
#gnb_layout .depth1_ul > li.on > a span {
    color: #000; /* 선택된 메뉴 글자색 검정 */
}

/* 마우스 오버 시 글자색 검정 */
#gnb_layout .depth1_ul > li > a:hover span {
    color: #000; /* hover 시 글자색 검정 */
}

#gnb_layout .depth1_ul > li > a span:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #0068b7;
    content: "";
    opacity: 0;
    z-index: 999;
}

#gnb_layout .depth1_ul > li > a.current span,
#gnb_layout .depth1_ul > li > a:hover span,
#gnb_layout .depth1_ul > li > a:focus span {
    font-weight: 600;
    color: #000;
}

#gnb_layout .depth1_ul > li > a.current span::before,
#gnb_layout .depth1_ul > li > a:hover span::before,
#gnb_layout .depth1_ul > li > a:focus span::before {
    opacity: 1;
}

#gnb_layout .depth1_ul.n1 > a span:before {
    display: none;
}

#gnb_layout .depth1_ul .item {
    display: none;
    opacity: 0;
    position: absolute;
    top: 110px;
    left: 0px;
    z-index: 100;
    width: 100%;
    margin: 0;
    padding: 0 0 0 500px;
    text-align: left;
    border-top: 1px solid #d8e0e9; /*20251028추가*/
}

#gnb_layout .depth1_ul .item .gnb-title {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 5px;
    height: auto;
    padding: 60px 40px 0 100px;
    width: 450px;
    text-align: left;
    box-sizing: border-box;
    background-image: url(../../images/home/menu_back1.jpg);
}

#gnb_layout .depth1_ul .item .gnb-title:before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    content: "";
    width: 1px;
    height: auto;
    background: #ddd;
}

#gnb_layout .depth1_ul .item .gnb-title .bg-text {
    display: block;
    position: absolute;
    top: 245px;
    right: 0px;
    background-position: left 100px center;
    background-repeat: no-repeat;
    background-image: url(../../images/home/back_txt.png);
    width: 100%;
    height: 20px;
}

#gnb_layout .depth1_ul .item .gnb-title .sub-tit {
    display: block;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    word-break: break-all;
    word-wrap: break-word;
}

#gnb_layout .depth1_ul .item .gnb-title strong {
    position: relative;
    display: block;
    overflow: hidden;
    color: #fff;
    font-family: "SCoreDream";
    font-size: 36px;
    line-height: 130%;
    font-weight: 800;
    margin-bottom: 10px;
    max-height: 60px;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box !important;
    word-break: break-all;
    word-wrap: break-word;
}

#gnb_layout .depth1_ul .item .gnb-title p {
    position: relative;
    margin: 0 0 10px 0;
    line-height: 20px;
    font-weight: 400;
    z-index: 1;
    line-height: 1.2;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: normal;
    display: -webkit-box !important;
    word-break: break-all;
    word-wrap: break-word;
}

#gnb_layout .depth1_ul .item .gnb-title .sub-tit,
#gnb_layout .depth1_ul .item .gnb-title p {
    font-size: 16px;
    line-height: 140%;
    font-weight: 500;
    color: #eaebec;
}

#gnb_layout .depth1_ul .item.on {
    background-color: #fff;
}

#gnb_layout .depth1_ul .current + .item {
    display: block !important;
}

#gnb_layout .depth2_ul {
    float: left;
    position: relative;
    top: 0;
    min-height: 300px;
    width: 100%;
    height: 100% !important;
    padding: 40px 0;
    text-align: left;
    border-right: 1px solid #ddd;
    max-width: 900px;
}

#gnb_layout .depth2_ul > li {
    display: block;
    float: left;
    margin: 0;
    text-align: left;
}

#gnb_layout .depth2_ul > li > a {
    display: block;
    position: relative;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    padding: 20.5px 16px;
    border: 1px solid #ddd;
    min-width: 160px;
    text-align: left;
    margin-right: 20px;
    margin-bottom: 10px;
}

#gnb_layout .depth2_ul > li > a span {
    display: inline-block;
    position: relative;
    color: #000000;
    font-size: 18px;
    vertical-align: top;
    font-weight: 600;
    line-height: 1.2;
    word-break: keep-all;
}

#gnb_layout .depth2_ul > li > a:hover span,
.depth2_ul > li > a:focus span,
.depth2_ul > li > a.on span {
    color: #0068b7;
}

#gnb_layout .depth2_ul > li > a:hover:before,
.depth2_ul > li > a:focus:before,
.depth2_ul > li > a.on:before {
    background-color: #0068b7;
}

#gnb_layout .depth2_ul > li .depth3_ul {
    display: block;
    padding: 0;
    margin: -20px 0 0;
    padding: 0 17px;
}

#gnb_layout .depth2_ul > li .depth3_ul > li {
    position: relative;
    margin: 6px 0;
}

#gnb_layout .depth2_ul > li .depth3_ul > li > a {
    display: block;
    position: relative;
    padding-left: 12px;
    width: 100%;
}

#gnb_layout .depth2_ul > li .depth3_ul > li > a:before {
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #b1b1b1;
}

#gnb_layout .depth2_ul > li .depth3_ul > li > a > span {
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #444444;
    letter-spacing: -1px;
    line-height: 1.3;
}

#gnb_layout .depth2_ul > li .depth3_ul > li > a:hover > span,
#gnb_layout .depth2_ul > li .depth3_ul > li > a:focus > span {
    color: #0068b7;
}

#gnb_layout .depth2_ul > li .depth3_ul > li > a:hover:before,
#gnb_layout .depth2_ul > li .depth3_ul > li > a:focus:before {
    background: #0068b7;
}

.gnb-banner {
    float: left;
    top: 0;
    right: 0;
    color: #222;
    padding: 30px 0px 0px 15px;
}

.banner-in {
    background: #f8f3f5 url(../../images/home/i_manualbook.png) left 10px center no-repeat;
    border-radius: 12px;
    padding: 20px 10px 20px 50px;
}

.banner-in strong {
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
}

#top_layout.open #gnb_layout,
#top_layout.on #gnb_layout {
    border-bottom: 1px solid #d8e0e9;
    background-color: #fff;
}

#gnb_layout.open .depth1_ul > li .depth2_ul {
    opacity: 1;
    transform: translateX(0);
}

#top_layout.on + .gnb_bg,
#top_layout.open + .gnb_bg {
    display: block;
    z-index: 99;
}

#top_layout + .gnb_bg {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    content: "";
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
}

/* mobile menu */
body.modal-open {
    height: 100%;
    overflow: hidden;
}

.modal-open #top_layout .top_wrap .utile_wrap li,
.modal-open #top_layout .top_wrap .utile_wrap li.box.mo {
    display: none;
}

#mobile-menu {
    overflow: visible;
    padding: 0 !important;
}

#mobile-menu .modal-dialog {
    transform: translate(25%, 0);
    margin: 0;
    width: 100%;
    max-width: 330px;
    min-width: 330px;
    float: right;
    height: 100%;
}

#mobile-menu.in .modal-dialog,
#mobile-menu.show .modal-dialog {
    transform: translate(0px, 0);
}

#mobile-menu .modal-dialog .modal-content .modal-body {
    position: static;
    height: 100%;
    padding: 0;
    background: #fff;
}

#mobile-menu .modal-dialog .modal-content {
    width: 100%;
    border-radius: 0;
    border: 0 none;
    height: 100%;
}

#mobile-menu .modal-dialog .modal-content .topUtile {
    height: 50px;
    padding: 12px 15px;
    background: #222;
}

#mobile-menu .modal-dialog .modal-content .topUtile ul:after {
    display: block;
    clear: both;
    content: "";
}

#mobile-menu .modal-dialog .modal-content .topUtile ul {
    text-align: right;
    margin-top: 15px;
}

#mobile-menu .modal-dialog .modal-content .topUtile ul li {
    display: inline-block;
    position: relative;
}

#mobile-menu .modal-dialog .modal-content .topUtile > ul > li > a,
#mobile-menu .modal-dialog .modal-content .topUtile ul li > button {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 13px;
    color: #fff;
    line-height: 1.2;
    padding: 0 8px;
    position: relative;
}

#mobile-menu .modal-dialog .modal-content .topUtile > ul > li.mypage > a,
#mobile-menu .modal-dialog .modal-content .topUtile ul li.mypage > button {
    margin-right: 0;
    padding-right: 0;
}

#mobile-menu .modal-dialog .modal-content .topUtile > ul > li:first-child > a:after,
#mobile-menu .modal-dialog .modal-content .topUtile ul li:first-child > button:after {
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background-color: #525050;
    position: absolute;
    top: 3px;
    right: -1px;
}

#mobile-menu .modal-dialog .modal-content .topUtile ul li > a:after {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    content: "";
}

#mobile-menu .modal-dialog .modal-content .modal-body:after {
    display: none;
    content: "";
    position: absolute;
    z-index: 0;
    width: 120px;
    background: #f5f6f8;
    height: 100%;
    top: 120px;
    left: 0px;
    z-index: 0;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul {
    display: inline-block;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: hidden;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 71px);
    margin: 0;
    padding: 17px 40px;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul.show {
    display: block !important;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li {
    float: left;
    width: 100%;
    text-align: left;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li > a {
    display: block;
    position: relative;
    width: 100%;
    padding: 14px 30px 14px 0px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 17px;
    line-height: 1.2;
    box-sizing: border-box;
    z-index: 1;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li > a.ov {
    border-bottom: 2px solid #0068b7;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li > a.ov:before {
    display: none;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li.n8 > a.ov + .depth2_ul {
    display: none !important;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li > a span {
    font-size: 16px;
    vertical-align: middle;
    line-height: 20px;
    color: #666666;
    font-weight: 500;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li > a.ov span {
    color: #0068b7;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li > a:after {
    position: absolute;
    top: 17px;
    right: 10px;
    width: 15px; /* 너비 지정 필요 */
    height: 15px; /* 높이 지정 필요 */
    background: url(../../images/home/m-down.svg) center no-repeat;
    background-size: 15px 15px; /* 아이콘 크기 조정 */
    content: "";
    border-radius: 5px;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li > a.ov:after {
    width: 15px; /* 너비 지정 필요 */
    height: 15px; /* 높이 지정 필요 */
    background: url(../../images/home/m-up.svg) center no-repeat;
    background-size: 15px 15px; /* 아이콘 크기 조정 */
    content: "";
    border-radius: 5px;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul .on .a:before {
    transform: translate(0, -74%) rotate(-136deg);
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li .item {
    display: none;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li .item .gnb-title {
    display: none;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li > a.ov + .depth2_ul {
    display: block;
    border-bottom: 1px solid #e9e9e9;
    border-right: 0;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul {
    display: none;
    width: 100%;
    padding: 12px 0px 5px;
    min-height: auto;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul:before,
#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul:after {
    display: none;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li {
    width: 100%;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li:first-child {
    border: 0;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a {
    display: block;
    position: relative;
    width: 100%;
    padding: 5px 25px 5px 18px;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a.ov {
    color: #fff;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a.ov span {
    color: #0068b7;
    font-weight: 800;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a span {
    color: #666666;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a:before {
    position: absolute;
    left: 6px;
    top: 14px;
    width: 4px;
    height: 4px;
    margin-top: -1.5px;
    background: #b1b1b1;
    border-radius: 50%;
    content: "";
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a.ov span,
#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a:hover span,
#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a:focus span {
    color: #0068b7;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a.ov:before,
#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a:hover:before,
#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a:focus:before {
    background: #0068b7;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul li .depth3_ul {
    padding: 10px 10px 10px 17px;
    margin: 10px 0;
    background-color: #f9f9f9;
    display: none;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul li a.ov + .depth3_ul {
    display: block;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul li .depth3_ul > li {
    padding: 0;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul li .depth3_ul > li > a {
    display: block;
    position: relative;
    padding: 5px 15px 6px 15px;
    font-size: 15px;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul li .depth3_ul > li:last-child a {
    padding-bottom: 5px;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul li .depth3_ul > li > a:before {
    position: absolute;
    left: 0px;
    top: 17px;
    width: 6px;
    height: 2px;
    margin-top: -1.5px;
    background: #666666;
    content: "";
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul li .depth3_ul > li > a span {
    font-size: 15px;
    color: #666;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul li .depth3_ul > li > a:hover span,
#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul li .depth3_ul > li > a:focus span {
    color: #0068b7;
}

#mobile-menu .modal-dialog .modal-content .modal-body .gnb_info {
    display: none;
}

#mobile-menu .modal-dialog .modal-content .modal-body .mobile-close {
    position: absolute;
    left: 20px;
    top: 22px;
    border: 0;
    width: 28px;
    height: 28px;
    font-size: 0;
    text-indent: -9999px;
    background-color: #fff;
    background-image: url("../../images/home/x.svg");
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: center;
    border-radius: 8px;
}

.modal-backdrop.in {
    opacity: 0.8;
}

#mobile-menu .modal-dialog .modal-content .modal-body .depth1_ul > li > a[target="_blank"] span:after,
#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li > a[target="_blank"] span:after,
#mobile-menu .modal-dialog .modal-content .modal-body .depth2_ul > li .depth3_ul > li > a[target="_blank"] > span:after {
    display: none;
}

.layout {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.layout:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}

/* 사이트맵 */
.allmenu_nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background: #f1f6fa url(../../images/home/bg_sitemap.png) top 100px right 100px no-repeat;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

.allmenu_nav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #222;
    display: block;
    transition: 0.3s;
}

.allmenu_nav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 66px;
    margin-left: 50px;
}

.allmenu_nav .tm-menu {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    width: 1500px;
    margin: 0 auto;
}

.allmenu_nav .tm-menu .onedepth-ul {
    max-width: 100%;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li {
    margin-bottom: 38px;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li:before,
.allmenu_nav .tm-menu .onedepth-ul .onedepth-li:after {
    content: "";
    display: table;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li strong {
    transition: color 0.3s;
    float: left;
    display: block;
    font-family: "SCoreDream6";
    font-size: 32px;
    font-weight: 700;
    color: #0068b7;
    width: 180px;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li ul {
    float: none;
    width: auto;
    overflow: hidden;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li:after {
    clear: both;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li ul.one-line {
    padding-top: 16px;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li ul:before,
.allmenu_nav .tm-menu .onedepth-ul .onedepth-li ul:after {
    content: "";
    display: table;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li ul li {
    position: relative;
    float: left;
    width: 150px;
    margin: 5px 0;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li ul li a {
    transition: color 0.3s;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    padding-left: 7px;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li ul li:after {
    content: "";
    display: block;
    width: 1px;
    height: 19px;
    background-color: #ddd;
    position: absolute;
    top: 12px;
    left: 0;
}

.allmenu_nav .tm-menu .onedepth-ul .onedepth-li ul li:first-child:after {
    content: none;
}

@media screen and (max-width: 1200px) {
    #top_layout .top_wrap .utile_wrap > li.pc {
        display: none;
    }

    #top_layout .top_wrap .utile_wrap > li.mo {
        display: inline-block;
    }
}