/* rem ì„ ì–¸*/
html,
body {
    font-size: 16px;
}

:root {
    --main-color: #00377b;
    --main-color-2: #216cc9;
    --sub-color: #48ad71;
    --sub-color-2: #b63342;
    --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: #00377b;

    --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: 1300px;

    --main-font: 'Poppins', 'Noto Sans KR', sans-serif;
}



/**************************************************************/
/**************************************************************/
/****************************header****************************/
/**************************************************************/
/**************************************************************/
#header {
    position: absolute;
    top: 0;
    color: #222;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    background: #fff;
    border-bottom: 1px solid #dddddd6b;
}
#header.mainheader {
    color: #fff;
    background: none;
    border-bottom: none;
}
#header.on {
    position: fixed;
    top: 0;
    animation: smoothScroll 0.3s forwards;
    background: #fff;
    /* background: var(--sub-color); */
    border-bottom: 1px solid #ccc;
}

#header.on nav {
    display: block;
}

#header nav {
    width: auto;
    color: var(--main-color);
}
#header nav #gnb {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header nav #gnb li {
    width: 160px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header nav #gnb li .nav_dep1 {
    font-size: 1.125rem;
    font-weight: 400;
    min-height: auto;
    color: #222;
}
#header.mainheader nav #gnb li .nav_dep1 {
    color: #fff;
}
#header.on nav #gnb li .nav_dep1 {
    color: #222;
}

#header .open {
    display: flex;
}
#header .open .login a {
    display: inline-block;
    width: 100px;
    cursor: pointer;
    text-align: center;
    line-height: 98px;
}
#header .open .lang {
    float: left;
}
#header .open a {
    color: var(--c-black-1);
}
#header .open ul li a {
    line-height: 16px;
}
/* í—¤ë”ìƒë‹¨ */
#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: 91px;
    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 .sub_nav li.menu3 a {
    font-size: var(--txt-sm);
    /* color: #777; */
       padding-left: 6px;
}
#header nav .depth_toggle.active {
    display: block;
    background: var(--main-color);
}
#header nav .depth_toggle .wrapper {
    width: var(--web-width);
    margin: 0 auto;
    padding-left: 310px;
    display: flex;
}
#header nav .depth_toggle .sub_nav {
    width: 160px;
    /* height: 320px; */
    /* background: rgba(255, 255, 255, 0.5); */
    /* border-right: 1px solid var(--c-black-6); */
    border-right: 1px solid #efefef24;
    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 ul.depth3 {
    margin-top: -4px;

}
/* í•œì¤„ì¼ ì‹œ */
/* #header nav .depth_toggle .sub_nav li a {
    display: block;
    overflow: hidden;
    margin-bottom: -20px;
    font-size: var(--txt-md);
    letter-spacing: -0.6px;
    text-overflow: ellipsis;
} */
/* ë‘ì¤„ì¼ ì‹œ */
#header nav .depth_toggle .sub_nav li a {
    display: block;
    font-size: var(--txt-md);
    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); */
    color: #fff;
    transition: 0.3s;
}

#header nav .depth_toggle .sub_nav.on {
    /* background: var(--c-black-7);
    color: var(--c-black-1); */
    background: #fafafa1c;
    transition: .5s height, .2s background;
}
/* #header nav .depth_toggle .sub_nav.on li a {
    color: var(--c-black-2);
} */
#header nav .depth_toggle .sub_nav.on li a:hover {
    /* color: var(--sub-color) !important; */
    font-weight: 500;
}
#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 ul {
    overflow: hidden;
}
#header .menu_area ul li {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
#header .menu_area ul li:nth-child(2) {
    display: none;
}
#header .menu_area ul li a {
    width: 100%;
    height: 100%;
    display: block;
    color: #fff;
    font-size: var(--txt-md);
    line-height: 96px;
}
#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: 100%;
    height: 100%;
    display: block;
    background-image: url(../images/common/ic_ham_menu_on.png);
    background-repeat: no-repeat;
    background-position: center;
}
#header.mainheader .menu_area ul li a.btn_ham_menu {
    background-image: url(../images/common/ic_ham_menu.png);
    background-repeat: no-repeat;
    background-position: center;
}
#header.on .menu_area ul li a.btn_ham_menu {
    background-image: url(../images/common/ic_ham_menu_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 a {
    display: flex;
    justify-content: center;
    align-items: center;
}
#header .logo a img.on {
    display: block;
}
#header .logo a img.off {
    display: none;
}
#header.mainheader .logo a img.on {
    display: none;
}
#header.mainheader .logo a img.off {
    display: block;
}
#header.on .logo a img.on {
    display: block;
}
#header.on .logo a img.off {
    display: none;
}
.float_wrapper {
    width: var(--web-width);
    height: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}





/**************************************************************/
/**************************************************************/
/******************************sub*****************************/
/**************************************************************/
/**************************************************************/

.sub_visual.visual01 { background: url(../images/sub/visual01.png) center no-repeat; }
.sub_visual.visual02 { background: url(../images/sub/visual02.png) center no-repeat; }
.sub_visual.visual03 { background: url(../images/sub/visual03.png) center no-repeat; }
.sub_visual.visual04 { background: url(../images/sub/visual04.png) center no-repeat; }
.sub_visual.visual05 { background: url(../images/sub/visual05.png) center no-repeat; }
.sub_visual.visual06 { background: url(../images/sub/visual06.png) center no-repeat; }
.sub {
    background: #f4f4f4;
    font-size: 16px;
}
.sub .grid_container {
    width: 1200px;
    padding: 80px 0 90px;
}
.sub_visual {
    position: relative;
    background: #f5f5f5;
	margin-top: 90px;
}

.sub_visual h1 {
    font-size: var(--txt-6xl);
    font-weight: 500;
    line-height: 300px;
    color: #fff;
    width: var(--web-width);
    margin: 0 auto;
    margin-top: 10px;
    position: relative;
    /* overflow: hidden; */
    text-align: center;
}










/**************************************************************/
/**************************************************************/
/*****************************path*****************************/
/**************************************************************/
/**************************************************************/


.path_container {
    width: 100%;
    margin: 0 auto;
}
.path_container07 {
    margin-top: 90px;
}
.path {
    height: 60px;
    line-height: 60px;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.path_inside {
    max-width: var(--web-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.path .home {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    /* float: left; */
}
.path .home span {
    color: var(--main-color);
}

.path a {
    color: #222;
}

/*
.path [class^="depth"] {
	float:left;
	position:relative;
}
*/
.path_inside > div {
    /* float: left; */
    position: relative;
}

.path .depth_btn:before {
    content: "";
    width: 1px;
    height: 59px;
    background: rgba(0, 0, 0, 0.1);
    display: block;
    position: absolute;
    top: 0px;
    left: 0;

}

.path .depth_btn {
    cursor: pointer;
    display: block;
    width: 95%;
    padding: 0 20px;
    min-width: 250px;
    /*    letter-spacing: -1;*/
    /* white-space: pre; */
    overflow: hidden;
    font-size: 16px;
    position: relative;
}


/*path*/
.path .depth_btn span {
    position: absolute;
    right: 8px;
    top: 22px;
    font-size: 18px;
}
.path [class^="depth"] ul {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 60px;
    width: 100%;
    z-index: 1;
    background-color: #ddd;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.path [class^="depth"].active ul {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    z-index: 999;
}
.path [class^="depth"] ul li {
    height: 40px;
    font-size: 0.875rem;
    line-height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    transition: 0.3s;
}
.path [class^="depth"] ul li:hover {
    background: var(--sub-color);
}
.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:hover a {
    color: #fff;
}
.path select {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    height: 58px;
    line-height: 58px;
    padding-bottom: 4px;
}
.path select option {
    color: #555;
    font-size: 14px;
}
.path .depth_btn.depth_wide {
    min-width: 360px;
}
.path ul li a.link {
    position: relative;
}
.path ul li a.link:after {
    content: url(/images/common/ic_external_ssm.png);
    font-weight: 600;
    margin-left: 8px;
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
}







/**************************************************************/
/**************************************************************/
/****************************Contents**************************/
/**************************************************************/
/**************************************************************/
.sub_container {
    min-height: 500px;
}
.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: var(--web-width);
    margin: 0 auto;
    padding: var(--pad-tb-2xl);;
    min-height: calc(100vh - 282px);
}

.sub_container .wrapper .max_wrap_border {
    border-bottom: 1px solid var(--c-black-5);
}

.sub_container .wrapper .max_wrap_color {
    background: #f1f1ec;
}

.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/main/main_mall_bg.png) no-repeat center;
    background-position-y: 550px;
}
.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: -90px;
}











/**************************************************************/
/**************************************************************/
/**********************Hamburger&offcanvas*********************/
/**************************************************************/
/**************************************************************/

.overlay {
    display: none;
    z-index: 9999;
    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-2);
    z-index: 999999999999999999;
}

/* Style the tab */
.offcanvas .tab {
    float: left;
    width: 180px;
    height: 100%;
    color: #fff;
    padding-top: 72px;
    position: relative;
}

.offcanvas .tab .fixed_wrapper {
    position: fixed;
    height: 100%;
    width: 180px;
}

.offcanvas .h_tablinks {
    display: block;
    color: #fff;
    padding: 0 18px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
    height: 72px;
    line-height: 72px;
}
.offcanvas .h_tablinks.point {
    background: #ff80c0;
}

.offcanvas .h_tablinks:hover {
    background-color: var(--main-color);
}

.offcanvas .h_tablinks.active {
    background-color: #fff;
    color: #111;
    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: 72px;
}

.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 30px;
    border-bottom: 1px solid #efefef;
    display: block;
}


.offcanvas .menu_login {
    background-color: var(--main-color);
    height: 72px;
    line-height: 72px;
    font-size: var(--txt-lg);
    color: #fff;
    padding: 0 30px;
    position: absolute;
    top: 0;
    width: calc(100% - 180px);
    z-index: 999;
}

.offcanvas .menu_login .wrapper {
    position: relative;
    width: 340px;
    height: 100%;
}

.offcanvas .menu_login a,
.menu_login a:hover {
    color: #fff;
}

.offcanvas .right_p {
    position: absolute;
    right: 0;
    top: 0;
}

.offcanvas .btn_close {
    width: 30px;
    height: 30px;
    position: relative;
    text-indent: -9999px;
    top: 14;
    right: 0;
    background: none;
}

.offcanvas .btn_close:before,
.btn_close:after {
    content: '';
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 4px;
    background: #fff;
}

.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 var(--c-black-5);
    padding: 28px 32px;
}

.offcanvas .h_tabcontent .depth3 .menu3 {
    font-size: var(--txt-md);
    line-height: 32px;
    color: #111;
}

.offcanvas .h_tabcontent .depth3 .menu3:before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--main-color);
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    margin-bottom: 4px;
}

.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: 90px; */
}
#main .visual .visual_wrap {
    /* text-align: center; */
    width: 100%;
    position: absolute;
    top: 28%;
    z-index: 99;
}
#main .visual .caption {
    color: #fff;
    /* padding-top: 260px; */
    width: var(--web-width);
    margin: 0 auto;
    text-align: center;
}
#main .visual .caption h4 {
    font-size: var(--txt-5xl);
    font-weight: bold;
    line-height: 1.3em;
    font-family: var(--main-font);
    letter-spacing: 1px;
    margin-bottom: 20px;
}
#main .visual .caption h5 {
    font-size: var(--txt-xl);
    font-weight: 300;
    line-height: 1.5em;
    margin-top: 14px;
    margin-bottom: 100px;
    letter-spacing: 0.4px;
}
.bx-has-pager {
    z-index: 99;
    /* position: relative; */
    /* width: var(--web-width); */
    margin: 0 auto;
}
.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 .visual, #main .visual .main_visual, #main .main_visual .bx-wrapper .bx-viewport, .main_slider li {
    width: 100%;
    height: 940px !important;
}











/**************************************************************/
/**************************************************************/
/*****************************footer***************************/
/**************************************************************/
/**************************************************************/

.footer {
    background: var(--c-black-1);
    height: auto;
    padding: var(--pad-tb-md);
}
.footer .wrapper {
    width: var(--web-width);
    margin: 0 auto;
    padding: var(--pad-tb-xs);
    display: flex;
    justify-content: space-between;
}
.footer .wrapper .logo {
    width: 150px;
    height: 39px;
    /* margin-top: 10px; */
    opacity: 0.6;
    background: url(../images/common/logo_wht.png), #222 no-repeat;
    /* background-blend-mode: soft-light; */
}
.footer .wrapper:nth-child(2) {
    padding-top: 0;
}
.footer .footer_top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--pad-tb-sm);;
}
.footer .footer_top .top_wrap {
    width: var(--web-width);
    margin: 0 auto;
}
.footer .footer_top .top_wrap a {
    color: #fff;
    font-weight: 300;
    font-size: var(--txt-md);
    margin-right: 20px;
}
.footer .wrapper .txt, .footer .wrapper .full_txt {
    color: #ffffffa8;
    font-weight: 200;
    font-size: var(--txt-md);
    letter-spacing: -0.3px;
    line-height: 1.6em;
    /* text-align: center; */
    width: calc(100% - 200px);
}
.footer .wrapper .txt p {
    font-weight: 400;
}
.footer .wrapper .site {
    width: 230px;
    height: 44px;
    position: relative;
}

.footer .wrapper .txt span, .footer .wrapper .full_txt span {
    font-weight: 400;
    color: #fff;
}

.footer .wrapper .site .btn_toggle img {
    width: 16px;
}
.footer .wrapper .site ul {
    position: absolute;
    bottom: 44px;
    left: 0;
    display: block;
    /* overflow-y: scroll; */
    /* height: 220px; */
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
    transition-delay: 0s, 0s, 0.2s;
    transform: translateY(50px);
}
.footer .wrapper .site ul.on {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.footer .wrapper .site ul li {
    height: 44px;
    line-height: 44px;
    width: 230px;
    padding: 0 12px;
    background: var(--c-black-5);
    z-index: 999;
    border-top: 1px solid #acacac;
    border-right: 1px solid #acacac;
    border-left: 1px solid #acacac;
}
.footer .wrapper .site ul li a {
    color: var(--c-black-1);
    display: block;
    width: 100%;
    height: 100%;
}
.footer .wrapper .site .btn_toggle {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #acacac;
    padding: 8px 12px;
    color: var(--c-black-1);
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 9;
}
.footer .wrapper .site .btn_toggle:hover {
    background: #bbb;
}
.footer .wrapper .site .btn_toggle img {
    float: right;
    padding: 4px 0;
    transform: rotate(180deg);
}










/**************************************************************/
/**************************************************************/
/****************************basic css*************************/
/**************************************************************/
/**************************************************************/

.pc_hidden {
    display: none;
}
.m_hidden {
    display: block;
}
.pc_hidden_s {
    display: none;
}
.m_hidden_s {
    display: block;
}

.txt_ex {
    font-size: var(--txt-sm);
    color: var(--c-black-4);
}

.txt_sm {
    font-size: 0.925rem !important;
    line-height: 1.6em;
}

.txt_strong {
    font-weight: 600;
}

.cont_tit_ex .txt_strong {
    font-weight: 600;
    color: var(--c-black-1);
}

.cont_tit_ex_1st .txt_strong {
    font-weight: 500;
    color: var(--c-black-1);
}

.cont_tit_m .txt_strong {
    font-weight: 500;
    color: var(--c-black-1);
}

.cont_tit_nm .txt_strong {
    font-weight: 500;
    color: var(--c-black-1);
}

.txt_light {
    font-weight: 200;
}

.main_clr {
    color: var(--main-color) !important;
}

.sub_clr {
    color: var(--sub-color) !important;
}

.sub_clr02 {
    color: var(--sub-color-2) !important;
}

.txt_grey {
    color: var(--c-black-4) !important;
}
.txt_red {
    color: #d22b28 !important;
}
.txt_blk {
    color: var(--c-black-1) !important;
}

.txt_link {
    cursor: pointer;
    display: inline-block;
    color: var(--sub-color) !important;
    font-weight: 400;
}
.txt_link span.material-ic {
    vertical-align: sub; 
    font-size: 18px;
}

.txt_lh {
    line-height: 1.8em;
    word-break: keep-all;
}

.txt_check p {
    padding-left: 30px;
    display: block;
    position: relative;
    padding-bottom: 10px;
    word-break: keep-all;
}
.txt_check ul li p {
    padding-left: 0;
    display: block;
    position: inherit;
    padding-bottom: 0;
}

.txt_check p::before {
    content: url(../images/common/icons_check.svg);
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
}
.txt_check ul li p::before {
    content: none;
    position: inherit;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
}

.page_tit {
    font-size: 2.5rem;
    margin-bottom: 3.125rem;
    text-align: center;
    width: 100%;
    letter-spacing: 6px;
}

.cont_tit_m {
    font-size: var(--txt-4xl);
    margin: 5.625rem 0 2.5rem;
    position: relative;
    padding-left: 1.75rem;
    display: block;
    font-weight: bold;
    word-break: keep-all;
    font-family: var(--main-font);
}

.cont_tit_nm {
    font-size: var(--txt-4xl);
    margin: 0 0 2.5rem;
    position: relative;
    padding-left: 1.75rem;
    display: block;
    font-weight: bold;
    word-break: keep-all;
    font-family: var(--main-font);
}

.cont_tit_m::before,
.cont_tit_nm::before {
    content: '';
    background: url(../images/common/tit_bg.png);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 32px;
}

.line_tit_m {
    font-size: var(--txt-4xl);
    margin: 60px 0 80px;
    position: relative;
    display: block;
    font-weight: bold;
    word-break: keep-all;
    font-family: var(--main-font);
}
.line_tit_nm {
    font-size: var(--txt-4xl);
    margin: 0 0 80px;
    position: relative;
    display: block;
    font-weight: bold;
    word-break: keep-all;
    font-family: var(--main-font);
}
.line_tit_m::after,
.line_tit_nm::after {
    content: '';
    width: 1px;
    height: 40px;
    background: var(--c-black-1);
    position: absolute;
    top: 15px;
    left: 0;
}


.num_tit_m {
    font-size: var(--txt-3xl);
    margin: 0 0 30px;
    position: relative;
    display: block;
    font-weight: bold;
    word-break: keep-all;
    font-family: var(--main-font);
}
.num_tit_m span {
    color: var(--sub-color);
    font-weight: bold;
    margin-right: 8px;
}
.txt_center {
    text-align: center;
}

.cont_subtit {
    font-size: var(--txt-2xl);
    margin-bottom: 16px;
    color: var(--main-color-2);
    font-weight: medium;
    display: block;
    word-break: keep-all;
}

.cont_tit_ex {
    font-size: var(--txt-xl);
    margin: -20px 0 40px;
   font-weight: 300;
}

.cont_tit_ex_1st {
    font-size: var(--txt-xl);
    margin: 0 0 60px;
   font-weight: 300;
}

.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;
}

.min_img img {
    width: 100%;
    min-width: 640px;
}

.txt_bullet {
    position: relative;
    padding-left: 16px;
    line-height: 1.4em;
    margin-bottom: 6px;
}
.txt_bullet:last-child {
    margin-bottom: 0;
}

.txt_bullet::before {
    content: url(../images/common/bullet.png);
    position: absolute;
    left: 0;
    top: -2px;
    width: 8px;
    height: 8px;
}

.txt_bullet_grey {
    position: relative;
    padding-left: 16px;
    line-height: 1.4em;
    margin-bottom: 6px;
}

.txt_bullet_grey::before {
    content: url(../images/common/bullet_grey.png);
    position: absolute;
    left: 0;
    top: -2px;
    width: 8px;
    height: 8px;
}

.box_basic {
    border: 1px solid var(--c-black-5);
    padding: 40px;
    border-radius: 10px;
}

.box_basic_clr {
    border: 1px solid var(--c-black-1);
    padding: 40px;
    border-radius: 10px;
}

.box_basic_bg {
    border: 1px solid var(--c-black-5);
    background: var(--c-black-7);
    padding: 40px;
    border-radius: 10px;
}


.txt_check .txt_bullet_grey {
/*    text-indent: 32px;*/
    color: #777;
}

.txt_check ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.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;
}

.flex {
    display: flex;
}


/*table*/
table {
    width: 100%;
    border-top: 3px var(--main-color) solid;
    border-right: 1px var(--c-black-5) solid;
    border-left: 1px var(--c-black-5) solid;
    /* table-layout: fixed; */
    min-width: 480px;
    border-collapse: collapse;
    line-height: 1.5em;
    text-align: center;
}
.table_min {
    min-width: 280px;
}
.tb_scroll {
    overflow-x: auto;
    border-bottom: 1px var(--main-color) solid;
}
table th {
    background-color: #f5f5f5;
    font-size: var(--txt-lg);
    /* border-top: 4px solid var(--main-color); */
    border-right: 1px var(--c-black-6) solid;
    padding: 20px;
    font-weight: 400;
}
table tr {
    border-bottom: 1px var(--c-black-5) solid;
}
table tr:last-child {
    border-bottom: 0;
}
table tr th {
    padding: 14px;
}
table td {
    padding: 14px;
    border-right: 1px var(--c-black-6) solid;
    background: #fff;
    vertical-align: middle;
}
table td:last-child {
    border-right: 0;
}
table .cont {
    /*    padding: 14px;*/
    text-align: left;
    word-break: keep-all;
}
table .main_tit {
    background: var(--c-black-4);
    color: #fff;
    font-size: var(--txt-lg);
    font-weight: 500;
}
table .sub_tit {
    background: #aaa;
    border-right: 1px #fff solid;
}
table .sub_tit:last-child {
    border-right: 0;
}



/*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);
    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;
}



/*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;
    }
}


/*ì—°í˜ ë””ìžì¸ 1*/
.history_wrap {
    position: relative;
}
.history_wrap::before {
    position: absolute;
    left: 50%;
    top: 0px;
    width: 1px;
    height: 100%;
    background: var(--c-black-5);
    content: "";
}
.history_wrap .left_wrap {
    position: relative;
    width: 50%;
    min-height: 55px;
    text-align: right;
    margin-left: 1.4%;
    margin-bottom: 30px;
    padding-right: 115px;
    background: url(../images/sub/year_bg_l.png) right 0 no-repeat;
    z-index: 9;
}
.history_wrap .right_wrap {
    position: relative;
    width: 50%;
    min-height: 55px;
    text-align: left;
    margin-left: 48.8%;
    margin-bottom: 30px;
    padding-left: 115px;
    background: url(../images/sub/year_bg_r.png) 0 0 no-repeat;
    z-index: 9;
}
.history_wrap .year {
    font-size: var(--txt-4xl);
    line-height: 44px;
    font-family: GmarketSansMedium;
    color: var(--main-color);
    padding-top: 8px;
    margin-bottom: 20px;
}
.history_wrap dl {
    margin-top: 10px;
    overflow: hidden;
}
.history_wrap .right_wrap dl {
    padding-left: 7px;
}
.history_wrap .right_wrap dt {
    float: left;
    width: 100%;
    margin-bottom: 8px;
    clear: both;
    color: #005d83;
    font-weight: 500;
}
.history_wrap .right_wrap dd {
    float: left;
    width: 100%;
    word-break: keep-all;
    margin-bottom: 8px;
}
.history_wrap .left_wrap dl {
    padding-right: 7px;
}
.history_wrap .left_wrap dt {
    float: right;
    width: 100%;
    text-align: right;
    margin-bottom: 8px;
    clear: both;
    color: #005d83;
    font-weight: 500;
}
.history_wrap .left_wrap dd {
    float: left;
    width: 100%;
    word-break: keep-all;
    text-align: right;
    margin-bottom: 12px;
}
.history_wrap .history_img {
    margin: 10px 0 20px 0;
}

/*ì—°í˜ë””ìžì¸2*/
.history_box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 35px 50px;
    border-bottom: 1px solid var(--c-black-6);
}
.history_box .history_tit {
    font-size: 2.250rem;
    font-weight: 600;
    color: var(--main-color);
}
.history_box ul {
    margin-left: 120px;
}
.history_box ul li {
    padding: 8px 0;
}
.history_box .cont {
    margin-right: 25px;
    font-weight: 500;
    color: #38322d;
}
.history_box .cont_ex {
    color: var(--c-black-4);
    font-size: var(--txt-sm);
}


/*ì—°í˜ë””ìžì¸3*/
.his_box_wrap {
    padding: 40px;
    margin-bottom: 30px;
    background: #f1f1f1;
}
.his_box_wrap .history {
    border: 0;
    text-align: left;
}
.his_box_wrap:last-child {
    margin-bottom: 0;
}
.his_box_wrap td, .his_box_wrap tr, .his_box_wrap th {
    border: 0;
    background: 0;
}
.his_box_wrap .history .year {
    width: 130px;
    font-size: 1.625rem;
    color: var(--main-color);
    font-weight: 600;
    vertical-align: top;
    padding: 0;
    border: 0;
    background: 0;
}
.his_box_wrap .history:first-child {
    width: 130px;
    float: left;
    min-width: auto;
}
.his_box_wrap .history:last-child {
    width: calc(100% - 130px);
    float: left;
    min-width: auto;
}
.his_box_wrap .history .month {
    width: 40px;
    font-size: var(--txt-md);
    color: var(--c-black-1);
    font-weight: 600;
    vertical-align: baseline;
    padding: 0;
}
.his_box_wrap .history td {
    color: var(--c-black-3);
    vertical-align: baseline;
    padding: 0;
}





/*íƒ­(í•œíŽ˜ì´ì§€ë‚´)*/
.tab_wrap.fixed {
    position: fixed;
    z-index: 8;
    top: 100px;
    max-width: var(--web-width);
    background: #fff;
    padding: 20px 10px;
    border-radius: 5px;
}
.tab_wrap {
    margin: 0px auto 50px;
    overflow: hidden;
    width: 100%;
}
.tab_wrap li a {
    color: var(--main-color);
}
.tab_wrap .tab_01 ul {
    display: flex;
    flex-wrap: nowrap;
}
.tab_wrap .tab_01 li {
    width: 16%;
    height: 60px;
    background: #fff;
    text-align: center;
    font-weight: 400;
    font-size: var(--txt-xl);
    cursor: pointer;
    box-sizing: border-box;
    margin-left: 10px;
    padding: 18px;
    border: 1px var(--main-color) solid;
    color: var(--main-color);
    border-radius: 5px;
}
.tab_wrap li:first-child {
    margin-left: 0;
}

.tab_wrap li:hover {
    background: var(--main-color);
    color: #fff;
}
.tab_wrap li:hover a {
    color: #fff;
}
.tab_wrap li.tab_on {
    background: var(--main-color);
    color: #fff;
}
.tab_wrap li.tab_on a {
    color: #fff;
}

/*íƒ­(ë‚´ìš©êµì²´)*/
/*íƒ­ê°œìˆ˜ì— ë”°ë¼ cssê°€ ë‹¤ë¥´ë¯€ë¡œ ë°˜ì‘í˜•ì€ ë”°ë¡œ ìž‘ì—… í•„ìš”*/
.tab_link {
    display: flex;
    margin-bottom: 40px;
}
.tab_link .tablinks {
    width: 25%;
    height: auto;
    text-align: center;
    margin-right: 10px;
    padding: 14px;
    font-size: var(--txt-lg);
    font-weight: 500;
    cursor: pointer;
    border: 2px var(--c-black-5) solid;
    box-sizing: border-box;
    line-height: 1.3em;
}
.tab_link .tablinks:last-child {
    margin-right: 0;
}
.tab_link .tablinks:hover, .tab_link .tablinks.active {
    border: 2px var(--main-color) solid;
    color: #015594;
}







/*ì•„ì´ë´í‹°í‹°*/
.iden_box {
    overflow: hidden;
    padding: var(--pad-tb-xl);;
    border-bottom: 1px solid var(--c-black-6);
}
.iden_box:first-child {
    padding-top: 0;
}
.iden_box .tit {
    float: left;
    width: 250px;
    font-size: var(--txt-3xl);
    font-weight: 600;
    color: var(--c-black-2);
}
.iden_box ul {
    margin-left: 150px;
    overflow: hidden;
}
.iden_box ul li {
    padding: 8px 0;
    width: 50%;
    float: left;
}
.iden_box ul li img {
    padding: 0 10px;
    float: left;
}
.iden_box .cont_t {
    margin-right: 25px;
    font-weight: 500;
    width: 100px;
    color: #444;
    display: inline-block;
}
.iden_box .cont {
    color: #666;
}
.iden_box .btn_down {
    float: left;
    width: 96%;
}




/*íƒ­íŽ˜ì´ì§€*/
.tab_cont_wrap {
    padding: var(--pad-tb-xl);;
    border-bottom: 1px solid var(--c-black-5);
}
.tab_cont_wrap:first-child {
    padding-top: 0;
}




/*íƒ­í´ë¦­ë¦¬ìŠ¤íŠ¸*/
.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;
}





/*ì˜¤ì‹œëŠ”ê¸¸ 1*/
.address_wrap { width: auto; text-align: center; overflow: hidden; margin: 30px auto 50px; }
.address_wrap .t { font-size: 1.725rem; margin:16px 0px; font-family: var(--main-font);}
.address_wrap .c { font-size: var(--txt-xl); margin:0px 20px; display: inline; }
.address_wrap span {font-weight: bold; font-family: var(--main-font);}

.traffic_wrap { width: 100%; overflow: hidden;}
.traffic_wrap .traffic_half { width: 50%; float: left; }
.traffic_wrap .traffic_half .parking { width: 80px; height: 80px; background: url(../images/sub/parking.png) no-repeat center #293F73; border-radius: 40px;  float: left; }
.traffic_wrap .traffic_half .subway { width: 80px; height: 80px; background: url(../images/sub/subway.png) no-repeat center #293F73; border-radius: 40px; float: left; }
.traffic_wrap .traffic_half .txt { width: calc(100% - 120px); margin-left: 20px; float: left; font-size: var(--txt-md);}
.traffic_wrap .traffic_half .txt p { margin-bottom: 5px; font-weight: 500; font-size: var(--txt-lg);}
.traffic_wrap .traffic_half .txt span.co { font-weight: bold;color: #293F73; }


/*ì˜¤ì‹œëŠ”ê¸¸ 2*/
.map {
	position: relative;
    /* max-height: 360px; */
}



/*í´ë¦­ë‹¤ìš´ë°ëª¨ë‹¬*/
.cert_list strong { display: block; width: 100%; height: 100%; position: absolute; background: #000; top:0; color:#fff; text-align: center; padding-top: 23%; opacity: 0; z-index: 1;}
.cert_list a:hover strong {opacity: 0.6; transition: 0.3s;}

.cert_list strong:before {content: ""; display: block; width:50px; height: 50px; background: url(../images/ico_detailview.png) no-repeat center center; margin: 0 auto;}
.cert_list strong.sample:before {background-image: url(../images/ico_sample.png);}
.cert_list strong.sample:after {content: ""; position: absolute; width:1px; height: 100px; background: #fff; right:0; top:40px;}
.cert_list strong.detail {right:0;}

.cert_list {
    display: flex;
    flex-wrap: wrap;
}
.cert_wrap {
    box-sizing: border-box;
    border: 1px var(--c-black-6) solid;
    padding: 30px;
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    cursor: pointer;
    position: relative;
}
.cert_wrap a {
    display: flex;
}
.cert_wrap:nth-child(even) {
    margin-right: 0;
}
.cert_wrap .img {
    width: 40%;
    height: auto;
    position: relative;
}
.cert_wrap .img img {
    margin: 0 auto;
    display: block;
    max-height: 300px;
    max-width: 200px;
}

.cert_wrap .tit {
    box-sizing: border-box;
    width: 60%;
    color: var(--c-black-4);
    font-weight: 300;
    font-size: var(--txt-md);
    margin-left: 30px;
}

.cert_wrap .tit h5 {
    color: var(--c-black-2);
    font-size: 1.6rem;
    font-weight: 600;
    padding: var(--pad-tb-md);;
    line-height: 1.3em;
}
.cert_wrap .tit p:last-child {
    padding-top: 16px;
}
.cert_wrap .tit p span.subtit {
    width: 100%;
    color: var(--c-black-2);
    display: block;
    font-weight: 500;
    font-size: var(--txt-lg);
}
.cert_wrap .tit p span.cont {
    width: 100%;
    padding-top: 6px;
    display: block;
}
.cert_wrap .tit p span .fas {
    color: #aaa;
    margin-right: 6px;
}

/*ë‹¤ìš´ë¡œë“œ*/
.cert_wrap_s {
    box-sizing: border-box;
    border: 1px var(--c-black-6) solid;
    padding: 30px;
    width: 23%;
    margin-right: 2%;
    margin-bottom: 2%;
    cursor: pointer;
    position: relative;
}

.cert_wrap_s:nth-child(4n) {
    margin-right: 0;
}
.cert_wrap_s .img {
    width: 90%;
    height: auto;
    margin: 0 auto;
    position: relative;
}
.cert_wrap_s .img img {
    margin: 0 auto;
    display: block;
    max-height: 300px;
}
.cert_wrap_s .tit {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}
.cert_wrap_s .tit h5 {
    color: var(--c-black-2);
    font-size: 1.175rem;
    font-weight: 500;
    line-height: 1.6rem;
}
.cert_list .cert_wrap_s strong {
    padding-top: 60%;
}
.cert_wrap_s .btn_down {
    width: 100%;
    font-size: 0.975rem;
    margin-top: 16px;
    height: auto;
}

/* tag_box */

.tag_box {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}
.tag_box .box {
    width: 32%;
    box-sizing: border-box;
    padding: 30px 30px 40px 30px;
    background: #fafafa;
    border: 1px solid #efefef;
    border-top: 2px solid var(--main-color);
    position: relative;
}
.tag_box_04 .box {
    width: 23.5%;
}
.tag_box.tag_lg {
    flex-wrap: wrap;
}
.tag_box.tag_lg .box {
    width: 100%;
    margin-top: 40px;
}
.tag_box.tag_lg .box .cont p {
    font-size: 1.05rem;
    line-height: 1.6em;
}
.tag_box.tag_lg .box:first-child {
    margin-top: 0;
}
.tag_box .box .num {
    position: absolute;
    width: 80px;
    height: 70px;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    -webkit-box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 5%);
    box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 5%);
    background: url(../images/sub/check_fff_svg.svg);
    padding: 0 10px 10px 10px;
}
.tag_box .box .num p {
    border: 1px solid var(--main-color);
    border-top: 0;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    color: var(--main-color-2);
    height: 60px;
    padding-top: 10px;
}
.tag_box .box .cont {
    padding-top: 50px;
}
.tag_box .box .cont img {
    max-width: 7.5rem;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}
.tag_box .box .cont h4 {
    font-size: var(--txt-2xl);
    text-align: center;
    color: #222;
    font-weight: normal;
    font-family: var(--main-font);
}
.tag_box .box .cont h5 {
    font-size: 1.125rem;
    color: #999;
    padding: 5px 0 20px;
    text-align: center;
    letter-spacing: normal;
    font-weight: lighter;
}
.tag_box .box .cont p {
    font-size: 1rem;
    color: #222;
    word-break: break-word;
}
/*ì§ˆë¬¸ë‹µë³€*/
.directions { display:none; width:420px; height:220px; margin:0 auto; background:#fff; font-size:1rem; overflow-y:hidden; box-sizing: border-box; border: 1px var(--c-black-2) solid;}
.directions .info_tit { width: 100%; height: 45px; line-height: 45px; background:#7c919d; /*border-top: 5px solid #009475; border-bottom: 1px solid #ccc;*/ text-align: center; font-size: var(--txt-lg); font-weight: 500; margin: 0 auto 20px; color: #fff;}
.directions dl.info_list dt { font-size:16px; margin-bottom: 20px; text-align: center;}
.directions dl.info_list dd { margin-bottom: 20px; text-align: center;}
.directions input {padding: 5px 5px 5px 10px;height: 35px;box-sizing: border-box; width: 90%; border: 1px solid var(--c-black-5);}
.directions .pop_close { cursor: pointer; position: absolute;top: 0px;right: 10px;}
.directions .pop_close img {width: 20px; padding-top: 12px;}
.pop_btn_area {width:100%;text-align:center;margin:20px auto;}
a.pop_btn_confirm {
    display: inline-block;
    text-align: center;
    width: 80px;
    background: var(--main-color);
    height: 35px;
    line-height: 35px;
	font-size: 15px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
a.pop_btn_cancel {
    display: inline-block;
    text-align: center;
    width: 80px;
    background: #666;
    height: 35px;
    line-height: 35px;
	font-size: 15px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
a.btn_write {
    display: inline-block;
    text-align: center;
    float: right;
    width: 120px;
    background: var(--main-color-2);
    height: 42px;
    line-height: 42px;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
}
a.btn_modify {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: var(--sub-color);
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
a.btn_reply {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: var(--main-color);
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}

a.btn_delete {
    display: inline-block;
    text-align: center;
    width: 120px;
    background: #999;
    height: 42px;
    line-height: 42px;
    color: #fff;
	cursor: pointer;
	font-weight: 400;
}
.notice .cont.qna .tit .i_cate {
	width: 60px;
	height: 18px;
	line-height: 18px;
    margin-right: 10px;
	font-size: var(--txt-md);
	font-weight: 400;
	padding: 3px 5px 4px;
	/*border-radius: 2px;*/
	text-align: center;
	letter-spacing: -1px;
}
.notice .cont.qna .tit .co01 {
    color: var(--main-color);
	border: 1px var(--main-color) solid;
}
.notice .cont.qna .tit .co02 {
    color: var(--c-black-4);
	border: 1px var(--c-black-4) solid;
}
.notice .cont.qna .tit .co03 {
    color: #ffa54a;
	border: 1px #ffa54a solid;
}
.notice .cont.qna a>div .tit {
    height: 34px;
}
.notice .cont.qna {
    padding: var(--pad-tb-sm);;
}
.notice .cont.qna a>div:first-child {
    margin-bottom: 0;
}
.notice .cont.qna a>div .info {
    padding-top: 5px;
}
.state01 { 
	width: 60px;
	height: 18px;
	line-height: 18px;
	background: #999;
	font-size: var(--txt-md);
	font-weight: 400;
	color: #fff;
	padding: 3px 5px 4px;
	border-radius: 3px;
	text-align: center;
	letter-spacing: -1px;
    margin-left: 10px;
}
.state02 { 
	width: 60px;
	height: 18px;
	line-height: 18px;
	background: #ffad41;
	font-size: var(--txt-md);
	font-weight: 400;
	color: #fff;
	padding: 3px 5px 4px;
	border-radius: 3px;
	text-align: center;
	letter-spacing: -1px;
    margin-left: 10px;
}
.board_view .reply_info {
    padding: 20px;
	line-height:1.7em;
	border-top: 1px solid var(--c-black-5);
	background: #f6f6f6;
}
.board_view .reply_info img {
    margin: 10px auto;
	width: 100%;
	max-width: 800px;
	display: block;
}
.board_view .reply_info .date { font-size: var(--txt-sm); margin-left: 10px;}




/*topë²„íŠ¼*/
a#top_btn {
    position: fixed;
    right: 200px;
    bottom: 140px;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    cursor: pointer;
    z-index: 999;
    background: url(/images/common/top_btn.png) no-repeat;
}


/*ì„œë¸Œíƒ€ì´í‹€*/
.pre_txt {
    font-size: var(--txt-lg);
    color: var(--c-black-4);
    font-weight: 200;
    padding-bottom: 6px;
    text-align: center;
}
/*ë”°ì˜´í‘œ*/
.tit_quo {
    font-size: 1.625rem;
    margin-bottom: 3.125em;
    position: relative;
    font-weight: 300;
    display: block;
    word-break: keep-all;
    text-align: center;
    color: var(--main-color);
}
.tit_quo::before {
    content: url(../images/common/bullet_quo_t.png);
    position: absolute;
    left: 25%;
    top: -10px;
}
.tit_quo::after {
    content: url(../images/common/bullet_quo_b.png);
    position: absolute;
    right: 25%;
    bottom: -10px;
}
.tit_quo span {
    font-weight: 600;
}
/*ìƒë‹¨ê°€ë¡œì„ */
.tit_line_hor {
    font-size: 1.625rem;
    margin-bottom: 3.125em;
    color: var(--c-black-1);
    font-weight: 400;
    display: block;
    word-break: keep-all;
    text-align: center;
    padding-top: 1.250em;
    position: relative;
}
.tit_line_hor::before {
    position: absolute;
    content: url(../images/common/bullet_tit.png);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
/*ìƒë‹¨ì„¸ë¡œì„ */
.tit_line_ver {
    font-size: 1.50rem;
    margin: 2em 0 4.75em;
    position: relative;
    font-weight: 300;
    display: block;
    word-break: keep-all;
    text-align: center;
}
.tit_line_ver::before {
    content: '';
    height: 60px;
    width: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -80px;
    background: var(--main-color);
}
/*ë°±ê·¸ë¼ìš´ë“œ ì›*/
.tit_circle {
    font-size: 1.625rem;
    margin-bottom: 3.125em;
    color: var(--c-black-1);
    font-weight: 300;
    display: block;
    word-break: keep-all;
    text-align: center;
    padding-top: 1.250em;
    position: relative;
}
.tit_circle::before {
    content: '';
    width: 80px;
    height: 80px;
    background: rgba(218, 81, 38, 0.9);
    position: absolute;
    top: 20px;
    left: 40%;
    margin-top: -16px;
    margin-left: -20px;
    border-radius: 100px;
    z-index: -1;
}
.tit_circle span {
    font-weight: 500;
}
/*ì¢Œì¸¡ ë¶ˆë ›*/
.tit_bullet {
    font-size: 2.25rem;
    margin: 0 0 40px;
    position: relative;
    padding-left: 28px;
    font-weight: 300;
    display: block;
    word-break: keep-all;
}
.tit_bullet::before {
    content: url(../images/common/tit_bullet.png);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 11px;
    height: 31px;
}





/*íšŒì›ê°€ìž…, ë¡œê·¸ì¸ ì™¸*/
.login_wrap {
    width: 100%;
    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: 350px;
    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;
}
.login_wrap input[type=password] {
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 0px 10px;
    height: 46px;
    margin: 5px 0;
}
.login_input input[type=submit] {
    width: 350px;
    border: 0;
    height: 50px;
    line-height: 50px;
    background: var(--main-color);
    color: #fff;
    /*    font-size:18px;*/
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
}
.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: 350px;
    margin: 0 auto;
    padding-bottom: 20px;
    text-align: left;
    border-bottom: 1px dotted #666;
}
.login_footer .id_pw {
    width: 350px;
    margin: 0 auto;
    padding-top: 10px;
    text-align: center;
}
.login_footer a {
    color: var(--c-black-2);
}
.login_footer a:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.login_footer p {
    text-align: left;
}
.login_box {
    width: 350px;
    margin: 0 auto;
    text-align: left;
}
.login_box_l {
    float: left;
    width: 50%;
}
.login_box_r {
    float: right;
    width: 50%;
}
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_l {
    width: 150px;
}

.txt_box_s {
    width: 50px;
}

.txt_box_ll {
    width: 100%;
}

.txt_box_s2 {
    width: 80px;
}

.txt_box_m {
    width: 60%;
}

.txt_email {
    width: 30%;
}

.txt_add {
    width: 98%;
}
.btn_etc {
    display: inline-block;
    background: #fff;
    height: 32px;
    line-height: 24px;
    width: 100px;
    text-align: center;
    vertical-align: top;
    font-size: var(--txt-sm);
    cursor: pointer;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    margin: 2px 10px;
    box-sizing: border-box;
    padding: 3px 0;
}

.btn_etc:hover {
    border: 0;
    background-color: var(--main-color);
    color: #fff;
}




/*ì‚¬ì´íŠ¸ë§µ*/
.sitemap {
    overflow: hidden;
    display: flex;
}
.sitemap .h_cont {
    margin-right: 3%;
    width: 23%;
    padding: 28px;
    margin-bottom: 3%;
    border: 1px solid var(--c-black-5);
    background: var(--c-black-7);
}
.sitemap .h_cont:last-child {
    margin-right: 0;
}
.sitemap .h_cont .site_depth {
    font-size: var(--txt-2xl);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--c-black-5);
    padding-bottom: 20px;
    color: var(--main-color);
    font-weight: 500;
    line-height: 1.4em;
}
.sitemap .h_cont ul li {
    line-height: 1.6em;
    padding-left: 8px;
    position: relative;
}
.sitemap .h_cont ul.sub_nav > li:before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--c-black-1);
    position: absolute;
    top: 12px;
    left: 0;
}
.sitemap .h_cont ul.sub_nav > li > a {
    font-weight: 400;
    color: var(--c-black-1);
    margin-bottom: 5px;
    display: block;
}
.sitemap .h_cont ul li .depth3 {
    margin-bottom: 10px;
}
.sitemap .h_cont ul li .depth3 li {
    position: relative;
    padding-left: 0;
}
.sitemap .h_cont ul li .depth3 a {
    color: var(--c-black-4);
}




/* btn */
.btn_line {
    border: 1px solid var(--c-black-1);
    color: var(--c-black-1);
    box-sizing: border-box;
    font-family: var(--main-font);
    font-size: var(--txt-md);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: block;
    transition: 0.3s;
    position: relative;
}
.btn_line .inner {
    position: absolute;
    font-weight: 600;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.btn_line span.bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--c-black-1);
}
.btn_line:hover .inner {
    color: #fff;
}
.btn_line:hover span.bg {
    width: 100%; animation: btn1Ani 0.3s linear 1;
}


.btn_line_wht {
    border: 1px solid #fff;
    color: #fff;
    box-sizing: border-box;
    font-family: var(--main-font);
    font-size: var(--txt-lg);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: block;
    transition: 0.3s;
    position: relative;
}
.btn_line_wht .inner {
    position: absolute;
    font-weight: 600;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.btn_line_wht span.bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fff;
}
.btn_line_wht:hover .inner {
    color: var(--sub-color);
}
.btn_line_wht:hover span.bg {
    width: 100%; animation: btn1Ani 0.3s linear 1;
}
    @keyframes btn1Ani{
        0%{width: 0;}
        100%{width: 100%;}
    }

.btn_line_wht {
    font-family: var(--main-font);
    font-size: var(--txt-lg);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    color: #fff;
}
.btn_bg {
    font-family: var(--main-font);
    font-size: var(--txt-lg);
    font-weight: 600;
    width: 160px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    color: #fff;
}
.btn_bg span {
    font-family: var(--main-font);
}




.txt_box {
    background: var(--main-color);
    border-radius: 12px;
    padding: 1.375rem 2rem;
    line-height: 1.4em;
    color: #fff;
    font-size: var(--txt-2xl);
}
.txt_box h5 {font-weight: 400; letter-spacing: 0.8px;}
.txt_box .material-icons {
    color: var(--sub-color);
    font-size: var(--txt-xl);
    vertical-align: sub;
}

.link_box {display: flex;cursor: pointer;align-items: center;justify-content: flex-end;}
.link_box .material-icons {
    color: var(--sub-color);
    font-size: var(--txt-xl);
    vertical-align: sub;
    padding-right: 4px;
}

.line_box .box:first-child {
    border-top: 4px solid var(--sub-color-2);
}
.line_box .box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: var(--pad-tb-sm);
    border-bottom: 1px solid #ddd;
}
.line_box .box .tit {
    width: 200px;
    font-size: var(--txt-lg);
    font-weight: 500;
    color: var(--main-color-2);
}
.line_box .box .tit.tit_sm {
    width: 34px;
}
.line_box .box .tit .num {font-weight: bolder;padding-right: 4px;}
.line_box .box .cont {
    color: var(--c-black-2);
    line-height: 1.5em;
    width: calc(100% - 200px);
}
.line_box .box .cont.cont_sm {
    width: calc(100% - 34px);
}

.img_center {
    display: flex;
    justify-content: center;
    align-items: center;
}








.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    /* top: 0; */
    bottom: 40px;
    z-index: -1;
  }

  .loca_num {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px 0 60px;
}
  .loca_num p {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--main-color);
    padding-bottom: 20px;
    border-bottom: 1px dashed #aaa;
}
  .loca_num p span {
    font-weight: 400;
    margin-right: 10px;
    font-size: 1.75rem;
}

  .product_sub .box {
    border: 1px solid #ddd;
    display: flex;
    padding: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
}
  .product_sub .box .img {
    width: 30%;
    aspect-ratio: 3/2;
}
  .product_sub .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  .product_sub .box .txt {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
  .product_sub .box .txt img {
    max-width: 130px;
    margin-bottom: 10px;
}
  .product_sub .box .txt h5 {
    color: #333;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 20px;
}
  .product_sub .box .txt h4 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    margin-top: 10px;
    padding-bottom: 12px;
    width: 100%;
    border-bottom: 1px dashed #00377b6e;
}
  .product_sub .box .txt p {
    background: #5d657036;
    color: var(--main-color);
    padding: 8px 10px;
    line-height: 1.6em;
    font-size: 0.925rem;
    font-weight: 400;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
}
  .product_sub .box .txt .btn {
    border: 1px solid var(--main-color);
    display: flex;
    width: 150px;
    align-items: center;
    justify-content: center;
    height: 48px;
    margin-top: 30px;
}
.product_sub .box .txt .btn span {margin-left: 6px;}