/* ------------------------------------------------------------- */
/* ------------------- 공통으로 들어가는 부분  ------------------- */
/* ------------------------------------------------------------- */
html{
font-size:16px; scroll-behavior:smooth; height: 100%; margin: 0;overflow-x: hidden;
/* max-width: 100vw; */
max-width: calc(100vw - (100vw - 100%));
overscroll-behavior: contain;
backface-visibility: hidden;
-webkit-overflow-scrolling: touch;
scroll-behavior: smooth;
}

body{
position: relative;
height: 100%;
font-weight: 500;
color:#fff;
background-color: #222;
width:100%;
letter-spacing: -0.02em;
line-height: 1.4;
font-size: 16px;
font-family:'pretendard';
scroll-behavior: smooth;

}

::selection {background-color: var(--main-color-dark);}
button, input, select{font-family: 'Pretendard';}

  
  /* 스크롤바의 폭 너비 */
  ::-webkit-scrollbar {
      width: 12px;  
  }
  
  ::-webkit-scrollbar-thumb {
      background: var(--main-color); /* 스크롤바 색상 */
      border-radius: 10px; /* 스크롤바 둥근 테두리 */
  }
  
  ::-webkit-scrollbar-track {
      background: #3d3d3d;  /*스크롤바 뒷 배경 색상*/
  }
/* 폰트 */

@font-face {
font-family: 'Pretendard-Regular';
src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}

/* ------------- 메인컬러 전역변수 -------------*/
:root {
	--main-color: #00A0E9;
	--main-color-dark: #0093D6;
	--main-color-light: #16ADF2;
}
.main-c{color: var(--main-color);}
.main-c-l{color: var(--main-color-light);}
.main-bg{background-color: var(--main-color);}
.main-bg-d{background-color: var(--main-color-dark);}
.bold{font-weight: 600;}

.bg-gray{background-color: #F9F9F9;}

/*header*/
header.nav-up { top: -100px; }
.header{ width: 100%; z-index: 99999 ; position: fixed; top: 0;  height: 100px; display: flex; transition: all 0.2s ease-in-out; border-bottom:1px solid rgba(255, 255, 255, 0.2); transform: translateZ(0);}

.index .header{border-bottom:1px solid rgba(255, 255, 255, 0.3);}

.header > div{ display: flex; justify-content: space-between; align-items:center; width: 100%;}
/* .header .inner{margin-left: 160px; padding-right: 60px;} */
 
/* 메인로고 */
.main_logo{width: 100px;color: #fff; font-family:'GangwonEduPowerExtraBoldA';}
.main_logo > a {width: 100%; height: auto; display: block; }

/* .header.h_on h1 a img{content:url(../img/main/logo-c.svg)} */
/* .header.h_on{ border-bottom:1px solid rgba(0, 0, 0, 0.05); background: rgba(255, 255, 255, 0.8);} */
.header.h_on{ border-bottom:1px solid rgba(0, 0, 0, 0.05); background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(12px);}
.header.h_on .nav_wrap .depth01>li > a,
.header.h_on .nav_wrap .depth01>li > em{color: #fff; }
.header.h_on .ham-btn span {background: #5f5f5f;}

.nav_wrap, .nav_wrap nav, .nav_wrap nav > ul {height: 100%;}

.login_page .header h1 a img{content:url(../img/main/logo.png)}
.login_page .ham-btn span {background: #5f5f5f !important;}
.login_page .header{ border-bottom:1px solid rgba(0, 0, 0, 0.05); background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(5px);}
.login_page .header .nav_wrap .depth01>li > a,
.login_page .header .nav_wrap .depth01>li > em{color: #222; font-weight: 500;}

/* 메인에서만 로고 컬러 있게끔 */
.index header .main_logo img{content: url(../img/main/logo-c.svg);}
/* .index .ham-box .ham-head .ham-logo img{} */

/* 메뉴영역 */
.nav_wrap .depth01{display: flex; font-weight: 300; align-items: center;}
.nav_wrap .depth01>li{text-align: center; font-size: 18px; cursor: pointer; color: #fff;position: relative; padding: 0 40px; display: flex; align-items: center; height: 100%;}
.nav_wrap .depth01>li > em:hover,
.nav_wrap .depth01>li > a:hover{color: var(--main-color-light) !important; font-weight: 600;}
.nav_wrap .depth01>li.mypage_h{font-size: 14px;border:1px solid #ddd; padding:10px 0; border-radius: 20px; height: fit-content; width: 120px; justify-content: center;}
/* .nav_wrap .depth01>li + li{margin-left: 60px;} */

.nav_wrap .depth02{position: absolute; left:50%;transform: translateX(-50%); width: max-content; background: rgba(0, 0, 0, 0.7); padding: 12px; font-size: 16px; font-weight: 300; top: 80%;display: none; border-radius: 8px;}
.nav_wrap .depth02 a{padding: 12px 25px; width: 100%; display: block;}
/* .nav_wrap .depth02 li:hover{background-color: #FFF; border-radius: 5px;} */
.nav_wrap .depth02 li:hover a {color: var(--main-color-light);}

/* 로그인 / 회원가입 */
.right_item > ul{display: flex;}
.right_item>ul>li{width: 70px; text-align: center; color: #fff; font-size: 16px; font-weight: 300;}


.noPost{width: 100%;}
.noPost > div {display: flex; flex-direction: column; align-items: center; justify-content: center; height: 350px;}
.noPost i{display: block; width: 70px; margin: 0 auto; margin-bottom: 20px; opacity: .5 ;}
.noPost i img{}
.noPost p{font-weight: 500; font-size: 18px; margin-top: 24px; color: #888;}



/* 햄버거 버튼 */
.btn_burger{display: none;}
.mo_nav{display: none;}

/* 탭메뉴 */
.burger_menu_on_wrap{display: none;}

/* 서브페이지 상단고정 헤더 */
.sub_header {width: 100%; height: 350px; margin-top: 250px; background: url(../img/sub/hd_top_img.png) bottom no-repeat #222222; background-size: cover; position: relative;}
.sub_hd_wrap{position: absolute; top: -118px; left: 50%; transform: translateX(-50%); width: 100%;}
.sub_hd_wrap h3 , .sub_hd_wrap p {color: #fff; text-align: left;}
.sub_hd_wrap h3{ font-size: 60px; font-weight: 500; font-family: 'SuseongDotum'; letter-spacing: 0;}
.sub_hd_wrap p{font-family: 'Pretendard-Regular'; font-size: 20px; font-weight: 500; opacity: 0.6;}

.sub_hd_wrap > div{display: none; overflow: hidden;}
.sub_header {position: relative;}


@keyframes fade{
    from{
      opacity: 0;
    }
    to{
      opacity: 1;
    }
  }

/* tab */
.sub_nav{font-size: 20px; padding-top: 5px;}
.sub_nav span{display: inline-block;}
.sub_nav .home{position: relative; top: 1px;}
.sub_nav i{display: inline-block; padding: 0 10px; position: relative; top: -2px;}
.sub_title{/* padding-bottom: 40px; padding-top: 80px; */ text-align: center;}
.sub_title span{text-align: center; font-size: 18px; font-weight: bold; display: inline-block; color: #e30613; border-bottom: 1px solid #e30613; display: none;}
.sub_title h1{text-align: center; font-size: 50px; font-weight: 500; display: none;}
.sub_tab{width: 100%; text-align: center; margin: 0 auto; margin-bottom: 96px;}
.sub_tab li{display: inline-block; width: 250px; border: 1px solid #ddd; font-size: 18px; padding: 14px 10px; margin: 0 4px; cursor: pointer;}
.sub_tab li.on{background: #e30613; color: #fff;}

.tab01_tit{display: none;}


.sub_tab_wrap{width: 100%; position: absolute; bottom: 0; border-top: 1px solid rgba(255, 255, 255, 0.4); background-color: rgba(0, 0, 0, 0.1);;}
.sub_tab_menu{position: relative; z-index: 150; color: #fff;}
.sub_tab_menu>li{height: 55px; float: left; border-right: 1px solid rgba(255, 255, 255, 0.4); box-sizing: border-box; line-height: 55px; cursor: pointer;}
.sub_tab_home{border-left: 1px solid rgba(255, 255, 255, 0.4);}
.sub_tab_title_box{width: 230px; position: relative; }

.tab_select_menu{line-height: 55px; background-color: rgba(255,255,255,.9); border: 1px solid #e7e7e7; border-top: 0; width: 100%; color: #333; display: none; position: relative; z-index: 500; padding: 5px 0;}
.tab_select_menu>li{padding: 0 20px; cursor: pointer;}
.tab_select_menu>li:last-child{border: 0;}
.sub_tab_title_box>span{padding: 0 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase;height: 100%; font-weight: 400;}
.sub_tab_title_box>span:after{content: ''; height: 8px; width: 8px; border-top: 1px solid #fff; border-left: 1px solid #fff; display: block; position: absolute; top: 48%; transform: translateY(-50%) rotate(225deg); right:20px;}
.sub_tab_title_box>.tab_plus_btn{width: 14px; height: 14px;display: inline-block; padding: 0; position: absolute; top: 16px; right: 25px;}
.tab_select_menu>li>a{width: 100%; height: 100%; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; font-weight: 400;}

.tab_in_menu{display: none;}
.sel_tit{display: none;}


.common_title{width: 100%; height: 350px; color: #fff;}
.common_title.company_title{background: url(../img/sub/company_bg.jpg)no-repeat; background-size: cover; background-position: center;}
/* .common_title01.product_title{background: url(../img/sub/product_bg.jpg)no-repeat; background-size: cover; background-position: center;} */
.common_title01.inquiry_title{background: url(../img/sub/inquiry_bg.jpg)no-repeat; background-size: cover; background-position: center;}
.common_title01 .inner{padding-top: 118px; text-align: center;}
.common_title01 .inner h1{font-size: 48px;}
.common_title02{background: linear-gradient( 45deg, #1e305f, #2142a1); color: #fff; padding: 10px 0;  margin-bottom: 130px;}
.common_title h1{text-align: center; line-height: 350px; font-size: 40px;}


/* 사이드버튼 */
.top_btn {position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; border-radius: 100%; background-color: var(--main-color);cursor: pointer; z-index: 99999; display: none; transition: all .15s; }
.top_btn:after{content:''; display: block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 1px solid var(--main-color); border-radius: 50%; height: 64px; width: 64px; transition: all .15s ;}
.top_btn > div {width: 100%; height: 100%;  display: flex; align-items: center; justify-content: center; flex-direction: column; position: relative; z-index: 2;}
.top_btn i {display: inline-block; width: 11px;}
.top_btn p {color: #fff;}
.top_btn:before{content: ''; display: block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background-color: rgb(0, 115, 182); width: 0; height: 0; border-radius: 50%; z-index: 1; transition: all .15s ;}
.top_btn:hover:before{width: 100%; height: 100%;}
.top_btn:hover:after{border-color: rgb(0, 115, 182);}

/* 공통 첫번째 헤더배너 */
.system_page .system_title,
.cus_page .tab .cus_tabs,
.cus_page .cus_title,
.membership_page .tab .membership_tabs,
.membership_page .membership_title, 
.analyze_page .analyze_title,
.my_page .tab .my_tabs,
.my_page .my_title{display: block;}

.mypage .my,
.mypage .mem_elem {display: block;}




/* last_banner (customer call_page) */
.sec06{width: 100vw; height: 100vh;padding: 200px 200px 200px 200px; background: url(../img/main/last.jpg) center no-repeat; background-size: cover; }
.last_bg_content{width: 100%; display: flex; justify-content: space-between;}
.deco{position: absolute; top: 0; left: 0; transform: translate(-30%, 70%);}
.deco_txt{font-size: 24px; font-weight: 800; padding-bottom: 30px; background: linear-gradient(0deg, #d19824, #dfa32c , #e0b867,#F9F295); clip-path: inset(1px); color: transparent; -webkit-background-clip : text;}
.left_bg_con{font-size: 142px; color: rgba(255, 255, 255, 0.5);  position: absolute; transform: translate(180px, 30px); }
.left_bg_tittle{font-size: 55px; color: #fff;  line-height: 1.2;}
.call_wrap{margin-top: 100px;}
.call_wrap > p {font-size: 30px; font-weight: 500; color: #fff;}
form{display: flex; gap: 10px;}
form > p{width: 25px; color: #fff; text-align: center; font-size: 30px; margin-left: 10px; margin-right: 10px; padding-top: 5px;}
input{border-radius: 4px; background-color: #fff; border: none;}
form>input:first-child{width: 165px; padding: 5px 10px 5px 10px;}
.input_tel{width: 250px; padding: 5px 10px 5px 10px;}
.end_num{width: 220px; padding: 5px 10px 5px 10px;}
/* 개인정보처리방침동의 */
.chk_box { margin-top: 20px; display: block; position: relative; padding-left: 35px; margin-bottom: 10px; cursor: pointer; font-size: 16px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; font-weight: 300; color: #fff; }
.chk_box button{color: #fff; font-family: inherit;font-size: 16px;  margin-left: 5px; position: relative;top:-1px}
/* 기본 체크박스 숨기기 */
.chk_box input[type="checkbox"] { display: none; }
/* 선택되지 않은 체크박스 스타일 꾸미기 */
.chk_on{ width: 22px; height: 22px; background: #ddd; position: absolute; top: 0; left: 0; border-radius: 2px;}
/* 선택된 체크박스 스타일 꾸미기 */
.chk_box input[type="checkbox"]:checked + .chk_on { background: #FFB015; }
.chk_on::after { content: ""; position: absolute; display: none; }
.chk_box input[type="checkbox"]:checked + .chk_on:after { display: block; }
.chk_on::after { width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); position: absolute; left: 9px; top: 5px; }
form>input:last-child{width:140px; background-color: red; border: none; color: #fff; cursor: pointer;}
.call_but{font-size: 20px; font-weight: 800;}
.right_con{padding-right: 10%;}
.call_num{font-size: 45px; font-weight: 900; margin-top: -20px; color: #fff;}
.center_con > ul > li > ul {display: flex;}
.center_con > ul > li > ul > li {color: #fff; font-size: 26px; font-weight: 600; padding-top: 10px;}
.center_con > ul > li > ul > li:first-child{padding-right: 20px; color: rgba(255, 255, 255, 0.6); font-weight: 400;}

.deposit_con{padding-top: 110px;}
.deposit_num{font-size: 45px; font-weight: 900; margin-top: -20px; color: #fff;}
.deposit_con > ul > li > ul {display: flex;}
.deposit_con > ul > li > ul > li  {color: #fff; font-size: 26px; font-weight: 600; padding-top: 10px;}
.deposit_con > ul > li > ul > li:first-child{padding-right: 20px; color: rgba(255, 255, 255, 0.6); font-weight: 400;}

/* 로그인상태에서의 배너 */


/*footer*/

footer .bold{font-weight: 500;}
footer{width: 100%; background: #222; font-size: 16px; font-weight: 300; color: #fff;  z-index: 99; position: relative; border-top: 1px solid #333;}
.footer_wrap{display: flex; flex-direction: column;}
.top_footer_wrap {}
footer .bd-xl{padding: 60px 0;}
.top_footer_wrap > div{display: flex; align-items: flex-end; justify-content: space-between;}
.top_footer_wrap .f-flex{display: flex; gap: 150px; align-items: flex-start;} 
/* .top_footer_wrap h2{width:220px;} */
.top_footer_nav > ul{display: flex; }
.top_footer_nav > ul > li{font-size: 16px; cursor: pointer;} 
.top_footer_nav > ul > li + li{margin-left: 30px;}

.f-admin{opacity: .3; cursor: pointer;}

.family-s{position: relative;}
.family-s p{cursor: pointer; padding: 12px 10px; border-bottom: 1px solid #fff; display: flex; align-items: center; gap: 30px; font-size: 18px; font-weight: 500;} 

.family-s .family-list{position: absolute; right: 0; bottom: 50px; width: 220px; display: none;}
.family-s .family-list ul{max-height: 250px; overflow-y: auto; background-color: rgba(0,0,0,.6); border-radius: 4px;}
.family-s .family-list ul li{ width: 100%; transition: all .15s;}
.family-s .family-list ul li a{padding: 12px 20px; cursor: pointer; display: block; font-size: 17px; color: #fff;}
.family-s .family-list ul li + li{border-top: 1px solid rgba(255,255,255,.2);}
.family-s .family-list ul li:hover{background-color: var(--main-color);}
.family-s .family-list ul li:hover a{color: #fff;}



.menu-f{gap: 24px; margin-bottom: 50px;}
.menu-f li a{font-size: 20px; font-weight: 500; }

.f-bottom {display: flex; flex-direction: column; gap: 24px;}
.f-bottom  > ul{display: flex; opacity: 0.8; }
.f-bottom  > ul li{position: relative;}
.f-bottom  > ul li + li:before{content: ''; width: 1px; height: 14px; background-color: #fff; opacity: .15; display: inline-block; position: relative; margin:0 12px;}


.index footer {background-color: transparent; border: none;}
.index footer .bd-xl{border-top: 1px solid rgba(255,255,255,.5); }

.bot_footer_wrap{padding-top: 30px;}
.bot_footer_wrap > div{display: flex; align-items: flex-end;justify-content: space-between;} 
.footer_logo_wrap{padding-bottom: 10px;}
.footer_logo_wrap > a{ font-size: 22px;}
.bot_top_footer > p{font-size: 16px; line-height: 1.8; color: #fff;}
.bot_top_footer > p span{position: relative;}
.bot_top_footer > p span + span:before{content: ''; width: 1px; height: 14px; background-color: #fff; opacity: .15; display: inline-block; position: relative; margin:0 12px;}

.bot_top_footer > p.copyright{color: rgba(255, 255, 255, 0.4); }

/* .ham-btn {display: none;} */
.ham-box {display: none !important;}
.ham-btn{cursor: pointer; display: flex; align-items: center; gap: 4px; color: #fff; font-weight: 300;}

.ham-box {display: block !important; position: fixed !important; top: 0; transform: translateY(-100%); right: 0; width: 100% ; height: 100vh; padding: 100px 30px !important; background: url(../img/main/bg-hambox.png) no-repeat center center #222; background-size: cover;  background-color: #222; transition: all 0.35s ease-in-out; z-index: 100000; opacity: 0; pointer-events: none;}
.ham-box .ham-head {display: flex; align-items: center; justify-content: space-between;}
.ham-box .ham-head .ham-logo {width: 120px;}
.ham-box .ham-head i {display: block; width: 23px;}

.ham-box.active{top: 0; opacity: 1; transform: translateY(0); pointer-events: auto;}

.ham-menu {margin-top: 100px;}
.ham-menu > ul {display: flex; justify-content: space-between; gap: 10px;}
.ham-menu ul > li > a {padding: 10px 0; display: block; font-size: 40px; font-weight: 700; color: #fff;}
.ham-menu ul > li ul {padding: 20px 0 ; }
.ham-menu ul > li ul li a {font-size: 24px; font-weight: 500; opacity: .7;}
.ham-menu ul > li ul li a:hover{opacity: 1; color: var(--main-color-light);}

.ham-menu.on {color: var(--main-color);}

.ham-main > a {position: relative; }
.ham-main > a::after {content: ""; display: block; background: url(../img/main/menu-angle.png) no-repeat center/cover; width: 20px; height: 20px; position: absolute; top: 30%; right: 0px; transform:rotate(0); transition: all 0.2s;}
/* .ham-box > span {display: inline-block; margin-top: 30px; padding: 9px 23px; background-color: #000; color: #fff; border-radius: 20px;} */
.ham-main > a.on {color: var(--main-color);}
.ham-main > a.on::after {background: url(../img/main/menu-angle-on.png) no-repeat center/cover; transform: rotate(90deg);  width: 20px; height: 20px;}


/* .header.h_on .ham-btn{color: #222;}
.header.h_on .ham-btn img{content:url(../img/main/hamburger-k.svg);} */

.close-btn {position: relative; right: 0; top: 0; display: block; position: absolute; width: 80px; height: 80px; cursor: pointer; display: flex; align-items: center; justify-content: center;}
.close-btn img{width: 30px; object-fit: contain;  opacity: .8;}
/* .close-btn span {position: absolute; display: block; width: 26px; height: 2px; background: #fff; top: 22px; left: 16px; right: 0; bottom: 0; margin: 0;}
.close-btn span:first-child {transform: rotate(45deg);}
.close-btn span:last-child {transform: rotate(-45deg);} */

/* ********************************************* *
* 1630px
* ********************************************* */
@media screen and (max-width: 1630px){

/*header*/
.bound{padding: 0 200px;}
/* 메인로고 */
/* .main_logo{width: 280px; color: #fff; font-size: 35px; font-family:'GangwonEduPowerExtraBoldA';} */
/* 메뉴영역 */
.nav_wrap ul{display: flex; font-weight: 300;}
.nav_wrap ul>li{ text-align: center; font-size: 20px; cursor: pointer; color: #fff;}
}


/* ********************************************* *
* 1500px
* ********************************************* */
@media screen and (max-width: 1500px){
    


/* 개인정보처리방침동의 */
.chk_box { margin-top: 20px; display: block; position: relative; padding-left: 35px; margin-bottom: 10px; cursor: pointer; font-size: 14px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; font-weight: 300; color: #fff; }
/* 기본 체크박스 숨기기 */
.chk_box input[type="checkbox"] { display: none; }
/* 선택되지 않은 체크박스 스타일 꾸미기 */
.chk_on{ width: 24px; height: 24px; background: #ddd; position: absolute; top: 0; left: 0; }
/* 선택된 체크박스 스타일 꾸미기 */
.chk_box input[type="checkbox"]:checked + .chk_on { background: #FFB015; }
.chk_on::after { content: ""; position: absolute; display: none; }
.chk_box input[type="checkbox"]:checked + .chk_on:after { display: block; }
.chk_on::after { width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); position: absolute; left: 9px; top: 5px; }
.right_con{padding-right: 0;}  
.call_num{font-size: 40px; font-weight: 900; margin-top: -20px; color: #fff;}
.center_con > ul > li > ul {display: flex;}
.center_con > ul > li > ul > li {color: #fff; font-size: 22px; font-weight: 600; padding-top: 10px;}
.center_con > ul > li > ul > li:first-child{padding-right: 20px; color: rgba(255, 255, 255, 0.6); font-weight: 400;}
.deposit_con{padding-top: 110px;}
.deposit_num{font-size: 40px; font-weight: 900; margin-top: -20px; color: #fff;}
.deposit_con > ul > li > ul {display: flex;}
.deposit_con > ul > li > ul > li  {color: #fff; font-size: 22px; font-weight: 600; padding-top: 10px;}
.deposit_con > ul > li > ul > li:first-child{padding-right: 20px; color: rgba(255, 255, 255, 0.6); font-weight: 400;}
}

/* ********************************************* *
* 1632px
* ********************************************* */
@media screen and (max-width: 1632px){
    footer .bd-xl{padding: 50px 16px; align-items: center;}
    .top_footer_wrap .f-flex h2{width: 130px;}
    .top_footer_wrap .f-flex{gap: 120px;}
    .menu-f li a{font-size: 18px;}
    .top_footer_nav > ul > li + li{margin-left: 20px;}
    .top_footer_nav > ul{margin-bottom: 30px;}
    .f-bottom{gap: 20px;}
    .bot_top_footer > p, .f-bottom > ul li{font-size: 15px;}

}


/* ********************************************* *
* 1420px
* ********************************************* */
@media screen and (max-width: 1420px){

    /* .main_logo {width: 260px;} */
    .nav_wrap .depth01>li {font-size: 18px; padding: 0 35px;}
    .nav_wrap ul>li {font-size: 16px;}
    

    .ham-menu ul > li > a{font-size: 32px;}
    .ham-menu{margin-top: 70px;}
    .ham-box{padding: 60px 30px !important;}
    .ham-box .ham-head .ham-logo{width: 100px;}
    .close-btn{width: 60px; height: 60px;}
    .ham-menu ul > li ul li a{font-size: 22px;}
    .ham-menu ul > li ul{padding: 12px 0;}
}

/* ********************************************* *
* 1214px
* ********************************************* */
@media screen and (max-width: 1240px){
    .main_logo{width: 85px;}
    .header{height: 90px;}
    .header > div {padding: 0 30px;}
    /* .main_logo {width: 230px;} */
    .nav_wrap .depth01>li {padding: 0 27px; font-size: 17px;}
    .nav_wrap .depth01>li.mypage_h {width: 108px;}
    .nav_wrap ul>li {font-size: 15px;}
    .nav_wrap .depth02 li a{padding: 12px 17px;}

    .sub_hd_wrap{top: -110px;}
    .sub_hd_wrap h3{font-size: 52px; }
    .sub_header{margin-top: 236px;}



}



/* ********************************************* *
* 1024px
* ********************************************* */

@media screen and (max-width: 1024px){

    .nav_wrap {display: none;}
    .header > div {position: relative;}
    /* .ham-btn {position: absolute; top: 50%; right: 50px; transform: translateY(-50%); display: flex; flex-direction: column; gap: 7px; align-items: flex-end; right: 30px;} */
    .ham-btn span {display: block;}
    /* .ham-btn span {background: ;} */
    .ham-btn{font-size: 15px;}
    .ham-btn span:nth-child(1) {width: 32px; height: 2px; background: #fff;}
    .ham-btn span:nth-child(2) {width: 20px; height: 2px; background: #fff;}


    .bot_footer_wrap > div {flex-direction: column; align-items: flex-start;}

    .f-admin{display: none;}


    .ham-menu ul > li > a{font-size: 26px;}
    .ham-menu{margin-top: 80px;}
    .ham-box{padding: 30px 20px !important;}
    .ham-box .ham-head .ham-logo{width: 100px;}
    .close-btn{width: 50px; height: 50px; top: -10px;}
    .close-btn img{width: 24px;}
    .ham-menu ul > li ul li a{font-size: 19px;}
    .ham-menu ul > li ul{padding: 10px 0;}
    .ham-box{background-position: left 10% center; }


    .top_footer_wrap .f-flex{gap: 80px;}
    .top_footer_wrap .f-flex h2{width: 110px;}
    .top_footer_nav > ul > li + li{margin-left: 0;}
    .top_footer_nav > ul{gap: 30px;}
    .top_footer_nav > ul{margin-bottom: 20px;}
    .f-bottom{gap: 12px;}
    .menu-f li a{font-size: 16px;}
    .bot_top_footer > p, .f-bottom > ul li{font-size: 14px;}
    .family-s p{font-size: 16px; padding: 10px 8px; }
    .family-s{position: relative; top: -10px;}
    .family-s{flex-shrink: 0;}
    .family-s .family-list ul li a{font-size: 15px; padding: 10px 16px; }
    .family-s .family-list{width: 180px;}
    footer .bd-xl{ align-items: flex-start;}
    .bot_top_footer > p{display: flex; flex-wrap: wrap;}
    .bot_top_footer > p span{flex-shrink: 0;}
}


/* ********************************************* *
* 960px
* ********************************************* */
@media screen and (max-width: 960px){
    .header {height: 80px;}


    .sub_hd_wrap{top: -94px;}
    .sub_hd_wrap h3{font-size: 45px; }
    .sub_header{margin-top: 204px; height: 260px;}


}


/* ********************************************* *
* 860px
* ********************************************* */
@media screen and (max-width: 860px){

    .f-bottom > ul li + li:before, .bot_top_footer > p span + span:before{display: none;}
    .f-bottom > ul, .bot_top_footer > p{gap: 6px 16px;}
    .bot_top_footer > p.copyright{margin-top: 16px;}
    .top_footer_wrap .f-flex h2{width: 90px;}
    .top_footer_wrap .f-flex{gap: 60px;}
    footer .bd-xl{padding: 40px 16px;}

}


/* ********************************************* *
* 768px
* ********************************************* */
@media screen and (max-width:768px){

    .fc-gray{font-size: 15px; margin-top: 8px;}

    footer .bd-xl{flex-direction: column; gap: 30px;}
    .top_footer_wrap .f-flex{flex-direction: column; gap: 40px; width: 100%;}
    .top_footer_wrap .f-flex h2{width: 110px; opacity: .8;}
    .top_footer_nav{width: 100%;}
    .family-s{position: absolute; right: 16px; top: 40px;}

    .bot_top_footer > p.copyright{padding-top: 16px; border-top: 1px solid #ffffff10; width: 100%;}

}


/* ********************************************* *
* 690px
* ********************************************* */
@media screen and (max-width:690px){

.mytab { padding: 20px 18px;}
/* .bot_top_footer > p {font-size: 12px; margin-bottom: 2px;}
.bot_bot_footer > p {font-size: 12px;}
.top_footer_nav > ul > li {font-size: 14px;} */
/* .top_footer_nav > ul > li:last-child {display: none;} */
    
}

/* ********************************************* *
* 640px
* ********************************************* */
@media screen and (max-width: 640px){
    /* .bot_top_footer > p {flex-direction: column; gap: 2px;} */
    .header {height: 70px;}
    .main_logo{width: 75px;}

    .header > div {padding: 0 20px;}
    .ham-btn {right: 20px;}



    .ham-menu ul > li > a{font-size: 22px;}
    .ham-menu{margin-top: 70px;}
    .ham-box{padding: 24px 16px !important;}
    .ham-box .ham-head .ham-logo{width: 75px;}
    .close-btn{width: 50px; height: 50px; top: -10px;}
    .close-btn img{width: 20px;}
    .ham-menu ul > li ul li a{font-size: 16px; padding: 8px 0;}
    .ham-menu ul > li ul{padding: 10px 0;}


    .top_btn {width: 40px; height: 40px;}
    .top_btn:after{width: 52px; height: 52px;}

    .sub_hd_wrap{top: -83px;}
    .sub_hd_wrap h3{font-size: 38px; }
    .sub_header{margin-top: 180px; height: 200px;}

}

/* ********************************************* *
* 593px
* ********************************************* */
@media screen and (max-width:593px){

.mytab { padding: 20px 18px;}
.mytab > a{ font-size: 16px;}
        
}

/* ********************************************* *
* 593px
* ********************************************* */
@media screen and (max-width:552px){

.mytab { padding: 20px 10px;}
            
}

/* ********************************************* *
* 530px
* ********************************************* */
@media screen and (max-width: 530px){

.right_con{display: block;}
.right_con > div{width: 100%;;}
.right_con > div + div{margin-top: 40px;}


.ham-menu > ul{flex-direction: column; gap: 30px;}
.ham-menu ul > li ul{display: flex; flex-direction: row; gap: 2px 20px; flex-wrap: wrap; padding: 0;}
.ham-box{padding: 20px 0 !important;}
.close-btn{top: -8px; }
.close-btn img{width: 18px;}
}

/* ********************************************* *
* 500px
* ********************************************* */
@media screen and (max-width: 500px){
/* .header {top: 15px;} */
.header > div {padding: 0 16px;}

.sub_hd_wrap{top: -66px;}
.sub_hd_wrap h3{font-size: 34px; }
.sub_header{margin-top: 155px; height: 170px;}

.left_bg_tittle {font-size: 30px; display: block; line-height: 1.4; }
.deco_txt {font-size: 16px; padding-bottom: 20px; }
.deco { top:-5px;}
.deco>img {border: 0;max-width: 100%;width: 55%;}
.call_wrap {margin-top: 15px;}
.call_wrap > p {font-size: 15px;}
.deposit_con > ul,
.center_con > ul {margin-top: 5px;}
.deposit_con > ul > li > ul > li,
.center_con > ul > li > ul > li { font-size: 16px; padding-top: 3px;}
.call_num,
.deposit_num{margin:0;}
.deco_txt{padding-bottom:8px;}
form>input:last-child {font-size: 16px;}
.footer_logo_wrap > a {font-size: 22px;font-weight: 100}

.li_tab > a {font-size: 16px;}

.ham-btn{font-size: 14px;}
/* .ham-btn img{width: 32px;} */


.top_footer_wrap .f-flex h2{width: 100px;}
.family-s p{font-size: 15px;}
.family-s .family-list ul li a{font-size: 14px;}
.top_footer_nav > ul{gap: 16px;}
.menu-f li a{font-size: 15px;}
/* .top_footer_wrap .f-flex{gap: 30px;} */
.f-bottom{gap: 10px;}
.bot_top_footer > p, .f-bottom > ul li{font-size: 13px;}

}

/* ********************************************* *
* 472px
* ********************************************* */
@media screen and (max-width:472px){

    .mytab { padding: 20px 5px;}
    .mytab > a{ font-size: 16px;}
    .ham-btn span:nth-child(1) {width: 27px;}
            
    .top_btn {bottom: 18px; right: 18px; }
    .top_btn > div {gap: 3px;}
    .top_btn p {font-size: 14px;}
    /* .top_btn i {width: 22px;} */

    /* .ham-box {padding: 16px !important;} */
    /* .ham-box .ham-head .ham-logo {margin-left: -10px;} */

    
    .ham-main > a::after {width: 13px; height: 18px;}
    .ham-main > a.on::after {width: 13px; height: 18px;}

    .header {height: 65px;}
    .main_logo {width: 66px;}
    /* .main_logo {width: 170px;} */
    .ham-btn {gap: 0;}
    .ham-btn{font-size: 0;padding: 0px; padding-right: 0;}
    .ham-btn img{}
    .ham-box .ham-head .ham-logo{width: 62px;}
    .close-btn{top: -10px; right: 6px;}
    .ham-menu{margin-top: 50px;}
}

/* ********************************************* *
* 422px
* ********************************************* */
@media screen and (max-width:422px){

.mytab > a{ font-size: 14px;}
        
}

/* ********************************************* *
* 400px
* ********************************************* */
@media screen and (max-width: 400px){

.sub_hd_wrap{top: -59px;}
.sub_hd_wrap h3{font-size: 28px; }
.sub_header{margin-top: 146px; height: 130px;}

.fc-gray{font-size: 14px; margin-top: 5px;}


/* .sub_hd_wrap {padding-top: 100px;}     */
.left_bg_tittle {font-size: 26px; font-weight: 100;}
.call_wrap > p {font-size: 16px;}
form>input:first-child {width: 30%;}
.tabs li { display: inline-block; vertical-align: middle; font-weight: 300 }

.mytab {padding: 20px 5px;}
.li_tab{padding: 20px 20px;}   
.cus_tabs > li > em {font-size: 16px;}

/* 탭 메뉴 on */
.mo_nav .depth01{width: 280px; height: 100%; position: fixed; z-index: 9; top: 0; right: -65px; opacity: 0.9; transition: all 0.3s;}
.mo_nav .depth01 > li >a {font-size: 16px; color: #fff;}
.mo_nav .depth01 > li >em {font-size: 16px; color: #fff;}


}

/* ********************************************* *
* 382px
* ********************************************* */
@media screen and (max-width:382px){

.mytab > a{ font-size: 12px;}
            
}

/* ********************************************* *
* 350px
* ********************************************* */
@media screen and (max-width: 350px){

form{flex-wrap: wrap; justify-content: space-between;}
form>input:first-child{width: 30%;}
.end_num{width: calc(63% - 15px);}
form>input:last-child{width: 100%; margin-left: 0;padding:12px;}
form > p{padding-top: 0; margin: 0;}

/* 탭 메뉴 on */
.mo_nav .depth01{width: 250px; height: 100%; position: fixed; z-index: 9; top: 0; right: -65px; padding: 75px 20px; opacity: 0.9; transition: all 0.3s;}
.mo_nav .depth01 > li >a {font-size: 16px; color: #fff;}
.mo_nav .depth01 > li >em {font-size: 16px; color: #fff;}

.mytab > a{ font-size: 11px;}

}

/* ********************************************* *
* 328px
* ********************************************* */

@media screen and (max-width: 328px){

.li_tab{padding: 15px 15px;}

}

/* ********************************************* *
* 320px
* ********************************************* */
@media screen and (max-width:320px){

.mytab{padding: 20px 3px;}
                
}


/* ********************************************* *
* 310px
* ********************************************* */

@media screen and (max-device-width: 310px){

.burger_menu_on_wrap > ul > li{font-size: 13px;}
.top_footer_nav > ul > li {font-size: 13px;}

}

/* ********************************************* *
* 300px
* ********************************************* */

@media screen and (max-device-width: 310px){

.mytab {padding: 15px 3px;}
.mytab > a{ font-size: 10px;}
    
}

/* ********************************************* *
* 290px
* ********************************************* */

@media screen and (max-device-width: 290px){

.burger_menu_on_wrap > ul > li{font-size: 13px;}


}

/* ********************************************* *
* 280px
* ********************************************* */

@media screen and (max-device-width: 300px){

/*footer*/
footer{padding: 30px 0 30px 0;}

}