
@charset "UTF-8";

/* ------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------- 모듈 Module -------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------ */

/* ------------------------------ 팝업 ------------------------------ */
.modPopup {width:100%; height:100%; display:none; position:fixed; left:0; top:0; z-index:10000;}
.modPopup.on {display:block;}

.modPopup .popupDim {width:100%; height:100%; font-size:0; background:rgba(0,0,0,0.4); position:fixed; left:0; top:0;}
.modPopup.on .popupDim {opacity:0; animation: popOpenDimd 0.2s linear forwards;}
@keyframes popOpenDimd { 0% {opacity:0;} 100% {opacity:1;} }

.modPopup .popupArea {width:600px; height:auto; max-height: calc(100% - 100px);position:absolute; right:50%; bottom:50%; transform: translate(50%,50%);}

.modPopup .popupInMotion {width:100%; height:100%; border-radius: 30px; background:#fff;}
.modPopup.on .popupInMotion {opacity:0; transform:scale(0.7); animation: popOpenScale 0.3s linear forwards;}
@keyframes popOpenScale { 0% {opacity:0; transform:scale(0.7);} 100% {opacity:1; transform:scale(1);} }

.modPopup .btnPopClose {width:50px; height:50px; font-size:0; background:url(../images/common/btn_close_pop.svg) center no-repeat; position:absolute; right:20px; top:20px;}
.modPopup .popupContGroup {height:100%; max-height: calc(100vh - 100px); padding: 50px 50px 40px; overflow:auto;}
.modPopup .popupContGroup.noPd {padding:0;}


@media screen and (min-width: 100px) and (max-width: 767px) {
	/* 모바일 > 딤팝업 */
	.modPopup.modal {z-index:1002;}
	.modPopup.modal .popupArea {width:calc(100% - 40px) !important;}
    .modPopup.modal .btnPopClose {width:30px; height:30px; background-size: 30px;}
    .modPopup.modal .popupContGroup {padding:35px 20px 20px;}
	
	/* 모바일 > 풀팝업 */
	.modPopup.full {}
    .modPopup.full .popupContGroup {padding-bottom:0;}
    .modPopup.full .popupContGroup:after {content:""; display:block; width:100%; padding-bottom:90px;}
}


/* ------------------------------ 서브페이지 탭 ------------------------------ */
.modSubtab {width: 100%; margin-bottom: 40px; border-bottom: 1px solid #e5e5e5;}
.modSubtab .tabGroup {width: 100%; display: flex;}
.modSubtab .tabGroup .item {width: 100%; }
.modSubtab .tabGroup .tabItem {width: 100%; height: 50px; line-height: 50px; display: block;}
.modSubtab .tabGroup .tabItem .tit {width: 100%; padding:0 10px; line-height: 1.2; text-align: center; font-size: 16px; color: #000; letter-spacing: -0.05em;  display: inline-block; vertical-align: middle;}
.modSubtab .tabGroup .item.on .tabItem {border-radius: 10px 10px 0 0; background: #0050a9; }
.modSubtab .tabGroup .item.on .tabItem .tit {color: #fff; font-weight: 500;}

@media screen and (min-width: 100px) and (max-width: 767px) {
    .modSubtab {border-bottom: none;}
    .modSubtab .tabGroup {width: 100%; height: 40px; padding: 0 10px; display: flex; overflow-x: auto; background: #0050a9;}
    .modSubtab .tabGroup .item {width: auto; padding-right: 30px;}
    .modSubtab .tabGroup .item:last-child {padding-right: 0;}
    .modSubtab .tabGroup .tabItem {height: 40px; line-height: 39px;}
    .modSubtab .tabGroup .tabItem .tit {padding:0; font-size: 13px; color: #fff; opacity: 0.7; position: relative; white-space: nowrap;}
    .modSubtab .tabGroup .item.on .tabItem {border-radius: 0; background: transparent;  }
    .modSubtab .tabGroup .item.on .tabItem .tit { font-weight: 400; opacity: 1;}
    .modSubtab .tabGroup .item.on .tabItem .tit::after {display: block; content: ""; width: 100%; height: 3px; background: #fff; position: absolute; bottom: -4px; left: 0;}
}


/* ------------------------------ 서브페이지 컨텐츠 on/off 탭 ------------------------------ */
.modTabBtn {width: 100%; margin-bottom: 60px;}

.modTabBtn.type01 .btnGroup {width: 100%;display: flex; flex-wrap: wrap;}
.modTabBtn.type01 .btnGroup .item {width: calc(20% - 4px); margin-right: 5px; }
.modTabBtn.type01 .btnGroup .item:nth-child(5n) {margin-right: 0;}
.modTabBtn.type01 .btnGroup .item:nth-child(n+6) {margin-top: 5px;}
.modTabBtn.type01 .btnGroup .tabBtn {width: 100%; height: 60px; border: 1px solid #0050a9; border-radius: 10px; font-size: 16px; color: #0050a9;display: flex; align-items: center; justify-content: center; text-align: center;}
.modTabBtn.type01 .btnGroup .tabBtn.tabOn {background: #0050a9; color: #fff;}

.modTabBtn.type02 .btnGroup {width: 100%; padding: 30px; background: #f7f4f2; display: flex; flex-wrap: wrap;}
.modTabBtn.type02 .btnGroup .item {width: 16.6666%; height: 50px; display: flex; align-items: center; justify-content: left;}
.modTabBtn.type02 .btnGroup .tabBtn {height: 34px; padding: 0 1px; border: none; font-size: 16px; color: #000;display: inline-block; text-align: left;}
.modTabBtn.type02 .btnGroup .tabBtn.tabOn {color: #0050a9;position: relative; font-weight: 500; background: none;}
.modTabBtn.type02 .btnGroup .tabBtn.tabOn::after {display: block; content: ""; width:100%; height:4px; background: #0050a9; position: absolute; left: 0; bottom: -1px;}

.modTabConts {width: 100%;}
.modTabConts .contGroup .eachCont {width:100%; display: none;}
.modTabConts .contGroup .eachCont.tabView {display: block;}
.modTabConts .contGroup + .cptAddsDesc {margin-top: -40px;}

@media screen and (min-width: 100px) and (max-width: 767px) {
    .modTabBtn {margin-bottom: 40px;}

    .modTabBtn.type01 .btnGroup .item {width: calc(33.3333% - 2.7px); margin-right: 4px; }
    .modTabBtn.type01 .btnGroup .item:nth-child(5n) {margin-right: 4px;}
    .modTabBtn.type01 .btnGroup .item:nth-child(3n) {margin-right: 0;}
    .modTabBtn.type01 .btnGroup .item:nth-child(n+4) {margin-top: 4px;}
    .modTabBtn.type01 .btnGroup .tabBtn {height: 50px; font-size: 13px; word-break: keep-all;}
    .modTabBtn.type01 .btnGroup .tabBtn.tabOn {background: #0050a9; color: #fff;}
    
    .modTabBtn.type02 .btnGroup {padding: 20px;}
    .modTabBtn.type02 .btnGroup .item {width: 50%; height: auto;}
    .modTabBtn.type02 .btnGroup .item:nth-child(n+3) {margin-top: 10px;}
    .modTabBtn.type02 .btnGroup .tabBtn {height: auto; border-radius: 0; font-size: 13px;}
    .modTabBtn.type02 .btnGroup .tabBtn.tabOn::after { height:2px; bottom: -2px;}

    .modTabConts .contGroup + .cptAddsDesc {margin-top: -30px;}

}

/* 로딩페이지 */
.modLoading {width: 100%; height: 100vh; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999;}
.modLoading .dim {width: 100%; height: 100vh; background: rgba(0,0,0,0.6); font-size: 0;}
.modLoading .loadingArea {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
.modLoading .loadingGroup {text-align: center; transform: translateY(-40px);}
.modLoading .loadingGroup::after {display: block; content: ""; clear: both;}
.modLoading .loadingGroup .unit {width: 30px; height: 30px; margin-right: 15px; border-radius: 50%; font-size: 0; background-color: #0050a9; transform: translateY(0); display: inline-block; animation: loadingAni 3.5s infinite cubic-bezier(.62, .28, .23, .99);}
.modLoading .loadingGroup .unit:nth-child(2) {animation-delay: 0.15s;}
.modLoading .loadingGroup .unit:nth-child(3) {animation-delay: 0.3s;}
.modLoading .loadingGroup .unit:last-child {margin-right: 0;}
.modLoading .loadingTxt {text-align: center; font-size: 18px; color: #fff;}
.modLoading .loadingTxt .bold {margin-top: 70px; font-size: 29px; font-weight: 500; margin-bottom: 5px; display: block;}

@keyframes loadingAni {
    0% {background-color: #0050a9;transform: translateY(0);}
    17% {background-color: #0050a9;transform: translateY(80px);}
    33% {background-color: #009cf3;transform: translateY(0);}
    50% {background-color: #009cf3;transform: translateY(80px);}
    67% {background-color: #f89321;transform: translateY(0);}
    83% {background-color: #f89321;transform: translateY(80px);}
    100% {background-color: #0050a9;transform: translateY(0);}
}

/* ------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------- 공통 Layout -------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------ */

/*  ---------------------------------------- GNB ---------------------------------------- */
.lytGnb {width: 100%; height: 120px; background: #fff; position: relative; z-index: 99;}
.lytGnb .gnbArea {width: 100%; max-width: 1240px; padding: 0 20px; margin: 0 auto;}
.lytGnb .gnbArea::after {display: block; content: ""; clear: both;}
.lytGnb .gnbLogo {padding-top: 20px; float: left;}

.lytGnb .quickLink {width: calc(100% - 180px); height: 59px; padding: 20px 0; text-align: right; float: right;}
.lytGnb .quickLink .item {margin-right: 30px; display: inline-block; font-size: 13px; font-weight: 500; letter-spacing: -0.65px; position: relative;}
.lytGnb .quickLink .item a {color: #757575;}
.lytGnb .quickLink .item:last-child {margin-right: 0;}
.lytGnb .quickLink .item::after {display: block; content: ""; width: 1px; height: 8px; background-color: rgba(0,0,0,0.2); position: absolute; right: -17px; top: 6px;}
.lytGnb .quickLink .item:last-child::after {display: none;}
.lytGnb .quickLink .item.welcome::after {display: none;}

.lytGnb .menuArea {float: right;}
.lytGnb .menuArea::after {display: block; content: ""; clear: both;}
.lytGnb .menuArea .mMenu {display: none;}
.lytGnb .menuArea .gnbMenu {float: left;}
.lytGnb .menuArea .gnbMenu .mView {display: none;}
.lytGnb .menuArea .gnbMenu .depth1Menu {padding: 0 79px 20px 0; float: left;}
.lytGnb .menuArea .gnbMenu .depth1Menu:last-child {padding-right: 0;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth1Name {padding: 7px 0; font-size: 18px; font-weight: 500;  letter-spacing: -0.9px; color: #000; position: relative;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth1Name a {color: #000; transition: all 0.2s;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth1Name::after {display: block;content: ""; width: 0; height: 6px; background: #0050a9; position: absolute; bottom: -5px; left: 0; transition: all 0.2s;}
.lytGnb .menuArea .gnbMenu .depth1Menu:hover .depth1Name a {color: #0050a9; transition: all 0.2s;}
.lytGnb .menuArea .gnbMenu .depth1Menu:hover .depth1Name::after {width: 100%; transition: all 0.2s;}

.lytGnb .menuArea .gnbMenu .depth1Menu .depth2Area {width: 100%; height: 0; background: #fff; box-shadow: 0 2px 5px 0px rgba(0,0,0,0.05); position: absolute; left: 0; top: 120px; overflow: hidden;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth2Field {width: 100%; max-width: 1200px; padding: 40px 0 20px; margin: 0 auto;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth2Field::after {display: block; content: ""; clear: both;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth1NameTit {width: 290px; font-size: 24px; font-weight: 700; letter-spacing: -1.2px; color: #0050a9; float: left;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth2Group {width: calc(100% - 290px); float: left;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth2Group::after {display: block; content: ""; clear: both;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth2Menu {width: 25%; margin-bottom: 40px; padding-right: 20px; float: left;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth2Menu .depth2Name {font-size: 17px; font-weight: 500; letter-spacing: -0.85px;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth2Menu .depth2Name a {color:#000;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth2Menu .depth2Name a:hover {color: #0050a9;}
.lytGnb .menuArea .gnbMenu .depth1Menu .depth3Group {display: none;}

.lytGnb .menuArea .gnbMenu .depth1Menu:hover .depth2Area {height: auto;border-top: 1px solid rgba(0,0,0,0.05);}

.lytGnb .menuArea .quickMenu {margin-left: 60px; float: left;}
.lytGnb .menuArea .quickMenu .search {width: 40px; height: 40px; font-size: 0; background: url(../images/common/icon_top_search.png) center no-repeat;}

@media screen and (min-width: 100px) and (max-width: 1199px) {
    .lytGnb {height: 60px; position: relative; top: 0; left: 0; background: transparent;}

    .lytGnb .quickLink {display: none;}
    
    .lytGnb .menuArea::before {display: none; content: ""; width: 100%; height: 100vh; position: fixed; top: 0; left: 0; bottom: 0; right: 0;background-color: rgba(0,0,0,0.4);}
    .lytGnb .menuArea .mMenu {display: block; padding-top: 30px; float: right;}
    .lytGnb .menuArea .mMenu .mHambuger {width: 60px; height: 60px; font-size: 0; background: url(../images/common/icon_m_menu.svg) center / 60px no-repeat;}

    .lytGnb .menuArea .gnbMenu { width: 100%; max-width: 400px; height: 100vh; background: #fff; position: fixed; top: 0; right: -100%; transition: all 0.3s; display: block;}
    .lytGnb .menuArea .gnbMenu .mView {display: block;}
    .lytGnb .menuArea .gnbMenu .mHeader {width: 100%; padding: 6px; background: #0050a9;}
    .lytGnb .menuArea .gnbMenu .mHeader::after {display: block; content: ""; clear: both;}
    .lytGnb .menuArea .gnbMenu .mHeader .mHome {width: 48px; height: 48px; float: left;}
    .lytGnb .menuArea .gnbMenu .mHeader .mHome a {width: 100%; height: 100%; font-size: 0; background: url(../images/common/icon_home_m.svg) center no-repeat; display: block;}
    .lytGnb .menuArea .gnbMenu .mHeader .mbtns {float: right;}
    .lytGnb .menuArea .gnbMenu .mHeader .mbtns button {width: 48px; height: 48px; background: center no-repeat; font-size: 0; }
    .lytGnb .menuArea .gnbMenu .mHeader .mbtns .btnSearch {background-image: url(../images/common/icon_search_white.svg);}
    .lytGnb .menuArea .gnbMenu .mHeader .mbtns .btnClose {background-image: url(../images/common/icon_close_white.svg);}
    .lytGnb .menuArea .gnbMenu .mLogin {width: 100%; padding: 0px 20px 10px; background: #0050a9;}
    .lytGnb .menuArea .gnbMenu .mLogin .login, .lytGnb .menuArea .gnbMenu .mLogin .logout {display: flex; justify-content: space-between; align-items: center;}
    .lytGnb .menuArea .gnbMenu .mLogin .goLink {font-size: 22px; font-weight: 300; color: #fff; letter-spacing: -0.05em;display: inline-block;}
    .lytGnb .menuArea .gnbMenu .mLogin .goLink b {font-size: 23px; font-weight: 500;}
    .lytGnb .menuArea .gnbMenu .mLogin .goLink::after {display: inline-block; content: ""; width: 5px; height: 5px; margin: -3px 0 0 7px; border-right: 2px solid #fff;border-bottom: 2px solid #fff; transform: rotate(-45deg); vertical-align: middle;}
    .lytGnb .menuArea .gnbMenu .mLogin .btnLogout {height: 22px; line-height: 21px; padding: 0 9px; border-radius: 22px; border: 1px solid #fff; font-size: 12px; color: #fff; letter-spacing: -0.05em; display: inline-block;}
    .lytGnb .menuArea .gnbMenu .mLogin.in .login {display: none;}
    .lytGnb .menuArea .gnbMenu .mLogin.in .logout {display: flex;}
    .lytGnb .menuArea .gnbMenu .mLogin.off .login {display: flex;}
    .lytGnb .menuArea .gnbMenu .mLogin.off .logout {display: none;}

    .lytGnb .menuArea .gnbMenu .depth1Group {width: 100%; height: calc(100vh - 104.5px); background: #f7f4f2; padding: 0; overflow-y: auto; position: relative;}
    .lytGnb .menuArea .gnbMenu .depth1Menu {width: 120px;padding: 0; float: none;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth1Name {padding: 0;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth1Name a {width: 100%; height: 70px; padding: 0 20px; border-bottom: 1px solid #e5e5e5; text-align: center; line-height: 1.5; transition: none; display: block; font-size: 16px; font-weight: 500; color: #757575; background: #f7f4f2; display: flex; align-items: center; justify-content: center; word-break: keep-all;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth1Name::after {display:none;}
    .lytGnb .menuArea .gnbMenu .depth1Menu:hover .depth1Name a {color: #000; transition: none;}
    
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth2Area {width: calc(100% - 120px); height:100%; padding: 20px;  border-left: 1px solid #e5e5e5;box-shadow: none; background: #fff; position: absolute; top: 0; left: 120px; display: none; overflow-y: auto;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth2Field {padding:0;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth1NameTit {width: 100%; padding: 6px 0; border-bottom: 1px solid #000; font-size: 20px; font-weight: 500; color: #000; float: none;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth2Group {width: 100%; float: none;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth2Menu {width: 100%; margin-bottom: 0; border-bottom: 1px solid #e5e5e5; padding-right: 0; float: none;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth2Menu .depth2Name {font-size: 16px; font-weight: 400;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth2Menu .depth2Name a {width: 100%; padding: 16px 10px 16px 0; display: block;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth2Menu .depth2Name a:hover {color: #000;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth3Group {width: 100%; padding: 16px 10px; background: #ecf5fa; display: none;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth3Menu {margin-bottom: 14px;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth3Menu:last-child {margin-bottom: 0;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth3Menu a {font-size: 14px; color: #000; letter-spacing: -0.05em;}
    .lytGnb .menuArea .gnbMenu .depth1Menu .depth3Menu a::before {display: inline; content: "- ";}
    
    .lytGnb .menuArea .gnbMenu .depth1Menu:hover .depth2Area {height:100%;border-top: none;}
    .lytGnb .menuArea .gnbMenu .depth1Menu.mOn .depth2Area {display: block;}
    .lytGnb .menuArea .gnbMenu .depth1Menu.mOn .depth1Name a {width: 121px; border-right: 1px solid #fff; color: #0050a9; background: #fff; position: relative; z-index: 9;}
    
    .lytGnb .menuArea .gnbMenu .depth2Menu .depth2Name a.hav3D { background: url(../images/common/icon_arw_bottom_k.svg) right center no-repeat;}
    .lytGnb .menuArea .gnbMenu .depth2Menu.m3DpOn .depth2Name a.hav3D {background-image: url(../images/common/icon_arw_top_k.svg);}
    .lytGnb .menuArea .gnbMenu .depth2Menu.m3DpOn .depth3Group {display: block;}


    .lytGnb .menuArea .quickMenu {display: none;}

    .lytGnb .menuArea.mOpen::before {display: block;}
    .lytGnb .menuArea.mOpen .gnbMenu {right:0; transition: all 0.3s;}
}
@media screen and (min-width: 100px) and (max-width: 767px) {
    .lytGnb .gnbArea {padding: 6px;}
    .lytGnb .gnbLogo {padding: 6px 0 0 14px;}
    .lytGnb .gnbLogo img {width: 100px;}
    .lytGnb .menuArea .mMenu {padding-top: 0;}
    .lytGnb .menuArea .mMenu .mHambuger {width: 48px; height: 48px; background-size: 48px;}

    .lytGnb .menuArea .gnbMenu { width: 100%; max-width: 767px;}
}



/*  ---------------------------------------- Sub-top ---------------------------------------- */
.lytSubTop {width: 100%;}
@media screen and (min-width: 100px) and (max-width: 767px) {    
}


/*  ---------------------------------------- Sub ---------------------------------------- */
.lytSub {width: 100%; max-width: 1240px; min-height: 710px; margin: 0 auto; padding: 40px 20px 105px;}
.lytSub::after {display: block; content: ""; clear: both;}
.lytSub .navArea {width: 250px; margin-right: 50px; float: left;}
.lytSub .contArea {width: calc(100% - 300px); float: left;}

.lytSub .allArea {width: 100%;}

@media screen and (min-width: 100px) and (max-width: 1199px) {
    .lytSub {padding: 40px 0 150px;}
    .lytSub .navArea {display: none;}
    .lytSub .contArea {width: 100%; padding: 0 20px; float: none;}
    .lytSub .allArea {width: 100%;max-width: 1240px; padding: 0 20px;}
}

@media screen and (min-width: 100px) and (max-width: 767px) {
    .lytSub {min-height: auto; padding: 0 0 60px;}
    
}

/*  ---------------------------------------- FOOTER ---------------------------------------- */
.lytFooter {width: 100%; position: relative; border-top: 1px solid #c2c2c2;}

.lytFooter .comScrollTop {width: 60px; height: 60px; margin-left: 630px; position: fixed; bottom: 50px; left: 50%; z-index: 9999;}
.lytFooter .comScrollTop .scrollTop {width: 60px; height: 60px; font-size: 0; background: url(../images/common/btn_top.png) center no-repeat;}
.lytFooter .comScrollTop.fixed {position: absolute; bottom: 109px;}

.lytFooter .footerArea {width: 100%; max-width: 1200px; margin: 0 auto; padding: 40px 0 50px;}
.lytFooter .footMenu::after {display: block; content: ""; clear: both;}
.lytFooter .footMenu li {margin-right: 40px; float: left; position: relative;}
.lytFooter .footMenu li a {font-size: 15px; font-weight: 500; letter-spacing: -0.75px; color: #000;}
.lytFooter .footMenu li::after {display: block; content: ""; width: 1px; height: 12px; background: #000; position: absolute; right: -21px; top: 5px;}
.lytFooter .footMenu li:last-child::after {display: none;}

.lytFooter .footAddr {margin-top: 15px;}
.lytFooter .footAddr .address {font-size: 14px; color: #757575; letter-spacing: -0.7px;}
.lytFooter .footAddr .address .mOnly {display: none;}
.lytFooter .footAddr .info {margin-top: 7px;}
.lytFooter .footAddr .info::after {display: block; content: ""; clear: both;}
.lytFooter .footAddr .info li {margin-right: 20px; float: left; font-size: 14px; color: #757575; letter-spacing: -0.7px; position: relative;}
.lytFooter .footAddr .info li::after {display: block; content: ""; width: 1px; height: 10px; background: #c2c2c2; position: absolute; right: -11px; top: 5px;}
.lytFooter .footAddr .info li:last-child::after {display: none;}
.lytFooter .footAddr .copyright {margin-top: 15px; font-size: 13px; font-weight: 500; color: #000; letter-spacing: -0.65px; opacity: 0.5;}

@media screen and (min-width: 100px) and (max-width: 1199px) {
    .lytFooter .comScrollTop {display: none;}
    .lytFooter .footerArea {padding: 40px 20px 50px;}
}
@media screen and (min-width: 100px) and (max-width: 767px) {
    .lytFooter .footerArea {padding: 30px;}
    .lytFooter .footMenu li {margin: 0 20px 6px 0;}
    .lytFooter .footMenu li a {font-size: 12px;}
    .lytFooter .footMenu li::after {height: 9px; right: -11px; top: 4px;}

    .lytFooter .footAddr {margin-top: 9px;}
    .lytFooter .footAddr .address {font-size: 11px; line-height: 1.6;}
    .lytFooter .footAddr .address .mOnly {display: block;}
    .lytFooter .footAddr .info {margin-top: 2px;}
    .lytFooter .footAddr .info li {margin-right: 20px; font-size: 11px; line-height: 1.6;}
    .lytFooter .footAddr .info li::after {height: 8px; right: -10px; top: 4px;}
    .lytFooter .footAddr .copyright {margin-top: 15px; font-size: 11px; font-weight: 400;}
}

/* -------------------------------------- 에러페이지 --------------------------------------- */
.lytError {padding-top: 100px;}
.lytError .errorArea {max-width: 1040px; width: 100%; margin: 0 auto; padding: 0 20px;}
.lytError .errorTop {margin-bottom: 60px; padding-bottom: 20px; border-bottom: 2px solid #000;}
.lytError .errorTop:after {content: ''; display: block; clear: both;}
.lytError .errorTop h1 {float: left;}
.lytError .errorTop h1 > img {vertical-align: top;}
.lytError .errorCont {padding-top: 162px; background: url(../images/common/icon_error02.svg) center 0 no-repeat; text-align: center;}
.lytError .errorCont.noFile {background-image: url(../images/common/icon_notFile.png);}
.lytError .errorCont .mainTxt {display: block; color: #000; font-size: 32px;}
.lytError .errorCont .subTxt {margin-top: 16px; color: #757575; font-size: 20px; line-height: 1.6;}
.lytError .errorCont .infoBox {width: 100%; max-width: 700px;margin: 35px auto 0; padding: 30px 55px; background: #ecf5fa;}
.lytError .errorCont .infoGroup .item {width: 100%; margin-bottom: 30px;}
.lytError .errorCont .infoGroup .item:last-child {margin-bottom:0;}
.lytError .errorCont .infoGroup .info::after {display: block; content: ""; clear: both;}
.lytError .errorCont .infoGroup .info dt {width: 130px; height: 36px; margin-right: 60px; border-radius: 18px; line-height: 36px; text-align: center; font-size: 18px; font-weight: 500; color: #fff; background: #0050a9; float: left;}
.lytError .errorCont .infoGroup .info dd {width: calc(100% - 190px); margin-top: 2px; line-height:30px; font-size: 20px; font-weight: 500; color: #000; text-align: left; float: left;}
.lytError .errorCont .infoGroup .info dd i {font-size: 16px; font-weight: 400; font-style: normal; color: #757575;}
.lytError .errorBottom {margin-top: 90px; padding-top: 26px; border-top: 1px solid #c2c2c2;}
.lytError .errorBottom .copyright {color: #000; font-size: 13px; font-weight: 500; text-align: center; opacity: 0.5;}

@media screen and (min-width: 100px) and (max-width: 767px) {
    .lytError {padding-top: 40px;}
    .lytError .errorTop {margin-bottom: 30px; text-align: center;}
    .lytError .errorTop h1 {float: none; margin: 0 auto;}
    .lytError .errorCont {padding-top: 120px; background-size: 100px;}
    .lytError .errorCont .mainTxt {font-size: 28px; word-break: keep-all;}
    .lytError .errorCont .subTxt {font-size: 16px; word-break: keep-all;}
    .lytError .errorCont .infoBox {padding: 30px 20px;}
    .lytError .errorCont .infoGroup .item {margin-bottom: 20px;}
    .lytError .errorCont .infoGroup .info dt {height: 32px; line-height: 32px; border-radius: 16px; margin: 0 auto 10px; font-size: 15px; float: none;}
    .lytError .errorCont .infoGroup .info dd {width: 100%; line-height:1.6; font-size: 17px; text-align: center; float: none;}
    .lytError .errorCont .infoGroup .info dd i {font-size: 15px;}
    .lytError .errorBottom {margin-top: 90px; padding-top: 26px; border-top: 1px solid #c2c2c2;}
    .lytError .errorBottom .copyright {color: #000; font-size: 13px; font-weight: 500; text-align: center; opacity: 0.5;}    
    .lytError .errorBottom {margin-top: 45px; padding-top: 15px; }
    .lytError .errorBottom .copyright {font-size: 12px;}
}

/*  ---------------------------------------- 상단 알림메시지 ---------------------------------------- */
.lytNotice {overflow: hidden; height: 90px; background: #232b3e;}
.lytNotice .noticeArea {max-width: 1200px; margin: 0 auto; padding: 20px 0;}
.lytNotice .ntcGrp {display: flex; align-items: center; height: 50px;}

.lytNotice .ntcFront {width: 237px; font-size: 0;}
.lytNotice .ntcTit {display: inline-block; width: 180px; height: 50px; padding: 17px 0 0 60px; border-radius: 60px; background: #0050a9 url(../images/common/icon_notice.svg) 20px 16px no-repeat; color: #fff; font-size: 16px; font-weight: 500; line-height: 1; vertical-align: top;}
.lytNotice .ntcBtn {display: inline-block; width: 57px; padding-top: 17px; text-align: center; vertical-align: top;}
.lytNotice .ntcBtn > button {width: 16px; height: 16px; background-repeat: no-repeat; background-position: center; font-size: 0;}
.lytNotice .ntcBtn .btnPlay {background-image: url(../images/common/icon_ntc_play.svg);}
.lytNotice .ntcBtn .btnStop {background-image: url(../images/common/icon_ntc_stop.png);}

.lytNotice .ntcCont {width: calc(100% - 460px); height: 50px; padding-right: 20px;}
.lytNotice .ntcList {overflow: hidden; height: 100%;}
.lytNotice .ntcList > ul {height: 100%;}
.lytNotice .ntcList .item {height: 100%; padding-top: 9px;}
.lytNotice .ntcList .item > a {overflow: hidden; display: block; width: 100%; height: 100%; color: #fff; font-size: 20px; white-space: nowrap; text-overflow: ellipsis;}

.lytNotice .ntcChk {margin-right: 40px;}
.lytNotice .ntcChk .iptChk {font-size: 0;}
.lytNotice .ntcChk .iptChk input[type=checkbox] {width: 14px; height: 14px; padding: 0; border: 1px solid #707070; background: #fff; opacity: 1; -webkit-appearance: auto;}
.lytNotice .ntcChk .iptChk input[type=checkbox] + label {margin-left: 4px; color: #fff; font-size: 14px; vertical-align: middle; opacity: 0.6; cursor: pointer;}

.lytNotice .btnClose {width: 30px; height: 30px; background: url(../images/common/icon_ntc_close.svg) center no-repeat;font-size: 0;}

@media screen and (min-width: 100px) and (max-width: 1199px) {
    .lytNotice .noticeArea {padding: 20px;}
}
@media screen and (min-width: 100px) and (max-width: 767px) {
    .lytNotice .noticeArea {padding: 10px 20px 12px 10px;}
    .lytNotice .ntcGrp {flex-wrap: wrap; align-items: stretch;}

    .lytNotice .ntcFront {order: 1; width: 30px; margin-right: 15px;}
    .lytNotice .ntcTit {width: 100%; height: 25px; padding: 0; border-radius: 10px; background-position: 6.8px 7.8px; background-size: 20px; font-size: 0;}
    .lytNotice .ntcBtn {width: 100%; padding: 6px 0 0 2px; text-align: left;}
    .lytNotice .ntcBtn > button {width: 14px; height: 14px; background-size: 14px;}

    .lytNotice .ntcCont {order: 2; width: calc(100% - 68px); padding-right: 15px;}
    .lytNotice .ntcList {overflow: hidden; height: 100%;}
    .lytNotice .ntcList > ul {}
    .lytNotice .ntcList .item {padding-top: 0;}
    .lytNotice .ntcList .item > a {display: -webkit-box; font-size: 16px; white-space: normal; -webkit-box-orient: vertical; -webkit-line-clamp: 2;}
    
    .lytNotice .ntcChk {order: 4; width: 100%; margin-right: 0; margin-top: 3px; text-align: right;}
    .lytNotice .ntcChk .iptChk {}
    .lytNotice .ntcChk .iptChk input[type=checkbox] {width: 11px; height: 11px;}
    .lytNotice .ntcChk .iptChk input[type=checkbox] + label {margin-left: 5px; font-size: 12px;}

    .lytNotice .btnClose {order: 3; width: 23px; height: 23px; margin-top: 4px;}
}


/* ------------------------------------------------------------------------------------------------------ */
/* --------------------------------------------- Depth1 Name -------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------ */

/* ----------------------------------------- Depth1 > Page Name ----------------------------------------- */

/* Layout name */
/* Module name */