/*!
 * wvUser ver 1.0
 */

/*스킵메뉴*/
.skipMenu {position:relative; z-index:999; background-color:#000;}
.skipMenu a {position:absolute; top:-30px; left:0px; width:100%; height:30px; line-height:30px; text-align:center; background-color:#000; color:#fff; }
.skipMenu a:active, .skipMenu a:focus {top:0px;}

/*PC용 헤더*/
header {display: flex; align-items: center;justify-content: space-between;position: fixed;top: 0; width: 100%; height:96px;padding:0 60px; z-index: 100; background-color: transparent; border-bottom: 1px solid rgba(255, 255, 255, 0.20); transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, -webkit-backdrop-filter .3s ease, backdrop-filter .3s ease;}
header:hover,
header:focus-within {background-color: #fff; border-bottom-color: #e9edf3; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);}
header.submenu-open {background-color: #fff; border-bottom-color: #e9edf3; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);}
header:has(.head-menu-box.on) {background-color: #fff; border-bottom-color: #e9edf3; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);}
header.active {
    background-color: rgba(255, 255, 255, 1);
    border-bottom-color: rgba(233, 237, 243, 0.85);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
header.active:hover,
header.active:focus-within {
    background-color: rgba(255, 255, 255, 1);
    border-bottom-color: #e9edf3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
header.active:has(.head-menu-box.on) {
    background-color: rgba(255, 255, 255, 1);
    border-bottom-color: #e9edf3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
header.active.submenu-open {
    background-color: rgba(255, 255, 255, 1);
    border-bottom-color: #e9edf3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

body.sub header:hover nav a,
body.sub header:focus-within nav a,
body.sub header.submenu-open nav a,
body.sub header:has(.head-menu-box.on) nav a,
body.sub header:has(.user-menu .triggerBtn.on) nav a,
body.sub header:hover .user-menuIn a,
body.sub header:focus-within .user-menuIn a,
body.sub header.submenu-open .user-menuIn a,
body.sub header:has(.head-menu-box.on) .user-menuIn a,
body.sub header:has(.user-menu .triggerBtn.on) .user-menuIn a,
body.sub header:hover .user-menuIn li,
body.sub header:focus-within .user-menuIn li,
body.sub header.submenu-open .user-menuIn li,
body.sub header:has(.head-menu-box.on) .user-menuIn li,
body.sub header:has(.user-menu .triggerBtn.on) .user-menuIn li {color: #000;}
body.sub header:hover .triggerBtn button span,
body.sub header:focus-within .triggerBtn button span,
body.sub header.submenu-open .triggerBtn button span,
body.sub header:has(.head-menu-box.on) .triggerBtn button span,
body.sub header:has(.user-menu .triggerBtn.on) .triggerBtn button span {background-color: #000;}

h1.logo {margin: 0px; font-size: 23px; color: #00398D; z-index: 4;}
header h1.logo a {display: flex;align-items: center;gap: 10px;color: #00398D; width: 235px;justify-content: flex-end; background: url('../../user/images/newImages/logo/koica-oda-logo.svg') no-repeat;background-position-y: 5px;}
body.sub header h1.logo a {background: url('../../user/images/newImages/logo/koica-oda-logo-w.svg') no-repeat;background-position-y: 5px; color: #fff;}
body.sub header.active h1.logo a,
body.sub header:hover h1.logo a,
body.sub header:focus-within h1.logo a,
body.sub header.submenu-open h1.logo a,
body.sub header:has(.head-menu-box.on) h1.logo a,
body.sub header:has(.user-menu .triggerBtn.on) h1.logo a {background: url('../../user/images/newImages/logo/koica-oda-logo.svg') no-repeat;background-position-y: 5px;color: #00398D; }
body.sub header .logo img {
    transition: 0.3s all ease;
}
header nav {height: 100%; flex: 1; display: flex; align-items: center; justify-content: center;}
header nav ul {display: flex;height: 100%;flex: 1; align-items: center; justify-content: center;}
header nav a {display: flex; align-items: center; height: 100%; color: var(--textBlack); font-size: 18px;font-weight: 700;}
header .user-menu {display: flex; align-items: center; gap: 20px;}
header .user-menuIn {
    display: flex;
    align-items: center;
    gap: 45px;
    font-size: 15px;
    color: var(--textGray);
}


header .user-menuIn li {
    position: relative;
    transition: 0.3s all ease;
}

header .user-menuIn li:after {
    content: '';
    display: block;
    position: absolute;
    top: 38%;
    left: -25px;
    width: 4px;
    height: 4px;
    background-color: #D0D0D0;
    border-radius: 50%;
}
header .user-menuIn li:first-child:after {display: none;}
header .loginBtn {background-color: transparent; border: 1px solid #fff; font-size: 15px; font-weight: 600; color: #fff;padding: 10px 20px;height: 38px;border-radius: 20px;}

header .user-menuIn li > a {
    display: block;
    padding: 5px;
}
header .user-menuIn li .icon-w {
    display: none;
}

/* 하위 메뉴 높이: 콘텐츠에 맞춤 + 0fr→1fr 그리드로 전환 애니메이션 (height:auto 전환 대체) */
.head-menu-box {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    pointer-events: none;
    z-index: 90;
    box-sizing: border-box;
    transition: grid-template-rows .32s ease, opacity .26s ease, visibility 0s linear .32s;
}

.head-menu-box.on {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: grid-template-rows .32s ease, opacity .26s ease, visibility 0s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/*.head-menu-box > .menu-box-inner {*/
/*	min-height: 0;*/
/*	overflow: hidden;*/
/*}*/

.head-nav-item {
    position: relative;
    height: 100px;
    padding: 0 2%;
}

.head-nav-item:has(.head-menu-box.on) > a {
    color: var(--primary);
}

.head-menu-box .depth-nav-list {
    opacity: 0;
    align-items: flex-start;
    transform: translateY(-4px);
    transition: all .2s ease;
    gap: 3%;
}

.head-menu-box.on .depth-nav-list {
    opacity: 1;
    transform: translateY(0);
    transition: all .2s ease;
}

.head-menu-box .depth-nav-list > li > a {
    font-size: 17px;
    font-weight: 700;
}

.head-menu-box .depth-nav-list > li > a:hover {
    color: var(--primary);
}

.head-menu-box .depth-nav-list ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.head-menu-box .depth-nav-list ul li a {
    font-size: 16px;
    color: var(--textGray) !important;
}

.head-menu-box .depth-nav-list ul li a:hover {
    color: var(--primary) !important;
}

.menu-box-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 36px 0;
}

.depth-nav-title {
    position: relative;
    width: 30%;
    height: 100%;
    padding: 3rem 0 0;
    font-size: 3rem;
    font-weight: 500;
    background: #F8F9FA;
    border-right: 1px solid var(--border);
}

.depth-nav-list a {
    font-weight: 500;
}

/* 데스크톱 헤더: 전체 메뉴 패널 — 오른쪽 밖에서 슬라이드 인 */
header .all-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: calc(96px + 32px) 60px 40px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #fff;
    z-index: 3;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, visibility 0.35s ease;
}

header:has(.user-menu .triggerBtn.on) .all-menu {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

header .all-menu-wrap {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.all-menu-wrap dl {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 40px 0;
}

.all-menu-wrap dl:first-child {
    border-top: none;
}

.all-menu-wrap dt {
    width: 260px;
    font-size: 24px;
    font-weight: 700;
}

.all-menu-wrap dd {

}

.all-menu-wrap dd > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}
.all-menu-wrap dd > ul > li > a {
    font-size: 20px;
    color: var(--textBlack);
    font-weight: 600;
}

.all-menu-wrap dd > ul > li:hover > a {
    color: var(--primary);
}

.all-depth-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}
.all-depth-nav-list li a {
    color: var(--textGray);
}

.all-depth-nav-list li:hover a {
    color: var(--primary);
}

.menuBg {display:none; position: absolute; top:129px; left:0px;height:550px; right: 0;background-color:#F6F6F6;box-shadow: 0px 7px 10px 0px rgba(0,0,0,0.15);z-index: 9999;}
.headDepthNav {position:relative;padding: 29px 0; display: flex; align-items: center;}
.headDepthNavIn {display:none; position: absolute;top:60px;left:0px; width:100%;height: 550px;padding-left: 0px; text-align: left;z-index: 9999;}
.headDepthNavIn > ul {height: 550px;padding-top: 20px;transition:0.3s all ease;}
.headDepthNavIn > ul:hover, .headDepthNavIn > ul:focus {background-color:#E9EFFF;}
.headDepthNavIn:after {content:''; position: absolute; top:0px; left:-2px;width:2px; height:100%; border-left:2px solid #fff;}
.headNav .headNavIn > ul > li:first-child .headDepthNavIn:after {display:none;}
.headNav > ul > li:first-child .headDepthNavIn:before {content:''; position: absolute; top:0px; left:0px;width:2px; height:358px; border-left:2px solid #fff;}
.headDepthNavIn ul li a {font-size: 15px;color: #666;}
.headDepthNavIn ul li a:hover, .headDepthNavIn ul li a:focus {color:#00479D;}
.headDepthNavIn ul li a .icLink {position:relative; top:-1px; width:13px; margin-left:4px; opacity:0.7;}
.headDepthNavIn ul li a:hover .icLink, .headDepthNavIn ul li a:focus .icLink {opacity: 1;}
.headDepthNavIn ul.on li a strong {color:#00479D;}
.headDepthNavIn ul li .navInT a {font-size:17px; font-weight:500; color:#000;}
.headDepthNavIn ul li .navInT.on a {color:#00479D;}
.depthNavWrap {margin-bottom:15px; padding-left:15px;}
.navInT {display: inline-block;margin-bottom: 8px;}
.depthNavWrap ul li {margin-top:3px; font-size:16px;}
.depthNavWrap ul li:first-child {margin-top:0px;}
.depthNavWrap ul li strong {display:inline-block; margin-bottom:8px; }
.depthNavWrap ul li a {color:#666;}
.menu--quick {display: none;}
.linkImg {position: relative;top: -2px;left: 7px;width:12px;}
.headSubNav {position: absolute; top:34px; right:60px;}
.headSubNav ul {overflow:hidden;}
.headSubNav ul li {position: relative;float: left; margin-left: 25px;}
.headSubNav ul li:before {content:''; position: absolute; top:5px; left:-13px; width:1px; height:11px; border-left:2px dotted #d7d7d7; }
.headSubNav ul li:first-child {margin-left: 0px;}
.headSubNav ul li:first-child:before {display:none;}
.headSubNav ul li a {font-size:15px; color:#666;}
.headSubNav ul li a:hover {color:#000;}
.headSubNavMb {display:none;}

/*모바일용 헤더*/
.mbMenuBg {display:none;position: fixed;width: 100%; height: 100%;background-color: rgba(0,0,0,0.6);top: 0;left: 0;margin: 0;z-index: 2;}
.mbMenuBg.on {display:block;}

@media screen and (max-width: 1500px) {
    header {padding: 0 30px;}
}

/* 모바일 구간(max-width:1320)과 동일: 데스크톱에서는 fadeIn() 인라인 display:block 무시 */
@media screen and (min-width: 1321px) {
    .mbMenuBg { display: none !important; }
}
.mbHeader {display:none;}
.mbHeader h1.logo a {display: flex;align-items: center;gap: 10px;color: #00398D;}
.mbHeadNav {position: fixed;top: 74px;left:-100%;width: 100%;max-width: 90%; height: 100%;z-index: 2; /*transition:0.3s all ease;*/}
.mbHeadNavWrap {position:relative;height:100%;background-color: #fff;}
.mbHeadNavBox {clear:both; height: calc(100% - 147px);overflow-y: scroll;}
.sub .mbHeadNavBox {height: calc(100% - 120px);}
.mbHeadSubNav {background-color:var(--primary); padding:24px;}
.mbHeadSubNav ul {display: flex;align-items: center; gap: 40px;}
.mbHeadSubNav ul li {position: relative;}
.mbHeadSubNav ul li:before {content:''; position:absolute; top: 8px; left: -19px; width: 4px; height: 4px; border-radius: 50%; opacity: 0.4; background: #fff;}
.mbHeadSubNav ul li:first-child:before {display:none;}
.mbHeadSubNav ul li a {display:block;font-size:16px;color:#fff;}
.mbHeadSubNav ul li a span {position: relative;margin-right:6px;}
.mbHeadSubNav ul li a .icon-off {top:7px; margin-left:-7px; font-size:30px;}
.mbHeadSubNav ul li a .icon-join2 {top:7px; font-size:30px;}

.mbLoginUser {color:#fff; display: flex; align-items: center; justify-content: space-between;}
.mbLoginUserImg {position:relative;top:-3px; width:24px; margin-right:8px;}
.mbLoginUser strong {font-size:17px; font-weight:500;}
.mbLoginUser span {font-size:15px;}
.mbLogoutBtn { font-size:16px; color:rgba(225,225,225,0.8);}

.mbHeadDepthNav {padding: 20px;}
.mbHeadDepthNav > li {position: relative;}
.mbHeadDepthNav > li > a {display: flex;align-items: center; justify-content: space-between;padding:20px 0; font-size:20px; font-weight:600; color:var(--textBlack);}
.mbHeadDepthNav > li.on > a {color:#000;border-bottom: 1px solid #ddd;}
.mbHeadDepthNav > li .icon-arrowT {font-size:23px;transform: rotate(0deg); transition:0.3s all ease;background: url(../images/newImages/icon/ic_selectBSArrow.svg) no-repeat center center; background-size: 20px; width: 20px;height: 20px;}
.mbHeadDepthNav > li.on .icon-arrowT {transform: rotate(180deg);}
.mbHeadDepthNavIn {display: none;}
.mbDepthNav > li {position: relative;}
.mbDepthNavWrap .navInT {display:block; margin: 0;}
.mbDepthNavWrap .navInT a {display: block;padding: 20px 0;font-size: 18px;font-weight: 500; color: var(--textGray);}
.mbDepthNavWrap .navInT.on a {color:#00479D;}
.mbDepthNavWrap .navInT.on .bar,
.mbDepthNavWrap .navInT.on .bar:before {background-color:var(--primary);}
.mbDepthNavWrap .navInT .bar {display:inline-block;position:absolute; top:36px; right:3px; width:14px; height:2px; background-color:var(--textGray); transition:0.3s all ease;}
.mbDepthNavWrap .navInT .bar:before {content:'';display:inline-block;position:absolute; top:0; right:0; width:14px; height:2px; background-color:var(--textGray);transform: rotate(90deg);transition: 0.3s all ease;}
.mbDepthNavWrap .navInT.on .bar:before {transform: rotate(180deg);}
.mbDepthNavWrap > ul {display: none;padding: 20px;background-color:#F6F6F6;}
.mbDepthNavWrap > ul > li:first-child {margin-top: 0;}
.mbDepthNavWrap > ul > li {margin-top: 12px;}
.mbDepthNavWrap > ul > li > a {display: block;font-size: 16px;color: var(--textGray);}
.mbDepthNavWrap > ul > li > a .icLink {margin-left: 4px;position: relative; top: -1px;width:13px;}

.subVisual {display: flex;align-items: center; justify-content: center;height:473px; color:#fff; background-color: #ddd;transition: 0.3s all;}
.subVisual.bg01 {background:url('../../user/images/newImages/subBg01.jpg') no-repeat;background-size: cover; background-position: center center;}
.subVisual.bg02 {background:url('../../user/images/newImages/subBg02.jpg') no-repeat;background-size: cover; background-position: center center;}
.subVisual.bg03 {background:url('../../user/images/newImages/subBg03.jpg') no-repeat;background-size: cover; background-position: center center;}
.subVisual.bg04 {background:url('../../user/images/newImages/subBg04.jpg') no-repeat;background-size: cover; background-position: center center;}
.subVisual.bg05 {background:url('../../user/images/newImages/subBg05.jpg') no-repeat;background-size: cover; background-position: center center;}
.subVisual.bg06 {background:url('../../user/images/newImages/subBg06.jpg') no-repeat;background-size: cover; background-position: center center;}
.subVisual.bg07 {background:url('../../user/images/newImages/subBg07.jpg') no-repeat;background-size: cover; background-position: center center;}
.subVisual h3 {
    font-size: var(--font-size-heading-xlarge);
    font-weight: 700;
}
.subVisual p {display: none; position:absolute;left:-9990px;font-size:16px;color:rgba(255,255,255,0.8);}
/* 서브: pageNav 음수 margin-top 만 주면 아래 플로우에 빈 여백이 생기기 쉬움 → 동일 값으로 margin-bottom 당김 + contLayout 패딩 보정 (배경 흰/회색 공통) */
body.sub { --sub-page-nav-pull: 28px; }
body.sub header nav a,
body.sub header .user-menuIn,
body.sub header .user-menuIn a {color: #fff;}
body.sub header .triggerBtn button span {background-color: #fff;}

body.sub header.active nav a,
body.sub header.active .user-menuIn,
body.sub header.active .user-menuIn a {color: var(--textBlack);}
body.sub header.active .triggerBtn button span {background-color: var(--textBlack);}

body.sub header .icon-w {display: block;}
body.sub header .icon-b {display: none;}
body.sub header.active .icon-w {display: none;}
body.sub header.active .icon-b {display: block;}

body.sub header:hover .icon-w {display: none;}
body.sub header:focus-within .icon-w,
body.sub header.submenu-open .icon-w,
body.sub header:has(.head-menu-box.on) .icon-w,
body.sub header:has(.user-menu .triggerBtn.on) .icon-w {display: none;}
body.sub header:hover .icon-b,
body.sub header:focus-within .icon-b,
body.sub header.submenu-open .icon-b,
body.sub header:has(.head-menu-box.on) .icon-b,
body.sub header:has(.user-menu .triggerBtn.on) .icon-b {display: block;}

/* 헤더가 밝은 상태(흰 배경)일 때 우측 사용자 아이콘은 항상 검정 버전 고정 */
header:hover .user-menuIn .icon-w,
header:focus-within .user-menuIn .icon-w,
header.submenu-open .user-menuIn .icon-w,
header:has(.head-menu-box.on) .user-menuIn .icon-w,
header:has(.user-menu .triggerBtn.on) .user-menuIn .icon-w {display: none;}

header:hover .user-menuIn .icon-b,
header:focus-within .user-menuIn .icon-b,
header.submenu-open .user-menuIn .icon-b,
header:has(.head-menu-box.on) .user-menuIn .icon-b,
header:has(.user-menu .triggerBtn.on) .user-menuIn .icon-b {display: inline-block;}


/* 서브 배너 하단에 걸친 네비 바 */
.pageNav {position: relative;top: -32px;min-height:56px; padding:0 24px; border-bottom:none; background:transparent; z-index: 2; transition: 0.3s all ease; display:flex; justify-content:center; align-items:flex-start;}
.pageNav.fixed {background:transparent;}
.pageNav h2 {position: absolute; top: 11px;left: 30px;margin: 0;opacity:0;transition: 0.3s all ease;}
.pageNav.fixed h2 {opacity:1;}
.pageNav h2 img {width:150px;}
.pageNavIn {position: relative; display:flex; align-items:stretch; max-width:1300px; width:100%; margin:0 auto; border-radius:12px; box-shadow:0 4px 20px rgba(0,0,0,0.1); min-height:62px;}
.homeLink {position: relative; display:flex; align-items:center; justify-content:center; width:62px; min-width:62px; height:62px; background:var(--primary); border-radius:12px 0 0 12px; border:none;}
.homeLink img {width:18px; filter:brightness(0) invert(1);}
.homeLink .icon-home {position: relative; top:10px; font-size:30px; color:#fff;}

.pageDepth {margin-left:0; flex:1;background: #fff; border-radius: 0 12px 12px 0;}
.pageDepthIn {display:flex;}
.pageDepthIn > li {position: relative; flex:1; min-width:0; width:auto; max-width: 250px;}
.pageDepthIn > li::before {content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 14px; background-color: #e5e5e5;}
.pageDepthIn > li:first-child::before {display: none;}
.pageDepthIn > li .icon {display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 22px; line-height: 22px; font-size: 16px; transform: rotate(0deg); transition: transform 0.3s ease;}
.pageDepthIn > li > a { display: flex; align-items: center; justify-content: space-between;height: 62px;line-height: 62px;padding: 0 28px;text-align: left;font-size: 17px;color: #666; border: none; transition: none;}
.pageDepthIn > li:hover > a {color: var(--primary);}
.pageDepthIn > li > a img {position: relative;display: inline-block;}
.pageDepthIn > li.on > a {font-weight: 500;color: #222;}
.pageDepthIn > li.on .icon {transform: rotate(180deg);}
.pageDepthIn > li .pageDepthSub {display: none;position: absolute; width: 100%;background-color: #fff; border: 1px solid #e1e1e1;z-index: 1; border-radius: 6px; top: 62px; box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.08); padding: 20px 28px;}
.pageDepthIn > li .pageDepthSub li + li {margin-top: 12px;}
.pageDepthIn > li .pageDepthSub li a {display: block; text-align: left;font-size: 16px;color: #999;transition: 0.3s all ease;}
.pageDepthIn > li .pageDepthSub li:hover a {color:#222;}

.classBtn {display:none;position: absolute;top: 11px; right: 81px;}
.classBtn img {position:relative; top:-1px; width:12px; margin-right:8px;}
.classBtn:after {content:""; position:absolute; top: 6px;right: -15px;width:1px; height:21px; background-color:rgba(0,0,0,0.2)}

.triggerBtn {transition: 0.3s all ease; z-index: 4;}
.triggerBtn button {position: relative; display: block;width: 50px; height:50px;}
.triggerBtn button:hover .bar2 {width: 15px;}
.triggerBtn button span {display: block;position: absolute;left:15px; width: 22px;height: 2px;background-color: #000; transition: all 0.3s ease;}
.triggerBtn .bar1 {top:16px;}
.triggerBtn .bar2 {top:23px;}
.triggerBtn .bar3 {top:30px;}

.on .triggerBtn .bar1 {transform: translateY(7px) rotate(45deg);}
.on .triggerBtn .bar2 {opacity: 0;}
.on .triggerBtn .bar3 {transform: translateY(-7px) rotate(-45deg);}

/* 데스크톱: 트리거에 직접 .on (모바일은 .mbHeader.on 유지) */
header .user-menu .triggerBtn.on .bar1 {transform: translateY(7px) rotate(45deg);}
header .user-menu .triggerBtn.on .bar2 {opacity: 0;}
header .user-menu .triggerBtn.on .bar3 {transform: translateY(-7px) rotate(-45deg);}

/* .scrTop {position: relative;} */
/* .scrTop.fixed {position:fixed; top:0px; width:100%; background-color:#fff; z-index:10;box-shadow: 7px 5px 7px 1px rgba(0,0,0,0.05);}
.pageNav.scrTop.fixed {background:transparent; box-shadow:none;} */

/*콘텐츠*/
.contLayout {position: relative;padding-top: 60px;padding-bottom:220px;outline: none;}
.contLayout.noPad {padding-top:0px;}
.contLayoutIn {max-width: 1300px;margin: 0 auto;}
.contLayoutIn > h3 {text-align: center;font-weight: 700; color: var(--textBlack);}
.contLayoutIn > h3 .conT_sub {margin-top:20px; font-weight: 500;}

/*통합회원, 로그인*/
.login-box {
    border-radius: 20px;
    padding: 50px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 890px;
    margin: 0 auto;
}

.login-bg {
    flex: 1.2;
    text-align: center;
    padding: 0 20px;
}

.login-box .conT4 {
    margin-bottom: 20px;
}

.login-cont-wrap {
    display: flex;
    flex-direction: column;
    max-width: 540px;
    width: 100%;
    flex: 2;
}

.login-cont {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
}

.login-cont:nth-child(2) {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #E6E6E8;
}


/*****메인 비쥬얼*****/
/*.mainLayout {padding-top:120px;transition:0.3s all;}*/
.sizeT .mainLayout {padding-top:200px;}
/*.mainLayoutIn {margin: 0 50px;}*/

/*로그인 검색 박스*/
.loginSearchBox {clear: both;overflow:hidden;}
.loginSearchWrap {position:relative; max-width:1200px; margin:0 auto;}
.loginTabBox {position:relative;float: left;width: 51%; height: 85px;/*padding: 22px 24px 22px 0px;*/background-color: #5F75D1;}
.loginTabWrap {padding: 22px 24px 22px 0px;}
.loginTabBox:before {content:''; position:absolute; top:0px; left:-105%; width:105%; background-color:#5F75D1; height:85px;}
.loginTab {position: absolute;width: 222px;padding: 0px;font-size: 15px;list-style: none;  background: #425ABC;box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);border-radius: 50px;}
.loginTab ul {  margin: 0; padding: 0;overflow: hidden;}
.loginTab ul li {float:left; width:50%;text-align:center;}
.loginTab ul li > a {position: relative; display: block;height: 40px;line-height: 40px; font-size:14px; color: rgba(255,255,255,0.7);z-index: 1; transition-duration: 0.6s; }
.loginTab ul li > a.active {color: #fff;}
.loginTab .selector {display: inline-block; position: absolute; left: 0px; top: 0px; height: 100%; z-index: 1; border-radius: 50px; transition-duration: 0.6s;background: #253EA1;}

.loginForm {position: absolute;top:-2px;left:245px; display:block; width: 700px;}
.loginCont {position: relative;}
.loginCont h4 { display: inline-block;position: absolute; margin: 8px 0 0 0;font-size: 20px;font-weight: 400;color: #fff;}
.loginCont input::placeholder {font-size:15px;color:rgba(255,255,255,0.8); }
.loginCont input:-ms-input-placeholder {font-size:15px;color: rgba(255,255,255,0.8);}
.loginCont input::-webkit-input-placeholder {font-size:15px;color: rgba(255,255,255,0.8);}
.loginCont input:-moz-placeholder {font-size:15px;color: rgba(255,255,255,0.8);}
.loginCont .loginFormIn button {position: relative; top: -1px;width:70px; height:40px; font-size:15px;}
.loginCont .loginFormIn button:hover {color:#fff; background-color:transparent;border: 1px solid #fff;}

.basicLogin h4 {left: 250px;}
.basicLogin .loginFormIn {position: absolute; top:2px;/* right:-60px;*/}
.basicLogin .multiInput > div input[type='text'], .basicLogin .multiInput > div input[type='password'] {width: 130px;height: 39px;vertical-align: baseline;border-radius: 2px;background-color: rgba(255,255,255,0.2);border: none;color:#fff;}
.digitalLogin h4 {left: 135px;}
.digitalLogin .dgonepassImg {margin-right: 10px;position: relative; top: -1px;width:19px;}
.digitalLogin div input[type='text'] {width:268px;height: 39px;vertical-align: baseline;border-radius: 2px;background-color: rgba(255,255,255,0.2);border: none;}
.digitalLogin .loginFormIn {position: absolute;top: 2px;/*right: 50px;*/}
.digitalLogin .loginFormIn button {margin-left: 3px;}
.searchFormBox {position: relative;float:right; width:49%; height:85px;/*padding: 22px 24px 22px 24px;*/background-color: #1C2E43;}
.searchFormBox:after {content:'';position:absolute; top:0px; right:-105%; width:105%; background-color:#1C2E43; height:85px;}
.searchFormBox h4 {margin:7px 0 0 0;font-size: 20px;font-weight: 400;color: #fff;}
.searchFormWrap {padding: 22px 24px 22px 24px;}
.searchFormIn {position: absolute; top:24px; left:115px;}
.searchFormIn fieldset {position: relative;}
.searchFormIn input[type="radio"].wv-radio + label {color:rgba(255,255,255,0.8);}
.searchFormIn input[type="radio"].wv-radio + label span {display:inline-block; padding-left:4px; font-weight:400;}
.searchFormIn input[type="radio"].wv-radio:checked + label {font-weight: 400;color:#fff;}
.searchFormIn input[type="text"] {position: relative; top:0px; width:100%; height:40px;background: none;border: none;color:#fff;}
.searchFormIn input::placeholder {font-size:15px;color:#fff;}
.searchFormIn input:-ms-input-placeholder {font-size:15px;color: #fff;}
.searchFormIn input::-webkit-input-placeholder {font-size:15px;color: #fff;}
.searchFormIn input:-moz-placeholder {font-size:15px;color: #fff;}
.searchFormIn .searchBtn {position:absolute; top: 0px;right: 2px;background: none;border: none;font-size: 23px;color: #fff;}
.searchFormIn .searchBtn .searchImg {position:relative;width: 15px;top: -3px;right: 5px;}
.searchFormIn input[type="radio"].wv-radio + label:before {width:19px;height:19px;top:2px; background: url(../../user/images/newImages/ic_check_off2.png) no-repeat; background-size:19px;border-radius:2px;}
.searchFormIn input[type="radio"].wv-radio:checked + label:before {width:19px; height:19px;background: url(../../user/images/newImages/ic_check_on2.png) no-repeat; background-size:19px;border-radius:2px;}
.searchFormIn .radioBox {top:8px;}
.searchFormIn .radioBox input[type="radio"]:checked+label:after	{display:none;}
.searchFormIn .radioBox .cyber {width:50px;}
.searchFormIn .radioBox .set {width:65px;}
.searchFormInput {position: relative; top:-2px;display: inline-block; float:right; padding: 0px 40px 0px 0px; width: 278px;height:40px; border-radius: 2px;border: 1px solid rgba(255,255,255,0.6);}

.loginUser {padding: 25px 24px 22px 0px;color: #fff;}
.loginUser strong {font-size:21px;font-weight:500;}
.loginUser span {font-size:18px;}
.loginUserImg {position: relative;top: -5px;width:24px;margin-right: 8px;}
.logoutBtn {position:relative;top: -3px; display:inline-block;margin-left: 8px; font-size:15px; color:rgba(225,225,225,0.6);/*border-bottom: 1px solid rgba(225,225,225,0.6);*/}
.logoutBtn:after {content:''; position:absolute; bottom:0px; left:0px; width:100%; height:1px;border-bottom: 1px solid rgba(225,225,225,0.6);}
.loginUserBtn {position: relative;top: -3px;float:right;}
.loginUserBtn a {display: inline-block;height: 40px;line-height: 37px;padding: 0 15px;text-align: center;font-size: 15px;}
.loginUserBtn a:first-child {margin-right:4px;}
.loginUserBtn a.blueBtn:hover {border:1px solid #fff; color:#fff;}
.loginUserBtn a.deepblueBtn:hover {border:1px solid #fff; color:#fff;}

/*로그인 박스*/
.columnCont {width:100%; overflow: hidden;}
.leftCont {float: left;}
.rightCont {float: right;}
.centerCont {float:left;}

/*로그인 박스 커스텀*/
.loginBox {max-width:1140px;padding-bottom:80px;}
.loginBox .columnIn {width: 550px;height: 470px;background-color: #fff;}
.loginBox .centerChkBox {height: 76px;}
.columnT {margin:0; padding:64px 0 28px 0; font-size: 24px;color: #000;font-weight: 300;}
.columnT strong {font-weight: 500;}
.loginBox button.fullW {position: relative;}
a.onepassBtn {color:#fff; background-color: #00296A; border: 1px solid #00296A;}
a.onepassBtn:hover {background-color: transparent;border: 1px solid #00296A; color: #00296A;}
.onepassImg {position: absolute;top: 12px;left: 20px;width: 34px;transition:0.3s all ease;}
.onepassImg.off {opacity:1;}
.onepassImg.on {opacity:0;}
.loginBox button:hover .onepassImg.off {opacity:0;}
.loginBox button:hover .onepassImg.on {opacity:1;}

.loginBox .chkBox input[type="checkbox"]+label:before {top: 0px;width: 18px;height: 18px;margin-right: 8px;background-size: 17px;}
.loginBox input[type="checkbox"].wv-check:checked + label:before {top:0; background-size: 17px;}

.inputBoxBt {margin: 24px 70px 0;}
.inputBoxBt .telInfo {position: relative;top: 3px;font-size:15px;}
.inputBoxBt .joinImg {width:18px; margin-right:6px; transition: 0.3s all ease;}
.joinImg.off {opacity:1;}
.joinImg.on {display:none;}
.joinBtn:hover .joinImg.off {display:none;}
.joinBtn:hover .joinImg.on {display:inline-block;}
.telImg {width:18px;margin-right:3px;}

/*이용약관*/
.termsUse {margin-top:13px;}
.termsUse ul {}
.termsUse > ul > li {position: relative;border:1px solid #d7d7d7; border-top:none;}
.termsUse > ul > li:first-child {border-top:1px solid #d7d7d7;}
.termsUse > ul > li > a {position: relative;display:block; height:56px; line-height:56px; padding:0 16px; background-color: #F7F8F9;}
.totalChk {height: 60px; padding:0 0 0 17px; line-height: 54px;background-color: #E3E5E8; border: 1px solid #D7D7D7; }
.totalChk input[type="checkbox"].wv-check + label > span {margin-left: 23px;font-size:16px;}
.agreeCont {display:none; height: 200px;overflow-y: auto; background-color:#fff;}
.agreeCont a {padding:24px;}
.agreeContIn {margin-bottom:20px; line-height: 25px;letter-spacing: -0.5px;font-size:15px; color:#555;}
.boldT {font-size: 17px;}
.termsUse > ul > li .chkBox input {margin-top:21px;}
.termsUse .chkBox {position: absolute; top: 0px; left:17px;z-index:1;}
.termsUse .chkBox input[type="checkbox"]+label:before {top:16px; width:16px; height:16px;margin-right:8px; background-size: 16px;}
.termsUse input[type="checkbox"].wv-check:checked + label:before {background-size: 16px;}
.termsUse .chkBox input[type="checkbox"]+label {display: table; height: 57px;font-size:16px;font-weight: 500;}
.termsUse .chkBox input[type="checkbox"]+label .labelIn {display: table-cell; margin: 0px;vertical-align: middle;line-height: 20px;padding-left: 0px;}
.termsUse .icon {position: absolute; top: 21px;right: 16px;font-weight:600;font-size:23px; color:#000; transition: 0.3s all ease;transform: rotate(180deg);}
.termsUse .icon em {position:absolute;left:-9999px;}
.selectTag {position: relative;top: -1px;margin-right: 4px; font-size:14px;}
.termsUse > ul > li > a.on .icon {transform: rotate(0deg);}
.termsUse ol {padding: 0 15px;}
.termsUse ol > li {list-style-type: decimal;}
.barList {}
.barList li {position:relative;padding-left:12px;}
.barList li:before {content:"-"; position:absolute; top:-2px; left:0px; width:8px; height:1px;font-size: 22px;}

/*이용동의*/
.agreementUse {margin-bottom: 50px; text-align:center;}

/*회원가입*/
.lineBox.joinFin {position: relative;margin-bottom: 100px;padding:40px 80px; overflow:hidden; background-color: #F7F8F9;border:none;}
.lineBox.joinFin:before {content: '';position: absolute;width: 280px;height: 245px;background: url(../../user/images/newImages/simbolBg.png) no-repeat;right: 0px;bottom: 0px;background-size: cover;}
.lineBox.joinFin .lineBoxIn {margin-bottom:0;background: none;}
.lineBox.joinFin .lineBoxIn:before {display:none;}
.lineBox.joinFin .conT4 {margin-bottom:20px; font-size:28px;}
.alertTxt {display: inline-block; margin:2px 0 6px 0;padding: 9px 22px;background-color: #fff;border-radius: 20px;}

/*이용동의 체크박스*/
.totalChk .chkBox {position: relative;top:0;left:0;}
.totalChk input[type="checkbox"].wv-check + label {font-size:16px;font-weight: 500; color:#000;}
.termsUse .totalChk .chkBox input[type="checkbox"]+label:before { position: absolute;top: 24px;margin-right:10px;background: url(../../user/images/newImages/ic_totalChk.png) no-repeat;background-size: contain;}
.termsUse .totalChk input[type="checkbox"].wv-check:checked + label:before{margin-right:10px;background: url(../../user/images/newImages/ic_check_on.png) no-repeat;background-size: contain;}

/*아이디/비밀번호 입력*/
.identityCont {margin-top:80px;}
.identityCont h4 {margin-bottom:24px;}
.identityCont .columnIn {width:49%; height:290px; margin: 0 1%; background-color:#F7F7F7;}
.identityCont .columnIn button {margin-left:0;}
.identityCont .columnIn .columnInCont {position: relative;padding:36px 32px 24px 32px;}
.identityCont .columnIn.leftCont {margin-left:0;}
.identityCont .columnIn.rightCont {margin-right:0;}
.identityCont .columnIn.rightCont .columnInTxt {margin-bottom:20px;}
.columnIn .columnInTxt {margin:20px 0px 28px 0px;line-height: 22px;letter-spacing: -0.6px;word-break: keep-all;font-size: 14px;color:#666;}
.columnSubTxt {margin-top:24px;}
.columnSubTxt li {letter-spacing: -0.5px;line-height: 25px;font-size:15px;color:#555;}
.passlink {display:block;margin-top: 8px;font-size: 15px;}
.identityImg {width:55px;top: 3px;left: 42px;}
.passImg {width:62px;}
.identImg {width:39px;}
.ipinImg {width:62px;}

.lineBox.joinFin .logoImg {width:167px;margin-bottom:28px;}
.lineBox.joinFin .checkImg {width:56px;margin-bottom:8px;}
.lineBox.joinFin .conT4 {margin-bottom:24px;}
.lineBox.joinFin .txtSub {line-height:28px; font-size:18px;}
.lineBoxIn {position: relative;height: auto;padding: 48px 0 48px 0; margin-bottom:12px; overflow: hidden;background-color: #F7F7F7;}
.lineBoxIn:before {content:''; position:absolute; width:211px; height:255px;background: url( "/user/images/newImages/simbolBg.png" ) no-repeat;right: -23px; bottom: -75px; background-size: cover;}

.textIn {margin: 0 70px;padding-bottom: 28px;}

.statutePage .table_normal tbody tr td.subject {padding: 12px 10px;}


/*icon img*/
/*.noticIcon {width:13px;vertical-align: sub;}*/
.fileIcon {width: 13px;margin-top: -3px;margin-right:5px;}
.secretIcon {position: relative; top: -3px;width:20px; margin-right:8px;}
.lockIcon {position: relative; margin-right:8px;vertical-align: text-top;}
.previewIcon {position: relative;top:2px;display:block; font-weight:600; font-size:17px;color:#999;transition:all .3s ease;}
.previewIcon:hover {color:#00479D;}

.previewBtn .previewImg {width:19px;transition:all .3s ease;}
.previewBtn .previewImg.on {display:none;}
.previewBtn:hover .previewImg.off {display:none;}
.previewBtn:hover .previewImg.on {display:inline-block;}
.circleIcon {position: relative;top: -2px;width:19px;margin-right:8px;}


/*테이블 악세사리­*/
.tbAccessories {position:relative;display: flex;align-items: center;justify-content: space-between; margin-bottom: 10px; flex-wrap: wrap;}
.listTotalBox, .sortBox {display: flex; gap: 10px; align-items: center; font-size:15px; color:#555;}
.listTotal, .pageTotal {display:flex; align-items:center; gap: 6px;}
.listTotal strong,
.pageTotal strong {
    font-weight:600;
    color:var(--primary);
}
.listTotalDivider { flex:0 0 1px; width:1px; height:14px; background:#888; opacity: 0.3;}

.bulletStyle li {position: relative; padding-left: 8px; font-size:16px;}
.bulletStyle li > strong {margin-right:8px; color:#555;}
.bulletStyle li:before {content:''; position:absolute;left: 0;top: 12px; width:3px; height:3px; background-color:#000; border-radius:50px;}

.remarkTxt > p {margin-left:18px;line-height:20px;}
.remarkTxt > p:before {content:'Ã¢â‚¬Â»'; position:absolute; left:0;}
.remarkTxt > p.remarkTxtSubT {margin-left:0;margin-bottom: 12px;font-size: 16px; font-weight: 500;}


/*정렬*/
.listcodnitiontitle {display:inline-flex;align-items: center;gap: 0 10px; font-size:15px; color:#666; transition:none ; cursor: pointer;}
.listcodnitiontitle .icon {
    position: relative;
    display: inline-block;
    padding-left:0px;
    background: url(../../user/images/newImages/icon/ic_selectBSArrow.svg) no-repeat center center;
    width: 16px;
    height: 16px;
    opacity: 0.4;
}
.listcodnitiontitle.on {color:#000;font-weight:500;}
.listcodnitiontitle.on .icon {
    opacity: 1;
}
.listcodnitiontitle.up .icon{color:#666;transform: rotate(0deg);}
.listcodnitiontitle.down .icon{color:#666;transform: rotate(180deg);}
.line {position:relative;  padding:0 8px; color:#888; opacity: 0.3;}

.gridViewBox {float: right;margin-left:20px;}
.gridView {}
.gridView li {position:relative; float: left;}
.gridView li:first-child a {border-left: 1px solid #D7D7D7;}
.gridView li a {display: block; width:28px; height:28px;text-align: center;line-height: 14px; border: 1px solid #D7D7D7; border-left:none;}
.gridView li a .icon-listBtn2 {position: absolute; top:2px; left:2px;line-height: 24px; font-size:25px;color:#999;}
.gridView li a .icon-grid2 {position: absolute; top:3px; left:3px;line-height: 23px; font-size:22px;color:#999;}
.gridView li.on a .icon {color:#00479D;}


/*table*/
.tableTitle {position:relative;}
.tableTitle p {margin-bottom:12px;}
.tableTitle .conT6 {float:left;margin-bottom: 20px;}
.tableTitle .remark {position: absolute;right: 0;top: 8px;margin:0px;}
.tableTitle button {position: absolute;right: 0;top: 0;margin:0px;}
.tableTitle button .icon-pencil2 {position: relative;top: 5px;font-size: 23px;}



.toggleTb {float: left;width: 100%;}
.tableSubTxt {float:right;}
.tableSubTxt p {display: inline-block;margin:0; font-size:15px;letter-spacing: -0.5px; color:#000;}
.subTitle {display: inline-block;margin-bottom:3px;color:#555;}
.subTitle.pcHide {display:none;}
.tagGauge {float: left; height: 50px; margin-right: 12px;}
.tag {display: inline-block; width: 68px;letter-spacing: -0.7px; text-align: center;padding: 0 8px;height: 23px;line-height: 23px;font-size: 13px; background-color: #ddd;}
.tag.pcHide {display:none;}
.tag.blue {background-color: #006DAC;color: #fff;}
.tag.green {background-color: #008829;color: #fff;}
.tag.pink {background-color: #DB2E69;color: #fff;}
.tag.orange {background-color: #F77E0B;color: #fff;}
.gaugeBox {position: relative;display: block;width:68px;margin-top: 2px; padding: 0 8px;height: 23px;line-height: 23px;text-align:center;font-size: 13px; background-color: #6f757b;}
.gauge {position: absolute;left: 0;display: inline-block; height: 23px; background-color: #000;}
.unitBox {position: relative;color: #fff;}
.unit {font-size:11px;}
.subTh {margin-top:8px; line-height:21px; font-size:13px; color:#555;}
.subTh strong {color:#000; font-weight:500;}

/*tbBlue*/
.tbBlue {width:100%;border-top: 0;border:1px solid #d7d7d7;border-collapse: collapse;}
.tbBlue:before {display:none;}
.tbBlue > thead > tr > th, .tbBlue > tbody > tr > th, .tbBlue > tfoot > tr > th {font-weight: 500;font-size: 15px;background-color: #EDF0F6;border: 1px solid #d7d7d7;color:#000;}
.tbBlue > thead > tr > td, .tbBlue > tbody > tr > td, .tbBlue > tfoot > tr > td {padding: 14px 16px;font-size: 16px;background-color: #fff; border-right:1px solid #d7d7d7;}
.tbBlue > thead > tr > th.grayBg, .tbBlue > thead > tr > td.grayBg, .tbBlue > tfoot > tr > th.grayBg, .tbBlue > tfoot > tr > td.grayBg,
.tbBlue tbody tr th.grayBg, .tbBlue tbody tr td.grayBg {background-color: #F1F1F1;}
.tbBlue thead tr th.lightgrayBg, .tbBlue thead tr td.lightgrayBg, .tbBlue tfoot tr th.lightgrayBg, .tbBlue tfoot tr td.lightgrayBg,
.tbBlue tbody tr th.lightgrayBg, .tbBlue tbody tr td.lightgrayBg {background-color: #F7F8F9;}
.tbBlue thead tr th.deepgrayBg, .tbBlue thead tr td.deepgrayBg, .tbBlue tfoot tr th.grayBg, .tbBlue tfoot tr td.deepgrayBg,
.tbBlue tbody tr th.deepgrayBg, .tbBlue tbody tr td.deepgrayBg {background-color: #F4F4F4;}
.tbBlue thead tr th.lightblueBg, .tbBlue thead tr td.lightblueBg, .tbBlue tfoot tr th.lightblueBg, .tbBlue tfoot tr td.lightblueBg,
.tbBlue tbody tr th.lightblueBg, .tbBlue tbody tr td.lightblueBg {background-color: #ECF4FD;}
.tbBlue thead tr th.blueBg, .tbBlue thead tr td.blueBg, .tbBlue tfoot tr th.blueBg, .tbBlue tfoot tr td.blueBg,
.tbBlue tbody tr th.blueBg, .tbBlue tbody tr td.blueBg {background-color: #EBEEF1;}
.tbBlue thead tr th.whiteBg, .tbBlue thead tr td.whiteBg, .tbBlue tfoot tr th.whiteBg, .tbBlue tfoot tr td.whiteBg,
.tbBlue tbody tr th.whiteBg, .tbBlue tbody tr td.whiteBg {background-color: #fff;}

.tbBlue > tbody > tr > td.bc {font-weight: 500;font-size: 15px;background-color: #EDF0F6;border: 1px solid #d7d7d7;color:#000;}
.table_normal > tbody > tr > td.bc {background-color: #f3f3f3;border-top: 1px solid #000; border-bottom: 1px solid #D7D7D7; color: #000;padding: 15px;font-size: 15px;font-weight: 500;}
.table_normal > tHead > tr > td.gc {padding: 15px 0; text-align: center;font-size: 15px;font-weight: 500;background-color: #f3f3f3;border-top: 1px solid #dadada;border-bottom: 1px solid #d7d7d7;color:#000;}

/*table hover css*/
.tbBlue tr.bgColor th {background-color: #EBEEF1;border: 1px solid #DCE1E6;}
.tbBlue tr.bgColor td {background-color: #F7F8F9;}

.tbBlue.tbBorder {border-top:1px solid #000;}
.tbBlue.tbBorder > thead > tr > th, .tbBlue.tbBorder > tbody > tr > th, .tbBlue.tbBorder > tfoot > tr > th {font-size:15px; border-top:1px solid #000;}
.tbBlue.tbBorder > thead > tr > td, .tbBlue.tbBorder > tbody > tr > td, .tbBlue.tbBorder > tfoot > tr > td {font-size:15px;}

/*tbGray*/
.table_normal.tbGray {border-top:1px solid #d7d7d7;}
.tbGray > thead > tr > th, .tbGray > tbody > tr > th, .tbGray > tfoot > tr > th {font-size: 15px;background-color: #F3F3F3;border: 1px solid #d7d7d7;}
.tbGray > thead > tr > td, .tbGray > tbody > tr > td, .tbGray > tfoot > tr > td {font-size: 15px;border: 1px solid #d7d7d7;}

/*empty*/
.empty {text-align: center;padding: 30px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border);}
.emptyIn p {margin:16px 0 8px 0; font-size:var(--font-size-body-medium); font-weight:500; color:#000;}
.emptyIn .emptySubTxt {display:block;font-size:var(--font-size-body-small); color:#555;}
.empty.itemList > li .itemIn {padding:28px;}

/*data-empty*/
.dataEmptyIn {padding: 20px;background-color: #F8F8F8;}
.dataEmptyIn img {margin-left:6px;}
.dataEmptyIn p {display: block;margin-top: 8px;font-size: 15px;color: #555;}

/*gallery*/
.titleSub {display:inline-block; margin-bottom:2px;font-size:16px;color:#555;}

.playWrap {position: absolute; top:38%; width:100%; text-align:center;z-index:1;}
.playBtn {position: relative; width:75px; height:75px; line-height:75px; margin:0 auto; border-radius:50px; background-color:rgba(0,0,0,0.7); transition:0.3s all ease;}
.playBtn:hover {background-color:#029F8A;}
.playBtn:before {content:"";position:absolute; top:0; left:0; width:0px; height:0px;border-radius:50px;background-color:#029F8A;transition:0.3s all ease;}
.playBtn:hover:before {width:75px; height:75px;}
.playBtn img {position:relative; top:-2px; left:5px; width:28px;}

.player .titleTag {display:inline-block; margin-bottom:2px; font-size:15px; color:#00479D;}
.player .gallery_bot {height:18px;}
.player .gallery_bot .gallery_tag {font-size:14px; color:#666;}


/*tabBox*/
.tabBox > ul > li > a span.bracket {display:inline;}
.tabBox > ul > li.on > a span.bracket {color:#fff;}
.tabBox > ul > li > a span.bracket.left {position:relative; top:-5px;}
.tabconBox2 {display:none;}

.toggleS2 {display:none;}
.moreRead {position:relative;display:inline-block; height:25px; line-height:23px;}
.moreRead .icon {position:absolute; top:9px; right:5px; font-size:12px; font-weight:600; color:#fff; transition:0.3s all ease;transform:rotate(-180deg);}
.moreRead.on {font-weight:500;color:#000;}
.moreRead strong {display:inline-block; width:51px; height:28px; line-height:26px; margin-left:8px; padding:0 8px;background-color:#6E7782; border:1px solid #6E7782; border-radius:2px;font-size:13px; color:#fff;}
.moreRead strong.mbTxts {width: 100px;margin-left: 0;}
.moreRead.on strong {background-color: #fff; border-color: #00479D;color:#00479D;}
.moreRead span.mbTxts {display:inline-block; width:51px; height:28px; line-height:26px; margin-left:8px; padding:0 8px;background-color:#6E7782; border:1px solid #6E7782; border-radius:2px;font-size:13px; color:#fff;width: 100px;margin-left: 0;}
.moreRead.on span.mbTxts {background-color: #fff; border-color: #00479D;color:#00479D;}
.moreRead.on .icon {transform:rotate(0deg); top:9px;color:#00479D;}


/* 수강신청 - 교육안내 */
.eduMoreRead {
    width: 100%;
    padding: 30px 24px;
    border-radius: 5px;
    background-color: var(--tableBg);
}
.eduMoreRead li:not(:last-of-type) {
    margin-bottom: 14px;
    color: var(--textBlack);
}
.eduMoreRead li {
    display: grid;
    gap: 10px;
    align-items: center;
    /*grid-template-columns: 65px auto minmax(142px, 152px);*/
    grid-template-columns: 65px auto max-content;
}

.eduMoreRead li:first-child {margin-top:0;}

.eduMoreRead .card-badge {
    background-color: #fff;
    flex-direction: row;
}
.eduNum {
    display: flex;
    width: 50px;
    height: 30px;
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    background: #fff;
    color: var(--textBlack);
}
.eduTxt {
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color:  var(--textBlack);
}
.eduUser {
    display: flex;
    align-items: center;
    gap: 0 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color:  var(--textBlack);
    text-align: right;
}

.edulist li {position:relative;margin-top:12px;}
.edulist li:first-child {margin-top:0px;}
.edulist .edulistT {position: absolute;margin-right:8px; font-size:14px;}
.edulist .edulistTxt {display: inline-block;margin-left: 57px;font-size:14px; color:#555;}
.edulist .edulistTxt2 {display: inline-block;margin-left: 70px; font-size:14px;}
.edulist .edulistTxtBlo {display:block; margin-left: 57px;font-size:14px; color:#555;}
.edulistTxtBlo .eduTagT {position: absolute;display: inline-block; width:70px; padding-left:7px;font-weight: 500; font-size:14px;}
.edulistTxtBlo .eduTxt {margin-left:70px; font-size:14px;}
.eduMoreStep {position: relative;}
.eduMoreStep li {position: relative;margin-top:5px;}
.eduMoreStep li:before {content:''; position:absolute; top:9px; left:2px; width:2px; height:2px; background-color:#555; border-radius:50px;}
.edulist .edulistTxt .eduStep p { margin: 4px 0 0 0;line-height: 21px;font-size:14px;}
.edulist li.edulistCont .edulistT {position:relative;}
.edulist li.edulistCont .edulistTxt {display: inline;margin-left:0;}
.eduStep {margin:0;}
.eduStepIn .eduStepInBox {margin-top: 8px;}
.eduStepIn .eduStepInBox:first-child {margin-top:0px;}
.eduStepIn .eduStepTitle {}
.eduStep button {margin:4px 0 4px;}
.eduStep button.cycberBtn {margin:2px 0 0 0;padding: 4px 5px 5px 12px;}
.eduStep button.cycberBtn .icon-arrowR {position: relative;top: 3px;font-size: 18px;}
.eduStep button.totalBtn {margin:2px 0 0 0;padding: 4px 5px 5px 12px;}
.eduStep button.totalBtn .icon-arrowR {position: relative;top: 3px;font-size: 18px;}
.eduStepInSub {display: inline-block;margin: 8px 0 0 0;}
.eduStepSubTxt {margin: 12px 0 0 0; padding-top: 12px;border-top: 2px dotted #eee;}

.eduCalendarTd.table_normal thead tr th {padding:15px 0;}

.mapBtn {padding: 5px 6px 5px 12px;}
.mapBtn .icon-arrowR {position: relative;top: 3px;font-size: 18px;}
.facilityBtn {padding: 5px 6px 5px 12px;}
.facilityBtn .icon-arrowR {position: relative;top: 3px;font-size: 18px;}

.mbTabconBox.tabconBox {margin-top:0px;}
.mbTabconBox .tableTitle .conT5 {margin-bottom:0px; padding-bottom: 12px;background-color: #fff; text-align: center; }
.mbTabconBox .grayBgIn {padding:16px 15px 15px 15px;}
.mbTabconBox.tabconBox .mbTabconItem {margin:20px 0 24px 0;background-color: #F3F3F3;}
.mbTabconBox.tabconBox .eduMoreRead {background-color:rgba(255,255,255,0.7);}
.mbTabconBox.tabconBox .mbTabconItem .buttonSL {width:100%; margin:0;}
.mbTabconBox.tabconBox .mbTabconItem .buttonSL .icon-pencil2 {position: relative;top: 5px;font-size: 25px;}
.mbTabconBox.tabconBox .mbTabconItem .buttonM .icon-pencil2 {position: relative;top: 5px;font-size: 25px;}
.mbTabconBox.tabconBox .mbTabconItem .applicateBtn {width:auto;}
.mbTabconBox .eduCalendarTd.table_normal > tbody > tr > th, .mbTabconBox .eduCalendarTd.table_normal > tbody > tr > td, .mbTabconBox .eduCalendarTd.table_normal > tfoot > tr > td {padding: 10px 5px;font-size:13px;}

.applyPage .facilitySubIn {position:relative;top:7px;}
.applyPage .facilitySub > ul > li {padding:28px 32px;}


.eduAgreeCont {clear: both;margin-bottom:20px; padding: 15px;height: 100px;overflow: hidden;overflow-y: scroll;border-color: #d7d7d7;background-color: #eee;color: #666;}
.eduAgreeContIn {padding-top:10px;}
.eduAgreeContIn:first-child {padding-top:0px;}
.eduAgreeContIn ol {padding:0px;}


/*온라인설문*/
.onlineSurvey .textCont.noScr > .textContIn {padding:40px 0;}
.onlineSurvey .tableListIn li:first-child {margin-top:0px;}
.onlineSurvey .byteInputBox {position: relative;display: inline-block;max-width: 800px;width: 100%;}
.onlineSurvey .byteInputBox .inputT {position: absolute;top: 50%; transform: translateY(-50%);}
.onlineSurvey .byteInputBox .byteInput {display: block;width: 100%;padding-left: 20px;}
.onlineSurvey .byteInputBox .byteInput input[type='text'] {width: 100%;margin: 2px 0;}
.onlineSurvey .byteBox {display:inline;}
.onlineSurvey .byteBox .byteNumInput {width: 50px; text-indent: 0;}
.onlineSurvey .byteBox span {font-size:13px;}

/*자료실*/
.bookIntro {margin-bottom:47px;}
.bookIntroIn {}
.bookIntroIn > ul {overflow:hidden; border: 1px solid #d7d7d7;}
.bookIntroIn > ul > li {position:relative;float:left; width:50%;/*height:190px;*/}
.bookIntroIn > ul > li > a {width:150px;height:190px;float:left;}
.bookIntroIn > ul > li:after {content:''; position:absolute; top:0px; left:0px; width:1px; height:100%; border-right:2px dotted #d7d7d7;}
.bookIntroIn > ul > li:first-child:after {display:none;}
.bookImg {width:100px;position:absolute; top:24px; left:32px; box-shadow: 5px 5px 0px 1px #E4E4E4; border: 1px solid #E4E4E4;}
.bookIntroTxt {margin-left: 160px;padding: 24px 0;}
.bookIntroTxt a {display:inline-block;overflow:hidden;}
.bookIntroTxt ul {}
.bookIntroTxt ul li {margin-top: 4px;font-size: 16px;}
.bookIntroTxt ul li strong {position: absolute;padding-left: 8px;}
.bookIntroTxt ul li strong:before {content:''; position:absolute; top:11px; left:0px; width:2px; height:2px; border-radius:50px;background-color:#000;}
.bookIntroTxt ul li span {display: inline-block;margin-left: 90px;color: #555;}
.bookTitle {margin-bottom: 8px;font-size: 18px;font-weight: 500;color: #00479D;}

/*자료실 상세*/
.bookDetail {}
.bookDetail .bookDetailBox {position: relative;margin-bottom: 40px;background-color: #F3F3F3;border-top: 1px solid #000;border-bottom: 1px solid #d7d7d7;}
.bookDetail .bookDetailBox .bookImg {top: 28px;}
.bookDetail .bookDetailBox .bookIntroTxt {padding: 28px 0;}
.bookDetail .bookDetailBox .attachBtn {margin-top: 16px;margin-left:0px;}
.bookDetail .bookDetailBox .attachBtn button {margin-left:0px;}
.bookDetail .bookDetailBox .attachBtn button:first-child {margin-right:4px;}
.bookDetail h4 {margin-bottom:8px; font-size: 18px;}
.bookDetail .index { margin-bottom: 40px;border-bottom: 2px dotted #d7d7d7;}
.bookDetail .listIcon {position: relative;top: -2px;width: 16px;margin-right: 5px;}
.bookDetail .contents {}
.bookDetail .textIcon {position: relative;top: -2px;width: 16px;margin-right: 5px;}
.bookDetail .txtBox p {margin-bottom:40px;word-break: break-all;}

/*강의 상세*/
.lectureCont {}
.lectureContIn {display: flex; padding-bottom: 40px;overflow:hidden;border-bottom: 2px dotted #d7d7d7; gap: 24px;}
.learnTerm {position:relative; padding: 24px; background:#F1F4FC; border-radius:10px; flex: 1;}
.learnTermT {display: flex;justify-content: space-between;align-items: center; margin-bottom: 18px;}
.learnTermT .termTitle {display: flex; font-weight: 600;line-height: 27px;font-size:22px; color:#000;}
.learnTermT .term {margin-left: 20px;line-height: 28px;font-size:17px; font-weight:500; color:var(--secondaryBlue1);}
.learnTermT .term span {}
.learnBtn {position:absolute; bottom:27px; left:24px; width:180px; margin:0; border-radius:8px; font-size:16px;}
.learnBtn.on {box-shadow: 6px 9px 7px -3px rgba(226,31,9,0.25);}
.learnBtn:hover {background-color: #E21F09; color:#FFFF00;box-shadow: 6px 9px 7px -3px rgba(226,31,9,0.25);}
.learnBtn:after {content:''; position:absolute; top:8px; left:42px; content:''; width:1px; height:26px; border-right:1px solid rgba(255,255,255,0.2);}
.learnBtn .playImg {margin-right:15px; margin-left:-11px;}

.lectureInfo {display: flex;flex-wrap: wrap;column-gap: 24px;row-gap: 10px;}
.lectureInfo > li {flex: 1; position:relative; padding:16px; text-align:center; background-color:#fff;border-radius:10px;}
.lectureInfo > li p {font-size:18px;font-weight: 500;color:#000;}
.lectureInfo > li .score {position:relative;height: 90px;display: flex;align-items: end;justify-content: center;font-size:48px;font-weight:600;color:#224B7D;z-index:1;}
.scoreNum {display:inline-block; margin-top:10px;}

.view-complate-day {display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 30px 0 12px 0;
    font-size: 14px;
}

.lectureLec {position:relative;}
.lectureLec:first-child {}
.lectureLec .cyberLecT, .lectureLec .setLecT {position: absolute;top:33%;width: 47px; padding: 2px 0px;font-size: 13px;color: #555; background-color: #F1F1F1;border: 1px solid #d7d7d7;border-radius: 10px;}
.lectureLec .score { top: -8px;margin-left: 60px;}
.lectureLec .score .scoreNum {font-size:30px;}
.lectureLec .scoreBg {left: auto; height: 50px;right: 5px;width: 70px; margin:0;}
.lectureLec .scoreBg li {width:8px;}
.lectureLec .scoreBg li span {display:block;background-color:#F1F1F1;}
.lectureLec .scoreBg li.on span {background-color:#C9DFFF;}
.lectureLec .score1 span {height:10px;margin-top: 40px;}
.lectureLec .score2 span {height:20px;margin-top: 30px;}
.lectureLec .score3 span {height:30px;margin-top: 20px;}
.lectureLec .score4 span {height:40px;margin-top: 10px;}
.lectureLec .score5 span {height: 50px;margin-top: 0px;}

.scoreBg {position: absolute;width: 84px;height: 70px; margin: 0 auto;top: 0;left: 0; right: 0; bottom: 0;}
.scoreBg li {position:relative;width:12px; float:left; margin-left:6px; }
.scoreBg li:first-child {margin-left:0;}
.scoreBg li span {display:block;background-color:#F1F1F1;}
.scoreBg li.on span {background-color:#C9DFFF;}
.score1 span {height:30px;margin-top: 40px;}
.score2 span {height:40px;margin-top: 30px;}
.score3 span {height:50px;margin-top: 20px;}
.score4 span {height:60px;margin-top: 10px;}
.score5 span {height:70px;margin-top: 0px;}
.standard {display:inline-block; margin-top:23px; font-size:14px; color:#666;}
.standardTxt {line-height: 20px;letter-spacing: -1.5px;font-size:14px; color:#666;}
.lectureInfo .lectureInfo1 .unit,
.lectureInfo .lectureInfo1 .scoreNum {color: var(--primary)}
.lectureInfo .lectureInfo2 .unit,
.lectureInfo .lectureInfo2 .scoreNum {color: var(--secondaryOrange)}
.lectureInfo3 {}
.lectureInfo > li.lectureInfo3 .score {font-size:32px; font-weight:600;align-items: center;}
.lectureInfo > li.lectureInfo3 button {margin:0;}
.lectureInfo > li .score {color:#999999;}
.lectureInfo.notCompleted > li .scoreNum {font-weight:700;}
.lectureInfo > li .unit {position: relative;top: -12px;font-weight:500; font-size:16px;}
.lectureInfo.notCompleted > li button {display:none;}
.lectureInfo.completed > li .standardTxt {display:none;}

.noticeTab {flex:1;padding: 24px;background-color: #F3F3F3;border-radius: 5px;height: 294px;}
.noticeTab .tabcon {height: calc(100% - 45px);}
.noticeTab > ul {position: relative; display: flex; align-items: center; margin-bottom:18px; overflow:hidden;border-radius:5px;}
.noticeTab > ul li:first-child:after {content: 'ㆍ';margin: 0 10px;
    color: #D0D0D0;
    font-size: 32px;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 5px;
    position: relative;
    top: 5px;}
.noticeTab > ul > li {}
.noticeTab > ul > li > a {font-weight:500; font-size:var(--font-size-body-large);color:#999;}
.noticeTab > ul > li.on > a {color: var(--black); font-weight:700;}

.noticeTab .tabconIn > li { display: grid;grid-template-columns: minmax(0, 1fr) auto;align-items: center;column-gap: 12px;}
.noticeTab .tabconIn > li > a.ellipsis {display: block;min-width: 0;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;font-weight: 500;}
.noticeTab .tabconIn > li > .noticeDate {white-space: nowrap;}

.noticeTab .dataEmptyIn {padding: 50px 0 50px 0;text-align: center; height: 100%;display: flex;align-items: center;justify-content: center;}
.noticeTab .dataEmptyIn .emptyImg {width:40px; margin-top:10px;}
.noticeTab .dataEmptyIn p {margin: 16px 0;font-size: 15px;color: #666;}

.tabcon {border-radius:5px;}
.tabconIn {padding: 0 15px;background-color: rgba(255, 255, 255, 0.6);}
.tabconIn li {padding:15px 0; border-top:1px solid #ddd;}
.tabconIn li:first-child {border-top:none;}
.tabconIn li a {font-size:14px;color:#333;transition:0.3s all ease;}
.tabconIn li a:hover {color:#00479D;}
.tabconIn li .noticeDate {float:right; font-size:13px;color:#666;}


.statusCont {margin-top:24px;}
.statusCont .conT5{margin-bottom:20px;}
.listTImg {position:relative; top:-1px;width:17px; margin-right:8px;}

.mbLectureRoom .learnTerm {width:100%;}
.mbLectureRoom .statusCont {padding-bottom: 40px;border-bottom: 2px dotted #d7d7d7;}
.mbLectureRoom .noticeTab { width: 100%;margin-bottom: 40px;margin: 40px 0 40px 0;}
.mbLectureRoom .table_normal.board-read > tbody > tr > td {padding:5px; font-size:14px;}

.okIcon {position:relative;width:26px;}
.moreList {position:relative;}
.moreListT {display: block;height: 55px;padding: 15px 16px;}
.moreListBtn {position: absolute; right:16px; width:77px; padding:2px 18px 2px 8px;}
.moreListBtn .icon {position: absolute; top:6px; right:5px; margin-left:5px; font-size:12px;transform:rotate(180deg); transition:0.3s all ease;}
a.on .moreListBtn .icon {transform:rotate(0deg);}
.moreListView {padding:0 15px; background-color:#f7f8f9;}
.moreListView .table_normal {border-top:none;border-bottom:none;}
.moreListView .table_normal tbody tr td {background-color:#f7f8f9;border-bottom: none; border-top: 1px dotted #d7d7d7;}
.moreListView .table_normal tbody tr td.borderN {border:none;}
.moreListView .table_normal tbody tr td.pad0 {padding:10px 0;}
.moreListView .txtT {}
.moreListView .iconBox {display: inline-block;}
.moreListView .iconBox .stateIcon {width: 22px;margin-right: 20px;}
.moreListView .iconBox .subjectIcon {position: relative;top: -1px; width: 16px; margin-right: 4px;}
.moreListView .iconBox strong {margin-right: 7px; font-weight:500; font-size: 12px; color: #666;}
.moreList .eduTxt {margin-top:1px;}

.lectureList {overflow: visible;}
.lectureList.faq_normal a .faq_q {left:0px; background:none;}
.lectureList .oImg {width:22px;}
.lectureList .xImg {width:22px;}
.lectureList .eduNum {position:relative;margin-left: 6px;}
.lectureList.faq_normal a {padding:16px 0;}
.lectureList.faq_normal a .icon {right:7px;}
.lectureList.faq_normal a .txt {margin-left:40px;font-size:15px; color:#555;}
.lectureList.faq_normal > ul > li a.on .faqText {color:#00479D;}
.lectureList.faq_normal a .txt .faqTag {position:absolute; top:18px; margin-right:14px; font-weight:500; color:#666;}
.lectureList.faq_normal a .txt .faqTag:after {content:''; position:absolute; top:7px; right:-9px; width:1px; height:11px;background-color:#D7D7D7;}
.lectureList.faq_normal .faqText {display: inline-block;margin-left: 59px;font-size:18px;}

.lectureList .faq_contents {position: relative;padding:16px 15px;overflow: hidden; background-color: #F2F5F8;border-bottom: none;font-size: 14px;}

.lectureItem > li {margin-top:12px; padding:15px 16px;background-color: #fff; border: 1px solid #EAEDF1; border-radius:5px;}
.lectureItem > li:first-child {margin-top:0px;}
.lectureItem .lectureItemTitle {margin-bottom:12px; padding-bottom:12px; border-bottom:2px dotted #D7D7D7;}
.lectureItem .lectureItemTitle span {margin-left: 0px;font-size:13px; color:#666;}
.lectureListItem .lectureTag {position: relative;top: 0px;display: inline-block; margin-left: 4px;margin-right: 6px;color: #E21F09;font-weight: 500; font-size: 13px;}
.cyberImg {position:relative; top:-1px; width:16px; margin-right:4px;}
.setImg {position:relative; top:-1px; width:16px; margin-right:4px;}
.boardImg {position:relative; top:-1px; width:16px; margin-right:4px;}
.subjectIcon {position:relative; top:-1px; width:16px; margin-right:4px;}
.stateIcon {width:30px;}
.lectureItem .lectureItemTitle p {margin-top:12px; font-size:16px; color:#000;}

.lectureItemInfo {position: relative;}
.lectureItemInfo .itemInfo {position:relative; margin-right:67px;}
.lectureItemInfo .itemInfo li {}
.lectureItemInfo .itemInfo li:first-child {width:150px;}
.lectureItemInfo .itemInfo li .itemInfoT {position: relative; float:left; font-weight:400;}
.lectureItemInfo button {position: absolute;top: -3px;right: 0;}
.itemInfoT.itemY {position: relative;top: 0px; float:right; width:80px; height:23px; line-height:21px; display:inline-block;padding: 0 6px;text-align: center;font-size: 13px;border:1px solid #006DAC;color: #006DAC;}
.itemInfoT.itemN {position: relative;top: 0px; float:right; height:23px; line-height:21px; display:inline-block;padding: 0 6px;text-align: center;font-size: 13px;background-color: #EBEEF1;border: 1px solid #E2E2E2;color: #555;}
.lectureItemInfo .itemInfo li .itemInfoTxt {display: inline-block; float:left; margin-left:0px;font-weight: 500; font-size:15px; color:#000;}
.lectureItemInfo .squareBtn {position: absolute; top:6px; right:0px; width:60px; height:60px; font-size:14px;}


/*평가*/
.scoring .columnIn {float: none; width:600px; height:485px; margin: 0 auto;}

/*bannerTitle*/
.bannerTitle {position: relative; margin-bottom:48px; padding:24px; border:1px solid #D7D7D7;}
.bannerTitle p {line-height:28px;}
.bannerTxt {display: inline-block;margin-left: 32px;}
.alertImg {position: absolute;top: 26px;width:24px;margin-right:8px;}
.bannerSubT {display:inline-block; margin-top:16px; margin-bottom:2px; font-size:16px; color:#888;}

.meritTb.table_normal tbody tr th {position:relative; border-top:1px solid #D7D7D7;}
.meritTb.table_normal tbody tr th div:before {content: "";height: 23px;position: absolute;left: 0px;border-left: 1px dotted #B7C4D1;}
.meritTb.table_normal tbody tr th:first-child div:before {display:none;}
.board-write #mberEmailAdres2 {margin-left:6px;}
#cnvncSportRequstCn {position:absolute; top:-6px;}

.secessionPage .bannerTitle {background-color: #F9F9F9;border: 1px solid #E1E1E1;}
.secessionPage .bannerTitle p {line-height: 23px;}

.reAgree .bannerTitle {background-color: #F9F9F9;border: 1px solid #E1E1E1;}
.reAgree .bannerTitle p {line-height: 23px;}
.reAgree .bannerTitle .bannerTxt {margin-left:0px;}


/*아이템리스트*/
.gallery_normal > ul.itemList > li {width:100%;}
.itemList {}
.itemList > li {}
.itemList > li:first-chlid .galleryBox {margin-top:20px;}
.itemList > li .galleryBox {background-color:#F8F8F8;border-radius:5px;}
.itemList > li .itemIn {position:relative;margin: 0; padding: 14px 15px 15px;}
.itemTop.noGauge .gaugeItemIn {position: relative;top: 5px;}
.itemTop button {position:absolute;top:12px; right:12px;}
.gaugeItem {display:inline-block; height:25px; margin-bottom:5px;}
.gaugeItemIn {margin-bottom:2px; padding-right:1px; overflow:hidden;}
.gaugeItemIn .gaugeTitle {float:left; font-size:13px; font-weight:500;}
.gaugeItemIn .gaugeNum {float:right;margin-left:4px;}
.gaugeItem .gaugeBg {position:relative; display:block; height:4px; background-color:#D1D3D5;}
.gaugeItem .gaugeBg span {position: absolute; left:0;display:inline-block; height:4px;background-color:#676B70;}
.itemTitle {margin-bottom:8px;}
.empty .itemTitle {margin-bottom:0px;}
.itemTitle span {display:inline-block; margin-bottom:2px;line-height: 28px; font-size:14px; color:#555;}
.itemTitle .subject {line-height:26px; font-size:18px; font-weight:500;color:#000; }
.itemTitle .subject a {color:#000;}
.itemInfo {overflow:hidden;}
.itemInfo li {position:relative; float:left; width:50%; margin-top: 4px;}
.itemInfo.item2 li {float:none; width:100%;}
.itemInfo li .itemInfoT {display:inline-block; position:absolute; margin-right:8px; font-size:14px; color:#555;}
.itemInfo li .itemInfoTxt {margin-left: 66px;font-size:14px; color:#666;}
.itembutton {margin-top:16px;}
.itembutton.button1 button {width:100%;min-width:auto;}
.itembutton.button2 button {width:49%;min-width:auto; margin-left: 1%;}
.itembutton.button2 button:first-child {margin-left:0;}

.eduInfoFin .gaugeItem {position: relative;top: 3px;}

/*설문*/
.privacy {}
.privacy .table_normal {margin-bottom: 28px;}
.subPrivacy {margin:4px 0; }
.subPrivacy p {margin-bottom:8px; font-size:15px;}
.subPrivacy strong {display:inline-block;margin-bottom:8px; font-size:15px;}
.subPrivacy span {display:inline-block; margin-bottom:8px; line-height:22px; font-size:14px; color:#555;}
.subPrivacy div {margin-bottom:8px; line-height:22px; font-size:14px;color:#555;}
.subPrivacy a {color:#000; font-weight:500;}
.subPrivacy a.txt_blue {color: #00479D;}
.subPrivacySub {margin-left: 10px; margin-bottom: 10px;}
.subPrivacySub li {margin-left:15px;}
.subPrivacySub li:first-chlid {margin:0px;}

.markImgList {}
.markImgListIn {overflow:hidden;}
.markImgListIn li {float: left;width: 25%;text-align:center;}
.markImgListT {position:relative; margin-top:8px; padding:15px 0; font-size: 15px;color: #000;background-color: #f3f3f3;border-top: 1px solid #000;}
.markImgListT:before {content:''; position:absolute; top:13px; left:0px; width:1px; height: 23px; border-left: 1px dotted #B7C4D1;}
.markImgListIn li:first-child .markImgListT:before {display:none;}
.markImgListCont {padding: 15px 16px;border-bottom: 1px solid #d7d7d7;border-left: 1px solid #d7d7d7;}
.markImgListIn li:first-child .markImgListCont {border-left:none;}

.emailWtrms .grayTxtBox {padding:15px;}

.errorPage {padding:170px 0 90px 0;}
.errorT {margin:15px 0 8px 0; font-size:24px;}
.errorTxtBox p {line-height:25px; font-size:15px; color:#555;}

.subTxt {margin: 15px 0; font-size: 15px;}
.subTxtList {clear:both; margin: 5px 0}
/*.subTxtList li {font-size: 14px;}*/

.linkList {margin-bottom:36px; overflow: hidden;}
.linkList li {float:left;width:11.1%;}
.linkList li a {display:block; height:35px; line-height:35px;text-align:center;border:1px solid #d7d7d7;}
.linkList li.on a {}

.introduceCont .siBarLine {border-bottom:1px solid #d7d7d7;width:100%;margin:10px 0;}
.introduceCont .siDashLine {margin:0; border:none; border-bottom:1px dashed #d7d7d7;width:100%;}
.introduceCont .introWrapBox {border:1px solid #d7d7d7;}
.introduceCont .introT {margin-bottom:12px;}
.introduceCont .introTsub {color:#000;font-weight:500; margin-bottom:12px; padding-top:5px;}
.introduceCont .guideMent {padding:40px 0;text-align:center;color:#000;font-weight:500;line-height:24px;font-size:16px;}
.introduceCont .guideMent em {font-style:normal;color:#00479d;}
.introduceCont .forWeb {width:100%;}
.introduceCont .guideArrow {text-align:center;margin:-15px 0;}

.introduceCont .forWeb {display:block;}
.introduceCont .forMobile {display:none;}
.forWebh4 {display:block;}
.forMobileh4 {display:none;}

.application {}
.applicationTitle {font-size: 28px; font-weight: 500;}
.applicationIn .table_normal tbody tr th {font-size:19px;}
.applicationIn .table_normal tbody tr td {font-size:20px;}
.applicationTop .table_normal tbody tr th {height:60px;border-left: 1px solid #d7d7d7;}
.applicationTop .table_normal tbody tr th span {font-size:18px;}
.applicationTop .table_normal tbody tr th span.textTd {display: inline-block;margin: 10px 0 0 0;}
.applicationTop .table_normal tbody tr th:first-child {border-left:none;}
.applicationTop .table_normal tbody tr th > div {position:relative;}
.applicationTop .table_normal tbody tr th .titleTd {position: absolute; top: -8px; left:0; font-size:16px;}

.table_normal.applicationWrt tbody tr td {height:80px;}
.applicationIn .table_normal tbody tr td > div, .applicationIn .table_normal tbody tr th > div {position:relative;}
.applicationIn .table_normal tbody tr td .titleTd {position: absolute; top: 3px; font-size:18px;}
.applicationIn .table_normal tbody tr td p {display: inline-block; margin-left: 80px; color:#000;}

.applicationDate {margin:50px 0 80px;color: #000;}
.applicationDate p {font-size:18px;}
.applicationDateWrt {margin:40px 0 0 0;}
.applicationDateWrt p {}
.applicationDateWrt p span {display: inline-block;width: 100px;font-size: 20px;}

.applicationBottomT {position:relative; width: 500px; margin: 0 auto 30px;font-size: 28px; color:#000;}
.applicationBottom .table_normal tbody tr td {padding: 0;}
.applicationBottom .stampImg {position: absolute; right: -16px;bottom: -24px; z-index: -1;}

/*Ã¬Ë†ËœÃ«Â£Å’Ã¬Â¦Â*/
.certificates {margin:0 50px; border: 10px solid #003472;}
.certificatesIn {position:relative; margin: 9px;border: 2px solid #003472;}
.certificatesTitle {margin:150px 0 130px 0;letter-spacing: 15px; font-size:60px;}
.certificatesTop {position: absolute;top: 50px;right: 50px;}
.emblemImg {position: absolute; top: 0;left: 0;right: 0;bottom: 0; width: 570px;margin: auto;}
.certificatesCenter {}
.certificatesInfo {width: 800px; margin: 0 auto 120px; padding-left: 50px; text-align: left;}
.certificatesInfo li {position: relative;margin-top: 17px;font-size:21px;}
.certificatesInfo li:first-child {margin-top:0px;}
.certificatesInfo li strong {position: absolute;top: 0;left: 0;margin-right:28px; font-weight:400; color:#666;}
.certificatesInfo li span {display: inline-block;margin-left: 105px;}

.certificatesBottom {}
.certificatesBottom .textIn {margin-bottom: 56px;font-size: 22px; color: #000;}
.certificatesBottom .dates {font-size: 28px;color: #000;}
.certificatesBottom .ledger {position: relative; width: 500px;margin: 120px auto 60px;font-size: 32px;font-weight: 500;color: #000;}
.certificatesBottom .stampImg {position: absolute; right: -40px;bottom: -24px; z-index: -1;}

/*Ã¬Å¾ÂÃªÂ²Â©Ã¬Â¦Â*/
.qualificationT {margin: 0 0 8px 0; font-size:15px;}
.qualification {position: relative;border: 1px solid #000;}
.qualificationIn {position:relative;}
.qualificationTitle {margin:150px 0 130px 0; letter-spacing: 15px;font-size:60px;}
.qualificationSubT {display:block; margin:0 0 10px 0; letter-spacing: 2px; font-size:30px;}
.qualificationTop {position: absolute;top: 30px;left: 30px;}
.qualificationCenter {}
.qualificationInfo {width: 800px; margin: 0 auto 120px; padding-left: 50px; text-align: left; overflow:hidden;}
.qualificationInfo li {position: relative;float: left;width: 50%;margin: 0 0 20px 0;font-size:21px;}
.qualificationInfo li strong {position: absolute;top: 0;left: 0;margin-right:28px; font-weight:400; color:#666;}
.qualificationInfo li span {display: inline-block;margin-left: 105px;}

.qualificationBottom {clear:both;}
.qualificationBottom .textIn {margin:0 0 56px 0;font-size: 22px; color: #000;}
.qualificationBottom .dates {font-size: 28px;color: #000;}
.qualificationBottom .ledger {position: relative; width: 500px;margin: 120px auto 60px;font-size: 32px;font-weight: 500;color: #000;}
.qualificationBottom .stampImg {position: absolute; right: 10px;bottom: -24px; z-index: -1;}

.printDown {padding: 17px 17px;text-align: right;}


.dl_list {
    border-top: 1px solid #666;
}
.dl_list dl {
    display: grid;
    grid-template-columns: 154px auto;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
}

.dl_list dl dt {
    position: relative;
    width: 154px;
    padding-left: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--textGray);
}
.dl_list dl dt::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--textGray);
}
.dl_list dl dd {
    font-size: 17px;
    font-weight: 400;
    color: var(--textGray);
}

/*강사 모집*/
.teacher-recruitment {
    padding: 50px 60px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
}

.teacher-recruitment h6 {
    margin-bottom: 43px;
    font-size: 28px;
    text-align: center;
}

.teacher-recruitment-wrap {
    background: #F8EFE5;
    padding: 0 70px 55px;
}

.teacher-recruitment-cont dl:first-child {
    margin-top: 0;
}
.teacher-recruitment-cont dl {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.teacher-recruitment-cont dt {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 6px;
    color: #FFF;
    background: var(--secondarGreen);
    font-weight: 700;
    min-width: 85px;
    text-align: center;
}

.teacher-recruitment-cont dd {
    flex: 1;
    color: var(--textBlack);
    font-size: 18px;
    font-weight: 500;
}

.teacher-recruitment-list {
    border-radius: 6px;
    background-color: #F9F9F9;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.teacher-recruitment-list li {
    list-style: disc;
    margin-left: 20px;
    font-weight: 400;
    color: var(--textGray);
}

.teacher-recruitment-list li > span {
    font-weight: 600;
    margin-right: 10px;
    color: var(--textBlack);
}

.teacher-recruitment-cont dl:has(.attach) dt {
    background-color: var(--black);
}

.teacher-recruitment-status {
    margin-top: 30px;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    background-color: #F1F4FC;
    color: var(--textBlack);
    text-align: center;
}

.teacher-recruitment-wrap .btnGroup {
    margin-top: 40px;
}
/*******************************
           Media Query
*******************************/

@media screen and (max-width: 1320px) {

    /*header*/
    header {display: none;}

    .menuBg {display:none !important;}
    .headSubNav {display:none;}
    .headDepthNavIn {position:relative;top:0; height:auto;}
    .headDepthNavIn > ul {height:auto; padding:0px;}
    .headDepthNavIn > ul:hover {background:none;}
    .headDepthNavIn ul li a {font-size:15px;}
    .headDepthNavIn ul li .navInT a {font-size:16px;}

    .depthNavWrap {padding-left:10px;}
    .headSubNav ul li {margin-left:20px;}
    .headSubNav ul li:before {left:-11px;}

    .mbHeader {position: sticky;top: 0;display:flex; justify-content: space-between; align-items: center; padding: 0 12px 0 24px; height:74px; background-color:#fff;z-index: 5;box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.05);}
    .mbHeader .logo img {width:150px;}
    .mbHeader.on {background-color: var(--primary);}
    .mbHeader.on h1.logo a {color: #fff;}
    .mbHeader.on .triggerBtn button span {background-color: #fff;}
    .triggerBtn {display: block;z-index: 9;}

    /*.mainLayout {padding-top: 0;}*/
    /*.mainLayoutIn {margin:0 20px;}*/
    .sizeT .mainLayout {min-width: 1000px;padding-top:170px;}
    .subVisual {height:200px;}

    .noticeVisual {right:20px;}

    .faqBoxIn {padding:0 20px;}
    .faqBoxIn ul li {width:23.5%;margin-left: 2%;}
    .faqBoxIn ul li .faqSubT {margin-bottom:22px;}
    .faqBoxIn ul li .faqT {font-size:18px;}
    .faqBoxIn ul li:hover .arrowBox {bottom:26px;}


    .loginTabBox {height: 140px;/*padding: 22px 0px 22px 20px;*/}
    .loginTabBox:before {height:140px;}
    .searchFormBox:after {height:140px;}
    .loginTabWrap {width: 458px;height: 100px;margin: 0 auto;padding: 22px 0px 22px 20px;}
    .loginForm {position: absolute;top: 49px;display: block;width: 638px;}
    .loginCont h4 {font-size: 18px;}
    .basicLogin.loginCont {left: -248px;}
    .basicLogin h4 {left: 250px;}
    .basicLogin .loginFormIn {position: absolute; top: 2px;}
    .basicLogin .multiInput > div input[type='text'], .basicLogin .multiInput > div input[type='password'] {width:170px;}
    .basicLogin .loginFormIn.multiInput > div {display: inline-block;width: auto;}
    .digitalLogin.loginCont {left: -382px;}
    .digitalLogin .loginFormIn {right:80px;}
    .digitalLogin div input[type='text'] {width:342px;}

    .searchFormBox {height:140px;}
    .searchFormBox h4 {margin: 7px 0 20px 0;}
    .searchFormWrap {width: 460px;height: 100px;margin: 0 auto;}
    .searchFormIn {position: relative;top: 0; left:0;}
    .searchFormInput {width: 204px;}
    .searchFormIn .searchBtn {right:6px;}

    .loginUser {width: 425px; height: 100px; margin: 0 auto;padding: 25px 0 22px 0;}
    .loginUserBtn {float:none;margin: 20px 0 0 0;}
    .loginUserBtn a {width: 49%;}

    .mbFooter {display:block;}
    .footSiteLink {top: 0px;left: 0;right: 0;}
    .footSiteLink select {width:100%; background-position: 98% 50%;}

    .quickMenu {display:none;}

    /*layout*/
    .contLayoutIn {padding:0 15px;}

    .loginBox .columnIn {width:49%;}
    .columnIn .columnInTxt br {display:none;}
    .identityCont .columnIn {height:auto;}

    .askPage .ellipsis {display: inline-block;max-width: 400px;}
    .askPage .table_normal tbody tr td.subject p {white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}

    .test .popupBoxIn {width:1000px;}

    .lectureInfo {width:545px; margin:0 auto; overflow:hidden;}
    .noticeTab {width:100%; height:auto; margin-left:0;}

    .mbLectureRoom .noticeTab {margin-bottom:80px;}

    .errorPage {padding: 70px 0 0 0;}
}
@media screen and (max-width: 1024px) {
    /*button*/
    a.onepassBtn:hover {color: #fff;background-color: #00296A;border: 1px solid #00296A;}

    /*text*/
    .circleIcon {margin-right:5px;}

    /*****Ã«Â©â€Ã¬ÂÂ¸ PC*****/
    .topBanner .bx-wrapper img {width:100%; /*height:auto;*/ min-height:80px;margin:0 auto;}
    .sizeT .topBanner {height:auto;min-height:80px;}
    .topBanner #topBxPager {position: absolute;left: 0;bottom: 8px;}

    .quickMenu {display:none;}
    /*.mainLayout, .sizeT .mainLayout {padding-top:60px}*/
    .subVisual, .sizeT .subVisual {display:none; margin-top:0px;}
    .subVisual.bg01 {background-position-x: 30%;}
    .subVisual.bg02 {background-position-x: 72%;}
    .subVisual.bg03 {background-position-x: 30%;}
    .subVisual.bg04 {background-position-x: 30%;}
    .subVisual.bg05 {background-position-x: 30%;}
    .subVisual.bg06 {background-position-x: 30%;}

    .triggerBtn {top:6px;}

    /*subVisual*/
    .subVisual h3 {font-size:30px;}

    /*pagenav*/
    .pageNav {display:none;}

    .lineBorder {background-color: #F3F3F3;border-top: 1px solid #E9E9E9}

    /*table*/
    .tableTitle .conT5, .tableTitle .conT6 {float:none;margin-bottom:12px;}
    .tableTitle .remark {position: relative; top:0; display:block; margin-bottom:8px;font-size:14px;}

    .facilitySub > ul > li {padding:20px 15px;}
    .facilitySub > ul > li:first-child {border-bottom:1px dotted #d7d7d7;}
    .facilitySub > ul.item1 > li:first-child {border-bottom:none;}

    .facilityBox {padding:28px 15px;}
    .facilitySub > ul > li ul li {margin-bottom:0px; font-size:15px;}
    .circleBgIn {width:75px; height:75px;line-height: 71px;}
    .buildingIcon {width:36px;}
    .gymIcon {width:50px;}

    .sliderWrap {float: none;width: 100%; margin: 0 auto;}
    .sliderWrap li img {width:100%;}
    .slideInfo {float: none;width: 100%; margin-top:40px;}
    .slideInfoIn {margin:0;}

    .lineBoxR .lineBoxContIn li p {font-size:16px;}
    .lineBoxR .lineBoxContIn li span {font-size:14px;}

    .applyPage .facilitySubIn {top:0;}

    .askPage .ellipsis {max-width: 300px;}
    .askPage .mbHide {display:none;}
    .askPage .table_normal thead tr th > div:before {display:none;}
    .askPage .table_normal tbody tr td.subject {border-left: none;}
    .askPage .table_normal tbody tr td.subject p {max-width:500px;}

    .radioWrap {position:relative;top:0;}
    .radioWrap legend {position:absolute;top: 2px;font-size: 14px;}
    .radioWrap .legendCont {display:block; margin-left:67px; text-align:left;}
    .radioWrap .legendCont .radioBox {margin-right:8px;}
    .radioWrap .legendCont .radioBox input[type="radio"]+label {font-size:14px;}

    /*Ã«Â¡Å“ÃªÂ·Â¸Ã¬ÂÂ¸*/
    .inputBox {margin:0 30px;}
    .inputBoxBt {margin:24px 30px 0;}
    .inputBoxBt .telInfo {font-size:14px;}
    .inputBoxBt .telInfo .time {display:none;}
    .onepassImg {width:26px;}
    .telImg {display:none;}


    /*Ã¬â€¢â€žÃ¬ÂÂ´Ã«â€â€Ã«Â¹â€žÃ«Â²Ë† Ã¬Â°Â¾ÃªÂ¸Â°*/
    .findLoginBox .columnIn {float: none;width:100%;margin:0 0 20px 0;}
    .findLoginBox .inputBoxIn {margin:0 30px 0 30px;}



    .tableListIn li:first-child {margin-top:15px;}
    .tableListIn li {margin-top:15px;}
    .tableListIn li .byte {position: relative;display: block;right: 0;margin: 4px 0 0 0;text-align: right;font-size: 12px;}

    /*강의실*/
    .learnTermT .termTitle {display:inline-block; margin-right:7px; margin-bottom:0px; font-size:18px;}
    .learnTermT .term span {display:inline-block; margin:0;}
    .learnBtn {position:relative; display:block; top:0px; left:0px; right:0px; bottom:0px; margin:12px auto 0;}

    /*ÃªÂµÂÃ¬Å“Â¡Ã¬â€¹Â Ã¬Â²Â­*/
    .applyPage .facilitySub > ul > li {padding:20px 15px;}

    /*Ã¬ËœÂ¨Ã«ÂÂ¼Ã¬ÂÂ¸Ã¬â€žÂ¤Ã«Â¬Â¸*/
    .onlineSurvey .byteInputBox {max-width:100%;}
    .onlineSurvey .byteBox {display: block;margin: 4px 0;text-align: right;flex: auto;}
    .onlineSurvey .tableListIn li .byte {top:0px;}

    /*Ã­â€˜Â¸Ã­â€žÂ°*/
    .footer {padding:0 20px;}
    .footerIn {padding:20px 0;}
    .footerTop {padding-top:50px;}
    .footLink {display:none;}
    .footerBottomIn {display:none;}
    .footSiteLink {top:16px; left:0; right:0;}
    .footSiteLink select {width:100%;background-position: 98% 50%;}
    .footlogo {top:-30px;width:100px;}
    .footlogoImg {width: 130px; top: -30px;}
    .footMark {top: 0px;position: relative;padding-bottom: 10px;}

    .operatingTimeIn {margin:8px 0 0 0;}
    .operatingTimeIn p {display:inline-block; font-size:12px;}
    .operatingTimeIn strong {padding-left:8px; font-size:15px;}
    .opensourceLink img {width:80px;}
    .waLink img {width:53px;}

    .privacy .conT5 {font-size:18px;}
    .privacy .conT5 .buttonM {margin: 8px 0 0 0;}
    .privacy .table_normal thead tr th {font-size: 14px;}
    .privacy .table_normal tbody tr td {font-size: 14px;}
    .subPrivacy {}
    .markImgListCont img {height:36px;}
    #infoSubjectPopup .conT5 {font-size:18px;}

    .introduceCont .siBarLine {border-bottom:1px solid #d7d7d7;width:100%;margin:10px 0;}
    .introduceCont .siDashLine {border-bottom:1px dashed #d7d7d7;width:100%;}
    .introduceCont .introTsub {color:#000;font-weight:500;padding-top:5px;}
    .introduceCont .guideMent {padding:20px 30px;text-align:center;color:#000;font-weight:500;line-height:25px;font-size:15px;}
    .introduceCont .guideMent em {font-style:normal;color:#00479d;}
    .introduceCont .forWeb {width:100%;margin-bottom:40px;}
    .introduceCont .guideArrow {text-align:center;margin:-5px 0;}

    .introduceCont .introT {font-size:16px;margin-top:20px;}
    .introduceCont .forWeb {display:none;}
    .introduceCont .forMobile {display:block;}
    .introduceCont img.forMobile {width:600px;margin:0 auto;}
    .forWebh4 {display:none;}
    .forMobileh4 {display:block;margin:20px 0 0 0;}

    /*Ã­Å¡Å’Ã¬â€ºÂÃ¬Â â€¢Ã«Â³Â´Ã¬Ë†ËœÃ¬Â â€¢*/
    #cnvncSportRequstCn {position:relative; top:0;}

    .lectureContIn {flex-direction: column;}
}

@media screen and (max-width: 768px) {
    .contLayout {
        padding-bottom: 100px;
    }
    .listTotalBox + .ar.txt_blue {
        /*margin-top: 20px;*/
    }

    /*통합회원/로그인*/
    .login-box, .login-cont {
        flex-direction: column;
    }

    .eduMoreRead {
        padding: 20px 14px;
    }

    .login-cont a {
        margin: 0 auto;
    }

    /*****Ã¬â€žÅ“Ã«Â¸Å’*****/
    .subTitle.pcHide {display:inline;}

    .tableSubTxt {float:none;}
    .tableSubTxt .line {display:none;}
    .tableSubTxt p {margin-bottom: 8px;}

    /*table*/
    .fileIcon {width:11px; margin-right:4px;}
    .table_normal tbody tr td.subject p {white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
    .tbBlue > thead > tr > th, .tbBlue > tbody > tr > th, .tbBlue > tfoot > tr > th {font-size:14px;}
    .tbBlue > thead > tr > td, .tbBlue > tbody > tr > td, .tbBlue > tfoot > tr > td {padding:10px; font-size:14px;}

    .starBg.passwordChk:after {right:-35px;}

    /*empty*/
    .emptyImg {width:45px;}
    .emptyIn p {font-size:15px;}
    .emptyIn .emptySubTxt {font-size:14px;}

    /*bannerTitle*/
    .bannerTitle {margin-bottom:40px; padding:15px;}
    .bannerTitle p {font-size:14px;}
    .alertImg {top:16px}

    /*faq*/
    .lectureList.faq_normal a .faq_q {top:31px;}
    .lectureList.faq_normal a .txt {margin-left: 42px;}

    .eduMoreRead li {
        grid-template-columns: 1fr;
        gap: 8px 0;
    }
    .eduMoreRead li:not(:last-of-type) {
        margin-bottom: 20px;
    }

    .eduMoreRead li .eduUser {
        text-align: left;
    }

    .bulletStyle li {margin-bottom:16px; font-size:15px;}
    .bulletStyle li > strong {display:block;margin-bottom:4px;font-size: 15px;}
    .bulletStyle button, .bulletStyle a {margin:8px 0 8px 0; padding: 4px 12px;height: 28px;font-size: 13px;}
    .eduStep p {line-height: 20px;font-size:14px;}

    /*ÃªÂ¸Â°ÃªÂ´â‚¬Ã¬â€ Å’ÃªÂ°Å“*/
    .lineBoxL {float:none; width:100%;}
    .lineBox img {width:240px;}
    .lineBoxR {float:none; width:100%;}
    .lineBoxR .lineBoxContIn {margin:0 20px 20px 20px;padding: 20px;}
    .introduceList li {margin: 3px 0;}
    .introduceList ul li {margin-bottom:0px;}

    /*Ã¬Â°Â¾Ã¬â€¢â€žÃ¬ËœÂ¤Ã¬â€¹Å“Ã«Å â€ ÃªÂ¸Â¸*/
    .bulletStyle a.mapBtn, .bulletStyle a.facilityBtn {display: block;padding: 4px 5px 5px 12px;}
    .bulletStyle a.mapBtn {width:157px;}
    .bulletStyle a.facilityBtn {width:132px;}

    /*Ã¬â€”Â´Ã«Â¦Â°ÃªÂ³ÂµÃ«Â¶â‚¬Ã«Â°Â©*/
    .author {font-size:13px; color:#555;}

    /*Ã«Â¬Â»ÃªÂ³Â Ã«â€¹ÂµÃ­â€¢ËœÃªÂ¸Â°*/
    .askPage .subTitle.pcHide {font-size: 14px;color: #666;}
    .askPage .table_normal tbody tr td.subject {word-break: keep-all;}
    .askPage .table_normal tbody tr td.subject p {white-space: normal;overflow: visible;text-overflow: inherit;}
    .askPage .table_normal tbody tr td.writer {}
    .askPage .table_normal tbody tr td.writer span {/*display: inline-block; min-width: 26px;*/white-space: nowrap;}
    .askPage .table_normal tbody tr td.answerOk, .askPage .table_normal tbody tr td.answerNo {padding:0;}
    .askPage .table_normal tbody tr td.answerOk .answer, .askPage .table_normal tbody tr td.answerNo .answer {/*display: inline-block; min-width: 26px;*/white-space: nowrap;}
    .answerOk img, .answerNo img {position:relative; width:15px; top:-1px;}

    /*Ã¬ËœÂ¨Ã«ÂÂ¼Ã¬ÂÂ¸Ã¬â€žÂ¤Ã«Â¬Â¸*/
    .participation {font-size:13px; color:#555;}
    .tag.pcHide {display:block;}
    .monthDateMb {display:none;}
    .monthDatePc {}

    /*Ã¬â€¢â€žÃ¬ÂÂ´Ã«â€â€Ã«Â¹â€žÃ«Â²Ë† Ã¬Â°Â¾ÃªÂ¸Â°*/
    .findLoginBox .columnT {padding:32px 0 16px 0; font-size:20px;}
    .findLoginBox .columnIn {width:100%;height: auto;margin-bottom:20px; padding-bottom:24px;}
    .findLoginBox .inputBoxIn {margin:0 15px 0 15px;}

    /*Ã­Å¡Å’Ã¬â€ºÂÃªÂ°â‚¬Ã¬Å¾â€¦*/
    .tabBox.stepBox ul li a { font-size:15px; line-height:20px;}
    .tabBox.stepBox ul li a:hover {color:#666;}
    .tabBox.stepBox ul li.on a:hover {color:#fff;}
    .tabBox.stepBox ul li.first a {padding:20px 10px 20px 16px;}
    .tabBox.stepBox ul li.second a {padding:20px 10px 20px 27px;}
    .tabBox.stepBox ul li.last a {padding:20px 10px 20px 30px;}
    .tabBox.stepBox ul li a br {display:block;}

    /*Ã­Å“Â´Ã«Â¨Â¼ÃªÂ³â€žÃ¬Â â€¢ Ã­â€¢Â´Ã¬Â Å“*/
    .dormantAccount .columnCont {width:auto;}
    .dormantAccount .columnIn {width: 100%;height: auto;margin-bottom: 20px;padding-bottom: 24px;}
    .dormantAccount .columnT {padding: 32px 0 16px 0;font-size: 20px;}
    .dormantAccount .inputBox {margin:0px;}
    .dormantAccount .inputBoxIn {margin: 0 15px 0 15px;}

    /*ÃªÂ¸Â°Ã¬Â¡Â´Ã­Å¡Å’Ã¬â€ºÂ Ã«Â³Â¸Ã¬ÂÂ¸Ã¬ÂÂ¸Ã¬Â¦Â*/
    .existingMember .columnCont {width:auto;}
    .existingMember .columnIn {width: 100%;height: auto;margin-bottom: 20px;padding-bottom: 24px;}
    .existingMember .columnT {padding: 32px 0 16px 0;font-size: 20px;}
    .existingMember .inputBox {margin:0px;}
    .existingMember .inputBoxIn {margin: 0 15px 0 15px;}

    /*Ã«Â³Â¸Ã¬ÂÂ¸Ã¬ÂÂ¸Ã¬Â¦Â*/
    .identityCont {margin-top:60px;}
    .identityCont .columnIn {float:none; width:100%; margin-left:0; margin-bottom:20px;}

    /*Ã­Å¡Å’Ã¬â€ºÂÃªÂ°â‚¬Ã¬Å¾â€¦ Ã¬â„¢â€žÃ«Â£Å’*/
    .lineBox.joinFin {padding:32px 15px 24px;}
    .lineBox.joinFin .conT4 {font-size:24px;}
    .lineBox.joinFin .txtSub {font-size:15px;}
    .lineBox.joinFin .lineBoxIn {padding:0px 0px 20px;}
    .alertTxt p {font-size:14px;}

    /*Ã«Â¡Å“ÃªÂ·Â¸Ã¬ÂÂ¸*/
    input[type='text'].inputL,input[type='password'].inputL {height:44px;}

    .inputBox {margin:0 15px;}
    .loginBox .columnIn {width: 100%;height:auto; margin-bottom:40px;}
    .loginBox .columnT {padding:32px 0 16px 0; font-size:20px;}
    .loginBox .centerInBox {margin-bottom:8px;}
    .loginBox .inputBox {padding-bottom:20px;}
    .loginBox .inputBoxBt {margin:20px 15px 24px; overflow:hidden;}
    .loginBox .centerChkBox {margin-bottom:0px;}

    .remarkTxt p {font-size:14px;}

    .tbAccessories {
        flex-direction: column;
        align-items: normal;
        gap: 10px;
    }
    .tbAccessories .sortBox {
        justify-content: flex-end;
    }
}

@media screen and (max-width: 640px) {
    .txtBox p, .txtBoxS p {font-size:15px;line-height: 24px;}

    .subVisual {height:190px; padding-top:60px;}
    .subVisual h3 {padding-top:35px; font-size:24px;}
    .subVisual p {font-size:14px;}
    .listcodnitiontitle {font-size:14px;}

    .tableTitle .conT5 {font-size:18px;}

    /*table*/
    .tableTitle p {font-size:14px;}

    /*tab*/
    /* .tabBox.tabBoxLine > ul > li.fullWlist.fixed {width:25%;} */
    .tabBox.tabBoxLine > ul > li.halfWlist {width:100%;}

    .board-write input[type="text"], .board-write input[type="email"], .board-write input[type="password"] {width:185px;}
    .board-write input[type="text"].addrIbput {width: 33%;}
    .board-write input[type="email"].fullW {width: 95%;}
    .board-write input[type="text"].fullW, .board-write input[type="password"].fullW {width: 100%;}
    .board-write input[type="text"].smallInp, .board-write input[type="email"].smallInp, .board-write input[type="tel"].smallInp, .board-write input[type="password"].smallInp {width:62px;margin-right: 3px;}
    .board-write input[type="text"].bigInp, .board-write input[type="email"].bigInp, .board-write input[type="tel"].bigInp, .board-write input[type="password"].bigInp {width:100%; margin-right:0px;}
    .board-write #mberEmailAdres1, .board-write #mberEmailAdres2 {width: 43%;}
    .board-write #mberEmailAdres2 {margin-left:6px;}


    .termsUse .totalChk .chkBox input[type="checkbox"]+label:before {top:23px;}
    .manger .table_normal tbody tr td {word-break: keep-all;}

    .timeIn {margin-left:0px;}
    .facilityPage .facilitySub > ul > li ul li:first-child	{margin-top:4px;}
    .facilitySub {margin-bottom:40px;}
    .facilitySub > ul > li {width: 100%;height: auto;overflow: hidden;overflow:hidden;}
    .facilitySub > ul > li:first-child:after {display:none;}
    .circleBgIn {width: 70px;height: 70px;line-height: 66px;margin-right: 13px;}
    .facilitySub > ul > li ul li {font-size:14px;}
    .caption {font-size:16px; line-height:52px;}
    .ctrBox button {top: 23px;width:30px; height:30px;padding:0px;}

    .eduStep button {margin:4px 0 0 0; font-size:13px;}
    .tableTitle button {position:relative;top:0;right:0;margin:0 0 8px 0;}

    .applyPage .radioBox input[type="radio"]+label:before {top:2px;}
    .applyPage .radioBox input[type="radio"]:checked+label:after {top:2px;}

    .askPage .ellipsis {max-width: 100%;}
    .askDetailPage .chkBox.single {position:absolute;}
    .askDetailPage .inpSubTxt.inline {margin-left: 20px;font-size:14px;}

    /*Ã¬ËœÂ¨Ã«ÂÂ¼Ã¬ÂÂ¸Ã¬â€žÂ¤Ã«Â¬Â¸*/
    .participation {font-size:13px; color:#555;}
    .tag.pcHide {display:block;margin-bottom: 4px;}
    .monthDateMb {display:block;font-size:13px; color:#555;}
    .monthDatePc {display:none;}

    /*Ã­Å¡Å’Ã¬â€ºÂÃ¬Â â€¢Ã«Â³Â´ Ã¬Ë†ËœÃ¬Â â€¢*/
    .memberInfoPage .radioInput {display: block;}
    .memberInfoPage .radioBox input[type="radio"]+label:before {top:2px;}
    .memberInfoPage .radioBox input[type="radio"]:checked+label:after {top:2px;}


    /*Ã¬ÂÂ´Ã¬Å¡Â©Ã¬â€¢Â½ÃªÂ´â‚¬ Ã«Ââ„¢Ã¬ÂËœ(Ã­Å¡Å’Ã¬â€ºÂÃªÂ°â‚¬Ã¬Å¾â€¦)*/
    .totalChk {padding: 0px;}
    .termsUse .chkBox {left:12px;margin-right: 40px;}
    .totalChk .chkBox {margin-right: 0px;}
    .termsUse .icon {right:8px;}
    .termsUse .chkBox input[type="checkbox"]+label .labelIn {font-size:15px;}
    .agreeContIn {font-size:14px;}
    .agreementUse {text-align:left;}
    .agreementUse .chkBox.txt input[type="checkbox"].wv-check + label:before {top:6px;}

    .itemInfo li {float:none; width:100%;}

    .oneNotice {height: 36px;padding: 5px;}
    .oneNoticeIn {padding: 0;height: 25px;}
    .oneNotice img.noticIcon {width:10px; margin-left: 7px;}
    .oneNoticeSr li a {font-size:13px;line-height: 21px;}

    .learnTermT {text-align:center;flex-direction: column;align-items: center;row-gap: 10px;}
    .learnBtn {position: relative;top: 0;right: 0; left: 0;float: none; width:100%;}
    .learnBtn:after {display:none;}
    .lectureInfo {clear:both; width:auto;padding-top:0px;flex-direction: column;}
    .lectureInfo > li {width:100%;height: auto; min-height:49px; margin-left: 0;padding: 10px 16px;}
    .lectureInfo > li p {position: absolute;top: 12px;font-size: 16px;}
    .lectureLec .cyberLecT, .lectureLec .setLecT {top:-5px; right: 70px;}
    .lectureInfo > li .score {text-align: right;font-size: 21px;justify-content: flex-end; height: auto;}
    .lectureInfo > li.lectureInfo1.secondItem {padding:16px 16px 0px 16px;}
    .lectureInfo > li.lectureInfo3 .score {margin: 0;font-size:18px;}
    .lectureInfo > li.lectureInfo3 button {float:right;}
    .lectureInfo > li .unit {top:0px; margin-left:4px; font-weight:500; font-size:16px; color:#666;}
    .scoreNum {margin-top:0px;}
    .lectureLec .score .scoreNum {font-size: 21px;}
    .scoreBg {display:none;}
    .lectureLec .score {margin:0;}
    .lectureLec .scoreBg {left: 0;right: 0;margin:auto;}
    .standard {float: right;margin:0;}
    .standardTxt {float:right;}
    .standardTxt br {display:none;}
    .lectureList.faq_normal .faqText {margin-left: 53px;font-size:16px;}
    .lectureItemInfo .itemInfo li {float:left; width:50%;}
    .privacy .txtBox p, .txtBoxS p {font-size:14px;}
    .markImgListIn li {width:50%;}
    .markImgListIn li.bgNone .markImgListT:before {display:none;}
    .markImgListIn li.bgNone .markImgListCont {border-left:none;}
    .privacy_img {width:100%;}

    .errorT {font-size:20px;}

    .teacher-recruitment-wrap {
        padding: 30px;
    }
    .teacher-recruitment {
        padding: 30px;
    }

    .teacher-recruitment-cont dl {
        flex-direction: column;
    }
}
@media screen and (max-width: 400px) {
    .callCenter .icon-consulting {margin-right:2px;}
    .searchTab .icon-search {margin-left: -5px;margin-right:2px;}
    .searchTabBoxIn .radioBox {margin-right: 8px;}
    .searchTabBoxIn .radioBox input[type="radio"]+label span {margin-left:0px;}

}
  