@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700&display=swap');

/* reset */
body {
    color: #333;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1;
    overflow-x: hidden;
}
* {margin: 0; padding: 0; box-sizing: border-box;}
ul,ol {list-style: none;}
hr {display: none;}
h1 {margin: 0;}
a {text-decoration: none;}
b {font-weight: 700;}
button {border: none; background: none;}
img {border: none;}
html {font-size: 0.625em;}
.clear:after {content: ""; clear: both; display: block;}
.blind {position: absolute; top: -9999px; left: -9999px;}
.pc {display: none;}

/*** mobile ***/
/** header **/
body.menuOpen {overflow: hidden;}
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 60px;
    background: #fff;
    z-index: 999;
    border-bottom: 1px solid #eee;
}
h1 {
    padding-top: 5px;
    text-align: center;
}
h1 a {
    display: block;
    width: 202px; height: 50px;
    margin: 0 auto;
    background: url(../img/logo.svg) no-repeat center/contain;
    text-indent: -9999px;
}
.navWrap > button {
    position: absolute;
    top: 23px; left: 22px;
}
.navWrap > button span {
    display: block;
    width: 22px; height: 2px;
    background: #333;
    transition: .4s;
}
.navWrap > button span:nth-child(2) {margin: 5px 0;}
.navWrap .mpWrap {
	position: absolute;
	top: 50%; right: 16px; transform: translateY(-50%);
}
.navWrap .mpWrap li {float: left; font-size: 0;}
.navWrap .mpWrap li a {
	display: block;
	width: 25px; height: 31px;
	background: url(/img/adm/icon_logout2.png) no-repeat center/contain;
}
.navWrap .mpWrap li.mpage {margin-right: 8px;}
.navWrap .mpWrap li.mpage a {
	height: 32px;
	background-image: url(/img/adm/mypage_ico.svg);
}
.navInner {
    position: fixed;
    top: 60px; left: 0;
    width: 100%; height: 100%;
    padding: 15px 6.4% 0;
    background: #fff;
    overflow-y: auto;
    transform: translateX(-40%); opacity: 0;
    visibility: hidden;
    transition: .5s;
}
.gnb > li > a {
	position: relative;
    display: block;
    padding: 15px 0;
    font-size: 2.2rem; color: #000;
    font-weight: 700;
	transition: .5s;
}
.gnb > li > a:after {
	position: absolute;
	bottom: 0; left: 0;
	content: '';
	width: 100%; height: 1px;
	background: #4fc4ba;
	transform-origin: left;
	transform: scaleX(0);
	transition: .5s;
}
.gnb > li > a.on {color: #4fc4ba;}
.gnb > li > a.on:after {transform: scaleX(1);}
.lnb {
    display: none;
    margin-bottom: 12px;
}
.lnb li a {
    display: block;
    padding: 6px 0;
    font-size: 1.6rem; color: #747474;
}

/* navwrap.on */
.navWrap.on:after {
    position: absolute;
    left: 0; top: 60px;
    width: 100vw; height: 100vh;
    content: '';
    background: rgba(0,0,0,.5);
    z-index: -1;
}
.navWrap.on .navInner {
    transform: translateX(0); opacity: 1;
    visibility: visible;
}
.navWrap.on > button span:nth-child(2) {opacity: 0;}
.navWrap.on > button span:first-child {transform: translateY(7px) rotate(45deg);}
.navWrap.on > button span:last-child {transform: translateY(-7px) rotate(-45deg);}

/** footer **/
/* 하단 롤배너 */

/* fnb */
footer .fnb ul {display: flex; flex-wrap: wrap;}
footer .fnb ul li {width: 50%; text-align: center;}
footer .fnb ul li a {
    display: block;
    height: 30px;
    font-size: 1.4rem; color: #333333;
    line-height: 30px;
    background: #bdbcc4;
}
/* info */
footer .info {
    padding: 20px 4.533%;
    color: #fff;
    background: #a7a6ad;
}
footer .info p {
    float: left;
    font-size: 1.4rem;
    margin-bottom: 15px;
    word-break: keep-all;
}
footer .info p:last-child {margin: 0;}
footer .info p.cut {clear: both; margin-right: 29px;}

/** sub **/
/* visual */
.sub .visInner {
    display: flex;
    margin-top: 60px;
    height: 100px;
    justify-content: flex-end;
    align-items: center;
    background: #4fc4ba url(../img/sub_visual_m.png) no-repeat center/cover;
}
.sub .visInner h3 {
    margin-right: 16px;
    font-size: 2.8rem; color: #fff;
    font-weight: 400;
}

/* section.common */
.sub section.common {padding: 30px 4.533% 55px;}
.sub section.common h3 {font-size: 2.6rem; font-weight: 400;}
.sub article.co h4 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.sub article.co h4:before {
    display: inline-block;
    content: '';
    width: 3px; height: 22px;
    margin-right: 6px;
    background: #4fc4ba;
    vertical-align: -4px;
}
.sub section.common .mainText {margin: 25px 0 40px;}
.sub section.common .mainText p:before {
    position: absolute;
    top: 4px; left: 0;
    content: '';
    width: 3px; height: 40px;
    background: #4fc4ba;
    vertical-align: top;
}
.sub section.common .mainText p {
    position: relative;
    padding-left: 12px;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 25px;
    white-space: pre-line;
}
.sub section.common .mainText p b {color: #4fc4ba;}
.sub section.common .mainText span {
    font-size: 1.4rem; color: #808080;
    line-height: 20px;
}

/*** PC ***/
@media screen and (min-width:1084px){
    /** common **/
    .pc {display: block;}
    /** header **/
    header {
        position: static;
        height: auto;
        border: 0;
    }
    .navWrap {
        position: relative;
        width: 1280px; height: 80px;
        margin: 0 auto;
        z-index: 999;
    }
    h1 {
        position: absolute;
        top: 10px; left: 0;
        padding: 0;
        z-index: 999;
    }
    h1 a {width: 262px; height: 60px;}
	.loginWrap {
		background: #6d7b88; color: #fff;
	}
	.loginWrap .textBox {
		padding: 3px 0;
		display: flex;
		justify-content: flex-end;
		width: 1280px; margin: 0 auto;
		font-size: 1.4rem;
		font-weight: 300;
		align-items: center;
	}
	.loginWrap .textBox ul {display: flex; align-items: center;}
	.loginWrap .textBox ul  li:first-child {margin: 0 20px;}
	.loginWrap .textBox ul  li a {
		display: block;
		padding: 2px 5px;
		border: 1px solid #fff;
	}
	.loginWrap .textBox a {color: #fff;}
    .navWrap > button {display: none;}
	.navWrap .mpWrap {display: none;}
    .navInner {
        position: static;
        width: 100%; height: auto;
        padding: 0 0 0 320px;
        background: none; overflow: visible;
        transform: translateX(0); opacity: 1;
        visibility: visible;
    }
    .gnb {display: flex;}
    .subWrap {
        display: none;
        position: absolute;
        top: 80px; left: 50%; transform: translateX(-50%);
        content: '';
        width: 100vw; height: 320px;
        background: #f8f8f8;
        z-index: -1;
    }
    .gnb > li {width: 160px; text-align: center;}
    .gnb > li > a {
        display: inline-block;
        padding: 30px 0;
        font-size: 2rem; color: #333;
        font-weight: 300;
        letter-spacing: -0.05rem;
    }
    .gnb > li > a:after {
        bottom: 14px;
        height: 4px;
    }
    .gnb > li > a.on {color: #4fc4ba;}
    .gnb > li > a.on:after {transform: scaleX(1); transition: .5s;}
    .lnb {
        position: relative;
        margin: 0; height: 320px;
        padding-top: 14px;
    }
    .lnb.on {background: #eee;}
    .lnb li a {
        position: relative;
        padding: 12px 0;
        text-align: center;
    }
    .lnb li a:hover {color: #4fc4ba;}
    .gnb > li:first-child .lnb:before {
        position: absolute;
        left: 0; top: 14px;
        content: '';
        width: 1px; height: 280px;
        background: #dfdfdf;
    }
    .lnb:after {
        position: absolute;
        right: 0; top: 14px;
        content: '';
        width: 1px; height: 280px;
        background: #dfdfdf;
    }
    
    /** footer **/
    /* 하단 롤배너 */

    /* fnb */
    footer .fnb ul {
        flex-wrap: nowrap;
        justify-content: center;
        background: #bdbcc4;
    }
    footer .fnb ul li {width: 210px;}
    footer .fnb ul li a {
        position: relative;
        display: block;
        height: 50px;
        font-size: 1.6rem; color: #505050;
        line-height: 50px;
    }
    footer .fnb ul li a:after {
        position: absolute;
        top: 50%; right: 0; transform: translateY(-50%);
        content: '';
        width: 1px; height: 18px;
        background: #9c9c9c;
    }
    footer .fnb ul li:last-child a:after {display: none;}
    /* info */
    footer .info {
        padding: 22px 0 25px;
        background: #a7a6ad;
    }
    footer .content {
        position: relative;
        padding-left: 320px;
        width: 1280px; margin: 0 auto;
    }
    footer .content:before {
        position: absolute;
        left: 0; top: 8px;
        content: '';
        width: 263px; height: 50px;
        background: url(/img/logo.svg) no-repeat center/contain;
    }
    footer .info p {margin: 0 30px 20px 0;}
    footer .info p:last-child {margin: 0;}
    footer .info p.cut {margin-right: 30px;}
    footer .info p.reset {clear: none;}
    
    /** sub **/
    /* visual */
    .sub #visual {background: #4fc4ba url(../img/sub_visual.png) no-repeat center/cover;}
    .sub .visInner {
        width: 1280px;
        display: flex;
        margin: 0 auto;
        justify-content: space-between;
        background: none;
    }
    .sub .visInner ul.pc {display: flex; align-items: center;}
    .sub .visInner li {font-size: 1.8rem; color: #fff;}
    .sub .visInner li:nth-child(2):before, .sub .visInner li:nth-child(2):after {
        display: inline-block;
        content: '';
        margin: 0 30px;
        width: 10px; height: 17px;
        background: url(../img/icon_subBg_arrow.png) no-repeat center/contain;
        vertical-align: middle;
    }
    .sub .visInner li a {
        display: block;
        width: 30px; height: 26px;
        background: url(../img/icon_main_home.png) no-repeat center/contain;
        text-indent: -9999px;
        overflow: hidden;
    }
    .sub .visInner h3 {
        margin: 0;
        font-size: 3.2rem;
    }
    .sub .flexWrap {
        display: flex;
        width: 1280px; margin: 50px auto 85px;
        justify-content: space-between;
    }
    /* leftMenu */
    .sub .lmInner {width: 280px;}
    .sub .lmInner .subBg {
        width: 280px; height: 160px;
        margin-bottom: 20px;
        padding: 55px 0 0 30px;
        color: #fff;
        background: url(../img/sub01_bg.jpg) no-repeat center/cover;
    }
    .sub02 .lmInner .subBg {background-image: url(../img/sub02_bg.jpg);}
    .sub03 .lmInner .subBg {background-image: url(../img/sub03_bg.png);}
    .sub04 .lmInner .subBg {background-image: url(../img/sub04_bg.jpg);}
	.sub06 .lmInner .subBg {background-image: url(../img/sub06_bg.jpg);}
    .sub05 .lmInner .subBg {
		padding-top: 25px;
		background-image: url(../img/sub05_bg.jpg);
	}
    .sub .lmInner h3 {
        margin-bottom: 10px;
        font-size: 2.8rem;
        font-weight: 400;
    }
    .sub .lmInner p {
        font-size: 1.8rem;
        font-weight: 300;
    }
    .sub .lmInner ul a {
        position: relative;
        display: block;
        height: 50px;
        padding-left: 11px;
        font-size: 1.8rem; color: #808080;
        line-height: 48px;
    }
    .sub .lmInner ul a:after {
        position: absolute;
        top: 50%; right: 11px; transform: translateY(-50%);
        content: '';
        width: 5px; height: 9px;
        background: url(../img/icon_leftMenu.png) no-repeat center/contain;
    }
    .sub .lmInner ul li.on a {color: #f69f99;}
    .sub .lmInner ul li.on a:before {
        position: absolute;
        bottom: 0; left: 50%; transform: translateX(-50%);
        content: '';
        width: 94%; height: 2px;
        background: #f69f99;
    }
    .sub .lmInner ul li.on a:after {background-image: url(../img/icon_leftMenu_on.png);}
    
    /* section.common */
    .sub section.common {padding: 0; width: 940px; min-height: 60vh;}
    .sub section.common h3 {font-size: 4rem;}
    .sub article.co h4 {
        margin-bottom: 23px;
        font-size: 2.2rem;
    }
    .sub article.co h4:before {
        width: 5px; height: 25px;
        margin-right: 10px;
        vertical-align: -5px;
    }
    
    .sub section.common .mainText {margin: 41px 0;}
    .sub section.common .mainText p:before {
        width: 3px; height: 60px;
    }
    .sub section.common .mainText p {
        padding-left: 18px;
        font-size: 2.8rem;
        line-height: 36px;
    }
    .sub section.common .mainText span {white-space: pre-line;}

}

