/* rem ì„ ì–¸*/
html,
body {
    font-size: 16px;
}

:root {
    --main-color: #00704a;
    --main-color-2: #38322d;
    --sub-color: #ffc20e;
    --sub-color-2: #289ad5;
    --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;

    --logo-color: #ffc20e;
    --accent-color: #e3a900;

    --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: 1200px;

    --main-font: 'Pretendard', sans-serif;
    --sub-font: 'Ubuntu', sans-serif;
}



/**************************************************************/
/**************************************************************/
/****************************header****************************/
/**************************************************************/
/**************************************************************/
#header {position: absolute;top: 0;color: #222;z-index: 1000;width: 100%;transition: all 0.3s ease;background: #fff;}
#header.on {
    position: fixed;
    top: 0;
    animation: smoothScroll 0.3s forwards;
    /* background: var(--sub-color); */
}

#header.on nav {
    display: block;
}

#header nav {
    width: auto;
    color: var(--main-color);
}
#header nav #gnb {
    width: var(--web-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header nav #gnb>li {
    width: 33%;
    height: 3.125rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    position:relative;
    transition: .5s height, .2s background;
}
#header nav #gnb li .nav_dep1 {
    font-size: 1.25rem;
    font-weight: 500;
    width: 100%;
    min-height: auto;
    color: #fff;
    
}

#header nav #gnb li .sub_nav{
    width:100%;
    position:absolute;
    top:91px;
    background-color: rgba(32,53,140,0.8);
    z-index: 99999;
    display: none;
}
#header nav #gnb li .sub_nav:hover{background-color: rgba(51,68,139,0.8);}
#header nav #gnb li .sub_nav>li{
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}
#header nav #gnb li .on{display:block;transition: ease-in-out 0.2;}
#header nav #gnb li .sub_nav>li>a{
    min-height:inherit;min-width:inherit;
    display: block;
    font-size: var(--txt-md);
    word-break: break-all;

    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 #gnb li .sub_nav li>a:hover{font-weight:500;}


#header .open {
    display: flex;
    gap: 2rem;
}
#header .open .login a {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    line-height: 98px;
    font-size: var(--txt-sm);
    color: #333;
}
#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: var(--web-width);
    margin: 0 auto;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--c-black-1);
    font-size: 0.938rem;
    font-weight: 400;
}
#header .top_header .header_tit {
    font-size: 2rem;
    margin-left: 2.25rem;
    font-family: var(--sub-font);
}
#header .bot_header {
    background: var(--main-color);
}
/*í—¤ë” ì–¸ì–´ë“œë¡­ë‹¤ìš´*/
.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;
}
#header nav .depth_toggle .sub_nav li.menu3 a {
    font-size: var(--txt-sm);
       padding-left: 6px;
}
#header nav .depth_toggle.active {
    display: block;
    background: #20358ce0;
}
#header nav .depth_toggle .wrapper {
    width: var(--web-width);
    margin: 0 auto;
    padding-left: 350px;
    display: flex;
}
#header nav .depth_toggle .sub_nav {
    width: 146px;
    border-right: 1px solid #efefef24;
    padding: 20px 12px;
    transition: .5s height, .2s background;
}
#header nav .depth_toggle .sub_nav li {
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}
#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 {display: none;}
#header .menu_area ul {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-width: 90px;
}
#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: #222;
    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 .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: none;
}
#header .logo a img.off {
    display: block;
}



/**************************************************************/
/**************************************************************/
/******************************sub*****************************/
/**************************************************************/
/**************************************************************/

.sub_visual.visual01 { background: url(../images/sub/visual01.png) top center no-repeat; }
.sub_visual.visual02 { background: url(../images/sub/visual02.png) top center no-repeat; }
.sub_visual.visual03 { background: url(../images/sub/visual03.png) top center no-repeat; }
.sub_visual.visual04 { background: url(../images/sub/visual04.png) top center no-repeat; }
.sub_visual.visual05 { background: url(../images/sub/visual05.png) top center no-repeat; }
.sub_visual.visual06 { background: url(../images/sub/visual06.png) top 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: 270px;
    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 {
    margin: 0px auto 0;
    background: url(../images/sub/sub_bg.png) top center no-repeat fixed;
    background-size: cover;
    padding-top: 9rem;
    min-height: calc(100vh - 155.19px);
}
.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-xl);
}

.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;
}
.txt_xl{
    font-size: 2rem;
    font-weight: 500;
}
.max_wrap_bg .num_tit_nm {
    font-weight: 400;
    color: #fff !important;
}
.max_bg01 {
    background: url(../images/sub/max_bg01.png) no-repeat center;
    /* background-attachment: fixed; */
}
.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;
}
.max_bg05 {
    background: url(../images/sub/max_bg05.jpg) no-repeat center;
    background-attachment: fixed;
}
.bg_txt {
    padding: 3rem 3.5rem;
    background: #ffffffe0;
    width: 50%;
    margin-left: 50%;
    -webkit-box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 10%);
    box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 10%);
}

.sub_container .wrapper .max_wrap_nm {
    margin-top: -90px;
}











/**************************************************************/
/**************************************************************/
/**********************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: 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: #eeebe7;
    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: #222;
}

.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: #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 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;
}
.sec_visual .caption {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 37vh;
    z-index: 99;
    color: #fff;
    /* transform: translateY(-50%); */
}
.sec_visual .caption img {
    max-width: 300px;
}
.sec_visual .caption h4 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.3em;
    font-family: var(--sub-font);
    letter-spacing: -0.5px;
    text-shadow: 0px 0px 10px #0000004f;
}
.sec_visual .caption h4 span {
    color: var(--logo-color);
    font-family: var(--sub-font);
}
.sec_visual .caption h5 {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--sub-font);
    line-height: 1.5em;
    letter-spacing: 0.4px;
    margin-bottom: 3rem;
    text-shadow: 0px 0px 10px #0000004f;
}

.sec_visual .banner {
    /* position: absolute; */
    /* bottom: 12%; */
    display: flex;
    justify-content: space-evenly;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    background: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 15%);
    box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 15%);
    padding: 0 2rem;
    max-width: var(--web-width);
    margin: 0 auto;
    margin-top: 8%;
}
.sec_visual .banner .icon {
    padding: 2.25rem 3rem 1.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.sec_visual .banner .icon img {
    max-width: 70px;
    width: 100%;
    max-height: 70px;
}
.sec_visual .banner .icon p {
    text-align: center;
    margin-top: 16px;
    font-size: 1.125rem;
    font-weight: 400;
    width: 100%;
}

.bx-has-pager {
    z-index: 99;
}
.main_slider li.visual01 { background:url(../images/main/main_visual01.png) center no-repeat; background-size: cover;}
.main_slider li.visual02 { background:url(../images/main/main_visual02.png) center no-repeat; background-size: cover;}
.main_slider li.visual03 { background:url(../images/main/main_visual03.png) center no-repeat; background-size: cover;}
.main_slider li.visual04 { background:url(../images/main/main_visual04.png) center no-repeat; background-size: cover;}
.main_slider li.visual05 { background:url(../images/main/main_visual05.png) center no-repeat; background-size: cover;}
.main_slider li.visual06 { background:url(../images/main/main_visual06.png) center no-repeat; background-size: cover;}
.main_visual, .main_visual .bx-viewport, .main_visual, .main_slider li {
    width: 100%;
    height: 100vh !important;
    transition: 0.5s all ease;
}

.sec_visual_sm .main_visual .bx-viewport, .sec_visual_sm .main_visual, .sec_visual_sm .main_slider li {
    width: 100%;
    height: 35rem !important;
}
.sec_visual_sm.sec_visual .caption {
    top: 13.5rem;
}
.sec_visual_sm .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    bottom: 2rem;
}


/**************************************************************/
/**************************************************************/
/*****************************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: 168px; */
    /* margin-top: 10px; */
}
.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: #fff;
    font-weight: 300;
    font-size: var(--txt-md);
    letter-spacing: -0.3px;
    line-height: 1.6em;
}
.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;
}

.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;
}
.main_clr02 {
    color: var(--main-color-2) !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;
}
.logo_clr {
    color: var(--logo-color) !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;
    color: var(--sub-color) !important;
}

.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: 2rem;
    text-align: center;
    width: 100%;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
}


.cont_tit_m {
    font-size: var(--txt-3xl);
    margin: 5.625rem 0 2.5rem;
    position: relative;
    padding-left: 1.5rem;
    display: block;
    font-weight: bold;
    word-break: keep-all;
    font-family: var(--main-font);
}

.cont_tit_nm {
    font-size: var(--txt-3xl);
    margin: 0 0 2.5rem;
    position: relative;
    padding-left: 1.5rem;
    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: 9px;
    width: 9px;
    aspect-ratio: 11/31;
}

.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: #333;
    line-height: 1.6em;
    font-weight: 400;
}
.txt_lg span {
    font-weight: 600;
    color: var(--main-color-2);
}

.txt_lg_thin {
    font-size: var(--txt-xl);
    font-weight: 300;
    display: block;
    color: var(--c-black-3);
    line-height: 1.6em;
}
.txt_lg_thin span {
    font-weight: 500;
    color: var(--main-color-2);
}

.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:var(--main-color-2);
}

.min_img img {
    width: 100%;
    min-width: 640px;
}

.txt_bullet {
    position: relative;
    padding-left: 16px;
    line-height: 1.4em;
    margin-top: 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: 30px;
    line-height: 1.4em;
    margin-top: 6px;
}

.txt_bullet_grey::before {
    content: url(../images/common/bullet_grey.png);
    position: absolute;
    left: 16px;
    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_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;
}

.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 .modal_wrap {
    background-color: #fff;
    z-index: 999 !important;
    padding: 20px;
    border: 1px solid #888;
    max-width: 800px;
    min-width: 300px;
}
.modal_conts .modal_wrap 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; top:98px; left: 0px; z-index:10000000002;cursor:pointer; }
.layer_popup p {margin: 0 auto; text-align: center;}
.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;
}*/

.layer_popup {position:absolute; max-width:450px; width: 100%; top:98px; left: 0px; z-index:10000000002;cursor:pointer; }
.layer_popup p {margin: 0 auto; text-align: center;}
.layer_popup .pop_close {  background-color: rgba(0,0,0,0.8);width: 100%; height: 30px; color: #fff; line-height: 30px;text-align: center; font-size: 14px;}

@media screen and (max-width:640px) {
    /*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;
    }*/

    .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; max-width: inherit;}
    .layer_popup p {margin: 0 auto; margin-top:50px; text-align: center;}
    .layer_popup p img {width:90%;}
    .layer_popup .pop_close {background-color: rgba(0,0,0,0.0); height: 30px; color: #fff; line-height: 30px;text-align: center;}
    
}


/*ì—°í˜ ë””ìžì¸ 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;
    justify-content: center;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}
.tab_link li{width:15%;}
.tab_link .tablinks {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px var(--c-black-5) solid;
    /*background:#fff;*/
    box-sizing: border-box;
    line-height: 1.3em;
    border-radius: 0.5rem;
    transition: 0.3s;
}
.tab_link .tablinks:last-child {
    margin-right: 0;
}
.tab_link .tablinks:hover, .tab_link .tablinks.active {
    /* border: 2px var(--main-color) solid; */
    background: var(--main-color-2);
    color: #ffffff;
}
.sub_tab_link .tablinks:hover, .sub_tab_link .tablinks.active{
    background: var(--main-color-2);
}






/*ì•„ì´ë´í‹°í‹°*/
.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: 2rem 2.5rem;
    background: #fafafa;
    border: 1px solid #efefef;
    -webkit-box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 5%);
    box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 5%);
    position: relative;
}
.tag_box .box.box04 {
    width: 24%;
}
.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: 70px;
    height: 70px;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    background: #20358ce3;
    padding: 10px;
    border-radius: 100px;
}
.tag_box .box .num p {
    border: 1px solid #ffffff80;
    font-weight: bold;
    font-size: 1.325rem;
    text-align: center;
    color: #fff;
    border-radius: 100px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tag_box .box .cont {
    padding-top: 1.5rem;
}
.tag_box .box .cont h4 {
    font-size: 1.125rem;
    text-align: center;
    color: #222;
    font-weight: 400;
}
.tag_box .box .cont h4 span, .tag_box .box .cont h4 span a {font-weight: 600;/* font-size: 1.2rem; */color: var(--sub-color-2) !important;}
.tag_box .box .cont h5 {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
    text-align: center;
    letter-spacing: normal;
    font-weight: 400;
}
.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(--sub-color-2);
}
.login_footer.login_done a {
    color: #fff;
}
.login_footer.login_done a:hover {
    color: #fff;
}
.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: var(--sub-color);
    height: 32px;
    line-height: 24px;
    width: 100px;
    text-align: center;
    vertical-align: top;
    font-size: var(--txt-sm);
    cursor: pointer;
    border: 1px solid var(--sub-color);
    color: var(--c-black-1);
    margin: 2px 10px;
    box-sizing: border-box;
    padding: 3px 0;
}

.btn_etc:hover {
    border: 0;
    background-color: var(--sub-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_lg {
    background: #f9f9f9;
    padding: 3rem;
    text-align: center;
}
.txt_box_lg h6 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4em;
}
.txt_box_lg p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #555;
    margin-top: 1rem;
    line-height: 1.4em;
    /* color: var(--sub-color-2); */
}
.txt_box_lg .material-icons-outlined, .txt_box_lg .material-icons {
    color: var(--main-color-2);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.txt_box_lg ul {
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    padding: 0 4rem;
}
.txt_box_lg ul.flex_03 {
    padding: 0 9rem;
    margin-top: 0;
}
.txt_box_lg li, .txt_box_lg li.txt_bullet_grey {
    text-align: left;
    width: 50%;
    color: #333;
    font-weight: 400;
    line-height: 1.6em;
    font-size: 1.125rem;
}
.txt_box_lg .flex_03 li, .txt_box_lg .flex_03 li.txt_bullet_grey {
    width: 33%;
    font-size: 1.125rem;
}

.txt_box_cir {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -1rem;
    position: relative;
}
.txt_box_cir:before {
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background: #ddd;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    z-index: -2;
}
.txt_box_cir .cir {
    width: 33%;
    background: #fdfdfd;
    border: 1px solid #aaa;
    border-radius: 1.325rem;
    aspect-ratio: 1/1;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
    margin: 2rem;
    position: relative;
}
.txt_box_cir .cir:before {
    content: '';
    position: absolute;
    width: 110%;
    border: 1px solid #dfdfdf;
    border-radius: 2rem;
    aspect-ratio: 1/1;
    top: -5%;
    background: #fff;
    z-index: -1;
}
.txt_box_cir .cir h6 {
    font-size: 1.5rem;
    FONT-WEIGHT: 500;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #222;
}
.txt_box_cir .cir:first-child {border: 1px solid var(--main-color-2);}
.txt_box_cir .cir:first-child h6 {border-bottom: 1px solid var(--main-color-2);}
.txt_box_cir .cir:nth-child(2) {border: 1px solid var(--sub-color);}
.txt_box_cir .cir:nth-child(2) h6 {border-bottom: 1px solid var(--sub-color);}
.txt_box_cir .cir:nth-child(3) {border: 1px solid var(--sub-color-2);}
.txt_box_cir .cir:nth-child(3) h6 {border-bottom: 1px solid var(--sub-color-2);}
.txt_box_cir .cir p {
    /* font-size: 0.925rem; */
    letter-spacing: -1px;font-weight: 400;}



.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;
  }

  
  .wait {display: flex; justify-content: center; align-items: center;}
  .wait img {
		max-width: 21.2rem;
		margin: 0 auto;
	}

.login_footer .txt_white{color:#fff;}

.modal_conts .pop_close { cursor: pointer; position: absolute;top: 10px;right: 20px;}
.modal_conts .pop_close img {width: 20px; padding-top: 12px;}

.tax_right {display: block; width: 100%; text-align: right; color: #666; font-size: 0.925rem; font-weight: 400; margin-top: 0.25rem;}
.wid-13 {width: 13% !important;}
.wid-15 {width: 15% !important;}
.wid-20 {width: 20% !important;}
.wid-26 {width: 26% !important;}
.wid-30 {width: 30% !important;}
.wid-33 {width: 33% !important;}
.wid-35 {width: 35% !important;}
.wid-39 {width: 39% !important;}
.wid-40 {width: 40% !important;}
.wid-45 {width: 45% !important;}
.wid-55 {width: 55% !important;}
.wid-61 {width: 61% !important;}
.wid-65 {width: 65% !important;}
.wid-50 {width: 50% !important;}

.tb_none {display: flex; justify-content: center; align-items: center; background-color: #efefef; width: 100%; padding: 3rem; font-size: 1.125rem; font-weight: 400;}