@charset "utf-8";
@import url("../font/font.css");


/* ===== 공통 변수 ===== */
:root {
    /* font-family */
    --font-nanum: 'NanumSquare';

    /* color */
    --color-black: #000;
    --color-dark: #222;
    --color-grey: #444;
    --color-white: #FFF;
    --color-rose: #D6336C;
    --color-primary: #1796F6;
    --color-secondary: #184D9D;
}


/*  ===== Reset CSS ===== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
a { text-decoration: none; }

* { margin: 0; padding: 0; box-sizing: border-box; } 
*:focus { outline: none !important; box-shadow: none !important; }
body { font-family: var(--font-nanum), 'NotoSans', 'Noto Sans KR', 'gothic', 'gulim', sans-serif !important; color: var(--color-dark); font-size: 16px; line-height: 1; min-height: 100vh; }


/* ===== Common ===== */
.main_container { width: 1440px; margin: 0 auto; }




/* ===== Icon ===== */
i[class^='ico-'] { width: 16px; height: 16px; display: inline-block; }
.ico-person { background: url('../images/icon/ico-person.svg') no-repeat center center / cover; }

/* --- Mobile Menu Icon --- */
.icoMenuplus { display: inline-block; width: 24px; height: 24px; position: relative; }
.icoMenuplus::before { content: ''; position: absolute; width: 14px; height: 2px; background: #BBB; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icoMenuplus::after { content: ''; position: absolute; width: 2px; height: 14px; background: #BBB; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all .3s; }
.on > .icoMenuplus::before, .on > .icoMenuplus::after, .active > .icoMenuplus::before, .active > .icoMenuplus::after { background: var(--color-white); }
.icoMenuplus.on::after, .active > .icoMenuplus::after {  transform: translate(-50%, -50%) rotate(90deg); }
.sideMenu .on > .icoMenuplus::before, .sideMenu .on > .icoMenuplus::after, .sideMenu .active > .icoMenuplus::before, .sideMenu .active > .icoMenuplus::after { background: var(--color-secondary); }

.icoMenuArrow { display: inline-block; width: 24px; height: 24px; position: relative; transition: all .3s; }
.icoMenuArrow::before { content: ''; position: absolute; width: 10px; height: 2px; background:#BBB; left: 50%; top: 50%; transform: translate(calc(-50% + 3px), -50%) rotate(-45deg); }
.icoMenuArrow::after { content: ''; position: absolute; width: 10px; height: 2px; background: #BBB; left: 50%; top: 50%; transform: translate(calc(-50% - 3px), -50%) rotate(45deg); }
.icoMenuArrow.on, .active > .icoMenuArrow { rotate: 180deg; }
.icoMenuArrow.on::before, .active > .icoMenuArrow::before, .icoMenuArrow.on::after, .active > .icoMenuArrow::after { background: var(--color-black); }




/* ===== Header ===== */
header { position: fixed; z-index: 10000; left: 0; right: 0; top: 0; width: 100%;  background: #FFF; }

/* --- PC Menu --- */
.menuPC { position: relative; z-index: 10001; height: 110px; display: flex; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid #DAE5F5; }
.menuPC > .main_container { position: relative; height: 100%; display: flex; align-items: flex-start; justify-content: space-between; }
.menuPC h1 { width: auto; height: 100%; display: flex; align-items: center; }
.menuPC h1 > a { display: inline-block; width: 127px; height: 100%; background: url('../images/logo.png') no-repeat center center / contain; }
.menuPC .gnb { height: 110px; display: flex; align-items: flex-start; overflow: hidden; }
.menuPC .gnb > .depth1 { display: flex; align-items: flex-start; height: 100%; }
.menuPC .gnb > .depth1 > li > a { display: block; color: var(--color-black); font-weight: 800; height: 50px; line-height: 50px; font-size: 20px; margin: 30px 40px; transition: all .3s }
.menuPC .gnb > .depth1 > li > a.on, .menuPC .gnb > .depth1 > li:hover > a { color: var(--color-primary); }
.menuPC .gnb > .signGroup { display: block; height: 110px; }
.menuPC .gnb > .signGroup > .signIn { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; padding-left: 20px; }
.menuPC .gnb > .signGroup > .signUp { display: none; }
.menuPC .gnb > .signGroup > .signIn > a { display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 18px; width: 130px; height: 40px; border-radius: 20px; background: var(--color-primary); color: var(--color-white); }
.menuPC .gnb > .signGroup > .signIn > a > span { display: block; margin-top: 2px; font-size: 18px; color: var(--color-white); }
.menuPC .gnb > .signGroup > .signIn > a > i { margin-right: 4px; }
.menuPC .loginTxt { display: block; position: absolute; top: 12px; right: 0; font-size: 14px; font-weight: 700; color: var(--color-grey); rotate: -0.04deg; }
.menuPC .loginTxt > span { display: inline-block; margin-right: 2px; color: var(--color-primary); position: relative; }
.menuPC .loginTxt > span::after { content: ''; position: absolute; width: 100%; height: 2px; background: var(--color-primary); bottom: -2px; left: 0; }
.menuPC .depth2 { padding-top: 16px; padding-bottom: 52px; }
.menuPC .depth2 > li { height: 50px; line-height: 50px; }
.menuPC .depth2 > li > a { display: block; font-size: 18px; font-weight: 800; color: var(--color-grey); position: relative; transition: none !important; transition: all .3s; text-align: center; }
.menuPC .depth2 > li > a > span { position: relative; }
.menuPC .depth2 > li > a > span::after { content: ''; position: absolute; background: var(--color-primary); width: 0; height: 2px; width: 0; bottom: -3px; left: 0%; transition: all 0.3s; }
.menuPC .depth2 > li > a.on, .menuPC .depth2 > li > a:hover { color: var(--color-primary); }
.menuPC .depth2 > li > a.on> span::after, .menuPC .depth2 > li > a:hover> span::after { width: 102%; }
.menuPC .depth3 { display: none; }
.menuBack { position: absolute; top: 0px; width: 100%; height: 0px; background: var(--color-white); z-index: 10000; }
.mbPC { display: none; position: fixed; width: 100%; height: 100%; left: 0; top: 0; background: var(--color-black); opacity: 0.7; z-index: 9999; }

/* --- Hamburger Button ---*/
.hamBox { position: relative; height: 100%; width: 24px; align-items: center; display: none; }
.hamburger { border: none; background: transparent; width: 24px; height: 24px; position: relative; cursor: pointer; }
.hamburger span { display: block; position: absolute; height: 2px; background: var(--color-secondary); left: 3px; }
.hamburger span:nth-child(1) { width: 18px; top: 4px; }
.hamburger span:nth-child(2) { width: 14px; top: 50%; transform: translate(0, -50%); }
.hamburger span:nth-child(3) { width: 18px; bottom: 4px; }

/* --- Mobile Menu --- */
.menuMobile { width: 300px; height: 100vh; background: var(--color-white); position: absolute; z-index: 20000; right: -300px; top: 0; transition: all .3s; }
.menuMobile a { color: var(--color-dark); }
.menuMobile .gnb { height: 100%; }
.menuMobile .mMenuTop { width: 100%; height: 56px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; background: var(--color-secondary); }
.menuMobile .signGroup {display: flex; align-items: center; }
.menuMobile .signGroup a { color: var(--color-white); font-weight: 700; font-size: 14px; }
.menuMobile .signGroup li { margin-left: 4px; margin-right: 20px; }
.menuMobile .signGroup .signIn > a { display: flex; align-items: center; justify-content: center; }
.menuMobile .signGroup .signIn a > span { display: block; margin-top: 2px; }
.menuMobile .signGroup .signIn a > i { margin-right: 4px; }
.menuMobile .depth1 { height: calc(100% - 56px); overflow-y: scroll; padding: 28px 23px; }
.menuMobile .depth1 > li { width: 100%; }
.menuMobile .depth1 > li > a, .menuMobile .depth2 > li > a { font-size: 16px; display: flex; justify-content: space-between; align-items: center; width: 100%; height: 52px; padding: 0 20px; border-bottom: 1px solid #ECECEC; transition: all .3s; }
.menuMobile .depth1 > li > a { font-weight: 800; }  
.menuMobile .depth1 > li > a.on, .menuMobile .depth1 > li > a.active { background: var(--color-primary); color: var(--color-white); box-shadow: 0 10px 20px rgba(30, 125, 209, 0.2); }  
.menuMobile .depth2 { display: none; }
.menuMobile .depth2 > li > a { font-weight: 600; }
.menuMobile .depth2 > li > a.on, .menuMobile .depth2 > li > a.active { color: var(--color-primary); font-weight: 800; }
.menuMobile .depth3 { display: none; padding: 24px; background: #F8F8F8; }
.menuMobile .depth3 > li { font-size: 15px; }
.menuMobile .depth3 > li > a { position: relative; display: block; height: 35px; line-height: 35px; padding: 0 10px; }
.menuMobile .depth3 > li > a::before { content: ''; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--color-dark); left: 0; top: 50%; transform: translateY(-50%); }
.menuMobile .depth3 > li > a.on, .menuMobile .depth3 > li > a.active { color: var(--color-primary); text-decoration: underline; font-weight: 800; }
.menuMobile .depth3 > li > a.on::before, .menuMobile .depth3 > li > a.active::before { background: var(--color-primary); }
.mbMobile { display: none; position: fixed; width: 100%; height: 100%; left: 0; top: 0; background: var(--color-black); opacity: 0.7; z-index: 19999; transition: all .3s; }

/* --- Mobile Menu Close --- */
.mmcBox { position: relative; height: 100%; width: 24px; display: flex; align-items: center; }
.mMenuClose { border: none; background: transparent; width: 24px; height: 24px; position: relative; cursor: pointer; }
.mMenuClose span { display: block; position: absolute; height: 2px; background: var(--color-white); left: 3px; width: 18px; }
.mMenuClose span:nth-child(1) { transform: rotate(45deg); top: 11px; }
.mMenuClose span:nth-child(2) { transform: rotate(-45deg); bottom: 11px; }




/* ===== Contents ===== */
.wrapper { position: relative; min-height: calc(100vh -  240px); margin-top: 110PX; }

/* --- Sub Top --- */
.subTop { height: 220px; width: 100%; position: relative; z-index: 0; }
.subTop::before { content: ''; position: absolute; height: 100%; width: 100%; z-index: 1; top: 0; left: 0; background: linear-gradient(103.25deg, rgba(217, 224, 247, 0.3) 3.09%, rgba(239, 247, 255, 0.3) 96.39%); }
.subTop::after { content: ''; position: absolute; height: 100%; width: 100%; z-index: 1; top: 0; left: 0; background: rgba(0, 0, 0, 0.3); }
.subTop > img { height: 100%; width: 100%; object-fit: cover; position: relative; z-index: 0; }
.subTop > .stTxt { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; color: var(--color-white); width: 100%; text-align: center; }
.subTop > .stTxt p:first-of-type { font-size: 28px; font-weight: 800; rotate: -0.04deg; text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.14); margin-bottom: 24px; }
.subTop > .stTxt p:last-of-type { font-size: 18px; font-weight: 700; rotate: -0.04deg; opacity: 0.8; }

/* --- SAub Contenet */
.subWrap { display: flex; align-items: flex-start; justify-content: space-between; }
.subWrap .sideMenu { position: relative; top: -60px; width: 316px; z-index: 5; box-shadow: 10px 10px 50px 0px rgba(129, 138, 157, 0.2); border-radius: 16px 60px 16px 60px; overflow: hidden; background: var(--color-white); }
.subWrap .sideMenu .depth1 { background: var(--color-primary); position: relative; width: 100%; height: 130px; background: var(--color-primary) url('../images/sidemenu-deco.png') no-repeat center center; line-height: 130px; font-size: 32px; font-weight: 800; text-align: center; color: var(--color-white); }
.subWrap .sideMenu .depth2 { padding: 16px 30px 30px; }
.subWrap .sideMenu .depth2 > li { width: 100%;}
.subWrap .sideMenu .depth2 > li > a { display: flex; align-items: center; justify-content: space-between; transition: all .3s; width: 100%; height: 60px; line-height: 60px; font-size: 18px; font-weight: 700; color: #494949;border-bottom: 1px solid #E6E6E6; rotate: -0.04deg; }
.subWrap .sideMenu .depth2 > li > a.on, .subWrap .sideMenu .depth2 > li > a.active, .subWrap .sideMenu .depth2 > li:hover > a { color: var(--color-secondary); }
.subWrap .sideMenu .depth2 > li:hover > a > .icoMenuplus::before, .subWrap .sideMenu .depth2 > li:hover > a > .icoMenuplus::after { background: var(--color-secondary); transition: all .3s; }
.subWrap .sideMenu .depth2 > li > a.active { border: none; }
.subWrap .sideMenu .depth3 { display: none; padding: 0 10px; background: #FAFAFA; border-radius: 8px; }
.subWrap .sideMenu .depth3 > li { width: 100%; }
.subWrap .sideMenu .depth3 > li > a { font-weight: 600; transition: all .3s; display: block; width: 100%; height: 54px; line-height: 54px; color: #333; position: relative; padding-left: 20px; border-bottom: 1px solid #E0E0E0; border-style: dashed; rotate: -0.04deg; }
.subWrap .sideMenu .depth3 > li > a::before { transition: all .3s; content: ''; position: absolute; top: 50%; left: 10px; width: 4px; height: 4px; border-radius: 50%; transform: translateY(-50%); background: #C0C0C0; }
.subWrap .sideMenu .depth3 > li:last-of-type > a { border: none; }
.subWrap .sideMenu .depth3 > li > a.on, .subWrap .sideMenu .depth3 > li:hover > a { color: var(--color-secondary); }
.subWrap .sideMenu .depth3 > li > a.on::before, .subWrap .sideMenu .depth3 > li:hover > a::before { background: var(--color-secondary); }

.subCont { margin: 60px 0 80px; width: calc(100% - 316px - 84px); }




/* ===== Footer ===== */
footer { width: 100%; background: #131A2D; }
footer .fTop { border-bottom: 1px solid rgba(255,255,255,.1); height: 80px; }
footer .fTop ul { padding: 32px 0; display: flex; align-items: center; }
footer .fTop li { margin-right: 40px; }
footer .fTop a { color: var(--color-white); font-weight: 700; rotate: -0.04deg; }
footer .fTop li:first-of-type a { color: #FFF6A8; }
footer .fBot { min-height: 160px; height: auto; display: flex; align-items: center; justify-content: space-between; }
footer .fbL { color: var(--color-white); opacity: .6; line-height: 1.8em; }
footer .fbL > * { display: flex; align-items: center; }
footer .fbL p { margin-right: 20px; font-style: normal; rotate: -0.04deg; }
footer .fbL br { display: none; }
footer .fbR > img { height: 34px; }





/* ========== 반응형 ========== */
@media all and (max-width: 1520px) {
    .main_container { width: 100%; padding: 0 80px; }
    .menuPC .loginTxt { right: 80px; }
    
    .subWrap .sideMenu {  width: 280px;box-shadow: 10px 10px 30px 0px rgba(129, 138, 157, 0.2) }
    .subCont { width: calc(100% - 280px - 40px); }
}



@media all and (max-width: 1280px) {
    .main_container { width: 100%; padding: 0 40px; }
    .menuPC > .main_container { padding: 0 16px; }
    .menuPC .loginTxt { right: 16px; }
    .menuPC .gnb > .depth1 > li > a { margin: 30px 26px; }

    .subWrap .sideMenu { display: none; }
    .subCont { width: 100%; }
}


@media all and (min-width: 1025px) {
    .menuPC .gnb { display: flex !important; }
    .menuBack { display: block !important; }
    .menuMobile { right: -300px !important; }
    .mbMobile { display: none !important; }
    
}
@media all and (max-width: 1024px) {
    .menuPC { height: 56px; }
    .menuPC .gnb, .menuBack, .mbPC { display: none !important; }
    .menuPC .loginTxt { display: none; }
    .menuMobile { display: block !important; }
    .hamBox { display: flex; }
    .menuPC h1 > a { width: 84px; }
    
    .wrapper { margin-top: 55px; }
    .subTop { height: 130px; }
    .subTop > .stTxt p:first-of-type { font-size: 22px; margin-bottom: 16px; }
    .subTop > .stTxt p:last-of-type { font-size: 14px; }
    .subCont { margin: 40px 0 60px; }
    
    footer .fTop a, footer .fbL p { font-size: 15px; }
    footer .fTop li:last-of-type, footer .fbL p:last-of-type { margin-right: 0; }
    footer .fbR { display: none; }
}


@media all and (max-width: 767px) {
    .main_container  { padding: 0 16px; }
    .subTop > .stTxt p:first-of-type { font-size: 16px; }
    .subTop > .stTxt p:last-of-type { font-size: 10px; }
    .subCont { margin: 30px 0 50px; }

    footer .fBot { padding: 24px 0 34px; }
    footer .fbL > * { flex-direction: column; align-items: flex-start; }
    footer .fbL br { display: block; }
}


@media all and (max-width: 300px) {
    .menuMobile { width: 100vw; }
}