@charset "utf-8";

@font-face {
    font-family: '나눔 고딕', 'NanumGothic';
    src: url(Gothic.eot);
}

/*layout*/
#divWrapper {
    display: flex;
    flex-direction: column;
    /* height:100vh 는 (1) 콘텐츠가 길면 래퍼 밖으로 넘치고, (2) 모바일에서 100vh 가
       주소창이 숨겨진 상태 높이라 짧은 페이지는 스크롤도 안 되면서 푸터가 주소창
       뒤로 잘린다. 동적 뷰포트 단위(dvh)를 쓰되 미지원 브라우저는 vh 로 폴백. */
    min-height: 100vh;
    min-height: 100dvh;
    word-break: keep-all;
}
#divHeader {
    background: #fff;
    position: relative;
    border: #dcdcdc;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1650px;
    width: 100%;
    height: 104px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
    z-index:100;
}
#divFooter {
    text-align: center;
    color: #8b8b8b;
    padding: 38px 10px;
    font-size: 13px;
    line-height: 1.5;
    background: #e0e4ee;
}
.inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* divHeader */
/* logo */
.header .logo {
    position: absolute;
    left: 10px;
}
.header .logo a {
    display: block;
}
.header .logo img {
    display: block;
    height: 100%;
    object-fit: contain;
}

/* divTopMenu */
#divTopMenu {
    height: 100%;
    margin: 0 25px;
}
#divTopMenu > ul {
    display: flex;
    align-items: center;
    height: 100%;
}
#divTopMenu > ul > li {
    position: relative;
    height: 100%;
}
#divTopMenu > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-weight: 600;
    font-size: 22px;
    color: #111111;
    transition: all 0.2s ease-in-out;
    min-width: 140px;
    box-sizing: border-box;
}
#divTopMenu > ul > li > a:hover {
    text-decoration: none;
    color: #e30038;
}
#divTopMenu > ul > li .depth2 {
    width: 216px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 7px;
    border-radius: 20px;
    border: 1px solid #dcdadb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.10);
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#divTopMenu > ul > li:not(.on) .depth2 {
    opacity: 0;
    visibility: hidden;
}
#divTopMenu > ul > li.on .depth2 {
    opacity: 1;
    visibility: visible;
    top: 85px;
}
#divTopMenu > ul > li .depth2 a {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #111111;
    font-size: 17px;
    padding: 0 10px;
    line-height: 40px;
    white-space: nowrap;
    border-radius: 7px;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.3s;
}
#divTopMenu > ul > li.on .depth2 a {
    opacity: 1;
    visibility: visible;
}
#divTopMenu > ul > li .depth2 a:hover,
#divTopMenu > ul > li .depth2 a:focus {
    background: #f2f3f7;
    color: #e30038;
    text-decoration: none;
}

/* util */
.header .util {
    display: flex;
    align-items: center;
    position: absolute;
    right: 10px;
}
.header .util > li {
    font-size: 14px;
}
.header .util .userId {
    display: flex;
    column-gap: 5px;
    color: #777777;
    font-weight: 600;
    white-space: nowrap;
}
.header .util .userName {
    padding-left: 18px;
    background: url(../image/userIcon.png) no-repeat left center;
}
.header .util .userId a {
    color: #111111;
}
.header .util .pwdChange {
    margin: 0 20px 0 10px;
}
.header .util .mfa-reverify-timer {
    display: inline-block;
    margin-right: 10px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: #c62828;
    background: #ffebee;
    border: 1px solid #ef9a9a;
    border-radius: 6px;
    vertical-align: middle;
    white-space: nowrap;
}
/* 만료 임박(경고 구간) 강조 */
.header .util .mfa-reverify-timer--warn {
    color: #ffffff;
    background: #d32f2f;
    border-color: #b71c1c;
    animation: mfaReverifyTimerBlink 1s steps(1, end) infinite;
}
@keyframes mfaReverifyTimerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}
@media (prefers-reduced-motion: reduce) {
    .header .util .mfa-reverify-timer--warn {
        animation: none;
    }
}
.header .util .pwdChange > a {
    color: #777777;
    font-weight: 600;
    padding-left: 14px;
    position: relative;
    white-space: nowrap;
}
.header .util .pwdChange > a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #dbdbdb;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header .util li a.preSiteLink {
    display: inline-block;
    border: 1px solid #009bfa;
    color: #009bfa;
    padding: 0 40px 0 12px;
    line-height: 36px;
    white-space: nowrap;
    font-weight: 500;
    border-radius: 10px;
    background: url(../image/remoteIcon.png) no-repeat right 12px center;
    box-sizing: border-box;
}
.header .util .registerW {
    display: none;
}

/* 전체메뉴 */
.wholeMenuW {
    display: none;
}
.wholeMenu {
    background: #fff;
    width: 90%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
    padding-bottom: 50px;
    z-index: 999;
    box-sizing: border-box;
}
#divWrapper.wmOpen .wholeMenu {
    right: 0;
}
.wholeMenuW > .wholeMenuBtn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 30px;
    height: 35px;
    background: inherit;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}
.wholeMenuW > .wholeMenuBtn .hamberger {
    display: inline-block;
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background-color: #000;
    transform: rotate(0deg);
    transition: transform 0.5s, opacity 0.5s;
    position: absolute;
    text-indent: -9999px;
}

.wholeMenuW > .wholeMenuBtn .hamberger::before,
.wholeMenuW > .wholeMenuBtn .hamberger::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: all 0.5s;
    position: absolute;
    right: 0;
}
.wholeMenuW > .wholeMenuBtn .hamberger::before {
    top: -8px;
}
.wholeMenuW > .wholeMenuBtn .hamberger::after {
    top: 8px;
}
.wholeMenu .wmTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #363636;
    height: 80px;
    padding: 0 17px;
}
.wholeMenu .wmTop > ul {
    display: flex;
    align-items: center;
}
.wholeMenu .wmTop > ul li {
    font-size: 14px;
}
.wholeMenu .wm {
    display: flex;
    flex-direction: column;
}
.wholeMenu .preSite {
    padding: 14px;
}
.wholeMenu .preSite > div {
    border: 1px solid #eaebec;
    border-radius: 10px;
    padding: 18px 15px;
    text-align: center;
}
.wholeMenu .preSite p {
    font-weight: 500;
    color: #292929;
    font-size: 13px;
    margin-bottom: 10px;
    word-break: keep-all;
}
.wholeMenu .preSite .preSiteLink {
    display: inline-block;
    color: #009bfa;
    padding: 0px 41px 0 14px;
    line-height: 36px;
    white-space: nowrap;
    font-weight: 500;
    border-radius: 10px;
    background: #eff3fc url(../image/remoteIcon.png) no-repeat right 12px center;
    box-sizing: border-box;
}
.wholeMenu .userId {
    display: flex;
    column-gap: 5px;
    font-weight: 600;
}
.wholeMenu .userName {
    padding-left: 18px;
    background: url(../image/userIconW.png) no-repeat left center / 13px;
    color: #9b9b9b;
}
.wholeMenu .userName span {
    color: #fff;
}
.wholeMenu .userId a {
    color: #9b9b9b;
}
.wholeMenu .pwdChange {
    margin: 0 20px 0 10px;
}
.wholeMenu .pwdChange > a {
    color: #9b9b9b;
    font-weight: 600;
    padding-left: 14px;
    position: relative;
    white-space: nowrap;
}
.wholeMenu .pwdChange > a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #666666;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.wholeMenu .registerW {
    display: none;
}
.wholeMenu .wholeMenuClose {
    width: 17px;
    height: 17px;
    background-image: url(../image/wholeMenuClo.png);
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -9999px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
}
.wholeMenu .wm > ul > li > a {
    display: block;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border-bottom: 1px solid #dfe0e2;
}
.wholeMenu .wm > ul > li > a.active {
    padding: 14px 20px 14px 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='21px' height='20px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M11.986,0.025 L9.232,0.025 L9.232,8.289 L0.968,8.289 L0.968,11.043 L9.232,11.043 L9.232,19.306 L11.986,19.306 L11.986,11.043 L20.250,11.043 L20.250,8.289 L11.986,8.289 L11.986,0.025 '/%3E%3C/svg%3E")
        no-repeat right 20px center;
    background-size: 16px auto;
}
.wholeMenu .wm > ul > li.on > a {
    color: #dc0038;
}
.wholeMenu .wm > ul > li.on > a.active {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='21px' height='4px'%3E%3Cdefs%3E%3Cfilter id='Filter_0'%3E%3CfeFlood flood-color='rgb(233, 83, 108)' flood-opacity='1' result='floodOut' /%3E%3CfeComposite operator='atop' in='floodOut' in2='SourceGraphic' result='compOut' /%3E%3CfeBlend mode='normal' in='compOut' in2='SourceGraphic' /%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23Filter_0)'%3E%3Cpath fill-rule='evenodd' fill='rgb(220, 0, 56)' d='M11.986,0.281 L20.250,0.281 L20.250,3.035 L11.986,3.035 L9.232,3.035 L0.968,3.035 L0.968,0.281 L9.232,0.281 L11.986,0.281 Z'/%3E%3C/g%3E%3C/svg%3E")
        no-repeat right 20px center;
    background-size: 16px auto;
}
.wholeMenu .wm .depth2 {
    display: none;
    background: #f2f2f2;
    padding: 22px 14px;
}
.wholeMenu .wm .depth2 > li:not(:first-child) {
    margin-top: 10px;
}
.wholeMenu .wm .depth2 > li > a {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
}
.wholeMenu .wm .depth2 > li > a:hover,
.wholeMenu .wm .depth2 > li > a:focus {
    color: #dc0038;
}

/* blackBg */
#divWrapper::after {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 1450px) {
    .header .logo a {
        height: 44px;
    }
    #divTopMenu > ul > li > a {
        font-size: 19px;
        min-width: 120px;
    }
    #divTopMenu > ul > li .depth2 {
        width: 170px;
    }
    #divTopMenu > ul > li .depth2 a {
        font-size: 16px;
    }
}
@media screen and (max-width: 1300px) {
    .header {
        justify-content: space-between;
    }
    .header .logo,
    .header .util {
        position: static;
    }
    .header .logo a {
        height: 40px;
    }
    #divTopMenu > ul > li > a {
        font-size: 18px;
        min-width: 126px;
    }
    #divTopMenu > ul > li .depth2 {
        width: 150px;
    }
    #divTopMenu > ul > li .depth2 a {
        font-size: 15px;
    }
    .header .util .userId {
        font-size: 13px;
    }
    .header .util .pwdChange {
        margin: 0 7px;
    }
    .header .util .pwdChange > a {
        font-size: 13px;
        padding-left: 12px;
    }
    .header .util li a.preSiteLink {
        font-size: 13px;
        padding: 0 27px 0 6px;
        background-position: right 5px center;
        background-size: 18px auto;
        border-radius: 7px;
        line-height: 28px;
    }
}
@media screen and (max-width: 1160px) {
    #divWrapper.wmOpen::after {
        opacity: 1;
        visibility: visible;
        transition: all 0.4s;
    }
    .header {
        height: 80px;
    }
    #divTopMenu {
        display: none;
    }
    .header .util {
        display: none;
    }
    .wholeMenuW {
        display: block;
    }
}
@media screen and (max-width: 1024px) {
    .header .logo a {
        height: 40px;
    }
    .header .util li a.preSiteLink {
        line-height: 30px;
        background-size: 16px auto;
        background-position: right 6px top 7px;
        padding: 0 27px 0 7px;
        font-size: 13px;
    }
}
@media screen and (max-width: 767px) {
    .header .logo a {
        height: 35px;
    }
    .wholeMenu .preSite > div {
        padding: 12px;
    }
}

/* divFooter */
#divFooter .footerLogo {
    visibility: hidden;
    height: 0;
}

/* 공통 */
.skip {
    display: none;
}

/* edit style */
.no-inherit *{
	font: revert;
	font-size: revert;
	text-decoration: revert;
	-webkit-appearance: revert;
	appearance: revert;
	padding: revert;
	margin: revert;
	list-style: disc;
	line-height: 1.6 !important;
}
.no-inherit{
	font: revert;
	font-size: revert;
	text-decoration: revert;
	-webkit-appearance: revert;
	appearance: revert;
	padding: revert;
	margin: revert;
	list-style: disc;
	line-height: 1.6 !important;
}
.no-inherit img {
	max-width: 100%;
	height: auto;
}

/* $.fn.ajax 영역 로딩(LoadingOverlay) 중 스크롤바 깜빡임 완화 */
html.ajax-area-scroll-lock,
html.ajax-area-scroll-lock body {
	overflow: hidden !important;
}

.blocker {z-index: 1000;}