html,
body {
    font-size: 16px;
}
:root {
    --main-color: #ff8634;
    --main-color-2: #49236e;
    --sub-color:  #4ac1ca;
    --sub-color-2: #9299ae;
    --c-black-1: #222;
    --c-black-2: #333;
    --c-black-3: #555;
    --c-black-4: #757575;
    --c-black-5: #ddd;
    --c-black-6: #efefef;
    --c-black-7: #fafafa;

    accent-color: #086fb8;

    --txt-xs: 0.75rem;/* 12px */
    --txt-sm: 0.875rem;/* 14px */
    --txt-md: 1rem;/* 16px */
    --txt-lg: 1.125rem;/* 18px */
    --txt-xl: 1.25rem;/* 20px */
    --txt-2xl: 1.5rem;/* 24px */
    --txt-3xl: 1.75rem;/* 28px */
    --txt-4xl: 2rem;/* 32px */
    --txt-5xl: 3rem;/* 48px */
    --txt-6xl: 3.75rem;/* 60px */

    --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 */

    --web-width: 1400px;

    /* --main-font: '', 'Pretendard Variable', 'Noto Sans KR', sans-serif; */
}


/**************************************************************/
/**************************************************************/
/****************************basic css*************************/
/**************************************************************/
/**************************************************************/

/* ----------------- pc mobile hidden & show -----------------*/
.pc_hidden {
    display: none !important;
}
.m_hidden {
    display: block !important;
}
.pc_hidden_f {
    display: none !important;
}
.m_hidden_f {
    display: flex !important;
}


/* ---------------------- margin setting -----------------------*/
.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_0 {
    margin-top: 0 !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;
}

/* -------------------- basic flex setting -------------------*/
.flex {
    display: flex;
}
.flex.flex_end {
    justify-content: flex-end;
}
.flex.flex_bet {
    justify-content: space-between;
}
/* -------------------- text basic setting -------------------*/
.txt_center {text-align: center !important;}
.txt_left {text-align: left !important;}
.txt_right {text-align: right !important;}
.txt_lg {
    font-size: var(--txt-xl);
    display: block;
    color: var(--c-black-3);
    line-height: 1.6em;
}
.txt_lg span {
    font-weight: 500;
    color: #26356C;
}
.txt_lg_thin {
    font-size: var(--txt-xl);
    font-weight: lighter;
    display: block;
    color: var(--c-black-3);
    line-height: 1.6em;
}
.txt_lg_thin span {
    font-weight: normal;
    color: #26356C;
}
.txt_md {
    font-size: var(--txt-lg);
    display: block;
    font-weight: 400;
    color: #444;
    line-height: 1.6em;
    word-break: break-all;
}
.txt_md span {
    font-weight: 600;
    color: #26356C;
}
.txt_ex {
    font-size: var(--txt-sm);
    color: var(--c-black-4);
}
.txt_sm {
    font-size: var(--txt-sm);
    line-height: 1.6em;
}
.txt_strong {
    font-weight: 600;
}
.txt_light {
    font-weight: 200;
}
/* -------------------- text color setting -------------------*/
.main_clr {
    color: var(--main-color) !important;
}
.main_clr02 {
    color: var(--main-color-2) !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;
}
.txt_grey {
    color: var(--c-black-4) !important;
}
.txt_red {
    color: #d22b28 !important;
}
.txt_blk {
    color: var(--c-black-1) !important;
}


/**************************************************************/
/**************************************************************/
/****************************header****************************/
/**************************************************************/
/**************************************************************/

#div#wrap {
    width: 100%;
    position: relative;
}

header.on .logo a {
	background: url(../images/common/logo_on.png) no-repeat center center;
	background-size: contain;
}
header.active .logo a {
	background: url(../images/common/logo_on.png) no-repeat center center;
	background-size: contain;
}

/************ layout *************/

.wrap {
    position: relative;
    overflow: hidden;
}

/************* layout-header *************/

#header {
    position: absolute;
    top: 0;
    z-index: 98;
    width: 100%;
    transition: all 0.5s ease;
    height: 88px;
    /*border-bottom: 1px solid rgba(255,255,255,0.3);*/
}

#header.on {
    position: fixed;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #ddd; 
    /* border-bottom: 1px solid rgba(255,255,255,0.3);*/
    animation: smoothScroll 0.5s forwards;
}

#header.on nav {
    display: block;
}

/*#header.on nav #gnb li .nav_dep1 {
    color: #fff;
}*/

#header .top_menu {
    width: 100%;
    height: 34px;
    line-height: 34px;
    border-bottom: 1px rgba(255, 255, 255, .3) solid;
}
#header .top_menu ul{
    width: 1400px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin: 0 auto;
}
#header .top_menu ul li a {
    color: #fff;
    font-size: 14px;
    margin-left: 15px;
}
#header.on .top_menu ul li a {
    color: #222;
}
#header.active .top_menu ul li a {
    color: #222;
}
#header.active .top_menu ul li a.link {
    color: #fff;
}
#header.on .top_menu {
    border-bottom: 1px #ddd solid;
}
#header.active .top_menu {
    border-bottom: 1px #ddd solid;
}
#header.on .menu_area ul li a {
    color: #222;
}

#header.on .menu_area ul li a.btn_ham_menu {
    background-image: url(../images/common/ic_ham.png);
}

#header.active {
    top: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    animation: smoothScroll 0.5s forwards;
}
#header.active {
    position: fixed;
}

#header.active nav {
    display: block;
}

#header.active nav #gnb li .nav_dep1 {
    color: #222;
}

#header.active .menu_area ul li a {
    color: #222;
}
#header.active .menu_area ul li a.link {
    color: #fff;
}
/*#header.active .menu_area ul li a.btn_ham_menu {
    background-image: url(../images/common/ic_ham_menu_on.png);
    background-repeat: no-repeat;
    background-position: center;
}
#header.active .menu_area ul li a.btn_ham_menu {
    background-image: url(../images/common/ic_ham_menu_on.png);
    background-repeat: no-repeat;
    background-position: center;
}
*/
/*#header .logo {
    height: 4rem; 
    padding: 20px 0;
    line-height: 4rem;
}
*/
#header .logo img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
header .logo a {
    width: 180px;
    height: 39px;
    /* margin: 0 24px; */
    background: url(../images/common/logo.png) no-repeat center center;
    text-indent: -9999px;
    background-size: cover;
    display: block;
}

header.active .logo a {
    background: url(../images/common/logo_on.png) no-repeat center center;
    background-size: contain;
}
/************* Header - gnb slide menu *************/
#header nav {
    width: auto;
    /* margin: 0 auto; */
    /*max-width: 1380px;*/
    /*padding-left: 80px;개발 후 삭제*/
}

#header nav #gnb {
    width: 100%;
    /* height: 90px; */
    display: flex;
    /* max-width: 900px; */
    /* margin: 0 auto; */
    align-items: center;
    justify-content: center;
}



#header nav #gnb li {
    width: 180px;
    text-align: center;
    height: 90px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    transition: .5s height, .2s background;
    justify-content: center;
}
#header nav #gnb li .nav_dep1 {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: -1px;
    font-weight: 500;
}
#header.on nav #gnb li .nav_dep1 {
    color: #222;
}

#header.active nav #gnb li .nav_dep1 {
    color: #222;
}

#header .open {
    /*    overflow: hidden;*/
    float: right;
    margin-right: 40px;
}

#header .open ul {
    float: right;
    overflow: hidden;
}
#header .open .map {
    float: left;
}
#header .open .map a {
    display: inline-block;
    width: 100px;
    cursor: pointer;
    text-align: center;
    line-height: 98px;
}
#header .open .lang {
    float: left;
}


#header .open a {
    color: #fff;
}

#header .open ul li a {
    color: #222;
    line-height: 16px;
}

#header.on .open a {
    color: #222;
}

#header.active .open a {
    color: #222;
}
#header.active nav {
    display: block;
}

#header nav .depth_toggle {
    position: absolute;
    top: 87px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    transition: .5s height, .2s background;
    display: none;
    /* background: #fff; */
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    z-index: 99;
}

#header nav .depth_toggle .sub_nav li.menu3 a {
    color: red;
    padding-left: 2px;
}

#header nav .depth_toggle.active {
    display: block;
    background: #fff;
}


#header nav .depth_toggle .wrapper {
    display: flex;
    margin-left: -30px;
    justify-content: center;
}
#header nav .depth_toggle .sub_nav {
    width: 180px;
    background: rgba(255, 255, 255, 0);
    border-right: 1px solid #ddd;
    padding: 12px 12px;
    transition: .5s height, .2s background;
}
#header nav .depth_toggle .sub_nav:last-child {
    border-right: 0;
}
#header nav .depth_toggle .sub_nav li {
    height: auto;
    margin-bottom: 10px;
    overflow: hidden;
    width: 100%;
    text-align: left;
    font-size: 0.938rem;
}

#header nav .depth_toggle .sub_nav li a {
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    min-height: auto;
    font-size: 1rem;
    line-height: 1.3em;
}
#header nav .depth_toggle .sub_nav li.sub_menu3 a {
    font-size: 1rem;
    padding-left: 10px;
    margin-left: 5px;
    color: #666;
    position: relative;
}
#header nav .depth_toggle .sub_nav li.sub_menu3 a::before {
    content: '';
	width: 3px;
	height: 3px;
	position: absolute;
	top: 8px;
	left: 0;
	background: #999;
}
#header nav .depth_toggle .sub_nav.on {
    background: #f6f6f6;
    color: #666;
    transition: .5s height, .2s background;
}

#header nav .depth_toggle .sub_nav.on li a {
    color: #333;
	
}

#header nav .depth_toggle .sub_nav.on li a:hover {
	/*font-weight: 400;*/
	color: #000;
}

#header.speedup {
    transition: all 0.1s ease !important;
}


/************* header *************/

#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 - right menu icon */
#header .menu_area {
}

#header .menu_area ul {
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#header .menu_area ul li {
    width: auto;
    /* height: 90px; */
    /* line-height: 90px; */
    text-align: center;
    cursor: pointer;
    /* min-width: 60px; */
}

#header .menu_area ul li a {
    display: block;
    color: #fff;
    font-size: 0.938rem;
    font-weight: normal;
    padding: 0 7px;
    margin-left: 5px;
    line-height: 1.5rem;
}
#header .menu_area ul li a.link {
    background: #3989c9;
    border-radius: 15px;
    padding: 0 10px;
}
#header .menu_area ul li img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
#header.on .menu_area ul li a.link {
    color: #fff;
}
#header .menu_area ul li .searchbtn {
    width: 100%;
    height: 90px;
    display: block;
    background-image: url(../images/common/ic_search_b.png);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    min-width: 60px;
    padding: 0;
}
#header.on .menu_area ul li .searchbtn {
    background-image: url(../images/common/ic_search_b_on.png);
}
#header .menu_area ul li .searchbtn:hover {
    background-image: url(../images/common/ic_search_b_on.png);
}
#header.active .menu_area ul li .searchbtn {
    background-image: url(../images/common/ic_search_b_on.png);
}
#header .menu_area ul li a.hambtn {
    width: 100%;
    height: 90px;
    display: block;
    background-image: url(../images/common/ic_ham.png);
    background-repeat: no-repeat;
    background-position: center;
    min-width: 27px;
    padding: 0;
    /*background-color: #008fd5;*/
}
#header .menu_area ul li a.hambtn:hover {
    background-image: url(../images/common/ic_ham_on.png);
}
#header.on .menu_area ul li a.hambtn {
    background-image: url(../images/common/ic_ham_on.png);
    /*background-color: #008fd5;*/
}
#header.active .menu_area ul li a.hambtn {
    background-image: url(../images/common/ic_ham_on.png);
}
header .menu_area ul li a.lang {
    border: 1px #fff solid;
    border-radius: 13px;
    height: 26px;
    margin: 0 10px;
    line-height: 25px;
    padding: 0 8px;
    border: 1px #ccc solid;
}
header.active .menu_area ul li a.lang {
}
#header .menu_area ul li:last-child{margin-left: 1rem;}
#header .sub_nav.on .link::after {
    content: url(/images/common/ic_external_sm.png);
    font-weight: 600;
    margin-left: 5px;
    font-size: 0.813rem;
}

#header .sub_nav .link::after {
    content: url(/images/common/ic_external_sm.png);
    font-size: 0.813rem;
    font-weight: 600;
    margin-left: 5px;
}




/************* layout-toggleMenu(offcanvas) *************/

.float_wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

/* Clear floats after the tab */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}





/**************************************************************/
/**************************************************************/
/******************************sub*****************************/
/**************************************************************/
/**************************************************************/





/************* layout-sub *************/

.sub_visual {
	/*margin-top: 90px;
    height: 350px;
    background: #f5f5f5;*/
}

.sub_visual .tit {
    width: 1400px;
    height: 400px;
    margin: 0 auto;
    display: block;
    position: relative;
}
.sub_visual .tit::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    width: 1px;
    height: 150px;
    background: #fff; 
    display: none;
}
.sub_visual .path_container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: rgba(0,0,0,0.5);
    border-bottom: 3px solid var(--main-color);

}

/*.sub_visual .path_container.on {
    position: fixed;
    top: 124px;
    animation: smoothScroll 0.5s forwards;
}*/
/*-----------------------------sub visual----------------------------*/
.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.visual09 {
    background: url(../images/sub/visual09.png) center no-repeat;
    background-size: cover;
}


.sub_depth_tit {
    font-size: 3rem;
    line-height: 48px;
    color: #343434;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    /* padding-bottom: 50px; */
}

.sub_depth_tit::after {
    content: '';
    display: block;
    background: #3b78bd;
    width: 35px;
    height: 3px;
    margin: 0 auto;
    margin-top: 50px;
}




/**************************************************************/
/**************************************************************/
/*****************************path*****************************/
/**************************************************************/
/**************************************************************/



.path {
    height: 50px;
    line-height: 50px;
    width: 1400px;
    margin: -50px auto 0;
    /*background: rgba(255,255,255,1);*/
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.path .home {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    padding: 5px 15px;
    position: relative;
    color: #fff;
	background: var(--main-color);
    /*float: left;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;*/
}
.path .home .material-icons {
    font-size: 1.3rem;
}
.path .home img {
    display: block;
    padding: 15px 0;
}

.path > div {
    /*float: left;*/
    position: relative;
}

.path .depth_btn {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 50px;
    padding: 0 30px 0 20px;
    min-width: 250px;
    /*    letter-spacing: -1;*/
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.125rem;
    font-weight: 500;
    position: relative;
	color: #fff;
    /*border-right: 1px solid #ddd;
	background: #008fd5;*/
}

.path .depth_btn:before {
    content: "";
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
}

.path .depth_btn.active {
    background: #008fd5;
}

.path .depth_btn i {
    position: absolute;
    right: 12px;
    top: 15px;
    font-size: 15px;
}

.path [class^="depth"] ul {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: 999;
    background-color: #f6f6f6;
    overflow: hidden;
    border: 1px solid #ddd;
}

.path [class^="depth"].active ul {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    z-index: 9;
}

.path [class^="depth"] ul li {
    width: 100%;
    height: auto;
    line-height: 40px;
    padding: 0px 20px;
    font-size: 1rem;
    /*overflow: hidden;
    white-space: inherit;
    text-overflow: ellipsis;
    border-bottom: 1px solid #ddd;*/
}
/*.path [class^="depth"] ul li:first-child {
    border-top: 1px solid #ddd;  
}*/
.path [class^="depth"] ul li:hover {
    background: #f0f0f0;
}

.path select {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    height: 58px;
    line-height: 58px;
    padding-bottom: 4px;
}

.path select option {
    color: #333;
    font-size: 14px;
}

.path .depth_btn.depth_wide {
    min-width: 360px;
}
.path ul li a {
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
	max-height: 50px;
}

.path ul li a.link {
    position: relative;
}


.path ul li a.link:after {
    content: url(/images/common/ic_external_sm.png);
    font-weight: 600;
    margin-left: 8px;
    font-size: 0.813rem;
}


/* ë„¤ì´í‹°ë¸Œ ì™¸í˜• ê°ì¶”ê¸° */
.path select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*background: url(../images/common/path_select.png) no-repeat 95% 50%; /* í™”ì‚´í‘œ ëª¨ì–‘ì˜ ì´ë¯¸ì§€ */
    min-width: 110px;
    margin-right: 5px;
}

.path select::-ms-expand {
    display: none;
}

.path > div.depth_wide {
    min-width: 360px;
}



/*
.path [class^="depth"] {
	float:left;
	position:relative;
}
*/

.path select {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.125rem;
    height: 58px;
    line-height: 58px;
    padding-bottom: 4px;
}

.path select option {
    color: #333;
    font-size: 0.875rem;
}


.path select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 110px;
    margin-right: 5px;
}

.path select::-ms-expand {
    display: none;
}

.path > div.depth_wide {
    min-width: 360px;
}




/*------------------------basic setting---------------------*/

/*.section {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}*/

.sub_container {
    width: 100%;
    min-height: 640px;
    margin: 0px auto 0;
    background: #f9f9f9;
    /*background-size: cover;*/
}

.sub_container  .wrapper {
    width: 100%;
    padding: 5rem 0 0;
    position: relative;
    margin: 0 auto;
}

.sub_container .wrapper .contents { 
    width: 100%;
}
.sub_container .contents .con_area{ 
    width: 1400px;
    margin: 0px auto;
    padding-bottom: 5rem;
}

.sub_container .contents .max { 
    width: 100%;
    background: #f9f9f9;
    padding-top: 5rem;
    border-top: 1px #ddd solid;
}
.sub_container .wrapper .tit_wrap {
    margin: 0px auto 3rem;
    text-align: center;
}
.sub_container .wrapper .tit_wrap h1 {
    font-size: 2.75rem;
    line-height: 2.75rem;
    color: #000;
    position: relative;
    padding-bottom: 2.5rem;
}
.sub_container .wrapper .tit_wrap h1:before {
    content: '';
    width: 30px;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #19459d;
    margin-left: -15px;
}
.sub_container .wrapper .tit_wrap p {
    margin: 20px auto 0;
    text-align: center;
	font-size: 1.5rem;
	font-weight: 400;
	color: #666;
	line-height: 2rem;
	width: 100%;
}

.sub_visual h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%);
	text-shadow: 0px 0px 6px rgb(0 0 0 / 40%);
}
/*.sub_visual h1:before {
    content: '';
    position: absolute;
    left: 50%;
    top: -25%;
    transform: translate(-50%);
    width: 1px;
    height: 30px;
    background: #fff;
}*/
.sub_visual h2 {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgb(255 255 255 / 80%);
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%);
}

.sub_depth_tit {
    font-size: 3rem;
    line-height: 48px;
    color: #343434;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    /* padding-bottom: 50px; */
}

.sub_depth_tit::after {
    content: '';
    display: block;
    background: #008fd5;
    width: 35px;
    height: 3px;
    margin: 0 auto;
    margin-top: 50px;
}



/**************************************************************/
/**************************************************************/
/*****************************footer***************************/
/**************************************************************/
/**************************************************************/
/* ===========family_slct=========== */
.family_wrap { position:relative;     font-weight: 400;} 
.family_slct_over { width:auto; height:40px; background:url('../images/common/family_arrow.png') no-repeat right #fff; cursor:pointer; font-size:1rem; color:#222; position:relative; box-sizing:border-box; border: 1px #ddd solid;}
.family_slct_over ul li {width:220px; height:40px; line-height:40px; text-align:left; cursor:pointer; padding-left:10px;}
/*.family_slct_over ul li:hover { color:#fff;}*/
.family_slct { width:auto; height:40px; background:url('../images/common/family_arrow_over.png') no-repeat right #fff; cursor:pointer; font-size:1rem; color:#222; position:absolute; z-index:300000000000000; right:0; top: 0px; border: 1px #ddd solid; }
.family_slct ul li {width:220px; height:40px; line-height:40px; text-align:left; cursor:pointer;box-sizing:border-box; padding-left:10px; /*border-left: 1px #666 solid; border-right: 1px #666 solid; border-bottom: 1px #666 solid;*/ }
/*.family_slct ul li:hover { color:#fff;}*/
.family_slct ul ul { display:none; }
.family_slct ul li ul {  width:100%; bottom:0; background:#fff; position:absolute; display:block; z-index:400000000000000; box-sizing:border-box; margin-left: -11px;    margin-bottom: 38px;}
.family_slct ul li li { width:auto; height:40px; border-left:1px #ddd solid;border-right:1px #ddd solid;border-bottom:1px #ddd solid; }
.family_slct ul li li:first-child {  }
/*.family_slct ul li li:hover { color:#fff; }*/



/************* layout-footer *************/
/*.sec5 .footer_wrap {
    position: absolute;
	bottom: 0;
}*/
/*footer*/
.footer_wrap {clear:both; width:100%; background:#262424; padding:40px 0; /*overflow: hidden; */}
.footer_wrap .footer { 
    width: 100%;
    max-width: 1400px;
    margin:0px auto; 
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.footer_wrap .footer .logo {padding-right: 40px;}
.footer_wrap .footer .info { width: calc(100% - 220px); font-size:0.938rem; color:#999; line-height:1.5em;  }
.footer_wrap .footer .info p { margin-top: 10px;}
.footer_wrap .footer .info span { display: inline-block; margin-right: 10px; }
.footer_wrap .footer .info a{ font-size: 1.1rem; font-weight:500; position: relative; color: #fff; }
.footer_wrap .footer .info span.fline { 
  content:'';
  display:inline-block;
  width:1px;
  height:13px;
	top: 1px;
  background: rgba(255,255,255,0.3);
  margin-right:10px;
	margin-left: 10px;
 }
 .footer_wrap .footer .info .txt_white{color:#fff;font-weight:500;}
.footer_wrap .footer .btn { font-size:1rem; width:170px; height:38px; line-height:38px; color:#999; background: #222; text-align: center; }
.footer_wrap .footer .btn:hover { background: #111; }

.footer_wrap .footer .family_wrap { position:relative; } 
.footer_wrap .footer .family_slct_over { width:220px; height:45px; background:url('../images/common/family_arrow.png') no-repeat 180px 18px #131212; cursor:pointer; font-size:1rem; color:#fff; position:relative; box-sizing:border-box; }
.footer_wrap .footer .family_slct_over ul li {width:220px; height:45px; line-height:45px; text-align:left; cursor:pointer; padding-left:10px;}
.footer_wrap .footer .family_slct_over ul li:hover { color:#fff;}
.footer_wrap .footer .family_slct { width:220px; height:45px; background:url('../images/common/family_arrow_over.png') no-repeat 180px 18px #131212; cursor:pointer; font-size:1rem; color:#fff; position:absolute; z-index:300000000000000; right:0; top: 0px;  }
.footer_wrap .footer .family_slct ul li {width:220px; height:45px; line-height:46px; text-align:left; cursor:pointer;box-sizing:border-box; padding-left:10px; /*border-left: 1px #666 solid; border-right: 1px #666 solid; border-bottom: 1px #666 solid;*/ }
.footer_wrap .footer .family_slct ul li:hover { color:#fff;}
.footer_wrap .footer .family_slct ul ul { display:none; }
.footer_wrap .footer .family_slct ul li ul { bottom:0; background:#131212; width:220px; position:absolute; display:block; z-index:400000000000000; box-sizing:border-box; margin-left: -10px;    margin-bottom: 45px;}
.footer_wrap .footer .family_slct ul li li { width:220px; height:45px; border-bottom:1px #333 solid; }
.footer_wrap .footer .family_slct ul li li:first-child {  }
.footer_wrap .footer .family_slct ul li li:hover { color:#fff; }

.footer_wrap .footer .footer_sns {  }
.footer_wrap .footer .footer_sns ul { display: flex; justify-content: space-between;
    width: 220px;}
.footer_wrap .footer .footer_sns li { border-radius: 44px; text-align: center; font-size:1.375rem; background: #111; }
.footer_wrap .footer .footer_sns li a { color:#fff; display: inline-block; width: 44px; height: 44px; border-radius: 44px; text-align: center; font-size:1.375rem; background: #111; }
.footer_wrap .footer .footer_sns li a { background:url(../images/common/instagram_bg.png) center; }
.footer_wrap .footer .footer_sns li:nth-child(2) a { background:#1e4fad; }
.footer_wrap .footer .footer_sns li:nth-child(3) a { background:#2aa9e0; }
.footer_wrap .footer .footer_sns li:nth-child(4) a { background:#fd3832; }
.footer_wrap .footer .footer_sns li i { line-height: 44px;}
.footer_wrap .footer .footer_sns li img {margin: 12px auto 0;}


/**************************************************************/
/**************************************************************/
/**********************Hamburger&offcanvas*********************/
/**************************************************************/
/**************************************************************/

.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: 100vw;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* overflow-y: scroll; */
    padding: 5rem;
}
.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: -100vw;
    transition: 0.5s;
    transition: margin-right .5s;
    -ms-overflow-style: none;

}
#offcanvas.open {
    margin-right: 0;
    background: #ffffff;
    z-index: 999999999999999999;
}

/* Style the tab */
.offcanvas .tab {
    width: 100%;
    height: auto;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.offcanvas .offcanvas_wrap {
    width: 100%;
    /* overflow-y: auto; */
}
.offcanvas .fixed_wrapper {
    display: flex;
    justify-content: center;
    width: 95%;
    margin: 0 auto;
}
.offcanvas .h_wrap {
    width: 16.66666666666667%;
    height: 100%;
    max-width: 250px;
}
.offcanvas .h_tablinks {
    display: block;
    background: none;
    color: #222;
    padding: 0;
    width: 100%;
    border: none;
    outline: none;
    text-align: center;
    cursor: pointer;
    font-size: 1.25rem;
    height: 90px;
    /* line-height: 90px; */
    transition: 0.3s;
    font-weight: 600;
    font-family: "Pretendard", sans-serif;
    border-bottom: 1px solid #e1e1e1;
    transform: skew(-0.03deg);
}
.offcanvas .h_tablinks.point {
    background: #ff80c0;
}
.offcanvas .h_tablinks.active {
    color: #222;
}
/* Style the tab content */
.offcanvas .menu_wrapper {
    display: flex;
    justify-content: center;
}
.offcanvas .h_tabcontent {
    display: block !important;
    margin-top: 20px;
}
.offcanvas .h_tabcontent .sub_nav {
    border-radius: 10px;
}
.offcanvas .h_tabcontent .sub_nav > li {
}
.offcanvas .h_tabcontent .sub_nav > li > a {
    width: 250px;
    height: 42px;
    line-height: 42px;
    font-size: 1.125rem;
    color: #555;
    /*padding: 0 30px;*/
    display: block;
    transition: 0.3s;
}
.offcanvas .h_tabcontent .sub_nav > li > a:hover {
    color: #222;
    font-size: 1.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 {
    font-size: 1.125rem;
    color: #fff;
    padding: 30px;
    position: absolute;
    top: 0;
    width: 98%;
    z-index: 999;
}
.offcanvas .menu_login .wrapper {
    /* position: relative; */
    /* width: 340px; */
    /* height: 100%; */
}
.menu_login a:hover {
    color: #fff;
}
.offcanvas .menu_login a {
    background: var(--sub-color);
    font-weight: 600;
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    color: #fff;
    height: 2.625rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    border-radius: 30px;
    font-size: 17px;
    min-height: inherit;
    /*border: 1px #ddd solid;*/
}
.offcanvas .menu_login a:nth-child(2) {
    left: 120px;
    background: #f0f0f0;
    color: #333;
}
.offcanvas .right_p {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99999;
}
.offcanvas .btn_close {
    width: 30px;
    height: 30px;
    position: relative;
    text-indent: -9999px;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    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;
    margin-bottom: 1rem;*/
}
.offcanvas .h_tabcontent .depth3 .menu3 {
    font-size: 1rem;
    line-height: 32px;
    color: #333;
}
.offcanvas .h_tabcontent .depth3 .menu3:before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--sub-color-2);
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    margin-bottom: 4px;
    border-radius: 2px;
}
.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: #142A8C !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;
}

*/


/**************************************************************/
/**************************************************************/
/*************************popup setting ***********************/
/**************************************************************/
/**************************************************************/


/**************************************************************/
/**************************************************************/
/*************************table setting ***********************/
/**************************************************************/
/**************************************************************/

/* table */
.table_normal { width:100%; border-top: 2px #000 solid; table-layout: fixed; border-collapse: collapse; line-height: 1.5em;  }
.table_normal thead th { padding: 0.75rem; text-align: center; color: #000; font-weight: 500; border-bottom: 1px #ddd solid; word-break: break-all; background: #f0f0f0;  vertical-align: middle;}
.table_normal thead th:first-child {border-left: none; }
.table_normal thead th.line_l {border-left: 1px #ddd solid; }
.table_normal tbody th { padding: 0.75rem; text-align: center; color: #555; font-weight: 500; border-bottom: 1px #ddd solid; vertical-align: middle;}
.table_normal tbody th:first-child {border-left: none; }

.table_normal td { padding: 0.66rem; text-align: center; color: #555; border-bottom: 1px #ddd solid; vertical-align: middle;}
/*.contents .table_normal td:first-child {border-left: none; }*/
.table_normal td.on { background: #f9e6e4; }
/*.contents .table_normal td:last-child { border-right: 0; }*/
.table_normal td.align_l { text-align: left; }
.table_normal td.align_r { text-align: right; }
.table_normal td.txt_left { text-align: left; }
.table_normal td.txt_left .tit { font-size: 1.125rem; color: #111; font-weight: 500; }
.table_normal td.txt_left .img_wrap { text-align: initial; }
.table_normal td.line_no { border-left: none;}
.table_normal td a{ word-break: break-all;}
.table_normal .bg { background: #f0f0f0; }
.table_normal .line_l {border-left: 1px #ddd solid; }
.table_normal .line_lr {border-left: 1px #ddd solid; border-right: 1px #ddd solid; }
.table_normal .email {letter-spacing: -0.6px;}

.scroll_wrap .table_normal { min-width: 1024px; letter-spacing: -0.5px;}
.scroll_wrap .table_normal .bold_r {color: #ef0101; font-weight: 600;}

.tb_scroll {
    overflow-x: auto;
    border-bottom: 0.5px #dddddd solid;
}

.board_table table {
    width: 100%;
    min-width: 840px;
}
.board_table td {
    text-align: center;
}
.board_table tr {
    /*cursor: pointer;*/
}
/*.board_table thead th {
    position: relative;
}
.board_table thead th:after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: '';
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, .5);
}*/
.board_table thead th:first-child:after {
    display: none;
}
.board_table table tr:nth-child(2n) {
    background: #f0f0f0;
}
.board_table table th.bg {
    background: rgba(25,69,157,0.1);
}
.board_table table tr.bg_o {
    background: #f0f0f0;
}
.board_table table tr.bg_x {
    background: none;
}
.board_table table tr:last-child {
    border-bottom: 0;
}

.board_table table td {
    padding: 14px;
    color: #444;
    font-size: 1rem;
    vertical-align: middle;
}
.board_table table thead tr:nth-child(even) {
    border-top: 1px solid #fff;
}
.board_table table tr th {
    padding: 14px;
    font-size: 1rem;
}
/*.board_table table thead th {
    padding: 14px;
    font-size: 1.1rem;
    background: #19459d;
    color: #fff;
    text-align: center;
    font-weight: 500;
}*/
.board_table table thead th {
    padding: 14px;
    font-size: 1.1rem;
    background: #fff;
    color: #19459d;
    text-align: center;
    font-weight: 700;
    border-top: 2px #19459d solid;
    border-bottom: 1px #ddd solid;
    position: relative;
}
.board_table table thead th:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 1px;
    height: 20px;
    background-color: #ddd;
}
.board_table table td:last-child {
    border-right: 0;
}
.board_table table.center td {
    text-align: center;
}
.board_table table td.align_l {
    text-align: left;
}
.board_table table .cont {
    /*    padding: 14px;*/
/*    text-align: left !important;*/
    word-break: keep-all;
}

.board_table table .main_title {
    background: #38322d;
    color: #fff;
}

.board_table table .title {
    background: #efefef;
}
.board_table ul.circle li {
	font-size: 1rem;
    margin: 0px 0px 0px 0;
}
.board_table ul li:before {
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    top: 11px;
    left: 0;
    background: var(--sub-color-2);
    border-radius: 5px;
}
.board_table a:hover {color: #1d4dae;font-weight: 500;}
.board_table .btn {
    width: 110px;
    height: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 2px #ff7f3b solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    margin: 0 auto;
}
.board_table .btn .material-icons-outlined {
    font-size: 1rem;
    color: #999;
}
.board_table .btn:hover {
    color: #ff7f3b;
}
.board_table .btn:hover .material-icons-outlined {
    font-size: 1rem;
    color: #ff7f3b;
}

/* table */
.table_info { width:100%; border: 1px #ddd solid; table-layout: fixed; min-width: 800px; border-collapse: collapse; line-height: 1.5em; font-size: 1rem; }
.table_info thead th { padding: 12px; text-align: center; color: #000; font-weight: 500; border-left: 1px #faf9f7 solid; border-bottom: 1px #faf9f7 solid; word-break: break-all; background: #dde4f1;  vertical-align: middle;}
.table_info thead th:first-child {border-left: none; }
.table_info thead th.line_l {border-left: 1px #faf9f7 solid; }
.table_info tbody th { padding: 12px; text-align: center; color: #555; font-weight: 500; border-bottom: 1px #ddd solid; border-left: 1px #ddd solid; vertical-align: middle;}
.table_info tbody th.on {background: #dde4f1; border-left: 1px #faf9f7 solid; border-bottom: 1px #faf9f7 solid; }
.table_info tbody th:first-child {border-left: none; }
/*.table_info tbody th { padding: 15px; text-align: center; font-size: 16px; color: #000; font-weight: 400; border-left: 1px #faf9f7 solid; border-bottom: 1px #faf9f7 solid; word-break: break-all; background: #f1ede6;  vertical-align: middle;}
.table_info tbody th:first-child {border-left: none; }*/
/*.table_info th:first-child { border-left: 0; }*/
.table_info td { background: #fff; padding: 12px; text-align: center; color: #555; border-bottom: 1px #ddd solid; border-left: 1px #ddd solid; vertical-align: middle;}
/*.table_info td:first-child {border-left: none; }*/
.table_info td.on { background: #f9e6e4; }
/*.contents .table_normal td:last-child { border-right: 0; }*/
.table_info td.txt_left { padding: 12px; text-align: left; vertical-align: top;}
.table_info td.line_no { border-left: none;}
.table_info td a{ word-break: break-all;}


/**************************************************************/
/**************************************************************/
/*************************popup setting ***********************/
/**************************************************************/
/**************************************************************/

/* ---------------------- layer popup ------------------------*/


/*layer_popup*/
.layer_popup1 {position:absolute; width:auto; /*height: 450px;*/ top:90px; right: 0px; z-index:1003;cursor:pointer; }
.layer_popup1 p {margin: 0 auto; text-align: center;}
/*.layer_popup p img {width:330px;}*/
.layer_popup1 .pop_close {  background-color: rgba(0,0,0,0.8); height: 30px; color: #fff; line-height: 28px;text-align: center;font-size: 14px;}
.layer_popup1 .chk_close {  float: right; margin-top: -28px; margin-right: 5px; font-size: 13px;}
.layer_popup1 .chk_close a { color: #fff; }

.layer_popup2 {position:absolute; width:auto; /*height: 450px;*/ top:90px; right: 501px; z-index:1002;/*    cursor:pointer; */}
.layer_popup2 p {margin: 0 auto; text-align: center;}
/*.layer_popup p img {width:330px;}*/
.layer_popup2 .pop_close {  background-color: rgba(0,0,0,0.8); height: 30px; color: #fff; line-height: 28px;text-align: center;font-size: 14px; cursor:pointer; }
.layer_popup2 .chk_close {  float: right; margin-top: -28px; margin-right: 5px; font-size: 13px;}
.layer_popup2 .chk_close a { color: #fff; }

.layer_popup3 {position:absolute; width:520px; /*height: 450px;*/ top:80px; right: 520px; z-index:1001;cursor:pointer; }
.layer_popup3 p {margin: 0 auto; text-align: center;}
/*.layer_popup p img {width:330px;}*/
.layer_popup3 .pop_close {  background-color: rgba(0,0,0,0.8); height: 30px; color: #fff; line-height: 28px;text-align: center;font-size: 14px;}
.layer_popup3 .chk_close {  float: right; margin-top: -28px; margin-right: 5px; font-size: 13px;}
.layer_popup3 .chk_close a { color: #fff; }




/**************************************************************/
/**************************************************************/
/************************ member & form ***********************/
/**************************************************************/
/**************************************************************/
/*-------------------- form basic setting --------------------*/
input::-webkit-input-placeholder {
    font-size: var(--txt-sm);
    color: #999;
}
input::-moz-input-placeholder {
    font-size: var(--txt-sm);
    color: #999;
}
input:-ms-input-placeholder {
    font-size: var(--txt-sm);
    color: #999;
}
input:-moz-input-placeholder {
    font-size: var(--txt-sm);
    color: #999;
}
.txt_box_s {
    width: 50px;
}
.txt_box_s2 {
    width: 80px;
}
.txt_box_m {
    width: 60%;
}
.txt_box_l {
    width: 150px;
}
.txt_add {
    width: 98%;
}
.txt_email {
    width: 30% !important;
}
/* ==================================================================== */
/* ==================================================================== */
/*-------------------------- login&mypage ---------------------------*/
/* ==================================================================== */
/* ==================================================================== */
/* ==================================================================== */



/*login*/
.login_wrap { 
    width: 400px;
    margin: 1.125rem auto;
    overflow: hidden;
    padding: 20px;
    background: #f6f6f6;
    border-radius: 10px;
    border: 1px #ddd solid; 
}
.login_wrap .login_input { width:100%; margin:0 auto; }
.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 #e2e2e2; padding:0px 10px; height:46px; margin:5px 0;border-radius: 5px;font-size:1rem; }
.login_wrap input[type=password] { background: #fff; border:1px solid #e2e2e2; padding:0px 10px; height:46px; margin:5px 0;border-radius: 5px; font-size:1rem;}
.login_wrap .btn_area {margin-top:1.25rem;  }
.login_input input[type=submit] { width:100%; border:0; height:50px; line-height:50px; background:#19459d; color:#fff; font-size:1.1rem; cursor:pointer; margin-top:10px; margin-bottom:10px; border-radius: 5px;  }
.login_input input[type=submit]:hover, .login_input input[type=submit]:active { background:#19459d; }
.login_footer { width:100%; text-align:center; }
.login_footer .remember_id { width:100%; margin:0 auto; padding-bottom:20px; text-align:left; border-bottom:1px dotted #666; }
.login_footer .id_pw { width:100%; margin:0 auto; padding:10px 0; text-align:center; }
.login_footer .id_pw span { color: #ccc;}
.login_footer a {color:#333; font-size: 1rem; font-weight: 400;}
.login_footer a:hover {color:#19459d;}
.login_footer p { text-align:left;}
.login_box { width:100%; margin:0 auto; text-align:left; }
.login_box_l { float:left; width:50%; }
.login_box_r { float:right; width:50%; }

/* join - tab */
.join_tab{
	margin: 0 auto 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}
.join_tab:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
}
.join_tab li{
    width: calc((100% - 9rem) /4);
    border:1px solid #ddd;
    text-align:center;
    box-sizing: border-box;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    color:#999;
    background: #f9f9f9;
    z-index: 2;
    border-radius: 50px;
}
.join_tab li.active {
    background: #19459d;
    color: #fff;
}
.join_tab li span {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    text-align: center;
    background: #ddd;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    vertical-align: middle;
    margin-right: 10px;
}

.join_tab li.active span {
    background: #fff;
    color: #19459d;
}

.join_cate {
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}
.join_cate li {
    width: calc((100% - 3rem) /2);
    border:1px solid #ddd;
    text-align:center;
    box-sizing: border-box;
    padding: 2rem;
    border-radius: 1.25rem;
    background: #fff;
}
.join_cate li .tit {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.join_cate li .tit span.material-icons-outlined {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}
.join_cate li p{
    margin: 0 auto;
    border-top: 1px #ddd dashed;
    padding-top: 1.5rem;
    font-size: 1.063rem;
}

.join_cate.three li {
    width: calc((100% - 3rem) /3);
    cursor: inherit;
    text-align: left;
}
.join_cate.three li:hover {
    border-color: #ddd;
    color: inherit;
}

.join_cate.three li .billiard li {
    width: 100%;
    background: none;
    border: none;
}

.join_cate .flex button.btn_met  { width: 50%; }
.join_cate .flex button:first-child { margin-left: 0px;}
.join_cate .flex button:last-child { margin-left: 3px;}

.flex .btn_met.btn_print:last-child { margin-left: 3px;}


.group {
    border-top: 1px dotted #ccc;
    margin-top: 1.5rem;
}
.line_box_b .group:first-child {
    border-top: none;
    margin-top: 0;
}
.line_box_b .group:first-child h5 {
    margin: 0.5rem 0 1rem;
}

.btn_area {width:100%;text-align:center;margin-top:0.5rem; font-size: 1.125rem; overflow: hidden; }

a.btn_confirm {
    display: inline-block;
    text-align: center;
    width: 49%;
    background: #19459d;
    height: 50px;
    line-height: 50px;
    color: #fff;
	cursor: pointer;
	border-radius: 5px;
	float: left;
	margin-left: 2%;	
}
a.btn_cancel {
    display: inline-block;
    text-align: center;
    width: 49%;
    background: #666;
    height: 50px;
    line-height: 50px;
    color: #fff;
	cursor: pointer;
	border-radius: 5px;
	float: left;
}
a.btn_login {
    display: inline-block;
    text-align: center;
    width: 100%;
    background: #19459d;
    height: 50px;
    line-height: 50px;
    color: #fff;
	cursor: pointer;
	border-radius: 5px;
}
.info_box { width: 100%; text-align: center; padding: 1.125rem; margin: 0px auto; font-size: 1.125rem; line-height: 1.5em; box-sizing: border-box; background: #f6f6f6; border-bottom:1px dotted #666;}
.info_box p { margin: 5px 0;}
.info_box span { font-weight: 500; }

/* 동의 */
.agree_list {
    /*background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 2rem;*/
    margin-top: 1.875rem;
}
.agree_list dt {
    overflow: hidden; 
    height: auto; 
    padding: 1rem  2.5rem; 
    cursor: pointer; 
    border: 1px solid #ddd;
    position: relative;
    background: #fff; 
}

.agree_list dt:after {
    content: '';
    display:inline-block;
    width:9px;
    height:9px;
    vertical-align:middle;
    border-right:2px solid #aaa;
    border-top:2px solid #aaa;
    transform:rotate(135deg);
    position:absolute;
    top: 20px;
    right: 26px;
    transition: 0.5s;
}
.agree_list dt.on:after {
    content: '';
    display:inline-block;
    width:9px;
    height:9px;
    vertical-align:middle;
    border-right:2px solid #aaa;
    border-top:2px solid #aaa;
    transform:rotate(-45deg);
    position:absolute;
    top: 26px;
    right: 26px;
    transition: 0.5s;
}
.agree_list.field dt::before {
    content: '';
    display:inline-block;
    width:3px;
    height:100%;
    background: #19459d;
    position:absolute;
    top: 0px;
    left: 0px;
}
.agree_list dt .tit_q {float: left; width: 38px; height: 38px;  background: rgba(25,69,157,1); border-radius: 20px; color: #fff;  display: inline-block; font-size: 1.25rem; font-weight: 500; text-align: center; margin-right: 20px;}
.agree_list dt .tit {float: left; width: 100%; font-size: 1.25rem; font-weight: 600; color: #111;}
.agree_list dt .tit span {font-size: 1rem; font-weight: 400; color: #666; margin-left: 1.5rem;letter-spacing: .05rem;}
.agree_list dd {display: none; height: auto; padding: 2rem 2.5rem; border-left: 1px solid #ddd;border-right: 1px solid #ddd;border-bottom: 1px solid #ddd; line-height: 150%;}
.agree_list dd .list_cont { width:100%; }
.agree_list dt p { float: left; padding-left: 25px;}



/**************************************************************/
/**************************************************************/
/******** terms & privacy 이용약관 &개인정보처리방침 **********/
/**************************************************************/
/**************************************************************/



.agree_list .terms {
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
    border-bottom: 1px solid #e1e1e1;
}
.agree_list .terms p {margin-bottom: 1rem;}

.agree_list h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-align: center;
    margin-top: 3.5rem;
}
.agree_list h2:first-child {margin-top: 1.5rem;}
.agree_list .terms .group {
    margin-bottom: 1.5rem;
    line-height: 1.5em;
    border-top: 1px dashed #ccc;
    padding-top: 1.5rem;
}
.agree_list .terms .group:last-child {
    margin-bottom: 0;
}
.agree_list .terms .group .terms_tit {
    line-height: 1.5em;
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.agree_list .terms:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.agree_list .pri_box {
    background: #e9dfe2;
    padding: 20px;
    margin-top: 20px;
}
.agree_list .pri_box h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.agree_list .pri_box .btn_download {
    background: var(--sub-color-3);
    padding: 8px 20px;
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    font-size: 1rem;
}
.agree_list .terms .bu_no li:before {
    display: none;
}
.agree_list .terms ul li .sm {
    color: #555;
    margin:10px 0;
    line-height: 1.7em;
}
.agree_list .terms .cont_box {
    border: 1px solid #aaa;
    padding:15px;
}
.agree_list .terms .cont_box label {
    color: var(--sub-color-2);
    margin-bottom: 12px;
    display: block;
}
.agree_list .terms .cont_box ul {
    overflow:hidden;
}
.agree_list .terms .cont_box ul li {
    float:left;
    margin-right:20px;
    padding-left:0;
}

.tabcontent.agree_list .terms  {
    padding: 2rem;
    border: 1px solid #ddd;
    line-height: 150%;
    background: #fff;
}


/*lms 회원가입*/
.join_wrap {
    margin-top: 1.875rem;
    
}
.join_wrap .terms {
    border: 1px solid #ddd;
    padding: 32px 28px;
    line-height: 26px;
    color: #333;
    background: #fff;
	font-size:0.938rem;
	margin:0px;
}
.join_wrap .terms:last-child { margin-bottom:0px; 
}
.join_wrap .terms.terms_over {
	max-height:200px;
	overflow-y:scroll;
	-ms-overflow-style:auto;
}

.join_wrap .check_group {
    /*margin-top: 14px;*/
	line-height: 1.4em;
    background: #f6f6f6;
    padding: 1rem 2rem;
    font-weight: 500;
    border: 1px #ddd solid;
}
.join_wrap .check_group.all {
    background: #004599;
    margin-bottom: 1.875rem;
}
.join_wrap .check_group.all label {
    color: #fff;
}
.join_wrap .check_group01 {
	line-height: 1.6em;
	display: inline-block;
	margin-right: 20px;
}
.join_wrap .check_group label {
    color: #333;
	line-height:32px;
	margin-right:20px;
}

.join_wrap .check_group.multiline input[type="checkbox"] + label{
    background: url(../images/common/checkbox.png) left 12% no-repeat;
}
.join_wrap .check_group.multiline input[type="checkbox"]:checked + label{
    background: url(../images/common/checkbox_checked.png) left 12% no-repeat;
}
.check_group.all {
    background: #19459d;
    margin-bottom: 1.875rem;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-top: 1.875rem;
}
.qa_check {
    margin: 20px 10px;
}

.check_group02 {
    width: 20%;
    margin-right: 0;
    padding: 4px 0;
	float: left;
}
.check_group02 input {
    max-width: 150px;
    height: 28px;
    line-height: 28px;
    margin-left: 8px;
}
.check_group02_eng {
    width: 50%;
    margin-right: 0;
    padding: 4px 0;
	float: left;
}
.check_group02_eng input {
    max-width: 150px;
    height: 28px;
    line-height: 28px;
    margin-left: 8px;
}
.join_wrap .terms h3 {

}
.join_wrap .terms h4 {
    font-size: 1rem;
    margin: 20px 0 10px;
}
.join_wrap .terms h4:first-child {
    margin: 0px 0 10px;
}
.join_wrap .terms strong {
    font-weight: 400;
}
.join_wrap .terms li {
    padding-left: 10px;
    position: relative;
}

.join_wrap .terms li:before {
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    top: 12px;
    left: 0;
    /*background: #9e9e9e;*/
}
.join_wrap .terms .terms_section_inner li:before {
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    top: 12px;
    left: 0;
    background: #9e9e9e;
}
.join_wrap .terms .buno li {
    padding-left: 0px;
}
.join_wrap .terms .buno li:before {
    display: none;
}
.section_group {
    margin-bottom: 1.875rem;
}

.section_group:last-child {
    margin-bottom: 0;
}

.section_group section {
    margin-bottom: 1.875rem;
}

.section_group section:last-child {
    margin-bottom: 0;
}


.input_wrap {
    overflow: hidden;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.input_wrap .user_photo {
    width: 300px;
    /* text-align: center; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.input_wrap .user_info {
    width: calc(100% - 350px);
}
.input_wrap .user_photo .photo_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.input_wrap .user_photo .photo {
    width: 140px;
    height: 180px;
    border: 1px solid #ddd;
    background-color: #eee;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../images/common/no_img_v.png');
    padding: 0;
}
.input_wrap .user_photo .photo img {
	width:100%;
	height:100%;
}
.input_wrap .user_photo ul {
    /* margin-left: 20px; */
    text-align: left;
    width: calc(100% - 160px);
}

.input_wrap .user_photo ul li {
    line-height: 18px;
    padding-left: 10px;
    position: relative;
    margin-bottom: 5px;
    font-size: 14px;
}

.input_wrap .user_photo ul li:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #795548;
    position: absolute;
    top: 10px;
    left: 0px;
}
.user_photo.line {
    border: 1px #ddd solid;
    background: #fff;
}


.table_block .calendar .material-icons-outlined {
    font-size: 1.5rem;
    color: #19459d;
    cursor: pointer;
}

.mypage_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.mypage_list .list {
    width: calc((100% - 80px) /5);
    border: 1px #ddd solid;
    padding: 2rem 0;
    border-radius: 10px;
    /* margin-bottom: 1.5rem; */
    /*margin-right: 1.875rem;*/
    /* color: #fff; */
    background: var(--sub-color-2);
	transition:all 0.2s;
}
.mypage_list .list:hover{background:var(--main-color)}
.mypage_list .list:nth-child(4n) {
    margin-right: 0;
}
.mypage_list .list .tit{
	text-align:center
}
.mypage_list .list .tit a {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.mypage_list .list ul {
    margin-top: 1rem;
}
.mypage_list .list ul li {
    border-top: 1px #ddd dotted;
    padding: 10px;
    position: relative;
}
.mypage_list .list ul li:after {
    font-family: 'Material Icons Outlined';
    content: 'chevron_right';
    font-size: 1rem;
    position: absolute;
    top: 10px;
    right: 0;
    color: #999;    
}
.mypage_list .list.info {
    padding: 0;
    /*border-top: 6px #19459d solid;
    border-bottom: 5px #19459d solid;*/
}
.mypage_list .list.info .tit {
    color: #fff;
    background: #19459d;
    padding: 1rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.mypage_list .list.info  ul {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px #ddd solid;
    margin: 1rem;
}
.mypage_list .list.info  ul li {
}
.mypage_list .list.info  ul li::after {
    display: none;
}
.mypage_list .list.info  ul li:first-child {
    border-top: none;
}
.mypage_list .list.info  ul li span {
    float: right;
    font-weight: 500;
}




/**************************************************************/
/**************************************************************/
/******************** waiting 준비중페이지 ********************/
/**************************************************************/
/**************************************************************/
/*-------------------- 서브페이지 준비중 ---------------------*/
.waiting_sub {display: flex;align-content: center;justify-content: center;width: 400px;flex-wrap: wrap;position: relative;margin: 0 auto;height: 400px;align-items: center;}
.waiting_sub::before {box-shadow: 0px 7px 23px -6px rgb(77 82 79 / 17%);content:'';width: 400px;aspect-ratio:1/1;transform: translate(-50%);background: url(../images/main/main_bg.png) right;background-size: cover;border-radius: 400px;position: absolute;left: 50%;z-index: 0;}
.waiting_sub img {margin-bottom: 1.5rem;border-bottom: 1px dashed #fff;padding-bottom: 1.5rem;z-index: 1;}
.waiting_sub p {font-size: 1.5rem;text-align: center;width: 100%;color: #fff;font-weight: 500;z-index: 1;}









