html,
body {
    font-size: 16px;
    color: var(--c-black-1);
}

:root {
    --main-color: #BD1823;
    --main-color-2: #0D50A0;
    --main-color-3: #00A5AB;
    --c-black-1: #181A1C;
    --c-black-2: #383A3C;
    --c-black-3: #56595B;
    --c-black-4: #929497;
    --c-black-5: #D5D8DB;
    --c-black-6: #E5E8EB;
    --c-black-7: #EFF2F5;
    --c-black-8: #F6F9FC;
    --c-black-9: #FCFDFD;
    accent-color: #ff6633;

    --txt-xs: 0.75rem;/* 12px */
    --txt-sm: 0.875rem;/* 14px */
    --txt-sm-1: 0.938rem;/* 15px */
    --txt-md: 1rem;/* 16px */
    --txt-md-1: 1.1rem;/* 17px */
    --txt-lg: 1.125rem;/* 18px */
    --txt-xl: 1.25rem;/* 20px */
    --txt-xl-1: 1.375rem;/* 22px */
    --txt-2xl: 1.5rem;/* 24px */
    --txt-2xl-1: 1.625rem;/* 26px */
    --txt-2xl-2: 1.75rem;/* 28px */
    --txt-3xl: 1.875rem;/* 30px */
    --txt-4xl: 2rem;/* 32px */
    --txt-5xl: 2.25rem;/* 36px */
    --txt-6xl: 3rem;/* 48px */
    --txt-7xl: 3.375rem;/* 54px */

    --pad-tb-xs: 0.625rem 0;/* 10px 0 */
    --pad-tb-sm: 1.25rem 0;/* 20px 0 */
    --pad-tb-md: 1.875rem 0;/* 30px 0 */
    --pad-tb-lg: 2.5rem 0;/* 40px 0 */
    --pad-tb-xl: 3.75rem 0;/* 60px 0 */
    --pad-tb-2xl: 5.625rem 0;/* 90px 0 */

    --radius-all-xs: 0.5rem;
    --radius-all-sm: 0.875rem;
    --radius-all-md: 1.875rem;
    --radius-all-lg: 3.125rem;
    --radius-all-xl: 3.75rem;
    
    --radius-2-sm: 0.875rem 0;/* 14px */
    --radius-2-sm-1: 1.25rem 0;/* 20px */
    --radius-2-md: 1.875rem 0;/* 20px */
    --radius-2-lg: 3.125rem 0;/* 50px 0 */
    --radius-2-xl: 3.75rem 0;/* 60px 0 */
    --radius-2-2xl: 5rem 0;/* 80px */

    --web-width: 1600px;

    --main-font:
    'Pretendard', sans-serif;
}


@keyframes updown03 {
    0%{
      transform: translate(0,0);
    }
    50%{
      transform: translate(0,5px);
    }
    100%{
      transform: translate(0,0);
    }
  }
  
  
  @keyframes updown02 {
    0%{
      transform: translate(0,5px);
    }
    50%{
      transform: translate(0,0);
    }
    100%{
      transform: translate(0,5px);
    }
  }
  
  
  @keyframes updown {
    0%{
      transform: translate(0,0);
    }
    50%{
      transform: translate(0,-5px);
    }
    100%{
      transform: translate(0,0);
    }
  }
  
  
  @keyframes rotate {
    0%{
      transform: rotate(0);
    }
    100%{
      transform: rotate(-360deg);
    }
  }
  

/**************************************************************/
/**************************************************************/
/****************************header****************************/
/**************************************************************/
/**************************************************************/
#header {
    position: absolute;
    top: 0;
    color: #222;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    /* background: #fff; */
    /* border-bottom: 1px solid #dddddd73; */
}
#header.mainheader {
    color: #fff;
    background: none;
}
#header.on, #header.active {
    position: fixed;
    top: 0;
    animation: smoothScroll 0.3s forwards;
    background: #fff;
    /* background: var(--sub-color); */
    border-bottom: 1px solid #efefef;
}

#header.on nav,
#header.active nav {
    display: block;
}

#header nav {
    width: auto;
}
#header nav #gnb {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-right: 34px;
}
#header nav #gnb li {
    width: 170px;
    /* text-align: center; */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header nav #gnb li .nav_dep1 {
    font-size: 1.175rem;
    font-weight: 500;
    min-height: auto;
    color: #fff;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    transition: 0.3s;
}
#header nav #gnb li .nav_dep1.on::after, #header.on nav #gnb li .nav_dep1.on::after {
    position: absolute;
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--main-color);
    border-radius: var(--radius-all-xl);
    top: 1.125rem;
}
#header.mainheader nav #gnb li .nav_dep1 {
    color: #fff;
}
#header.on nav #gnb li .nav_dep1,
#header.active nav #gnb li .nav_dep1{
    color: var(--c-black-1);
}
#header nav #gnb li .nav_dep1.on, #header.on nav #gnb li .nav_dep1.on, #header nav #gnb li:hover .nav_dep {
    /* color: var(--main-color);
    font-size: 1.25rem; */
}

#header .open {
    display: flex;
    justify-content: center;
    align-items: stretch;
}
#header .open .login {
    display: flex;
    align-items: center;
    justify-content: center;
}
#header .open .login a {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-right: 2.5rem;
    font-size: 0.925rem;
    font-weight: 700;
}
#header .open .login p {
    display: inline-block;
    width: 100px;
    cursor: pointer;
    text-align: center;
    color: var(--sub-color-2);
    /* line-height: 98px; */
    font-weight: bold;
}
#header .open .btn_lang a {
    color: var(--sub-color-2);
}
#header .open .lang {
    float: left;
}
#header .open .lang_list {
    position: absolute;
    width: 58px;
    height: 0;
    background: #fff;
    z-index: 9999999;
    font-size: 0.875rem;
    border: 0;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
    top: 91px;
    right: calc(50% - 490px);
    z-index: 9999;
}
#header .open .lang_list.on {
    height: 94px;
    border: 1px solid #ddd;
}
#header .open .lang_list li {
    margin: 20px 10px;
}
#header .open .lang_list li a {
    display: block;
    width: 100%;
    margin: 0 auto;
}
#header .open .lang {
    float: left;
}
#header .open a {
    color: #666;
}
#header.mainheader .open a {
    color: #fff;
}
#header.on .open a,
#header.active .open a {
    color: #555 !important;
    font-weight: 500;
}
#header .open a.elearning {
    background: var(--main-color-2);
    color: #fff !important;
    padding: 8px 10px;
    border-radius: var(--radius-all-xs);
}
#header.on .open .btn_lang a {
    color: var(--sub-color-2) !important;
}
#header .open ul li a {
    line-height: 16px;
}
#header .counsel {
    display: flex;
    background: var(--sub-color-3);
    color: #fff;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    cursor: pointer;
}
#header .counsel span {margin-right: 4px;margin-top: 2px;}
#header .counsel p {font-weight: 600;font-size: 1.25rem;letter-spacing: normal;}
#header .top_header {
    width: 100%;
    background: #e1e1e1;
}
#header .top_header .wrap {
    width: var(--web-width);
    margin: 0 auto;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: right;
    color: var(--c-black-1);
    padding: 8px 0;
    font-size: 0.938rem;
    font-weight: 400;
}
#header .top_header .wrap a:first-child {
    margin-right: 30px;
}

.lang .btn_lang {
    display: inline-block;
    width: 54px;
    cursor: pointer;
    text-align: center;
    line-height: 98px;
}
.lang {
    position: relative;
}
.lang .lang_list {
    display: none;
    position: absolute;
    margin-top: -20px;
    width: 58px;
    background: #fff;
    z-index: 9999999;
    font-size: var(--txt-sm);
    border: 1px solid var(--c-black-5);
    text-align: center;
}
.lang .lang_list.on {
    display: block !important;
    position: fixed;
}
.lang .lang_list li {
    margin: 20px 10px;
}
.lang .lang_list li a {
    display: block;
    width: 100%;
    margin: 0 auto;
}


#header.active nav {
    display: block;
}
#header nav .depth_toggle {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: .5s height, .2s background;
    display: none;
    /* border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc; */
}

#header nav .depth_toggle.active {
    display: block;
    background: #fff;
    background-color: #ffffffc7;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-top: 1px solid #c1ced578;
    border-bottom: 2px solid #c1ced578;
}
#header nav .depth_toggle .wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

#header nav .depth_toggle .sub_nav {
    width: 170px;
    /* height: 320px; */
    /* background: rgba(255, 255, 255, 0.5); */
    /* border-right: 1px solid var(--c-black-6); */
    border-right: 1px solid var(--c-black-5);
    padding: 20px 12px;
    transition: .5s height, .2s background;
}
#header nav .depth_toggle .sub_nav li {
    /*    height: 26px;*/
    line-height: 26px;
    /* padding-left: 12px; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    /* text-align: center; */
    /*    font-size: 1;*/
}
#header nav .depth_toggle .sub_nav li.menu3 {
    margin-top: -4px;
}
#header nav .depth_toggle .sub_nav li.menu3 a {
    font-size: var(--txt-sm);
    /* color: #777; */
       padding-left: 6px;
}
#header nav .depth_toggle .sub_nav ul.depth3 {
    margin-top: -4px;

}

#header nav .depth_toggle .sub_nav li a {
    display: block;
    font-size: 1rem;
    /* word-break: break-all; */
    padding-bottom: 12px;
    min-height: auto;
    line-height: 1.3em;
    white-space: break-spaces;
    letter-spacing: -1px;
    color: var(--c-black-3);
    transition: 0.3s;
    font-weight: 400;
}

#header nav .depth_toggle .sub_nav.on {
    background: #ffffffa1;
    transition: .5s height, .2s background;
}

#header nav .depth_toggle .sub_nav.on li a {
    font-weight: 500;
}

#header nav .depth_toggle .sub_nav.on li a:hover {
    font-weight: 400;
    color: var(--main-color);
}

#header.speedup {
    transition: all 0.2s ease !important;
}

#header nav .depth_toggle .sub_nav li.over {
    height: 58px;
    /* overflow: auto; */
    line-height: 18px;
    text-overflow: clip;
    white-space: pre-line;
}
#header nav .depth_toggle .sub_nav li.over a {
    overflow: visible;
    text-overflow: clip;
    white-space: initial;
}
#header nav .depth_toggle .sub_nav li.over_min {
    height: 48px;
    /* overflow: auto; */
    line-height: 21px;
    text-overflow: clip;
    white-space: pre-line;
}
#header nav .depth_toggle .sub_nav li.over_min a {
    overflow: visible;
    text-overflow: ellipsis;
    white-space: initial;
    word-break: break-word;
}
#header .menu_area {
    height: 100%;
    max-width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#header .menu_area ul {
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#header .menu_area ul li {
    width: 90px;
    height: 90px;
    cursor: pointer;
}

#header .menu_area ul li a {
    display: block;
    color: #fff;
    font-size: var(--txt-md);
    line-height: 96px;
    height: 90px;
    text-align: center;
    margin: 0 auto;
}
#header .menu_area ul li a .material-icons-outlined {
    font-size: 2.25rem;
    line-height: 90px;
    height: 90px;
}
#header .menu_area ul li img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
#header .menu_area ul li a.btn_ham_menu {
    /* background: rgba(0, 0, 0, 0.7); */
    width: 40px;
    background: url(../images/common/menu_wh.png) center no-repeat;
    background-size: contain;
}
#header.on .menu_area ul li a,
#header.active .menu_area ul li a{
    color: var(--c-black-1);
}
#header.on .menu_area ul li a.btn_ham_menu,
#header.active .menu_area ul li a.btn_ham_menu {
    background-image: url(../images/common/menu.png);
    background-size: contain;
}
#header .menu_area ul li a.searchbtn {
    /* background: rgba(0, 0, 0, 0.7); */
    width: 27px;
    background: url(../images/common/ic_search.png) center no-repeat;
    background-size: contain;
}
#header.on .menu_area ul li a.searchbtn {
    background-image: url(../images/common/ic_search_on.png);
}


/* #header .sub_nav.on .link:after {
    content: url(/images/common/ic_external_sm_on.png);
    font-weight: 600;
    margin-left: 8px;
    font-size: 13px;
} */
#header .sub_nav .link:after {
    content: url(/images/common/ic_external_sm.png);
    font-weight: 600;
    margin-left: 8px;
    font-size: 13px;
}
#header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin-left: 30px;
}
#header .logo a img.on {
    display: none;
}
#header .logo a img.off {
    display: block;
}
#header.mainheader .logo a img.on {
    display: none;
}
#header.mainheader .logo a img.off {
    display: block;
}

#header.on .logo a img.on,
#header.active .logo a img.on {
    display: block;
}
#header.on .logo a img.off,
#header.active .logo  a img.off {
    display: none;
}


.float_wrapper {
    width: 100%;
    height: 90px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin: 0 auto;
    justify-content: space-between;
}

/* 구글 언어변경 */
#google_translate_element{
    margin-top: 0;
}
.goog-te-gadget-simple{
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0.3rem;
    border-radius: 2px;
    border-left: 1px solid var(--c-black-5) !important;
    border-bottom: 1px solid var(--c-black-5) !important;
    border-right: 1px solid var(--c-black-5) !important;
    border-top: 1px solid var(--c-black-5) !important;
}
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed img{
    display: none;
}
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span:last-child{
    display: none;
}
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span:nth-child(3){
    display: none;
}





/**************************************************************/
/**************************************************************/
/******************************sub*****************************/
/**************************************************************/
/**************************************************************/
.sub {
    background: #f4f4f4;
    font-size: 16px;
}
.sub .grid_container {
    width: var(--web-width);
    padding: 80px 0 90px;
}
.sub_visual {
    /* position: relative; */
    /* background: var(--c-black-5); */
    /* margin-top: 100px; */
    height: 350px;
    width: 100%;
    padding: 140px 0;
    /* margin: 100px auto 0; */
    /* border-radius: 3rem; */
} 
.sub_visual .tit {
    width: var(--web-width);
    max-width: 1300px;
    height: 164px;
    margin: 0 auto;
    position: relative;
}

.sub_visual h1 {
    max-width: 1300px;
    font-size: 3rem;
    font-weight: 600;
    /* line-height: 624px; */
    color: #fff;
    width: var(--web-width);
    margin: 0 auto;
    position: relative;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}
.sub_visual h2 {
    font-size: var(--txt-xl-1);
    line-height: 1.75rem;
    font-weight: 400;
    color: rgb(255 255 255 / 100%);
    /* position: absolute;
    left: 0;
    top: 40%; */
    /* transform: translate(-50%, -50%); */
    width: var(--web-width);
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}
.sub_visual.visual01 { background: url(../images/sub/visual01.png) center no-repeat; background-size: cover; }
.sub_visual.visual02 { background: url(../images/sub/visual02.png) center no-repeat; background-size: cover; }
.sub_visual.visual03 { background: url(../images/sub/visual03.png) center no-repeat; background-size: cover; }
.sub_visual.visual04 { background: url(../images/sub/visual04.png) center no-repeat; background-size: cover; }
.sub_visual.visual05 { background: url(../images/sub/visual05.png) center no-repeat; background-size: cover; }
.sub_visual.visual06 { background: url(../images/sub/visual06.png) center no-repeat; background-size: cover; } 
.sub_visual.visual07 { background: url(../images/sub/visual07.png) center no-repeat; background-size: cover; } 
.sub_visual.visual08 { background: url(../images/sub/visual08.png) center no-repeat; background-size: cover; } 

/* .sub_visual .visualbg.visual07, .no_visual .sub_visual .visualbg {
    display: none !important;
} */

/**************************************************************/
/**************************************************************/
/*****************************path*****************************/
/**************************************************************/
/**************************************************************/

.path_container {
    width:1300px;
    margin: -125px auto 0;
    background: #fff;
    border-radius: var(--radius-all-sm);

    /* position: absolute;
    z-index: 1; */
}

.path_container.on {
    position: fixed;
    top: 100px;
    animation: smoothScroll 0.5s forwards;
    z-index: 999;
}
.path {
    height: 70px;
    line-height: 70px;
    
}
.path_inside {
    max-width: var(--web-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 1rem;
}
.path .home {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

.path .home::before { 
    content: '\e88a';
    font-family: 'Material Icons';
    color: var(--main-color);
    font-size: var(--txt-4xl);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.path .home span {
    color: var(--main-color);
}
.path a {
    color: var(--c-black-2);
}
/*
.path [class^="depth"] {
	float:left;
	position:relative;
}
*/
.path_inside > div {
    /* float: left; */
    position: relative;
}
.path .depth_btn:before {
    content: "";
    width: 1px;
    height: 24px;
    background: var(--c-black-5);
    display: block;
    position: absolute;
    top: 23px;
    left: 0;
}
.path .depth_btn {
    cursor: pointer;
    display: block;
    width: auto;
    padding: 0 25px;
    min-width: 265px;
    /*    letter-spacing: -1;*/
    /* white-space: pre; */
    overflow: hidden;
    font-size: var(--txt-lg);
    position: relative;
    /* color: #fff; */
}
.path .depth_btn span {
    position: absolute;
    right: 20px;
    top: 23px;
    font-size: 24px;
    font-weight: 100;
    color: var(--c-black-4);
}
.path .depth_btn img {
    position: absolute;
    right: 20px;
    top: 32px;
    font-size: 24px;
    font-weight: 100;
    color: var(--c-black-4);
}
.path [class^="depth"] ul {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 70px;
    width: 100%;
    z-index: 1;
    background-color: var(--c-black-7);
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 0.5rem 0.5rem;
}
.path [class^="depth"].active ul {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    z-index: 999;
}
.path [class^="depth"] ul li {
    height: 50px;
    font-size: var(--txt-md-1);
    /* font-weight: 500; */
    line-height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 25px;
    transition: 0.3s;
}
.path [class^="depth"] ul li:hover {
    background: #fff;
}
.path [class^="depth"] ul li a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.path [class^="depth"] ul li a span {
    font-size: 0.825rem;
    padding-left: 0.125rem;
    vertical-align: middle;
    opacity: 0.75;
}
.path [class^="depth"] ul li:hover a {
    color: var(--main-color);
}
.path select {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    height: 58px;
    line-height: 58px;
    padding-bottom: 4px;
}
.path select option {
    color: var(--c-black-3);
    font-size: 14px;
}
.path .depth_btn.depth_wide {
    min-width: 360px;
}
.path ul li .link {
    position: relative;
}
.path ul li .link:after {
    content: url(/images/common/ic_external_sm.png);
    font-weight: 600;
    margin-left: 8px;
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
}



/**************************************************************/
/**************************************************************/
/****************************Contents**************************/
/**************************************************************/
/**************************************************************/
.layout_sub {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.sub_container {
    min-height: 500px;
    margin-top: 5rem;
}
.sub_container>.wrapper {
    width: 100%;
    margin: 0 auto;
    /* padding-top: 100px; */
    position: relative;
}
.sub_container .wrapper .max.line_wrapper {
    background: url('../images/sub/line_bg.png') center top repeat-y;
}
.sub_container .wrapper .max {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 0 4rem;
    /* min-height: calc(100vh - 282px); */
}
.no_visual .sub_container .wrapper .max, .no_visual .sub_container .wrapper .max {
    padding: var(--pad-tb-lg);
}
.sub_container .wrapper .max_wrap_border {
    border-bottom: 1px solid var(--c-black-5);
}

.sub_container .wrapper .max_wrap_color {
    background: var(--sub-color-3) url(../images/common/symbol_wht.png) no-repeat center;
    background-size: 28%;
}

.sub_container .wrapper .max_wrap_color2 {
    background: var(--c-black-7);
}

.max_wrap_bg {
    background-size: cover;
}
/* .max_wrap_bg .txt_md {
    font-size: 1.05rem;
    color: #fff !important;
}
.max_wrap_bg .num_tit_nm {
    font-weight: 400;
    color: #fff !important;
} */
.max_bg01 {
    background: url(../images/sub/max_bg01.png) no-repeat center bottom;
    /* background-size: cover; */
    min-height: 58rem;
}
.max_bg02 {
    background: url(../images/sub/max_bg02.png) no-repeat center;
    background-attachment: fixed;
}
.max_bg03 {
    background: url(../images/sub/max_bg03.png) no-repeat center;
    background-attachment: fixed;
}
.max_bg04 {
    background: url(../images/sub/max_bg04.png) no-repeat center;
    background-attachment: fixed;
}

.sub_container .wrapper .max_wrap_nm {
    margin-top: -80px;
}











/**************************************************************/
/**************************************************************/
/**********************Hamburger&offcanvas*********************/
/**************************************************************/
/**************************************************************/

/* Style the tab */

/* Style the tab content */
.overlay {
    display: none;
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    transition: background-color 2s;
    cursor: pointer;
}
.offcanvas {
    height: 100%;
    width: 580px;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
}
.offcanvas .menu_wrapper {
    -ms-overflow-style: none;
}
.offcanvas .menu_wrapper::-webkit-scrollbar {
    display: none;
}
.offcanvas .menu_wrapper .t_menu a {
    display: none;
}
#offcanvas::-webkit-scrollbar {
    display: none;
}
#offcanvas {
    margin-right: -625px;
    transition: 0.5s;
    transition: margin-right .5s;
    -ms-overflow-style: none;

}
#offcanvas.open {
    margin-right: 0;
    background: var(--main-color);
    z-index: 999999999999999999;
}
/* Style the tab */
.offcanvas .tab {
    float: left;
    width: 180px;
    height: 100%;
    color: #fff;
    padding-top: 90px;
    position: relative;
}

.offcanvas .tab .fixed_wrapper {
    position: fixed;
    height: 100%;
    width: 180px;
}
.offcanvas .h_tablinks {
    display: block;
    background-color: transparent;
    color: #FFF;
    padding: 0 18px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.125rem;
    height: 72px;
    line-height: 72px;
}
.offcanvas .h_tablinks.point {
    background-color: #2222227d;
}
.offcanvas .h_tablinks:hover {
    background-color: #fff;
    color: var(--c-black-2);
}

.offcanvas .h_tablinks.active {
    background-color: #fff;
    color: var(--c-black-1);
    font-weight: 600;
}

/* Style the tab content */
.offcanvas .menu_wrapper {
    width: calc(100% - 180px);
    float: left;
    height: 100%;
    background: #fff;
}
.offcanvas .h_tabcontent {
    display: none;
    margin-top: 90px;
}
.offcanvas .h_tabcontent .sub_nav {
    background: #fff;
}
.offcanvas .h_tabcontent .sub_nav > li > a {
    height: 72px;
    line-height: 72px;
    font-size: var(--txt-lg);
    color: var(--c-black-2);
    padding: 0 25px;
    border-bottom: 1px solid var(--c-black-6);
    display: block;
    font-weight: 400;
}
.offcanvas .h_tabcontent .sub_nav > li > a span.material-icons {
    font-size: 1rem;
    color: var(--c-black-4);
    padding-left: 0.25rem;
}
.offcanvas .h_tabcontent .sub_nav > li a.link::after {
    content: url(/images/common/ic_external_sm.png);
    font-weight: 600;
    margin-left: 5px;
    font-size: 0.813rem;
}

.offcanvas .menu_login {
    background-color: var(--c-black-7);
    height: 90px;
    font-size: var(--txt-lg);
    color: #fff;
    padding: 0 30px;
    position: fixed;
    top: 0;
    width: calc(100% - 180px);
    z-index: 999;
}
.offcanvas .menu_login .wrapper {
    position: relative;
    width: 340px; 
    height: 100%;
    /* display: flex;
    gap: 1rem; */
}
.menu_login a:hover {
    color: #fff;
}
.offcanvas .menu_login a {
    background: var(--sub-color-2);
    font-weight: 600;
    /* position: absolute; */
    top: 1rem;
    left: 1.5rem;
    display: flex;
    color: var(--c-black-1);
    height: 2.625rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    border-radius: var(--radius-all-xs);
    font-size: 1.125rem;
    min-height: inherit;
}
.offcanvas .menu_login a:nth-child(2) {
    /* left: 9.5rem; */
    background: var(--sub-color);
}
.offcanvas .menu_login a:nth-child(3) {
    /* left: 18.5rem; */
    background: #aebac1;
}
.offcanvas .right_p {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.offcanvas .btn_close {
    width: 30px;
    height: 30px;
    position: relative;
    text-indent: -9999px;
    right: 0;
    background: none;
    border: 0;
    cursor: pointer;
}
.offcanvas .btn_close:before,
.btn_close:after {
    content: '';
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 4px;
    background: #000;
}
.offcanvas .btn_close:before {
    transform: translate(-50%, -50%) rotate(-45deg)
}
.offcanvas .btn_close:after {
    transform: translate(-50%, -50%) rotate(45deg)
}
.offcanvas .h_tabcontent .depth3 {
    display: none;
    border-bottom: 1px solid #ddd;
    padding: 28px 32px;
}
.offcanvas .h_tabcontent .depth3 .menu3 {
    font-size: 16px;
    line-height: 32px;
    color: #111;
    position: relative;
    padding-left: 14px;
}
.offcanvas .h_tabcontent .depth3 .menu3::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--main-color);
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 4px;
    position: absolute;
    top: 13px;
    left: 0px;
}
.offcanvas .h_tabcontent .depth3 .menu3 a {
    color: #111;
}
.offcanvas .h_tabcontent .depth3 .menu3 a:hover {
    text-decoration: underline;
}
.offcanvas .h_tabcontent .menu2_link {
    position: relative;
}
.offcanvas .h_tabcontent .menu2_link.active {
    color: var(--main-color) !important;
    font-weight: 500;
    transition: 0.5s;
}
.offcanvas .h_tabcontent .menu2_link:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 2px solid #aaa;
    border-top: 2px solid #aaa;
    transform: rotate(135deg);
    position: absolute;
    top: 35px;
    right: 20px;
    transition: 0.5s;
}
.offcanvas .h_tabcontent .menu2_link.active:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 2px solid #aaa;
    border-top: 2px solid #aaa;
    transform: rotate(-45deg);
    position: absolute;
    top: 40px;
    right: 20px;
    transition: 0.5s;
}










/**************************************************************/
/**************************************************************/
/**************************main visual*************************/
/**************************************************************/
/**************************************************************/

#main .visual {
    width: 100%;
    /* overflow: hidden; */
    margin: 0 auto;
    text-align: center;
    position: relative;
    /* margin-top: 100px; */
}
#main .visual::before {
    content: "";
    display: block;
    width: 26px;
    height: 42px;
    background: url(../images/common/ico_mainMouse.png) no-repeat center center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6.25em;
    background-size: contain;
    animation: scroll .8s infinite alternate;
    /* opacity: 0; */
    z-index: 99999;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

#main .visual::after {
    content: "Scroll";
    position: absolute;
    color: #fff;
    left: 50.8%;
    transform: translateX(-50%);
    bottom: 3.8em;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 1px;
}

#main .visual .visual_wrap {
    text-align: center;
    width: 100%;
    position: absolute;
    z-index: 99;
    top: 33%;
}
#main .visual .caption {
    color: #fff;
    width: var(--web-width);
    margin: 0 auto;
    text-align: left;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#main .visual .caption h4 {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 5rem;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#main .visual .caption p {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.75rem;
    margin: 1rem 0 2rem;
}


.main_slider li.visual01 {background: url(../images/main/main_visual01.png) center no-repeat; background-size: cover;}
.main_slider li.visual02 {background: url(../images/main/main_visual02.png) center no-repeat;background-size: cover;}
.main_slider li.visual03 { background:url(../images/main/main_visual03.png) center no-repeat; background-size: cover;}
.main_slider li.visual04 { background:url(../images/main/main_visual04.png) center no-repeat; background-size: cover;}
.main_slider li.visual05 { background:url(../images/main/main_visual05.png) center no-repeat; background-size: cover;}
.main_slider li.visual06 { background:url(../images/main/main_visual06.png) center no-repeat; background-size: cover;}
#main .visual, #main .visual .main_visual, #main .main_visual .bx-wrapper .bx-viewport, .main_slider li {
    width: 100% !important;
    height: 100vh !important;
}
.bx-wrapper{
    max-width: 100% !important;
}


/**************************************************************/
/**************************************************************/
/*****************************footer***************************/
/**************************************************************/
/**************************************************************/

.footer {
    background: #262424;
    padding: 2rem 5rem;
    position: relative;
}
.footer::before{
    content:'';
    position: absolute;
    border: 1px solid var(--c-black-2);
    width: 99.8%;
    top: 30%;
    left: 0;
}
.footer .wrapper {
    width: var(--web-width);
    margin: 0 auto;
}
.footer .wrapper .top{
    
}
.footer .wrapper .top .top-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin: 0 auto;
}
.footer .wrapper .top .top-inner .top-links{
    display: flex;
    gap: 3rem;
}
.footer .wrapper .top .top-inner .top-links a{
    color: var(--c-black-5);
    font-weight: 600;
    font-size: var(--txt-md);
}
.footer .wrapper .top .top-inner .top-social{
    display: flex;
    gap: 12px;
}
.footer .wrapper .top .top-inner .top-social a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--c-black-3);
    border-radius: 50%;
}
.footer .wrapper .bottom{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 0rem;
}
.footer .wrapper .bottom .logo{
    width: 180px;
    height: auto;
    margin-right: 3rem;
}
.footer .wrapper .bottom .footer-info{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer .wrapper .bottom .footer-info .campus{
    display: flex;
    gap: 1rem;
}
.footer .wrapper .bottom .footer-info .campus strong{
    display: inline-block;
    color: #fff;
    font-weight: 600;
}
.footer .wrapper .bottom .footer-info .campus span, .footer-info .copyright p{
    color: var(--c-black-4);
    font-weight: 400;
}
.footer .wrapper .bottom .site{
    width: 240px;
    aspect-ratio: 5/1;
    position: relative;
    transition: 0.3s;
    margin-left: auto;
}
.footer .wrapper .bottom .site .btn_toggle img{
    width: 16px;
}
.footer .wrapper .bottom .site ul{
    position: absolute;
    width: 100%;
    padding-bottom: 44px;
    bottom: 0px;
    left: 0;
    display: block;
    border-radius: 4px;
    background: var(--c-black-6);
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    transition-delay: 0s, 0s, 0.2s;
    transform: translateY(50px);
}
.footer .wrapper .bottom .site ul.on{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    z-index: 9;
    padding-bottom: 0;
    bottom: 49px;
}
.footer .wrapper .bottom .site ul.on .btn_toggle {
    z-index: 99;
}

.footer .wrapper .bottom .site ul li{
    height: 44px;
    line-height: 44px;
    width: 100%;
    padding: 0 12px;
    border-bottom: 1px solid var(--c-black-5);
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: pre;
}
.footer .wrapper .bottom .site ul li:hover{
    background: var(--c-black-4);
}
.footer .wrapper .bottom .site ul li a{
    color: var(--c-black-1);
    display: block;
    width: 100%;
    height: 100%;
    font-weight: 500;
}
.footer .wrapper .bottom .site .btn_toggle{
    display: flex;
    padding: 0 0.5rem 0 1rem;
    width: 100%;
    height: 100%;
    color: var(--c-black-5);
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    /* z-index: 99; */
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    font-weight: 600;
    border-radius: 4px;
    border: 1px var(--c-black-4) solid;
}
.footer .wrapper .bottom .site .btn_toggle span{
    transition: 0.3s;
}
.footer .wrapper .bottom .site .btn_toggle:hover span{
    transform: rotate(180deg);
}



/**************************************************************/
/**************************************************************/
/******** terms & privacy 이용약관 &개인정보처리방침 **********/
/**************************************************************/
/**************************************************************/
.privacy {
    background: #fff;
    /* border: 1px solid var(--c-black-5);
    padding: 2rem;
    border-radius: var(--radius-all-sm); */
    width: 100%;
}
.privacy .terms {
    /* border-bottom: 1px solid var(--c-black-5); */
}
/* .privacy .terms p {margin-bottom: 6px;font-weight: 500;font-size: 0.925rem;} */
.privacy .terms ul {
    margin-bottom: 0.325rem;
}
/* .privacy .terms ul li {
    line-height: 1.5em;
    padding-left: 10px;
    position: relative;
    font-size: 0.925rem;
    color: var(--c-black-3);
}
.privacy .terms ul li:before {
    content: '';
    width: 3px;
    height: 3px;
    background:  var(--c-black-4);
    position: absolute;
    top: 12px;
    left: 0px;
} */
.privacy h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-align: center;
    margin-top: 3.5rem;
}
.privacy h2:first-child {margin-top: 1.5rem;}
.privacy .terms .group {
    line-height: 1.5em;
    margin-bottom: 1.5rem;
    border-top: 1px dashed var(--c-black-5);
    padding-top: 1.5rem;
}
.privacy .terms .group:first-child {
    border: 0;
    padding-top: 0;
}
.privacy .terms .group:last-child {
    margin-bottom: 0;
}
.privacy .terms .group .terms_tit {
    line-height: 1.5em;
    font-size: var(--txt-lg);
    margin-bottom: 8px;
    color: var(--main-color);
}
.privacy .terms:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.privacy .pri_box {
    background: #e9dfe2;
    padding: 20px;
    margin-top: 20px;
}
.privacy .pri_box h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.privacy .pri_box .btn_download {
    background: var(--sub-color-3);
    padding: 8px 20px;
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    font-size: 1rem;
}
.privacy .terms .bu_no li:before {
    display: none;
}
.privacy .terms ul li .sm {
    color: var(--c-black-3);
    margin:10px 0;
    line-height: 1.7em;
}
.privacy .terms .cont_box {
    border: 1px solid var(--sub-color-5);
    padding:15px;
}
.privacy .terms .cont_box label {
    color: var(--sub-color-5);
    margin-bottom: 12px;
    display: block;
}
.privacy .terms .cont_box ul {
    overflow:hidden;
}
.privacy .terms .cont_box ul li {
    float:left;
    margin-right:20px;
    padding-left:0;
}



/*----------------------------------------1700--------------------------------*/

@media screen and (max-width:1700px) {
    /* 헤더 */
    #header nav #gnb>li{
        width: 150px;
    }
    #header nav #gnb li .nav_dep1{
        font-size: 1rem;
    }
    #header nav .depth_toggle .sub_nav{
        width: 150px;
    }


}

/*----------------------------------------1600--------------------------------*/

@media screen and (max-width:1600px) {
    #main .visual .visual_wrap{
        padding: 0 2rem;
    }
}

/*----------------------------------------1500--------------------------------*/

@media screen and (max-width:1500px) {
    /* 헤더 */
    #header nav #gnb>li{
        width: 140px;
    }
    #header nav .depth_toggle .sub_nav{
        width: 140px;
    }

    #header .logo{
        min-width: 180px;
        margin-left: 20px;
    }
    #header .logo a img {
        width: 180px;
    }
    #header .menu_area ul li{
        width: 70px;
    }
    #header .menu_area ul li a .material-icons-outlined{
        font-size: 1.5rem;
    }
    #header nav #gnb{
        padding-right: 60px;
    }

}

/*----------------------------------------1400--------------------------------*/

@media screen and (max-width:1400px) {
    
    /* 푸터 */
    .footer{
        padding: 2rem 3rem;
    }
    .footer .wrapper {
        width: 100%;
    }

    #header nav #gnb{
        padding-right: 50px;
    }
    #header .logo{
        max-width: 200px;
        margin-left: 10px;
    }
    #header .logo a img{
        width: 160px;
    }
    #header nav #gnb>li{
        width: 130px;
    }
    #header nav .depth_toggle .sub_nav{
        width: 130px;
    }
}





/**************************************************************/
/**************************************************************/
/****************************basic css*************************/
/**************************************************************/
/**************************************************************/

.pc_hidden {
    display: none;
}
.m_hidden {
    display: block;
}

.txt_ex {
    font-size: 0.925rem !important;
    color: var(--c-black-4);
}

.txt_sm {
    font-size: 0.925rem !important;
    line-height: 1.6em;
}
.txt_lg {
    font-size: var(--txt-lg);
    line-height: 1.5em;
}
.txt_strong {
    font-weight: 800;
}

.txt_light {
    font-weight: 200;
}

.txt_justify {
    text-align: justify;
}

.main_clr {
    color: var(--main-color) !important;
}
.main_clr02 {
    color: var(--main-color-2) !important;
}
.main_clr02.bg {
    background: var(--main-color-2) !important;
    color: var(--c-black-1) !important;
}
.main_clr03 {
    color: var(--main-color-3) !important;
}
.main_clr04 {
    color: var(--main-color-4) !important;
}
.sub_clr {
    color: var(--sub-color) !important;
}
.sub_clr02 {
    color: var(--sub-color-2) !important;
}
.sub_clr03 {
    color: var(--sub-color-3) !important;
}
.sub_clr04 {
    color: var(--sub-color-4) !important;
}
.sub_clr05 {
    color: var(--sub-color-5) !important;
}
.sub_clr06 {
    color: var(--sub-color-6) !important;
}

.txt_grey {
    color: var(--c-black-4) !important;
}
.txt_red {
    color: #d22b28 !important;
}
.txt_blue {
    color: #196ce9 !important;
}
.txt_blk {
    color: var(--c-black-1) !important;
}

.page_tit {
    font-size: var(--txt-5xl);
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
}

.txt_center {
    text-align: center;
}
.txt_left {
    text-align: left !important;
}

.txt_md {
    font-size: var(--txt-lg);
    display: block;
    font-weight: 400;
    color: #333;
    line-height: 1.8em;
    word-break: break-all;
    /* font-size: 20px; */
}
.txt_md span {
    font-weight: 800;
    /* background: var(--sub-color-2); */
    /* background: url(../images/common/rainbow.png) center; */
    background-size: contain;
    font-size: 1.25rem;
    /* color: var(--main-color-3); */
    /* padding: 2px 6px; */
    margin: 2px;
}

.mt_0 {margin-top: 0 !important;}
.mb_0 {margin-bottom: 0 !important;}

.mb_10 {
    margin-bottom: 0.625rem !important;
}
.mb_20 {
    margin-bottom: 1.25rem !important;
}
.mb_30 {
    margin-bottom: 1.875rem !important;
}
.mb_40 {
    margin-bottom: 2.5rem !important;
}
.mb_60 {
    margin-bottom: 3.75rem !important;
}
.mb_90 {
    margin-bottom: 5.625rem !important;
}
.mt_10 {
    margin-top: 0.625rem !important;
}
.mt_20 {
    margin-top: 20px !important;
}
.mt_30 {
    margin-top: 1.875rem !important;
}
.mt_40 {
    margin-top: 2.5rem !important;
}
.mt_60 {
    margin-top: 3.75rem !important;
}
.mt_90 {
    margin-top: 5.625rem !important;
}
.mr_5 {
    margin-right: 5px;
}
.mr_10 {
    margin-right: 10px;
}

.cont_tit_m h4, .cont_tit_nm h4{
    font-size: var(--txt-2xl-2);
    display: block;
    font-weight: 600;
    word-break: keep-all;
}

.flex {
    display: flex;
    align-items: center;
}
.flex_bet {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex_betend {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.img_flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}
.img_flex .img {
    width: 50%;
    height: auto;
    aspect-ratio: 3/2;
}
.img_flex .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.apply_common textarea:placeholder {
    color: #999 !important;
    font-size: 1rem !important;
}
.float_r { float: right;}
.align_c { text-align: center;}
.align_l {text-align: left;}
p.desc{
    text-align: left;
    color: var(--c-black-3);
    font-size: var(--txt-sm);
    margin-left: 1rem;
}
span.xlg_txt{
    font-size: var(--txt-2xl);
    font-weight: 600;
}
p.in_txt{
    margin-left: 1rem;
}

/*table*/
table {
    width: 100%;
    border-top: 1px var(--c-black-1) solid;
    border-right: 1px var(--c-black-5) solid;
    border-left: 1px var(--c-black-5) solid;
    /* table-layout: fixed; */
    border-collapse: collapse;
    line-height: 1.5em;
    text-align: center;
    position: relative;
}

table.bg_co tr:nth-child(2n) {
    background: var(--c-black-8);
}


table th {
    background-color: var(--c-black-7);
    font-size: 1.075rem;
    /* border-top: 1px var(--c-black-5) solid; */
    border-right: 1px var(--c-black-5) solid;
    padding: 14px;
    font-weight: 400;
    vertical-align: middle;
    text-shadow: #000 0px 0px 0.75px;
}
table th:last-child {
    border-right: 1px var(--c-black-5) solid;
}
table tr {
    border-bottom: 1px var(--c-black-5) solid;
}
table tr.line {
    border-bottom: 1px var(--c-black-5) solid;
}
table td.valign_top {
    vertical-align: top;
}
/* table tr:last-child {
    border-bottom: 0;
} */

table td {
    padding: 14px;
    border-right: 1px var(--c-black-5) solid;
    /* background: #fff; */
    vertical-align: middle;
}
table td:last-child {
    border-right: 1px var(--c-black-5) solid;
}
table td.bg01 { background: #d3deec;border-right: 1px #fff solid;border-bottom: 1px #fff solid;}
table td.bg02 { background: #e5f0dB;border-right: 1px #fff solid;border-bottom: 1px #fff solid;}
table td.bg03 { background: #F6E6D7;border-right: 1px #fff solid;border-bottom: 1px #fff solid;}

table.txt_sm th{ font-size: var(--txt-sm-1);}
table.txt_sm td{ font-size: var(--txt-sm); line-height: 1.125rem; padding: 8px;}


/*modal*/
.modal_conts a.btn_close_m {
    display: inline-block;
    text-align: center;
    width: 120px;
    margin: 0 auto;
    margin-top: 20px;
    height: 38px;
    background: var(--main-color);
    line-height: 36px;
    color: #fff;
    cursor: pointer;
    font-size: var(--txt-md-1);
    box-sizing: border-box;
    padding: 0;
}
.modal_conts .btn_area {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    /* display: none; */
}
.modal_tr table tr {
    cursor: pointer;
}
.modal_conts table th {
    color: var(--c-black-1);
    font-size: var(--txt-lg);
    padding: 16px 30px;
}
.modal_conts table td {
    padding: 16px 30px 16px 16px;
}
.modal_conts table td img {
    max-width: 600px;
}
.modal_conts {
    display: none;
    max-width: 800px;
    min-width: 300px;
    background: #fff;
    max-height: 700px;
    overflow: auto;
}
.modal_conts .tb {
    background-color: #fff;
    z-index: 999 !important;
    padding: 20px;
    border: 1px solid #888;
    max-width: 800px;
    min-width: 300px;
}
.modal_conts .tb img {
    margin: 0 auto;
    display: block;
    max-height: 660px;
}


/*download button*/
.btn_down {
    background: var(--main-color);
    color: #fff;
    width: 160px;
    height: 48px;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    letter-spacing: 0;
    display: inline-block;
}
/* .btn_down::after {
    content: url(../images/common/ic_file_on.png);
    padding-left: 6px;
} */
.btn_down:hover {
    background: #015594;
}

.btn_write {
    display: inline-block;
    text-align: center;
    float: right;
    width: 120px;
    background: var(--main-color);
    height: 42px;
    line-height: 42px;
    color: #fff;
    font-weight: 500;
    border-radius: var(--radius-all-xs);
    font-size: var(--txt-md-1);
}

/*layer popup*/
.layer_popup {position:absolute; width:450px; /*height: 450px;*/ top:0px; left: 0px; z-index:10000000002;cursor:pointer; }
.layer_popup p {margin: 0 auto; text-align: center;}
/*.layer_popup p img {width:330px;}*/
.layer_popup .close_wrap {  background-color: rgba(0,0,0,0.8); height: 30px; color: #fff; line-height: 30px;text-align: center;}
.layer_popup .pop_close {
    float: left;
    padding: 0 6px;
}
.layer_popup .chk_close {
    float: right;
    padding: 0 6px;
}
.layer_popup .chk_close a {
    color: #fff;
}
@media screen and (max-width:580px) {
    /*layer popup*/
    .layer_popup {position:absolute; width:100%; height: 100%; top:0px; left: 0px; background-color: rgba(0,0,0,0.5); z-index:10000000002;cursor:pointer; }
    .layer_popup p {margin: 0 auto; margin-top:50px; text-align: center;}
    .layer_popup p img {width:300px;}
    .layer_popup .close_wrap {background-color: rgba(0,0,0,0.0); height: 50px; color: #fff; line-height: 30px;text-align: center;}
    .layer_popup .pop_close {
        float: none;
        width: 100%;
        padding: 0 6px;
    }
    .layer_popup .chk_close {
        float: none;
        width: 100%;
        padding: 0 6px;
    }
}

/**************************************************************/
/**************************************************************/
/******************** waiting 준비중페이지 ********************/
/**************************************************************/
/**************************************************************/
/*----------------------- 인덱스 준비중 ----------------------*/
.waiting_index {display: flex;align-content: center;justify-content: center;width: 100vw;height: 100vh;flex-wrap: wrap;position: relative;}
.waiting_index::before {box-shadow: 0px 7px 23px -6px rgb(0 0 0 / 40%); content:'';position: absolute;width: 400px;aspect-ratio:1/1;top: 28vh;left: 50%;transform: translate(-50%);background: url(../images/common/multi_bg.png);z-index: -1;background-size: cover;border-radius: 400px;}
.waiting_index img {margin-bottom: 1.5rem;border-bottom: 1px dashed #fff;padding-bottom: 1.5rem;}
.waiting_index p {font-size: 2rem;text-align: center;width: 100%;color: #fff;font-weight: 500;}

/*-------------------- 서브페이지 준비중 ---------------------*/
.waiting_sub {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
    margin: 5rem auto;
    height: 400px;
}
.waiting_sub::before {
    box-shadow: 0px 7px 23px -6px rgb(77 82 79 / 17%);
    content: '';
    width: 400px;
    height: 400px;
    /* aspect-ratio: 1 / 1; */
    transform: translate(-50%);
    background: url(../images/main/multi_bg.png) center;
    z-index: -1;
    background-size: cover;
    border-radius: 400px;
    position: absolute;
    left: 50%;
}
.waiting_sub img {margin-bottom: 1.5rem;border-bottom: 1px dashed #fff;padding-bottom: 1.5rem;}
.waiting_sub p {font-size: 1.5rem;text-align: center;width: 100%;color: #fff;font-weight: 500;}



.tab_click_li {
    border-top: 4px solid #1f4396;
    /* border-bottom: 2px solid #1f4396; */
}
.tab_click_li dt {
    overflow: hidden;
    height: auto;
    padding: 26px 24px 26px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--c-black-5);
    line-height: 30px;
}
.tab_click_li dt .tit {
    width: 100%;
    font-size: var(--txt-lg);
    font-weight: 400;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.tab_click_li dt.material-icons {color: var(--sub-color-2);}
.tab_click_li dd {
    display: none;
    height: auto;
    padding: var(--pad-tb-sm);;
    border-bottom: 1px solid var(--c-black-5);
    line-height: 150%;
    padding-left: 28px;
}
.tab_click_li p {
    margin-bottom: 20px;
}
.tab_click_li dt .tit .cate {
    color: var(--sub-color);
    font-weight: bold;
    font-size: var(--txt-lg);
    padding: 0 4px 0 6px;
    margin: 0;
    letter-spacing: normal;
    background: none !important;
}
.tab_click_li dt .tit:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -5px 12px auto auto;
    vertical-align: middle;
    border-right: 2px solid #aaa;
    border-top: 2px solid #aaa;
    transform: rotate(135deg);
    position: absolute;
    top: 13px;
    right: 0px;
    transition: 0.2s;
}
.tab_click_li dt.on .tit:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -20px 6px auto auto;
    vertical-align: middle;
    border-right: 2px solid #aaa;
    border-top: 2px solid #aaa;
    transform: rotate(-45deg);
    position: absolute;
    top: 34px;
    right: 8px;
    transition: 0.2s;

}
.tab_click_li dt .tit_l {
    padding-right: 6px;
    color: #1f4396;
}
/*-------------------------- login ---------------------------*/
.login_two {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: wrap;
}
.login_two .login_wrap h6 {
    font-size: 1.85rem;
    font-weight: 500;
    margin: 30px 0;
}
.login_wrap {
    width: 350px;
    text-align: center;
    margin: 0 auto;
}
.login_wrap .login_input {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.login_wrap .login_input .txt_box {
    width: 100%;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
}
.login_wrap input[type=text] {
    background: #fff;
    border: 1px solid var(--c-black-5);
    padding: 0px 10px;
    height: 46px;
    margin: 5px 0;
}
.login_wrap input[type=password] {
    background: #fff;
    border: 1px solid var(--c-black-5);
    padding: 0px 10px;
    height: 46px;
    margin: 5px 0;
}
.login_wrap.search_complete {
    width: 100%;
}
.login_input input[type=submit] {
    width: 100%;
    border: 0;
    height: 50px;
    line-height: 50px;
    background: var(--main-color);
    color: #fff;
    /*    font-size:18px;*/
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: var(--radius-all-xs);
}
.login_input input[type=submit]:hover,
.login_input input[type=submit]:active {
    background: var(--main-color);
}
.login_footer {
    width: 100%;
    text-align: center;
}
.login_footer .remember_id {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    text-align: left;
}
.login_footer .remember_id li {
    text-indent: -10px;
    padding-left: 10px;
}
.login_footer .id_pw {
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
    text-align: center;
}
.login_footer a {
    color: var(--c-black-3);
}
.login_footer .id_pw span {
    color: var(--c-black-3);
    padding: 0 5px;
    font-weight: 300;
}
.login_footer .btn_s {
    color: #fff !important;
    min-width: 150px;
}
.login_footer .btn_s:first-child {
    margin-right: 10px;
}
.login_footer a:hover {
    color: var(--main-color-2);
    text-decoration: none;
}
.login_footer p {
    text-align: left;
}
.id_pw_box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.id_pw_sch {
    /* padding-bottom: 30px; */
    justify-content: center;
    align-items: center;
    color: var(--c-black-3);
    font-size: var(--txt-lg-2);
}
.id_pw_sch .sch_id {
    font-size: var(--txt-2xl);
    color: var(--sub-color-2);
    padding: 0 2px;
}
.id_pw_sch span {
    /* display: block; */
    margin-top: 20px;
    color: var(--c-black-4);
    /* font-size: 1rem;
    line-height: 1.6em; */
}
.login_box {
    width: 350px;
    margin: 0 auto;
    text-align: left;
}
.login_box_l {
    float: left;
    width: 50%;
}
.login_box_r {
    float: right;
    width: 50%;
}
.login_social { width:100%; margin: 1.125rem auto; }
.login_social ul li {width: 350px;height: 40px;line-height: 40px;border-radius: 40px;text-align: left;padding: 0px 0 0px 50px;box-sizing: border-box;margin: 0 auto;margin-top: 10px;cursor: pointer;}
.login_social ul li.naver {background: url(../images/common/icon_sns_naver_m.png) 20px center no-repeat var(--sub-color-5);}
.login_social ul li.facebook { background: url(../images/common/icon_sns_facebook_m.png) 20px center no-repeat var(--sub-color-5);}
.login_social ul li.kakao { background: url(../images/common/icon_sns_kakao_m.png) 16px center no-repeat var(--sub-color-5);}
.login_social ul li.google { background: url(../images/common/icon_sns_google_m.png) 16px center no-repeat var(--sub-color-5);}
