
/* register btn */
.registerBtn_wrap{margin-top: 80px;
    text-align: center;
}
.registerBtn {width: 200px; height: 60px; 
    display: inline-block;
    background-color: #14335A;
    color: #fff; 
	font-size: 16px; font-weight: 500; letter-spacing: -0.15px;
    cursor: pointer;
    border: none;outline: none;
    overflow: hidden; 
    position: relative;
font-family: 'Pretendard-Medium';
}
.registerBtn a{  width: 100%; height: 100%;
    display: inline-block;
    line-height: 60px;
    position: relative; z-index: 5;
}
.registerBtn:before,
.regBox_contentBtn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition-delay: 0.2s;
  }
.registerBtn:after,
.regBox_contentBtn::after{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
    transition: 0.5s;
    transition-delay: 0.5s;
}
.registerBtn:hover::after,
.regBox_contentBtn:hover:after{left: 100%;}
/* //register btn */
/* hover */
.lineBtn:hover span{font-weight: 500;}
.lineBtn:hover::after{content:"";
    width: 100%; height: 100%;
    display: inline-block;
    position: absolute; left: 2px; top: 2px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000
}
/* ::: //button setting::: */
/* :::radio::: */
 .lnbformWrap00 label{margin-right: 30px;}
input[type="radio"]:checked,
input[type="radio"]:not(:checked) {
	position: absolute;
    opacity:0!important;
}
input[type="radio"]:checked + label,
input[type="radio"]:not(:checked) + label{position: relative;
    padding-left: 28px;
    cursor: pointer;
	font-family: Pretendard;
    display: inline-block;
    width: 130px;
    color: var(--txt-D); color: #444; font-size: 15px; font-weight: 400; line-height: 20px;
}
input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before {content: '';
    position: absolute;left: 0;top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    border: 1px solid #444;
    border-radius: 100%;
    background: #fff;
}
input[type="radio"]:checked + label{
    color: var(--txt-D); color: #444; font-size: 15px; font-weight: 400;
}
input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after { content: '';
    width: 10px; height: 10px;
    background: #333;
    position: absolute;  top: 5px;left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0); transform: scale(0);
}
input[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1); transform: scale(1);
}
@media (max-width: 1200px){
    .lnbformWrap00 label{margin: 0 20px;}
    .lnbformWrap00_a label{margin: 10px 10px 0 0!important;}
    .inr{ padding-left: 20px!important; padding-right: 20px!important;}
    
}
@media (max-width: 767px){
    .lnbformWrap00 label{margin-left: 0;}
    .lnbformWrap00_b label{margin: 10px 0 0 0;}
    .registerBtn{width: 170px;height: 50px;
        font-size: 18px;
    }
    .registerBtn a{line-height: 48px;}
    .registerBtn_wrap { margin-top: 50px;}
} 

/* ::://radio :::*/
/* :::select :::*/

  /** Custom Select **/
  .custom-select-wrapper {  position: relative;
    display: inline-block;
    user-select: none;cursor: pointer;
    border: 1px solid #eee;/* border-radius: 5px; */
    z-index: 9999;
  }
  .custom-select-wrapper select {display: none; }
  .custom-select { position: relative;
    display: inline-block;
    font: 13px/1.5 "Roboto", sans-serif;
    
  }
  .custom-select-trigger {position: relative;
    display: block;
    min-width: 130px;
    padding-left: 10px;
    font-weight: 100; color: #6e7c83; line-height: 50px;
    background-color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  /* .custom-select-trigger:before {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 50px;
    top: 3px;
    right: 50px;
    margin-top: -3px;
    border-right: 1px solid #c7d1d6;
    transition: all 0.35s ease-out;
    transform-origin: 50% 0;
  } */
  .custom-select-trigger:after { content: "";
    position: absolute;top: 50%;right: 20px;
    display: block;
    width: 10px; height: 10px;
    margin-top: -3px;
    border-bottom: 1px solid #c7d1d6; border-right: 1px solid #c7d1d6;
    transform: rotate(45deg) translateY(-50%);
    transition: all 0.35s ease-out;
    transform-origin: 50% 0;
  }
  .custom-select.opened .custom-select-trigger:after { margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
  }
  .custom-options {
    position: absolute;top: 100%;left: 0%; right: 0;
    display: block;
    width: 100%;
    margin: 10px 0;
    /* border-radius: 5px; */
     border: 1px solid #eee;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    opacity: 0;visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
  }
  .custom-select.opened .custom-options {
    opacity: 1; visibility: visible;
    pointer-events: all;
    transform: translateY(-8px);
  }
  .option-hover:before { background: #f9f9f9; }
  .custom-option {position: relative;
    display: block;
    padding: 0 22px;
    font: 13px/1.5 "Roboto", sans-serif;font-weight: 400;color: #b5b5b5;line-height: 47px;
    cursor: pointer;
    transition: all 0.05s ease-in-out;
  }
  .custom-option:first-of-type { 
      /* border-radius: 4px 4px 0 0;border-top-right-radius: 5px;border-top-left-radius: 5px;   */
}
  .custom-option:last-of-type { border-bottom: 0; 
    /* border-radius: 0 0 4px 4px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; */
 }
  .custom-option:hover,
  .custom-option.selection {color: #fff;
    background-color: #ccc;
  }
  @media(max-width: 767px){
    .custom-select-trigger { min-width: 100px;
        line-height: 38px;
      }
      .custom-option {  line-height: 38px;  }
  }
/* ::://select :::*/

/*-----
#  첨부파일 css 시작
------*/

.file_input_textbox {
    float:left;
    height:29px;
}
.file_input_div {
	text-align: center;
    position: absolute;
    width:70px;
	height:40px;
    overflow:hidden;
	/* margin-left: 10px; */
}
.file_input_div::before{content: "첨부하기";
    position: absolute; left: 0; top: 0;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    width: 70px;
    background-color: #666;
    color: #fff;

}
.file_input_img_btn {
	background-color: #999999;
	text-align: center;
	width: 50px;
	height: 40px;
	border-radius:0px;
    display: none;
}

.file_input_img_btn img{
	display: inline-block;
	width: 100%;
}

.file_input_hidden {
    font-size:29px;
    position:absolute;
    right:0px;
    top:0px;
    opacity:0;
    filter: alpha(opacity=0);
    -ms-filter: alpha(opacity=0);
    cursor:pointer;
}

.file_up_load_box{
	height: 40px;
    width: 100%;
}

.file_up_load_box input{
	height: 40px !important;
	width: 100%;
    background-color: #f7f7f7;
    font-size: 15px;
    margin-left: 80px!important;
    border: none !important;
    padding-left: 20px!important;
	font-family: Pretendard;
}
.file_up_load_box input::placeholder{
	color: #999999;
	font-size: 13px;
	font-family: Pretendard;
}

/*-----
#  첨부파일 css 끝
------*/

/* ======================================SUB COMMON ======================================*/
.gnb_Tit {
    font-family: 'Noto Sans KR';
    font-size: 50px;
    color: var(--txt-w);
    color: #111;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -0.5px;
}
#container{margin-top:9.2rem;overflow: hidden;}
/*:::::::::: tabmenu ::::::::::*/
.lnbTabmenu{width: 100%; height: 60px;
    position: relative;bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.sub06Tab .tabMenu_list{flex: 1;}
.tabMenu_Wrap{width: 100%;
    display: flex; 
    border-bottom: 1px solid #eee;
}
.tabMenu_list{width: calc(100% / 4); height: 60px;
    text-align: center; color: #222;
    background: #fff;
}
.tabMenu_list:first-child{border-left: 1px solid #eee;}
.tabMenu_list:last-child{border-right: 1px solid #eee;}
.tabMenu_list:not(:last-child){border-right: 1px solid #eee;}
.tabMenu_list a{height: 60px; width: 100%;
    line-height: 60px; font-size: 16px;
    display: inline-block;
}

/* hover */
.tabMenu_list.on, 
.tabMenu_list:hover{color: var(--txt-w); color: #fff; border: none;}

.tab_b .tabMenu_list.on, 
.tab_b .tabMenu_list:hover{background-color: var(--tab-B); background-color: #153359;}

.tab_p .tabMenu_list.on, 
.tab_p .tabMenu_list:hover{background-color: var(--tab-P); background-color: #4E1D60;}

.tab_g .tabMenu_list.on, 
.tab_g .tabMenu_list:hover{background-color: var(--tab-G); background-color: #1E5542;}

/* //hover */
/* :::::::::://tabmenu ::::::::::*/

/* ::::::::::lnbContainer:::::::::: */
.lnbContainer{width: 100%;
    padding: 12rem 2rem 8rem 2rem ;
}
.lnb_titWrap{display: inline-block; 
    margin: 0px 0 20px 0;
}
.lnbContainer_titWrap{position: relative;}
.lnb_titWrap02 {
    margin-bottom: 20px!important;
}
.lnb_tit {
    margin-bottom: 1rem;
    font-family: 'Pretendard-SemiBold';
    display: block;
    font-size: 3.2rem;
    letter-spacing: -0.15px;
    font-weight: bold;
    color: var(--txt-D);
    color: #222;
}
.lnb_desc{padding-top: 10px;
font-family: 'Pretendard-Light';
    font-size: 16px; letter-spacing: -0.15px; color: var(--txt-M); color: #444; line-height: 30px;font-weight: 300;
}
.breadScrumbs{display: inline-block;
    float: right;
    line-height: 27px;
    position: absolute;right: 0; top: 0;
}
.breadScrumbs small{font-family: Pretendard; font-size: 14px; color: var(--txt-M); color: #444; letter-spacing: -0.4px; }
.breadScrumbs small:not(:last-child)::after{content:"";
    width: 7px; height: 10px;
    display: inline-block;
    background: url(../img/icon/rightArrow_breadScrumbs.png) no-repeat center;
    background-size: 100%;
    margin: 0 4px 0 8px;;
    
}
/*:::::::::: //lnbContainer ::::::::::*/

/*:::::::::: scroll ::::::::::*/
.tabMenu_Wrap::-webkit-scrollbar { height: 0px;}
.tabMenu_Wrap::-webkit-scrollbar-track {box-shadow: inset 0 0 0px #eee;}
/* .lnbTabmenu.tab-b .tabMenu_Wrap::-webkit-scrollbar-thumb { background: var(--tab-B); background: #153359; }
.lnbTabmenu.tab-p .tabMenu_Wrap::-webkit-scrollbar-thumb { background: var(--tab-P); background: #4E1D60; }
.lnbTabmenu.tab-g .tabMenu_Wrap::-webkit-scrollbar-thumb { background: var(--tab-G); background: #1E5542; } */
/* :::::::::://scroll:::::::::: */

/* media */
@media (max-width: 1100px){
	#container {
		margin-top: 7rem;
	}
}
@media (max-width: 991px){
    .tabMenu_list {width: calc(100% / 4); height: 40px;}
    .tabMenu_list a {line-height: 40px!important; font-size: 14px;
        height: 40px!important;letter-spacing: -0.5px;
    }
    .lnbTabmenu { bottom: 49px; }
    .lnbContainer { padding: 6rem 2rem 8rem 2rem;}
    .topImgWrap {margin-bottom: 2rem!important;}

}
@media (max-width: 767px){
	#container {
		margin-top: 5rem;
	}
    .tabMenu_Wrap .tabMenu_list{min-width: 145px!important}
    .tabMenu_Wrap {overflow: hidden; overflow-x: auto;}
    .topImgWrap {margin-bottom: 3rem!important;}
	.lnb_titWrap {
		display: inline-block;
		margin: 0px 0 20px 0;
	}
	   .lnbContainer {
		padding: 6rem 2rem 4rem 2rem;
	}
    .lnbContainer_titWrap{margin-bottom: 0;}
    .lnbTabmenu { width: 100%; max-width: 100%;
        padding: 0!important;
    }
}

/* //media */
/* ======================================//SUB COMMON ======================================*/

/* ======================================SUB VISUAL ======================================*/
.subVisual {
    width: 100%;
    height: 30rem;
    background-size: cover!important;
}
.subVisual .inr{
    display: flex; align-items: center;
}
.subV_bg01{ background: url(../img/visual/subVisual01.jpg) no-repeat center / cover;}
.subV_bg02{ background: url(../img/visual/subVisual02.jpg) no-repeat center / cover;}
.subV_bg03{ background: url(../img/visual/subVisual03.jpg) no-repeat center / cover;}
.subV_bg04{ background: url(../img/visual/subVisual04.jpg) no-repeat center / cover;}
.subV_bg05{ background: url(../img/visual/subVisual05.jpg) no-repeat center / cover;}
@media (max-width: 1200px){
    .gnb_Tit {font-size: 40px;}
    
}
@media (max-width: 991px){
    .gnb_Tit {font-size: 35px;}
	   .subVisual {
		height: 25rem;
	}
}
@media (max-width: 767px){
    .gnb_Tit {font-size: 3rem;}
    .subVisual {height: 30rem;}
    .subV_bg01{ background: url(../img/visual/subVisual01mo.jpg) no-repeat center;}
    .subV_bg02{ background: url(../img/visual/subVisual02mo.jpg) no-repeat center;}
    .subV_bg03{ background: url(../img/visual/subVisual03mo.jpg) no-repeat center;}
    .subV_bg04{ background: url(../img/visual/subVisual04mo.jpg) no-repeat center;}
    .subV_bg05{ background: url(../img/visual/subVisual05mo.jpg) no-repeat center;}
}
@media (max-width: 767px){
    .gnb_Tit {font-size: 28px;}
}
/* ======================================//SUB VISUAL ======================================*/

/* ======================================SERVICE TYPE LAYOUT ======================================*/
.topImgWrap {
    margin-bottom: 2rem;
}
.topImgWrap figure img{width: 100%; max-height: 250px;}
.type01_list {
    margin-top: 2rem;
    padding: 0rem 0rem 0rem 3.4rem;
    width: 100%;
    position: relative;
}
.listNum {
    top: 0.3rem;
    left: 0rem;
    position: absolute;
    width: 2.5rem;
    display: inline-block;
    vertical-align: top;
}
.listNum small{display: inline-block;
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    color: var(--txt-w); color: #fff; text-align: center; 
	line-height: 2.5rem;
	font-family: 'Montserrat', sans-serif; font-weight: bold; font-size:1.5rem;
}
.tab_b .listNum small{background-color: var(--tab-B); background-color: #14335A;}
.tab_p .listNum small{background-color: var(--tab-P); background-color: #4E1D60;}
.tab_g .listNum small{background-color: var(--tab-G); background-color: #1E5542;}
.listTit {
    font-size: 2rem;
    line-height: 3rem;
    letter-spacing: -0.3px;
    font-weight: bold;
    font-family: 'Pretendard-SemiBold';
    /* width: 23%; */
    display: block;
    vertical-align: top;
}
.tab_b .listTit{ color: var(--tab-B); color: #14335A;}
.tab_p  .listTit{ color: var(--tab-P); color: #4E1D60;}
.tab_g  .listTit{ color: var(--tab-G); color: #1E5542;}
.listDesc{display: inline-block;
font-family: 'Pretendard-Light';
    max-width: 73%;
    font-size: 16px;font-weight: 300; line-height: 31px;letter-spacing: -0.15px; color: var(--txt-L); color: #888
}
.listDesc .fontBold{ font-family: 'Pretendard-Medium';font-weight: 500!important; color: var(--txt-M); color: #444}
.listDesc:nth-of-type(2){    margin: 20px 0 0 320px;
    width: 100%;
    display: block;
}
@media (max-width: 1200px){
    .listTit br,
    .listTit .tBr{display: none;}
    .listDesc {font-size: 16px;line-height: 30px;max-width: 98% !important;
        padding: 10px 0 0 35px;}
    .listTit .tBr{display: none;}
    .listDesc:nth-of-type(2){margin: 0;}
}
@media (max-width: 991px){
    .lnb_tit  {font-size: 2.8rem;}
    .breadScrumbs {line-height: 25px;}
	.type01_list {
		margin-top: 2rem;
		padding: 0rem 0rem 0rem 3rem;
	}
    .listTit {
		font-size: 1.6rem;
		line-height: 2.5rem; 
        /* width:35%!important; */
    }
	.listNum {
		top: 0.2rem;
		width: 2.5rem;
	}
    .listNum small {
		width: 2.1rem;
		height: 2.1rem;
		font-size: 1.2rem;
		line-height: 2.1rem;
	}
    .listDesc {font-size: 14px; line-height: 26px; }
    .listTit br{display: none;}
    /* .listTit .tBr{display: block;} */
    .listDesc:nth-of-type(2){margin: 20px 0 0 0!important;}
}
@media (max-width: 767px){
    .listDesc{display: block;
        padding-top: 5px;
        max-width: 100%;
        padding: 10px 0 0 0 !important
    }
    .listTit .tBr{display: none;}
    .listTit{width: auto; line-height: 30px!important;}
}
@media (max-width: 500px){
    .lnb_tit {
		margin-bottom: 0rem;
		font-size: 2rem;
	}
    .breadScrumbs {line-height: 20px;}
    .breadScrumbs small {font-size: 12px;}
    .breadScrumbs small:not(:last-child)::after{margin: 0 0 0 6px!important}
    .listTit .mBr{display: block;}
    /* .listNum {line-height: 25px; */
        /* width: 16px; */
    /* } */
    .listTit {line-height: 25px!important; }
}
/* ======================================//SERVICE TYPE LAYOUT ======================================*/

/* ======================================REGISTER FORM LAYOUT ======================================*/
.lnbInfoBox{width: 100%;
    padding: 22px 40px; margin-bottom: 2rem;
}
.lnbInfoBox.info_b{background-color: var(--info-B); background-color: #F2F7FC;}
.lnbInfoBox.info_p{background-color: var(--info-P); background-color: #FBF9FC;}
.lnbInfoBox.info_g{background-color: var(--info-G); background-color: #F7FAF9;}
.lnbInfoList{font-size: 16px; letter-spacing: -0.15px; font-weight: 400; color: #333;
    position: relative; padding-left: 25px; line-height: 20px;
	font-family: Pretendard;
}
.lnbInfoList::before{content:"";
    width: 14px; height: 10px;
    display: inline-block;
    vertical-align: middle;
    position:absolute; left: 0; top: 4px;
}
.info_b .lnbInfoList::before{background:url(../img/icon/infoCheck_b.png) no-repeat center;
    background-size: 100%;
}
.info_p .lnbInfoList::before{background:url(../img/icon/infoCheck_p.png) no-repeat center;
    background-size: 100%;
}
.info_g .lnbInfoList::before{background:url(../img/icon/infoCheck_g.png) no-repeat center;
    background-size: 100%;
}
.lnbInfoList + .lnbInfoList{ margin-top: 10px}
.lnbformWrap01,
.lnbformWrap00{border-top: 2px solid #000;}
.lnbformWrap01  .formWrap,
.lnbformWrap00 .topCheckWrap{display: flex;
    border-bottom: 1px solid #eee;
}
.formBox,
.topCheckBox{flex: 1; 
    position: relative;
    padding: 20px 0 20px 140px;
    margin: 0 20px    
}

.routesel .custom-select{
	width:100%;
}
#addtext{display:none;}
.custom-select select {
	font-family: Pretendard;
	background-position: 98%;
    min-height: 40px;
    width: 100%;
    padding: 0 20px;
    background-color: #F7F7F7;
    border: none;
    outline-color: #222;
    font-weight: 450;
}

.formBox + .formBox{margin-left: 50px;}
.lnbformWrap01 .formWrap label,
.fileBox strong,
.lnbformWrap00 .topCheckBox strong{ position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
	font-family: 'Pretendard-Medium';
    font-size: 16px; letter-spacing: -0.15px; font-weight: 500; color: var(--txt-D); color: #222; line-height: 24px;
}
.lnbformWrap00 .topCheckBox strong dt {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #EC3B26;
    position: relative;
    top: -15px;
    right: -5px;
}
.formWrap .formBox label dt{
	display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #EC3B26;
    position: relative;
    top: -15px;
    right: -5px;
}
.lnbformWrap01 .txtBox label{
    font-family: 'Pretendard-Medium';
    position: absolute; left: 0; top: 20px;
    font-size: 16px; letter-spacing: -0.15px; font-weight: 500; color: var(--txt-D); color: #222; line-height: 24px;
}
.comper{display:none;margin:0 20px!important;}
/* .birmar{margin-left:20px!important;} */
.formBox input::placeholder,
.filename,
.lnbformWrap01 textarea,
.lnbformWrap01 textarea::placeholder{
	font-family: Pretendard;
    font-size: 14px!important; color: var(--txt-L); color: #aaa;  font-weight: 300;
}
.lnbformWrap01 .formWrap input[type=text],
.lnbformWrap01 .formWrap input[type=password]{
	font-family: Pretendard;
	min-height: 40px;width: 100%;
    padding: 0 20px ;
    background-color: #F7F7F7;
    border: none;
    outline-color: rgba(0,0,0,0);
    font-weight: 400;
	font-size: 15px;
}

.formWrap input:-webkit-autofill,
.formWrap input:-webkit-autofill:hover,
.formWrap input:-webkit-autofill:focus,
.formWrap input:-webkit-autofill:active {
transition: background-color 5000s;
/* -webkit-text-fill-color: #F7F7F7 !important; */
}

.lnbformWrap01 .txtBoxWrap,
.lnbformWrap01 .fileBoxWrap{ border-bottom: 1px solid #Eee;}
.lnbformWrap01 .txtBox{padding: 20px 0 20px 140px;
    position: relative;
    margin: 0 20px
}
.freeFileBoxWrap{position: relative;
     padding: 20px 0 20px 140px;    margin: 0 20px;
    }
.lnbformWrap01 textarea{ width: 100%;
    padding: 15px ;
    background-color: #F7F7F7;
    border: none;
    outline-color: rgba(0,0,0,0);
    font-size: 14px; color: var(--txt-L); color: #222;line-height: 24px;  font-weight: 400;
    font-family: 'Noto Sans KR'; font-size: 15px;
}
.txtBox00 textarea{height: 60px;}
.txtBox01 textarea{height: 120px;}
.txtBox02 textarea{height: 160px;}
.txtBox03 textarea{height: 320px;}
textarea::placeholder{
    font-size: 15px; letter-spacing: -0.15px; color: var(--txt-D); color: #444; font-weight: 400;
}
.lnbformWrap01 .fileBox{padding: 10px 0 10px 140px;
    position: relative;
    margin: 0 20px
}
.btcd-f-input { display: block;
    width: 490px;
    position: relative;
    overflow: hidden;
	margin-bottom: 4px;
}
.btcd-f-input > div > input::-webkit-file-upload-button {  cursor: pointer;}
.btcd-f-wrp {cursor: pointer;
    display: flex;
}
.btcd-f-wrp > button {
    cursor: pointer;
    background: #666;
    display: inline-block;
    border-radius: 5px;border: none;
    margin-right: 8px; padding: 5px;
    height: 40px;width: 80px;
    position: relative;
    font-size: 14px; color: #fff; text-align: center; line-height: 40px;
}
.btcd-f-wrp > button > img { width: 24px;
    display: none;
}
.btcd-f-wrp > button > span{position: absolute; left: 0; top: 0; width: 100%;}
.btcd-f-wrp > button > span,
.btcd-f-wrp > span,
.btcd-f-wrp > small {
    vertical-align: super;
}
.btcd-f-title{flex: 1;
    background-color: #f7f7f7;
    padding-left: 10px; font-size: 13px!important;letter-spacing: -1px; color: #888;font-weight: 300; line-height: 40px;
}
.fileWrap{display: inline-block;}
.btcd-f-input > .btcd-f-wrp > input {
    z-index: 100;
    width: 100%;height: 40px;
    position: absolute; left: 0;
    opacity: 0;
    cursor: pointer;
}
.btcd-files > div {display: flex;align-items: center;
    background: #f8f8f8;
    border-radius: 5px;
    margin-left: 87px;
    width: 100%;height: 40px;
    margin-top: 10px;   
    padding-left: 10px;
}
.btcd-files > div > div {display: inline-block;
    width: 73%;
}
.btcd-files > div > div > small {color: gray;}
.btcd-files > div > img {
    width: 40px; height: 40px;
    margin-right: 10px;
    border-radius: 10px;
    display: none;
}
.inbAgreeWrap{margin-top: 80px;}
.agreeBox{  border: 1px solid #eee;
    padding: 20px;
}
.agreeSCorll {
    width: 100%;
    position: relative;
    height: 240px;
    overflow: auto;
    padding-right: 10px;
}
.agreeSCorll::-webkit-scrollbar{width: 5px;}
.agreeSCorll::-webkit-scrollbar-track{background-color: #fafafa;border-radius: 10px;}
.agreeSCorll::-webkit-scrollbar-thumb{background-color: #dddddd;border-radius: 10px;}
.agreeBox_tit{font-size: 14px; color: var(--txt-D); color: #444; letter-spacing: -0.15px;font-weight: 500; line-height: 21px;
    padding-bottom: 20px;
	font-family: 'Pretendard-Medium';
    display: block;
}
.agreeBox_desc{font-family: 'Pretendard-Light';font-size: 14px; color: var(--txt-L); color: #888; letter-spacing: -0.15px;font-weight: 300; line-height: 24px;}
.agreeBox_desc:nth-of-type(1){padding-top: 0px;}
.agreeBox_desc{padding-top: 14px;}
.checkWrap{padding-top: 18px;}
.lnbformWrap01 .checkWrap input[type=checkbox]{
    border: 1px solid #ddd
}
.lnbformWrap01 .checkWrap label{
   font-size: 14px; font-weight: 500; line-height: 24px; color: var(--txt-D); color: #444
}
/* The container */
.checkBox {display: block;
font-family: 'Pretendard-Medium';
    position: relative;
    padding-left: 20px;margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px; color: var(--txt-D); color:#444; line-height: 24px; font-weight: 500;
    -webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkBox input { height: 0; width: 0;
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom checkbox */
  .checkmark {position: absolute; top: 50%;;left: 0;
    height: 14px;width: 14px;
    background-color: #fff;
    border: 2px solid #ddd;
    transform: translateY(-50%);
  }
  
  /* On mouse-over, add a grey background color */
  .checkBox:hover input ~ .checkmark {background-color: #ccc; }
  
  /* When the checkbox is checked, add a blue background */
  .checkBox input:checked ~ .checkmark {}
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkBox input:checked ~ .checkmark:after {display: block; }
  
  /* Style the checkmark/indicator */
  .checkBox .checkmark:after {left: 30%; top: -4px;
    width: 5px; height: 11px;
    border: solid #153359; border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);
  }
  .lnbflexibleForm .lnbformWrap01 { display: none;}
  .lnbflexibleForm .lnbformWrap01.on {  display: block;}
  @media (max-width: 991px){
    .formBox,
    .lnbformWrap01 .txtBox,
    .freeFileBoxWrap { padding: 20px 0 20px 80px;}
    .formBox + .formBox {
        margin-left: 20px;
    }
    .formBox input::placeholder,
    .filename{
        font-size: 13px; letter-spacing: -0.15px; color: var(--txt-L); color: #888
    }
  }
  @media (max-width: 900px){
	  .formBox, .lnbformWrap01 .txtBox, .freeFileBoxWrap {
		padding: 20px 0 20px 90px;
	}
  }
  @media (max-width: 767px){
    .lnbInfoList {font-size: 14px;}
    .lnbInfoBox { margin-bottom: 2rem;
        padding: 20px;
    }
    .fileBox label {width: 65px; height: 40px;}
    .fileBox .filename {width: calc(100% - 75px);}
    .lnbformWrap01 .formWrap label, 
    .lnbformWrap01 .txtBox label, 
    .fileBox strong{position: static;
        display: inline-block;
        line-height: 24px;
    }
    .formBox,
    .lnbformWrap01 .txtBox,
    .fileBox { padding: 20px 0}
    .lnbformWrap01{padding: 0;}
    .lnbformWrap01 .formWrap { display: block;
        border: none;
    }
    .lnbformWrap01 .txtBox label{padding-bottom: 15px;}
    .formBox + .formBox {margin-left: 0;}
    .formBox{border-bottom: 1px solid #eee;}
    .inbAgreeWrap {margin-top: 40px;}
	.birmar {
		margin-left: 0px!important;
	}
	.comper {
		display: none;
		margin: 0 0px!important;
	}
    .formBox, .topCheckBox{margin: 0;}
    .topCheckBox{margin: 0;
        padding: 25px 0 20px 0;
    }
    .lnbformWrap01 .txtBox, .lnbformWrap01 .fileBox,
    .freeFileBoxWrap{padding: 20px 0; margin: 0}
    .btcd-f-input{width: 100%;}
	
	.lnbformWrap00 .topCheckBox strong dt {
		top: -13px;
		right: -3px;
	}
	.formWrap .formBox label dt{
		top: -13px;
		right: -3px;
	}
	
	.txtBox00 textarea{height: 120px;}
  }
  @media (max-width: 500px){
      .lnb_desc {font-size: 14px}
      .agreeBox_desc {font-size: 12px;}
  }
/* ======================================//REGISTER FORM LAYOUT ======================================*/
/* ======================================SUB TYPE03 LAYOUT ======================================*/
.topCheckBox{position: relative;}
.lnbformWrap00{
    margin-bottom: 80px;
}
.topCheckBox label{width: 120px;
    color: var(--txt-D); color: #444; font-size: 15px; font-weight: 400;
}
.topCheckBox label + label{margin-left: 30px;}
@media (max-width: 991px){
    .txtBox label br{display: none;}
    .txtBox label .mBr{display: block;}
    .formBox label .mBr{display: block;}
}
@media (max-width: 767px){
    .lnbformWrap00 { margin-bottom: 40px;}
    .txtBox label .mBr,
    .formBox label .mBr{display: none!important;}
    .detailInfo::placeholder br{
        display: none;
    }
    .topCheckBox strong{position: static!important;
        width: 100%;
        display: block;
    }
}
/* ======================================//SUB TYPE03 LAYOUT ======================================*/

/* ======================================PROCEDURE LAYOUT ======================================*/
.lnbContainer_type03 {
    margin-top: 2rem;
}
.lnbTimelineWrap{min-height: 300px;
    position: relative;
}
.lnbTimelineBox{position: absolute; left: 0; bottom: 0;
    width: 100%;
}

.lnbTimeline_line{ width: 0%; height: 1px;
    display: block;
    background-color: #ddd;
    position: absolute; left: 0%; top: 50%;
    transform: translateY(-50%);
    transition: width 1.6s ease-in;
}

.lnbTimeline_line::before{content:""; width: 30%; height: 2px;
    background-color: aqua;
    display: inline-block;
    position: absolute; left: 21%; top: 50%;
    transform: translateY(-50%);
}
.tab_b .lnbTimeline_line::before{background-color: #DFEDFB;}
.tab_p .lnbTimeline_line::before{background-color: #F3E8F9;
    width: 25%;
    left: 44%;
}
.tab_g .lnbTimeline_line::before{background-color: #E5F3EF;}

.lnbTimeline_line::after{content:""; width: 30%; height: 2px;
    background-color: pink;
    display: inline-block;
    position: absolute; right: 21%; top: 50%;
    transform: translateY(-50%);
}
.tab_b .lnbTimeline_line::after{background-color: #F3E8F9;}
.tab_p .lnbTimeline_line::after{background-color: #DFEDFB;
    width: 12%;
    right: 19%;
}
.tab_g .lnbTimeline_line::after{background-color: #FDF4EB;}

.lnbTimelineBox ul{display: flex;justify-content: space-around; align-items: center;
    height: 215px;
}
.lnbTimelineBox ul>li{ position: relative;
    text-align: center;
    flex: 1 auto;
    opacity: 0;
    transition: opacity 0.5s;
}

.lnbTimelineBox ul>li:nth-of-type(5) dl{ top: -135px!important;}
.lnbTimelineBox ul>li:nth-of-type(5) dl::after{content: "";
    display: inline-block;
    width: 1px;height: 50px;
    border-left: 1px dashed #ddd;
    position: absolute;left: 50%;top: 110%;
    transform: translateX(-50%);
}
.lnbTimelineBox ul>li .regiComplete::after{content: "";
    display: inline-block;
    width: 1px;height: 110px;
    border-left: 1px dashed #ddd;
    position: absolute;left: 50%;top: 110%;
    transform: translateX(-50%);
}
.lnbTimelineBox ul>li .regiComplete{    top: -135px!important;
    font-size: 16px;
    font-weight: 500;
    width: 100px;
}
.lnbTimelineBox ul>li .regiComplete::after{top: 160%!important;}

.lnbTimelineBox ul>li::before{content:"";
    width: 12px;height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.tab_b .lnbTimelineBox ul>li::before{background-color: #0048A3;}
.tab_p .lnbTimelineBox ul>li::before{background-color: #6A1E8D;}
.tab_g .lnbTimelineBox ul>li::before{background-color: #0E8A5D;}
.lnbTimelineBox ul>li:nth-child(3n+1)::before{
    width: 12px;height: 12px;
    border: 5px solid ;
    background: #fff;
}
.tab_b .lnbTimelineBox ul>li:nth-child(3n+1)::before{border-color: #0048A3;}
.tab_p .lnbTimelineBox ul>li:nth-child(3n+1)::before{border-color: #6A1E8D;}
.tab_g .lnbTimelineBox ul>li:nth-child(3n+1)::before{border-color: #0E8A5D;}
.tab_b .lnbTimelineBox ul>li:nth-child(3n+1)::after,
.tab_g .lnbTimelineBox ul>li:nth-child(3n+1)::after{content:"";
    width: 143px; height: 143px;
    display: inline-block;
    position: absolute; left: 50%; top: -175px;
    transform: translateX(-50%);
}
.tab_p .lnbTimelineBox ul>li:nth-child(4n)::after,
.tab_p .lnbTimelineBox ul>li:nth-child(1)::after{content:"";
    width: 143px; height: 143px;
    display: inline-block;
    position: absolute; left: 50%; top: -175px;
    transform: translateX(-50%);
}
.lnbTimelineBox ul>li:nth-child(1)::after{
    background: url(../img/sub/sub01/timeline01.png) no-repeat center;
    background-size: 100%
}
.lnbTimelineBox ul>li:nth-child(4)::after{
    background: url(../img/sub/sub01/timeline02.png) no-repeat center;
    background-size: 100%
}
.tab_b .lnbTimelineBox ul>li:nth-child(7)::after,
.tab_g .lnbTimelineBox ul>li:nth-child(7)::after{
    background: url(../img/sub/sub01/timeline03.png) no-repeat center;
    background-size: 100%
}
.tab_p .lnbTimelineBox ul>li:nth-child(8)::after{
    background: url(../img/sub/sub01/timeline03.png) no-repeat center;
    background-size: 100%
}
.lnbTimelineBox ul>li>dl{position: absolute; left: 50%; top: 40px;
    transform: translateX(-50%);
}
.lnbTimelineBox ul>li>dl dt{padding-bottom: 15px;
font-family: 'Pretendard-SemiBold';
    font-size: 18px; letter-spacing: -0.15px; font-weight: 500; color: var(--txt-D); color:#222; line-height: 18px; 
}
.lnbTimelineBox ul>li>dl dd{    min-width: 200px;
 font-weight: 400;
    font-size: 14px; letter-spacing: -0.15px; font-weight: 400;  color:#666; line-height: 23px; 
}
.lnbTimelineBox ul>li>small{position: absolute; top: -125%; left: 50%;
    transform: translateX(-50%);
    font-size: 12px; letter-spacing: -0.15px; font-weight: 500;
}
.smText {
    font-size: 11px;
    width: 120px;
    position: relative;
    top: 6px;
}


.tab_p .lnbTimelineBox ul>li>small.posM{width: 50px;
    top: -125%;left: 100%;
}
.lnbTimelineBox small.txtC_b{color: #0048A3}
.lnbTimelineBox small.txtC_p{color: #6A1E8D}
.lnbTimelineBox small.txtC_g{color: #036161}
.lnbTimelineBox small.txtC_o{color: #F99032}
.lnbTimelineBox ul>li>small.posB{top: 25px;}
.lnbprocessBox>ul{display: flex;  flex-wrap: wrap; }
.lnbprocessBox>ul>li{width: calc(100% / 2 - 15px); height: 180px;
    border: 1px solid;
    position: relative;
    padding: 40px
}
.tab_b .lnbprocessBox>ul>li{ border-color: #0048A3 #eee #eee #eee;}
.tab_p .lnbprocessBox>ul>li{ border-color: #6A1E8D #eee #eee #eee;}
.tab_g .lnbprocessBox>ul>li{ border-color: #0E8A5D #eee #eee #eee;}
.lnbprocessBox>ul>li:not(:last-child){margin-bottom: 50px;}
.lnbprocessBox>ul>li:nth-child(2n-1){
    margin-right: 30px
}
.lnbprocessBox .processOrder{display: inline-block;
    width: 42px; height: 42px;
    position: absolute; left: 30px; top: -21px;
    text-align: center; line-height: 43px; color: var(--txt-w); color: #fff; font-weight: 600; font-size: 17px; letter-spacing: 0.2px;
    font-family: 'Montserrat';
}
.tab_b .lnbprocessBox .processOrder{ background-color: #0048A3;}
.tab_p .lnbprocessBox .processOrder{ background-color: #6A1E8D;}
.tab_g .lnbprocessBox .processOrder{ background-color: #0E8A5D;}
.processContent{position: relative;
    padding-left: 98px;
    font-size: 0; white-space: nowrap;
}
.processContent::before{content:"";
    width: 80px; height: 80px;
    display: inline-block; 
    position: absolute; left: 0; top: 0
}
.sub01_type03 .lnbprocessWrap .lnbprocessBox li:nth-child(1) .processContent::before{
    background: url(../img/icon/sub01_04_icon01.png) no-repeat center;
    background-size: 100%;
}
.sub01_type03 .lnbprocessWrap .lnbprocessBox li:nth-child(2) .processContent::before{
     background: url(../img/icon/sub01_04_icon02.png) no-repeat center;
    background-size: 100%;
}
.sub01_type03 .lnbprocessWrap .lnbprocessBox li:nth-child(3) .processContent::before{
     background: url(../img/icon/sub01_04_icon03.png) no-repeat center;
    background-size: 100%;
}
.sub01_type03 .lnbprocessWrap .lnbprocessBox li:nth-child(4) .processContent::before{
     background: url(../img/icon/sub01_04_icon04.png) no-repeat center;
    background-size: 100%;
}
.sub01_type03 .lnbprocessWrap .lnbprocessBox li:nth-child(5) .processContent::before{
     background: url(../img/icon/sub01_04_icon05.png) no-repeat center;
    background-size: 100%;
}
.sub01_type03 .lnbprocessWrap .lnbprocessBox li:nth-child(6) .processContent::before{
     background: url(../img/icon/sub01_04_icon06.png) no-repeat center;
    background-size: 100%;
}
.sub01_type03 .lnbprocessWrap .lnbprocessBox li:nth-child(7) .processContent::before{
     background: url(../img/icon/sub01_04_icon07.png) no-repeat center;
    background-size: 100%;
}
.sub01_type03 .lnbprocessWrap .lnbprocessBox li:nth-child(8) .processContent::before{
     background: url(../img/icon/sub01_04_icon08.png) no-repeat center;
    background-size: 100%;
}
.sub01_type03 .lnbprocessWrap .lnbprocessBox li:nth-child(9) .processContent::before{
     background: url(../img/icon/sub01_04_icon09.png) no-repeat center;
    background-size: 100%;
}

.sub02_type03 .lnbprocessBox li:nth-child(1) .processContent::before{
    background: url(../img/icon/sub02_04_icon01.png) no-repeat center;
    background-size: 100%;
}
.sub02_type03 .lnbprocessBox li:nth-child(2) .processContent::before{
     background: url(../img/icon/sub02_04_icon02.png) no-repeat center;
    background-size: 100%;
}
.sub02_type03 .lnbprocessBox li:nth-child(3) .processContent::before{
     background: url(../img/icon/sub02_04_icon03.png) no-repeat center;
    background-size: 100%;
}
.sub02_type03 .lnbprocessBox li:nth-child(4) .processContent::before{
     background: url(../img/icon/sub02_04_icon04.png) no-repeat center;
    background-size: 100%;
}
.sub02_type03 .lnbprocessBox li:nth-child(5) .processContent::before{
     background: url(../img/icon/sub02_04_icon05.png) no-repeat center;
    background-size: 100%;
}
.sub02_type03 .lnbprocessBox li:nth-child(6) .processContent::before{
     background: url(../img/icon/sub02_04_icon06.png) no-repeat center;
    background-size: 100%;
}
.sub02_type03 .lnbprocessBox li:nth-child(7) .processContent::before{
     background: url(../img/icon/sub02_04_icon07.png) no-repeat center;
    background-size: 100%;
}
.sub02_type03 .lnbprocessBox li:nth-child(8) .processContent::before{
     background: url(../img/icon/sub02_04_icon08.png) no-repeat center;
    background-size: 100%;
}
.sub02_type03 .lnbprocessBox li:nth-child(9) .processContent::before{
     background: url(../img/icon/sub02_04_icon09.png) no-repeat center;
    background-size: 100%;
}


.sub03_type03 .lnbprocessBox li:nth-child(1) .processContent::before{
    background: url(../img/icon/sub03_04_icon01.png) no-repeat center;
    background-size: 100%;
}
.sub03_type03 .lnbprocessBox li:nth-child(2) .processContent::before{
     background: url(../img/icon/sub03_04_icon02.png) no-repeat center;
    background-size: 100%;
}
.sub03_type03 .lnbprocessBox li:nth-child(3) .processContent::before{
     background: url(../img/icon/sub03_04_icon03.png) no-repeat center;
    background-size: 100%;
}
.sub03_type03 .lnbprocessBox li:nth-child(4) .processContent::before{
     background: url(../img/icon/sub03_04_icon04.png) no-repeat center;
    background-size: 100%;
}
.sub03_type03 .lnbprocessBox li:nth-child(5) .processContent::before{
     background: url(../img/icon/sub03_04_icon05.png) no-repeat center;
    background-size: 100%;
}
.sub03_type03 .lnbprocessBox li:nth-child(6) .processContent::before{
     background: url(../img/icon/sub03_04_icon06.png) no-repeat center;
    background-size: 100%;
}
.sub03_type03 .lnbprocessBox li:nth-child(7) .processContent::before{
     background: url(../img/icon/sub03_04_icon07.png) no-repeat center;
    background-size: 100%;
}
.sub03_type03 .lnbprocessBox li:nth-child(8) .processContent::before{
     background: url(../img/icon/sub03_04_icon08.png) no-repeat center;
    background-size: 100%;
}
.sub03_type03 .lnbprocessBox li:nth-child(9) .processContent::before{
     background: url(../img/icon/sub03_04_icon09.png) no-repeat center;
    background-size: 100%;
}
.processTit{ min-width: 110px;min-height: 80px;
    padding-right: 9%;
	 font-family: 'Pretendard-Medium';
    display: inline-flex; align-items: center;
    vertical-align: top;
    font-size: 18px; color: var(--txt-D); color: #222; font-weight: 500; letter-spacing: -0.15px; line-height: 26px;
}
.processContent ul{ display: inline-block;}
.processContent li{position: relative;
    padding-left: 13px;
	font-family: Pretendard;
    font-size: 15px; letter-spacing: -0.15px; line-height: 32px; color: var(--txt-D); color: #444; font-weight: 400;
}
.processContent li::before{content:"";
    width: 3px; height: 3px;
    border-radius: 50%;
    background-color: #0048A3;
    display: inline-block;
    position: absolute;left: 0;top: 13px;
}
/* js animation */
.lnbTimeline_line.load{width: 100%;}
.lnbTimelineBox.load ul>li{opacity: 1;}
.lnbTimelineBox.load ul>li:nth-child(1){transition-delay: 0.2s;}
.lnbTimelineBox.load ul>li:nth-child(2){transition-delay: 0.4s;}
.lnbTimelineBox.load ul>li:nth-child(3){transition-delay: 0.6s;}
.lnbTimelineBox.load ul>li:nth-child(4){transition-delay: 0.8s;}
.lnbTimelineBox.load ul>li:nth-child(5){transition-delay: 1.0s;}
.lnbTimelineBox.load ul>li:nth-child(6){transition-delay: 1.1s;}
.lnbTimelineBox.load ul>li:nth-child(7){transition-delay: 1.4s;}
.lnbTimelineBox.load ul>li:nth-child(8){transition-delay: 1.6s;}
@media (max-width: 1200px){
    .lnbprocessBox .processOrder{
        left: 15px;
    }
    .lnbprocessBox>ul>li{
        padding: 40px 15px;
    }
    .processTit{min-width: 105px;
        padding-right: 3%;
        font-size: 17px;
    }
    .processContent li{
        font-size: 14px;
    }
    .lnbTimelineBox ul>li::after {width: 130px;height: 130px;
        top: -160px;
    }
    .lnbTimelineBox ul>li>dl dt {font-size: 16px;}
    .lnbTimelineBox ul>li>dl dd {font-size: 13px;line-height: 18px;}
}
@media (max-width: 991px){
    .lnbTimelineWrap{margin-bottom: 0px;}
    .processTit,
    .processContent ul{display: block;}
    .processTit{min-height: auto;
        font-size: 16px; 
        padding-bottom: 10px;
    }
    .processTit br{display: none;}
    .lnbprocessBox>ul>li{height: auto;
        padding: 30px 15px;
    }
    .lnbprocessBox .processOrder {width: 36px; height: 36px;
        line-height: 36px;font-size: 15px;
    }
    .processContent li{
        line-height: 24px;
    }
    .lnbTimelineBox ul>li::after {
        width: 110px!important;
        height: 110px!important;
        top: -130px!important
    }
    .lnbTimelineBox ul>li>small{font-size: 11px;}
    .lnbTimelineBox ul>li>dl dt {font-size: 14px; 
        padding-bottom: 10px;
    }
    .lnbTimelineBox ul>li>dl dd {font-size: 12px; }
    .lnbTimelineBox ul>li:nth-child(3n+1)::before {width: 10px;height: 10px; }
    .processContent::before{margin: 0 auto; }
  
}
@media (max-width: 767px){
    .processTit,
    .processTit, .processContent ul,
    .processContent::before{display: block;
        width: 100%;
        position: static;
    }
    .processContent::before{margin-bottom: 15px;
        background-size: contain!important;
    }
    .processContent{padding: 0;
        white-space: pre-wrap;
    }
    .processContent ul li .mBr{display: block;}
    .lnbTimelineWrap {min-height: 750px; }
    .lnbTimeline_line {width: 1px;height: 750px;
        position: absolute;left: 50%;top: 0;
        transform: translateX(-50%);
        transition: height 1.6s;
    }
    .lnbTimelineBox ul {min-height: 750px; 
        flex-direction: column;
    }
    .lnbTimelineBox ul>li {width: 100%;
        display: flex;justify-content: center; align-items: center;
    }
    .lnbTimelineBox ul>li>dl,
    .lnbTimelineBox ul>li:nth-of-type(5) dl {left: 60%; top: 50%!important;
        transform: translateY(-50%); 
        text-align: left;
    }
    .lnbTimelineBox ul>li::after { top: 0!important;left: 30%!important;
        transform: translateX(-70%)!important;
    }
    .lnbTimelineBox ul>li:nth-of-type(5) dl::after {display: none;}

    .lnbTimelineBox ul>li>small {top: 45%!important;left: 43%;
        transform: translateX(-60%);
        width: 58px;
        text-align: right;
    }
	.smText {
		left: -62px;
		font-size: 10px;
		width: 120px;
		position: relative;
		top: 8px;
	}
	
	
    .lnbTimeline_line::before {width: 2px;height: 30%;
        left: 0;top: 36%;
        transform: translateY(-49%);
    }
    .lnbTimeline_line::after {width: 2px;height: 30%;
        right: 0;top: 66%;
        transform: translateY(-58%);
    }
    .lnbTimelineBox ul>li>dl dd{min-width: auto;  }
    .tab_p .lnbTimelineBox ul>li>small.posM {
        width: 50px;
        top: 92%!important;
        left: 43%;
        transform: translateX(-60%);
    }
    .tab_p .lnbTimeline_line::after { width: 1px;height: 14%;
        left: 0;top: 76%;
    }
    .tab_p .lnbTimeline_line::before {width: 1px;height: 25%;
        left: 0;top: 55%;
    }
    .lnbTimeline_line.load{width: 1px;height: 100%;}
    .lnbTimelineBox ul>li .regiComplete{top: 50%!important;
        transform: translate(-50%, -50%);
        left: 38%;
        text-align: center;
    }
    .lnbTimelineBox ul>li .regiComplete::after{display: none;}
}
@media (max-width: 500px){
    .lnbprocessBox>ul {display: block;}
    .lnbprocessBox>ul>li{width: 100%;}
    .lnbprocessBox>ul>li:nth-child(2n-1) {margin-right: 0;}
    .lnbprocessBox>ul>li:not(:last-child) {margin-bottom: 45px;}
    .lnbTimelineBox ul>li>small,
    .tab_p .lnbTimelineBox ul>li>small.posM {left: 38%}
    .processContent li br,
    .processContent li br.mBr{display: none;}
    .lnbTimelineBox ul>li .regiComplete{ left: 36%;
        font-size: 14px
    }
    
}
/* ======================================//PROCEDURE LAYOUT ======================================*/

/* ======================================PRICE LAYOUT ======================================*/
.costTable{display: flex;
    white-space: nowrap; font-size: 0;
    justify-content: center; align-items: center;
    width: 100%;
}
.costTable tbody{width: 100%;
    display: flex; justify-content: space-between; 
}
.costTable tr{display: inline-block;
    flex: 1
}
.boxsh{
	/* box-shadow: 0px 20px 40px -10px rgba(69, 12, 96, 0.3); */
}
.boxshTop{position:absolute;
left:0px;
top:0px;
width:100%;
height:40px;}
.boxshpri{background-color:#FFF2E9!important;}
.boxshbtn{
	background-color:#F57C24!important;
}


.costTable tr.minH_754{min-height: 754px;}
.costTable tr + tr {margin-left: 20px;}
.costTable th, .costTable td{display: block;}
.costTable th{width: 100%;
    background-color: #444;
	font-family: 'Pretendard-Medium';
    font-size:16px ; letter-spacing: -0.1px; color: var(--txt-w); color: #fff; font-weight: 500; text-align: center; line-height: 50px;
}
.costTable td:nth-of-type(1){width: 100%;
font-family: 'Pretendard-Medium';
    font-size: 20px; letter-spacing: -0.15px; color: var(--txt-D); color:#222; font-weight: 500; line-height: 100px; text-align: center;
    background-color: #f7f7f7;   
}
.costTable td .costNum{
    display: inline-block;
    font-size: 48px; letter-spacing: -0.15px; color: var(--txt-D); color:#222; font-weight: bold; font-family: 'Montserrat', sans-serif; 
}
.costTable td:nth-of-type(2){padding: 25px 30px;
font-family: Pretendard;
    border-right: 1px solid #eee; border-left: 1px solid #eee;
    font-size: 15px; letter-spacing: -0.2px; font-weight: 400; color: var(--txt-M); color: #444
}
.costTable td:nth-of-type(2) ul li + li{ padding-top: 15px;}
.costTable td:nth-of-type(2) ul li{position: relative;
    padding-left: 28px;
    white-space: initial;
    line-height: 18px;
}
.costTable td:nth-of-type(2) ul li .costOrder{position: absolute; left: 0;font-family: 'Montserrat';font-weight: 500;}
.costTable td:nth-of-type(3){
	font-family: 'Pretendard-Medium';
    position: relative;
    border-right: 1px solid #ddd; border-left: 1px solid #ddd;
    font-size: 16px; letter-spacing: -0.2px; font-weight: 500; color: var(--txt-M); color: #444;line-height: 70px; text-align: center;
}
.costTable td:nth-of-type(3)::before{content:"";
    width: 90%; height: 1px; 
    border-top: 1px dashed #ddd;
    position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
}
.costTable td:nth-of-type(4){position: relative;
font-family: 'Pretendard-Medium';
    font-size: 20px; letter-spacing: -0.15px; font-weight: 500; color: var(--txt-w); color: #fff;line-height: 80px; text-align: center;
}
.tab_b .costTable td:nth-of-type(4){background-color: var(--tab-B); background-color: #153359;}
.tab_p .costTable td:nth-of-type(4){background-color: var(--tab-B); background-color: #4E1D60;}
.tab_g .costTable td:nth-of-type(4){background-color: var(--tab-B); background-color: #1C4E3C;}
.costTable td:nth-of-type(4) a::after{content: "";
    display: inline-block;
    width: 26px; height: 7px;
    background: url(../img/icon/rightArrow01_w.png) no-repeat center;background-size: 100%;
    position: absolute;right: 42px;top: 50%;
    transform: translateY(-50%);
}
a.costBtn{width: 100%;height: 100%;display: block;}

.costTable td ul li b{
	font-weight:600;
	text-decoration:underline;
}
@media (max-width: 1200px){
    .costTable td:nth-of-type(2){padding: 20px;}
}

@media (max-width: 991px){
    .costTable td:nth-of-type(4) a::after{right: 30px;}
    .costTable td li, .costTable td:nth-of-type(3){font-size: 15px}
    .costTable td .costNum{font-size: 40px}
    .costTable td:nth-of-type(1){font-size: 16px}
    .costTable td:nth-of-type(4){font-size: 18px}
    .costTable tr{width: 100%;
        display: block;
    }
    .costTable tbody{display: block;}
    .costTable tr + tr{width: 100%;
        display: block;
        margin: 50px 0 0 0!important
    }
}

@media (max-width: 500px){
    .constTable th{line-height: 40px}
    .costTable td:nth-of-type(2){padding: 25px}
    .costTable td .costNum{ font-size: 35px}
    .costTable td:nth-of-type(1){font-size: 16px; line-height: 75px;}
    .costTable td:nth-of-type(2) ul li + li{padding-top: 10px}
    .costTable td:nth-of-type(3){ line-height: 55px} 
    .costTable td li, .costTable td:nth-of-type(3){font-size: 14px} 
    .costTable td:nth-of-type(4) { font-size: 17px;}
}
/* ======================================//PRICE LAYOUT ======================================*/
/* ======================================COSTS ======================================*/
.lnbContainer04{padding: 0px 0}
.product_list{display: inline-block;
    width: calc(100% / 2 - 32px);
    vertical-align: top;
}
.product_list:nth-child(1),.product_list:nth-child(2){margin-bottom: 105px;}
.product_list:nth-child(2n){margin-left: 60px;}
.productL_titWrap{display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #222;
}
.productL_tit{font-family: 'Pretendard-Medium';font-size: 25px; font-weight: 500; letter-spacing: -0.1px; color: #222}
.productL_applyWrap{width: 180px; height: 37px;
    background-color: #ccc;
	font-family: 'Pretendard-Medium';
    text-align: center; line-height: 37px; color: #fff; font-size: 14px
}
.productL_apply{display: inline-block;
    width: 100%; height: 37px;
}
.productL_apply::after{content:"";
    width: 20px; height: 8px;
    display: inline-block;
    background: url(../img/icon/rightArrow01_w.png) no-repeat center;
    background-size: 100%;
    vertical-align: middle;
    margin-left: 10px;
}
.tab_b .productL_applyWrap{background-color: #0048A3;}
.tab_p .productL_applyWrap{background-color: #6A1E8D;}
.tab_g .productL_applyWrap{background-color: #0E8A5D;}
.productL_type{border-bottom: 1px solid #eee;
    padding: 20px 30px;
    display: flex; justify-content: space-between; 
}
.productL_typeItem{display: block;
font-family: 'Pretendard-Medium';
    text-align: right; font-size: 15px; color: #444; font-weight: 500;line-height: 37px;
}
.productL_typeItem + .productL_typeItem{margin-top: 8px;}
.productL_typeItem strong{min-width: 85px;
    margin-left: 50px;
	font-family: 'Pretendard-Light';
    font-size: 15px;color: #444;  font-weight: 300; line-height: 37px;
    display: inline-block;
}
.productL_typeItem .costNum{font-size: 30px;  color: #222; font-family: 'montserrat'; font-weight: bold;line-height: 37px;}
.costNone{font-size: 16px; color: #222; font-weight: 500;line-height: 37px;}
.productL_typeTit{font-size: 18px; font-weight: 500; color: #222 ;line-height: 37px;font-family: 'Pretendard-Medium';}
.productL_typeTit p{display:inline-block;margin:0;font-size: 13px; font-weight: 500; color: #222 ;line-height: 37px;}
.productL_typeTit b {
    line-height: 18px;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    color: #6A1E8D;
    display: block;
    top: -2px;
}
.productL_noteWrap{padding-top: 10px;}
.productL_noteList,
.virtural_inforList{font-size: 13px; letter-spacing: -0.1px; color: #888; font-weight: 300;line-height: 20px;
    position: relative;
    padding-left: 8px;
	font-family: 'Pretendard-Light';
}
.productL_noteList + .productL_noteList,
.virtural_inforList + .virtural_inforList{margin-top: 5px;}
.productL_noteList::before,
.virtural_inforList::before{content:"";
    width:3px; height: 3px;
    background-color: #888;
    border-radius: 50%;
    display: inline-block;
    position: absolute; left: 0; top: 8px;
}
@media (max-width:1200px){
	.productL_typeItem strong {
		margin-left: 20px;
	}
}
@media (max-width: 950px){
    .product_list{display: block;
        width: 100%;
    }
    .product_list:nth-child(2n){margin: 0;}
    .product_list:nth-child(1), .product_list:nth-child(2){margin: 0;}
    .product_list:not(:last-child){margin-bottom: 50px!important;}
}
@media (max-width: 767px){
    .lnbContainer04{padding: 0px 0 0 0}
    .productL_tit{font-size: 20px}
    .productL_titWrap {padding-bottom: 10px;}
    .productL_applyWrap {
        width: 160px; height: 31px;
        line-height: 30px; font-size: 13px
    }
    .productL_type {padding: 10px 20px;}
    .productL_typeTit {font-size: 16px;}
    .productL_typeItem strong {margin-left: 30px;}
    .productL_typeItem .costNum { font-size: 27px;line-height: 30px;}
    .productL_typeItem, .productL_typeItem strong {line-height: 30px;}
    .costNone, .productL_typeItem, .productL_typeItem strong  {  font-size: 14px;}
    .productL_noteList { font-size: 12px;}
        
}
@media (max-width: 470px){
	.productL_type {
		padding: 10px 10px;
	}
	.productL_typeItem .costNum {
		font-size: 24px;
		line-height: 30px;
	}
	.productL_typeItem strong {
		min-width: 72px;
		margin-left: 10px;
	}
	.productL_typeTit{
		position:relative;
	}
	.productL_typeTit b {
		line-height: 18px;
		position: absolute;
		font-size: 10px;
		display: block;
		top: 32px;
		width: 149px;
	}
}
/* ======================================//COSTS ======================================*/
/* ======================================REGISTERED CASE  ======================================*/
/* :::case::: */
.registerCases_listWrap,
.notice_listWrap{width: 100%;
    overflow: hidden;
    font-size: 0;
    display: flex; flex-wrap: wrap;
}
.registerCases_list,
.notice_list{
    width: calc(100%/4 - 30px ); max-height: 418px; 
    padding: 40px 30px; 
    display: inline-block;
    border: 1px solid;
    border-color: #222 #eee #eee #eee;
    cursor: pointer;
}
.registerCases_list:last-child,
.notice_list:last-child{
	margin-right:0px;
	/* display: none; */
}
.registerCases_list:not(:nth-child(4n)),
.notice_list:not(:nth-child(4n)){margin-right: 40px;}
.registerCases_list:nth-child(-n + 4),
.notice_list:nth-child(-n + 4){margin-bottom: 40px;}
.caseList_top{display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 15px;
}
.registerCases_list .regiStat{width: 75px; height: 28px;
    display: inline-block;
    font-size: 14px; font-weight: 400; letter-spacing: -0.4px; color: #fff; text-align: center; line-height: 28px;
}
.registerCases_list .postedDate{font-size: 14px; letter-spacing: -0.1px; color: #888; font-family: 'Montserrat'}
/* .registerCases_list.tab_b .regiStat{background-color: #0048A3;} */
/* .registerCases_list.tab_p .regiStat{background-color: #6A1E8D;} */
/* .registerCases_list.tab_g .regiStat{background-color: #0E8A5D;} */
/* .tab_b{background-color: #0048A3;} */
/* .tab_p{background-color: #6A1E8D;} */
/* .tab_g{background-color: #0E8A5D;} */

.col_tab_b{background-color: #0048A3;}
.col_tab_p{background-color: #6A1E8D;}
.col_tab_g{background-color: #1E5542;}


 .caseTit{font-size: 20px; font-weight: 500; letter-spacing: -0.1px; color: #222;;line-height: 30px;
    margin-bottom: 5px;
    text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
}
.caseDesc{font-size: 14px; font-weight: 400; letter-spacing: -1.5px; color: #888;;line-height: 24px;
    text-overflow: ellipsis; white-space: nowrap;overflow: hidden;
}
.registerCases_list .caseList_img {
	width:100%;
	height:173px;
	margin: 20px 0;
    text-align: center;
    position: relative;
	overflow:hidden;
}
.registerCases_list .caseList_img::after{content:"";
    width: 129px; height: 82px;
    background-size: 100%;
    display: inline-block;
    position: absolute;left: 50%; top: 25%;
    transform: translateX(-50%);
}
.registerCases_list .caseList_img img{
	height: 173px;
    display: inline-block;
	
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.casemark_img01{
	position:absolute;
	top:50%;
	left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
}
.casemark_img01 img{
	height:82px!important;
}

.registerCases_list.tab_b .caseList_img::after{
    background:url(../img/sub/sub06/stamp_b.png) no-repeat center;
    background-size: 129px;
}
.registerCases_list.tab_p .caseList_img::after{
    background:url(../img/sub/sub06/stamp_p.png) no-repeat center;
    background-size: 129px;
}
.registerCases_list.tab_g .caseList_img::after{
    background:url(../img/sub/sub06/stap_g.png) no-repeat center;
    background-size: 129px;
}
.caseMore{font-size: 13px; font-weight: 400; color: #444; letter-spacing: -0.2px;
    width: 100%; text-align: right; 
    display: block;
}
.caseMore::after{content:"";
    width: 21px; height: 6px;
    display: inline-block;
    margin-left: 8px;
    background:url(../img/icon/rightArrow01.png) no-repeat center;
    background-size: 100%;
    vertical-align: middle;
}
/* .paginationType01{display: flex;  */
	/* width:100%; */
    /* margin: 60px auto 0 auto; */
    /* justify-content: space-evenly; align-items: center; */
    /* position: relative; */
/* } */
.paginationType01 {
    display: flex;
    margin: 0 12px;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
}

.pgType01_prev{
	cursor:pointer;text-indent: -9999px;
	 background-color: inherit;
    border: solid #888; border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    width: 8px;height: 8px;
    position: absolute;left: 0; top: 25%;
    transform: rotate( 130deg);
    -webkit-transform: rotate(135deg);
}
.pgType01_next {
	cursor:pointer;
    background-color: inherit;
    text-indent: -9999px;
    border: solid #888;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 0;
    top: 25%;
    transform: rotate( -45deg);
    -webkit-transform: rotate(-45deg);
}
.paginationType01 small:hover{border-color:#222}
.pgType01_listWrap{text-align: center;}
.pgType01_list{font-size: 14px; font-family: 'montserrat';font-weight: 400; color: #bbb;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
}
.pgType01_list + .pgType01_list{margin-left: 15px;}
/* hover */
.registerCases_list:hover,
.notice_list:hover{box-shadow: 4px 9px 7px rgb(0 0 0 / 2%)}
.registerCases_list:hover .caseMore,
.notice_list:hover .caseMore{font-weight: 500;}
.pgType01_list:hover,
.pgType01_list.on {color: #222; font-weight: bold;}

/* ::://case::: */
/* :::notice::: */
.notice_list{max-height: 320px;}
.notice_list .caseList_txt{padding-bottom: 136px;}
.notice_list .postedDate{font-size: 16px; color: #0048A3; font-weight: bold; font-family: 'montserrat';}
/* ::://notice::: */

@media (max-width: 1200px){
    .registerCases_list,
    .notice_list{padding: 25px 20px; }
}
@media (max-width: 991px){
    .registerCases_list, .notice_list { width: calc(100%/ 3 - 23px );
        padding: 40px 30px;
    }
    .registerCases_list:last-child,
    .notice_list:last-child{display: inline-block;}
    .registerCases_list:nth-child(-n + 4),
    .notice_list:nth-child(-n + 4){margin-bottom: 0;}
    .registerCases_list:nth-child(-n + 6),
    .notice_list:nth-child(-n + 6){margin-bottom: 30px;}
    .registerCases_list:not(:nth-child(4n)),
    .notice_list:not(:nth-child(4n)){margin-right: 0;}
    .registerCases_list:not(:nth-child(3n)),
    .notice_list:not(:nth-child(3n)){margin-right: 30px;}
}
@media (max-width: 850px){
    .registerCases_list,
    .notice_list { width: calc(100%/ 2 - 17px );}
    .registerCases_list:not(:nth-child(3n)),
    .notice_list:not(:nth-child(3n)){margin-right: 0;}
    .registerCases_list:not(:nth-child(2n)),
    .notice_list:not(:nth-child(2n)){margin-right: 30px;}
    .registerCases_list .regiStat {  width: 62px; height: 25px;
        font-size: 14px;line-height: 25px;
    }
    .caseList_top { margin-bottom: 10px;}
    .registerCases_list .caseTit {  font-size: 18px;}

}
@media (max-width: 767px){
    .registerCases_list, .notice_list { width: 100%;
        display: block;
    }
    .registerCases_list, .notice_list{margin-right: 0!important; margin-bottom: 30px!important;}
	
	.pgType01_list + .pgType01_list {
		margin-left: 16px;
	}
	.pgType01_list {
		font-size: 18px;
		font-family: 'montserrat';
		font-weight: 400;
		color: #bbb;
		cursor: pointer;
		display: inline-block;
		vertical-align: top;
	}
}

/* ======================================REGISTERED CASE ======================================*/
/* ======================================LOCATION ======================================*/
.lnbContainer_sub07 {padding: 50px 0 120px 0 ;}
.nemapbox {
    margin-top: 50px;
    width: 100%;
    position: relative;
}
.nemapbox .root_daum_roughmap {
	overflow: hidden;
	position: relative;
    width: 100%;
    margin: 0 auto;
	padding-bottom:30%;
    background-color: #fff;
}

.nemapbox .root_daum_roughmap .wrap_map{
	position: absolute;
	left:0px;
	top:0px;
	height:100%;
    width: 100%;
}


.iframWrap iframe{width: 100%; height: 415px;
    padding-top: 50px;
}
.locationInfoWrap{padding-top: 20px;}
.locationInfoBox{padding: 25px 0;}
.locationInfoBox:not(:last-child){border-bottom: 1px solid #eee;}
.locationInfoBox dt{font-size: 16px; font-weight: -0.1px; font-weight: 500;color: #222; 
    width:130px; margin-right: 80px;
    vertical-align: top;
}
.locationInfoBox dt::before{content:"";
    width: 16px; height: 16px;
    background-size: 16px;
    display: inline-block;
    margin-right: 14px;
    vertical-align: top;
}
.locationInfoBox:nth-child(1) dt::before{
    background: url(../img/icon/icon_location.png) no-repeat center;
    background-size: 16px;
}
.locationInfoBox:nth-child(2) dt::before{
    background: url(../img/icon/icon_call.png) no-repeat center;
    background-size: 16px;
}
.locationInfoBox:nth-child(3) dt::before{
    background: url(../img/icon/icon_clock.png) no-repeat center;
    background-size: 16px;
}
.locationInfoBox dt, .locationInfoBox dd{display: inline-block;}
.locationInfoBox:nth-child(1) dd span{display: block;}
.locationInfoBox:nth-child(1) dd span + span{margin-top: 8px;}
.locationInfoBox:nth-child(2) dd span{display: block;}
.locationInfoBox:nth-child(2) dd span + span{margin-top: 8px;}
.weekType {
	color:#222;
    display: inline-block;
    width: 80px;
    margin-right: 0px;
}
.locationInfoBox dd{font-size:16px; letter-spacing: -0.15px; color: #888; font-weight: 400; font-family: 'Noto Sans KR';}
@media (max-width: 1200px){
	.nemapbox .root_daum_roughmap {
		padding-bottom: 40%;
	}
}
@media (max-width: 767px){
	.locationInfoBox:nth-child(1) dd span {
		display: block;
	}
	.locationInfoBox:nth-child(1) dd span .weekType{
		display:block;
	}
	
	.weekType {
		display: inline-block;
		width: 60px;
		margin-right: 0px;
	}
    .lnbContainer_sub07 {padding: 30px 0 80px 0 ;}
    .locationInfoBox dd{display: block;
        padding: 15px 0 0 30px 
    }
    .locationInfoBox dd {font-size: 15px;line-height: 20px;}
    .locationInfoBox:nth-child(2) dd span + span {margin-top: 3px;}
    .nemapbox .root_daum_roughmap {
		padding-bottom: 70%;
	}
}
/* ======================================//LOCATION ======================================*/
/* ======================================REGISTER LIST ======================================*/

.registerList_filterWrap{display: flex; justify-content: center; align-items: center;}
.registerList_Select{margin-right: 10px;}
.filterDropBox{width: 140px; height: 50px;}
.registerList_Search{position: relative;}
.registerList_Search input{width: 270px;height: 50px;
    padding: 10px 20px;
    font-size: 14px; letter-spacing: -0.15px; font-weight: 400; color: #222;
    border: 1px solid #eee;
    background-color: #fff;
}
.registerList_Search input::placeholder{
    color: #888; font-size: 14px; letter-spacing: -0.1px; font-weight: 300;
}
.registerList_Search .searchBtn{position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%);
    width: 17px;height: 16px; 
    text-indent: -9999px;
    background: url(../img/icon/icon_search.png) no-repeat center;
    background-size: 16px;
    outline: none; border: none;
    cursor: pointer;
}
/* .registerList_tableWrap{margin-top: 55px;} */
.registerList_tableWrap table{width: 100%;}
.registerList_table tbody tr{cursor: pointer; border-bottom: 1px solid #eee;}
.registerList_tableWrap table thead {border-top: 1px solid #333; border-bottom: 1px solid #333;}
.registerList_tableWrap table thead th:nth-child(1){width: 12%;}
.registerList_tableWrap table thead th:nth-child(2){width: 46%;}
.registerList_tableWrap table thead th:nth-child(3){width: 12%;}
.registerList_tableWrap table thead th:nth-child(4){width: 12%;}
.registerList_tableWrap table thead th:nth-child(5){width: 12%;}
.registerList_tableWrap table thead th{font-size: 15px; line-height: 50px; color: #222; font-weight: 500; letter-spacing: -0.1px; 
    text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
}
.registerList_tableWrap table tbody td{font-size: 16px; line-height: 60px; color: #888; font-weight: 400; letter-spacing: -0.1px;text-align: center;
    text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
}
.registerList_tableWrap table tbody td:nth-child(1){ font-family: 'Montserrat'; color: #444!important;font-weight: 700;}
.registerList_tableWrap table tbody td:nth-child(2){text-align: left;
    padding-left: 80px;
    max-width: 20px;
}
.registerList_tableWrap table tbody td:nth-child(5){font-family: "montserrat"; font-size: 15px;}

.registerList_table tbody .tableList_fold {display: none;}
.registerList_table tbody .tableList_fold td{background-color: #f6f6f6;
    width: 100%;
    
}
.registerList_table tbody .tableList_fold td input{
    width: 270px;
    line-height: 30px;
    border: 1px solid #eee;
    margin-left: 15px;
    padding-left: 10px;
    outline: #222;
    font-family: 'Noto Sans KR';
    letter-spacing: -0.15px;
    font-weight: 300;
}
.registerPasswordBtn{border: none;
    outline: none;
    background-color: #444;
    color: #fff;
    line-height: 30px;
    width: 50px;
    font-family: 'Noto Sans KR';
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 1px;
}
.paginationWrap{
	/* max-width: 280px; */
	max-width: 500px;
    margin: 55px auto 60px auto;
    position: relative;
}
.pagination_listWrap{
	/* max-width: 230px; */
   text-align: center;
    margin: 0 auto;
}
.pagination_list{width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid #eee;
    font-size: 14px; letter-spacing: -0.1px;font-family: 'montserrat'; font-weight: 500;color:#444; text-align: center;line-height: 38px;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
}
.pagination_list + .pagination_list{margin-left: 5px;}
.paginationArrow:focus{background: none;}

.paginationArrow{text-indent: -9999px;
    border: solid #222;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    width:5px; height: 5px;
    position: absolute; top: 40%;
    cursor: pointer;
}

.paginationArrow:first-child{left: 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
.paginationArrow:last-child{right: 0;
    transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
/* hover/ on */
.paginationArrow:hover{  border-width: 0 2px 2px 0;}
.pagination_list.on{border: none;
    background-color: #666;
    color: #fff;
}
.pagination_list:hover{border: 1px solid #000;}
.tableList_view:hover{background-color: #fcfcfc;}
/* free */
.freeRegisterList{margin-top: 60px;
    justify-content: space-between;
}
.freeRegisterList_Fr{display: flex;}
.freeReg_tableWrap table thead th:nth-child(1){width: 15%!important;}
@media (max-width: 991px){
    .registerList_tableWrap table tbody td:nth-child(2) {padding-left: 30px;}
    .registerList_tableWrap table tbody td:nth-child(5) {font-size: 14px;}
    .registerList_tableWrap table thead th,
    .registerList_tableWrap table tbody td{font-size: 14px}
}
@media (max-width: 767px){
    .registerList_tableWrap table thead th:nth-child(2) {width: 40%;
        padding-left: 30px;
    }
    /* .registerList_tableWrap { margin-top: 30px;} */
    .filterDropBox,
    .filterDropBox .custom-select__trigger,
    .filterDropBox .custom-select__trigger2,
    .filterDropBox .custom-select,
    .filterDropBox .custom-select2,
    .registerList_Search input,
    .custom-select__trigger span, .custom-option,
    .custom-select__trigger2 span, .custom-option2{height: 40px;
        line-height: 39px;
    }
    .custom-options{top: 40px;}
    .filterDropBox,
    .registerList_Search input{width: 100%;}
    .filterDropBox .custom-select__trigger span, .custom-option,
    .registerList_Search input, .registerList_Search input::placeholder{
        font-size:14px; font-weight: 400;
    }
    .registerList_Select{flex: 1;}
    .registerList_Search{flex: 2;}
    /* .paginationWrap { max-width: 240px;} */
    /* .pagination_listWrap { max-width: 190px;} */
    /* .pagination_list { width: 30px;height: 30px; */
        /* line-height: 30px; */
    /* } */
	.paginationWrap {
		max-width: 100%;
	}
	.pagination_list.on {
		line-height: 26px;
	}
	.pagination_list + .pagination_list {
		margin-left: 1px;
	}
	.pagination_list {
		font-size: 12px;
		width: 26px;
		height: 26px;
		line-height: 23px;
	}
    .freeRegisterList{display: block;}
    .freeRegisterList_Fl {margin-bottom: 10px;}
    .freeRegisterList_Fl .registerList_Select{margin-right: 0;}
    .lnbContainer_registerList.mg_t64{margin-top: 50px;}
}
@media (max-width: 500px){
    .registerList_tableWrap table thead th:nth-child(2),
    .registerList_tableWrap table tbody td:nth-child(2)  {padding-left: 0;}
    .registerList_tableWrap table tbody td:nth-child(5) {font-size: 13px!important}

    .registerList_tableWrap table thead th:nth-child(1),
    .registerList_tableWrap table tbody .tableList_view td:nth-child(1),
    .registerList_tableWrap table thead th:nth-child(3),
    .registerList_tableWrap table tbody .tableList_view  td:nth-child(3){display: none;}

    .registerList_tableWrap table thead th{line-height: 45px;}
    .registerList_tableWrap table tbody td{line-height: 50px;}
    .registerList_table tbody .tableList_fold td {padding: 10px 0;}
    .registerList_table tbody .tableList_fold label{display: block; line-height: 17px;}
    .registerList_table tbody .tableList_fold td input{margin-left: 0; 
        width: auto;
    }

    .registerList_tableWrap .regsStat_btn { width: 65px;height: 30px;
        font-size: 13px; line-height: 28px; letter-spacing: 0.5px;
    }
    .filterDropBox .custom-select__trigger span, .custom-option,
    .registerList_Search input, .registerList_Search input::placeholder{font-size:13px}
    .registerList_Search .searchBtn{right: 10px; }
    .arrow{  position: absolute;   right: 11px;   }
    .registerList_Select {flex: 1.1;}
    .registerList_Select { margin-right: 5px;}
} 
/* ======================================//BOARD LIST ======================================*/
/* ======================================BOARD REPLY ======================================*/
.inquiryContent{border-top: 2px solid #333; border-bottom: 1px solid #eee;
    margin-bottom: 90px;
}
.inquiryInputWrap{border-bottom: 1px solid #eee;
    padding: 20px 10px;
    display: flex; align-items: center;
}
.inquiryInputWrap .regsStat_btn {margin-left: 15px;}
.ic_marT56{margin-top:56px;}
.inquiryInputWrap label{min-width: 65px;
    font-size: 17px; color: #333; font-weight: 500;
    margin-bottom: 0; margin-right: 30px;
}
.inquiryInputWrap input.inquiryTit{font-weight: 700; font-size: 17px; letter-spacing: -0.1px; color: #444;
    outline: none
}
.inquiryInputWrap input{font-weight: 400; font-size: 17px; letter-spacing: -0.1px; color: #444;    outline: none}
.inquiryInputWrap input#writtenDate{font-family: "roboto";font-weight: 300;font-weight: 400; font-size: 17px; letter-spacing: -0.1px; color: #444}
.inquiryInputWrap input,
.inquiryInputWrap select{border: none;
    display: inline-block; 
    text-overflow: ellipsis;
    flex: 1;
}
.inquiryInputTit{font-size: 16px; font-weight: 500;}
.inquiryHalfContent{display: flex;}
.inquiryHalfContent .inquiryInputWrap{width: 50%}
.inquirytxtAreaWrap {border: none;
    display: block; width: 100%;
    padding: 30px 10px;
    outline: none;
    margin-top: 20px;
}
.inquirytxtAreaWrap{
	font-size: 16px; line-height: 24px;
}
.iqTextBox{
	min-height: 24px;
	display: block;
    position: relative;
    padding-left: 180px;
    margin-bottom: 24px;
}
.iqTextBox b{
	font-weight:500;
	position:absolute;
	left:0px;
	line-height: 24px;
}
.iqTextBox span{
	display:block;
	text-align:left;
	color:#777;
	font-weight:300;
    line-height: 24px;
}
.inquirytxtAreaWrap img{
	max-width:100%;
}
.inquirytxtAreaWrap p {font-size: 16px; line-height: 24px;}
.inquirytxtAreaWrap p img {display: table;
    margin: 0 auto;
}
.inquirytxtAreaWrap p + p{margin-top: 0px;}
.inquirytxtAreaWrap textarea::placeholder,
.inquiryInputWrap input::placeholder,
.replyWrap textarea#reply::placeholder{
    font-size: 17px; color: #ccc; letter-spacing: -0.15px; font-weight: 400;
}
.buttonWrap{font-size: 0;text-align: center;}
.inquiryWrap button{
    width: 120px; height: 50px;
    display: inline-block;
    padding: 0;
    color: #fff;
    outline: none; border: none 
}

.inquiryWrap .buttonWrap button + button{margin-left: 10px;}
.replyContent{margin-bottom: 60px!important;}
.adminReplyWrap{border-top: 1px solid #eee;
    padding: 30px 10px 
}
.adminInfoContent{display: flex;}
.adminName{  font-size: 17px; color: #333; font-weight: 500;
    margin-right: 30px;
}
.repliedInfo{margin-bottom: 0;}
.repliedInfo em{font-style: normal; font-size: 17px; color: #666;font-family: 'roboto'; letter-spacing: -0.1px;font-weight: 300;}
.replyWrap{margin-bottom: 105px;}
.replyWrap p{margin-bottom: 0;}
.replyWrap label{display: block; 
    font-size: 17px; color: #333; font-weight: 500;
    margin-bottom: 20px;
}
.replyWrap textarea#reply{ border: none;
    padding: 30px 20px; 
    width: 100%; max-height: 150px;
    display: block;
    background-color: #f8f8f8;
    
}
.replyWrap .buttonWrap{text-align: right;
    margin-top: 15px;
}
.replyCompleteBtn{width: 80px!important; height: 40px!important;
    font-size: 15px; font-weight: 500; letter-spacing: -0.1px; color: #fff;
    border: none; background-color: #666;
}

@media (max-width: 767px){
    .inquiryWrap { padding: 10px 0 20px 0;}
    .inquiryInputWrap input, .inquiryInputWrap input#writtenDate, .repliedInfo em, .replyCompleteBtn {font-size: 14px}
    .inquiryInputWrap input#writtenDate, .inquiryInputWrap input#clientName{width: 80%;}
	.ic_marT56{margin-top:40px;}
    .inquiryContent{margin-bottom: 50px;}
    .inquiryInputWrap label{margin-bottom: 5px;
        display: block;
        min-width: 46px;
    }
    .inquiryInputWrap label{font-size: 13px}
    .inquirytxtAreaWrap textarea::placeholder,
    .inquiryInputWrap input::placeholder,
    .replyWrap textarea#reply::placeholder{font-size: 15px; }
    .inquiryInputWrap label{margin-right: 0;margin-bottom:0px;}
    .inquiryWrap .blck_btn, .inquiryWrap .Lgrey_btn, .inquiryWrap .blu_btn{ width: 120px;height: 50px;}
    .replyCompleteBtn { width: 70px!important;height: 35px!important; }
    .replyWrap {margin-bottom: 50px;}
    .inquiryInputWrap select{width: 100%; }
    .replyCompleteBtn { width: 70px!important;height: 35px!important; }
    .replyWrap {margin-bottom: 50px;}
    .replyWrap textarea#repl{padding: 20px;}
    .replyContent {margin-bottom: 30px!important;}
    .inquiryButtonWrap {display: flex;
        justify-content: center; align-items: center;
    }
	
	/* .inquirytxtAreaWrap{ */
		/* font-size: 14px; line-height: 24px; */
	/* } */
	/* .inquirytxtAreaWrap > div{ */
		/* font-size: 14px!important; */
		/* line-height: 24px; */
	/* } */
	/* .inquirytxtAreaWrap > div span{ */
		/* font-size: 14px!important; */
		/* line-height: 24px; */
	/* } */
	/* .inquirytxtAreaWrap p { */
		/* font-size: 14px;  */
		/* line-height: 24px; */
	/* } */
	
	.inquiryInputWrap {
		font-size: 14px;
		padding: 16px 6px;
	}
	.inquiryHalfContent .inquiryInputWrap{
		font-size:13px;
	}
    .inquirytxtAreaWrap{
		margin-top:0px;
		padding: 30px 6px 4px 6px;
	}
	.iqTextBox {
		min-height: 16px;
		display: block;
		position: relative;
		padding-left: 0px;
		margin-bottom: 20px;
	}
	.iqTextBox b {
		display: block;
		font-size: 15px;
		font-weight: 500;
		position: relative;
		left: 0px;
		margin-bottom: 6px;
	}
	.iqTextBox span {
		line-height: 20px;
		font-size: 14px;
		display: block;
		text-align: left;
		color: #777;
		font-weight: 300;
	}
	.adminReplyWrap {
		border-top: 1px solid #eee;
		padding: 0px 6px 30px;
	}
}
/* ======================================//BOARD REPLY ======================================*/
/* ======================================CASE Detail ======================================*/
.caseDetailFrom{padding: 42px 0 80px 0; margin-bottom: 60px;
    border-top: 1px solid #444;
    border-bottom: 1px solid #ddd;
}
.caseDetailTit{font-size: 45px; font-weight: 500; letter-spacing: -0.1px; color:#222; line-height: 67px;
    padding-bottom: 30px;
}
.caseDetailDate{font-size: 20px;font-family: 'Roboto';font-weight: 500; letter-spacing: -0.1px; color:#0048A3; line-height: 23px;
    padding-bottom: 90px;
}
.caseDetailTitArea{border-bottom: 1px solid #444;
       text-align: center;
}
/* .caseDetailBox + .caseDetailBox{margin-top: 60px;} */
.caseDetailBox dl{position: relative;}
.caseDetailBox ul{position: relative;}
.caseDetail_cate{
	font-size: 20px;font-weight: 700;  color:#14335A; line-height: 31px;
    position: absolute; left: 0; top: 0; letter-spacing: -0.15px;
}
.regiPatentList{position: relative;}
.regiPatentList_tit{font-size: 16px;font-weight: 500;  letter-spacing: -0.1px;color:#444444; line-height: 31px;
    position: absolute; top: 0; top: 0;
}
.regiPatentList small{padding-left: 110px;}
.caseDetailBox dd{
	margin-top: 60px;
	font-size: 16px;font-weight: 300;  letter-spacing: -0.1px;color:#888; line-height: 31px;
    padding-left: 255px;
}
.caseDetail_img img{max-height: 260px; width: 100%;
    border: 1px solid #eee
}
.caseDetail_img figure{position: relative;width: 200px;
    cursor: pointer;
}
.caseDetail_img figure:hover:after,
.caseDetail_img figure:hover:before{visibility: visible; opacity: 1; 
    height: 100%;
}
.caseDetail_img figure::after{content:"";
    width: 100%; height: 0;
    background-color: rgba(0, 0, 0, 40%);
    position: absolute; left: 0; top: 0;z-index: 5;
    transition: all 0.3s;
    visibility: hidden; opacity: 0; 
}
.caseDetail_img figure::before{content:"";
    width: 48px;height: 47px;
    background: url(../img/icon/popDetail.png) no-repeat center;
    background-size: 100%;
    display: inline-block;
    position: absolute; left: 50%; top: 50%; z-index: 10;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    visibility: hidden; opacity: 0; 
}
.documentPop{margin: 0 auto;
    background-color: #fff;
    text-align: center;
    max-width: 450px;
    overflow: hidden;
    position: relative;top: 55%; transform: translateY(-50%);
}
 .documentPop img{max-width: 100%;
    object-fit: contain;
}
@media (max-width: 991px){
    .caseDetailBox dd {padding-left: 150px;}
    .caseDetailTit {  font-size: 35px; line-height: 40px;
        padding-bottom: 25px;
    }
    .caseDetailDate {
        font-size: 18px; line-height: 23px;
        padding-bottom: 50px;
    }
    .caseDetail_cate {  font-size: 18px; }
    .caseDetailBox dd, .regiPatentList_tit { font-size: 15px;}
    .documentPop{width: 90%; height: auto;
        max-height: 80%;
    }
}
@media (max-width: 767px){
    .caseDetailFrom { padding: 20px 0 60px 0; margin-bottom: 60px;}
    .caseDetailTit {font-size: 26px; line-height: 30px;
        padding-bottom: 25px;
    }
    .caseDetailDate {  font-size: 16px;  line-height: 23px;
        padding-bottom: 40px;
    }
    .caseDetail_cate{position: static;}
    .caseDetailBox dd { 
    margin-top: 0px;
	padding-left: 0;padding-top: 4px;}
    .caseDetail_cate { font-size: 16px;}
    .caseDetailBox + .caseDetailBox { margin-top: 40px;}
}
@media (max-width: 500px){
    .caseDetail_img{ padding-top: 25px!important;}
    .caseDetail_img figure { width: 70%;
        object-fit: contain;
        margin: 0 auto
    }
    .caseDetail_img figure img{ max-height: 100%; width: 100%;}
}
/* ======================================//CASE Detail ======================================*/
/* ======================================VIRTURAL REGISTER======================================*/
.lnbVirtural_infoWrap{padding-top: 15px;}
.lnbContainer_virtual{padding-top: 76px;}
/* ======================================//VIRTURAL REGISTER======================================*/


/* ====================================== 20220104 추가작업 css ======================================*/
.patentbotContent {
	margin-top:30px;
    position: relative;
}
.patentbotContent ul {
    display: inline-block;
}
.patentbotContent li {
	font-family: Pretendard;
    position: relative;
    padding-left: 13px;
    font-size: 18px;
    letter-spacing: -0.15px;
    line-height: 26px;
    color: var(--txt-D);
    color: red;
    font-weight: 400;
	margin-bottom:10px;
}
.patentbotContent li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: red;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 11px;
}

@media (max-width: 1200px){
	.patentbotContent li {
		font-size: 16px;
		line-height: 22px;
	}
	.patentbotContent li::before {
		top: 9px;
	}
}

@media (max-width: 767px){
	.patentbotContent li {
		font-size: 15px;
		line-height: 20px;
		padding-left: 10px;
	}
	.patentbotContent li::before {
		top: 8px;
	}
}


/* ======================================overseas-application ======================================*/
.subV_bgover {background: url(../img/visual/subVisual04.jpg) no-repeat center;}

.ovmapBox {
    margin: 40px 0px 50px 0px;
    background: #F8F8F8;
    width: 100%;
    position: relative;
    padding: 30px 30px 48px 30px;
	/* height:400px; */
}
.ovable_title{
	font-family: 'Pretendard-SemiBold';
	display:block;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	color:#222;
}

.ovmap{
	padding-top:6px;
	text-align:center;
	display:block;
}
.ovmap img{
	height:292px;
	max-width:100%;
	display:inline-block;
}

.ovconBox{
	position:absolute;
	right:40px;
	bottom:38px;
	
}
.ovconBox dl{
	font-family: 'Pretendard-SemiBold';
	display:block;
	position:relative;
	padding-left:22px;
	margin-bottom:16px;
	font-size: 17px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0em;
	text-align: left;
}
.ovconBox dl:last-child{
	margin-bottom:0px;
}

.ovconBox dl:before{
	content:'';
	position:absolute;
	left:0px;
	top:3px;
	width:14px;
	height:14px;
	border-radius:50%;
}
.ovconBox dl:nth-child(1):before{
	background: linear-gradient(90deg, #FF636E 0%, #FF406F 99.82%);
}
.ovconBox dl:nth-child(2):before{
	background: linear-gradient(90deg, #FFC853 0%, #FFBB54 40.69%, #FFA157 99.27%);
}
.ovconBox dl:nth-child(3):before{
	background: linear-gradient(90deg, #7497F3 0%, #856EF4 99.82%);
}
.ovconBox dl:nth-child(4):before{
	background: linear-gradient(90deg, #E246F0 0%, #8C46F0 99.82%);
}
.ovconBox dl:nth-child(5):before{
	background: linear-gradient(90deg, #8CC6F0 0%, #8C91F0 99.82%);
}


.ovinfoBox{
	width:100%;
	position:relative;
	padding-left:330px;
	margin-bottom:100px;
}

.ovh2{
	position:absolute;
	left:0px;
	top:0px;
}
.ovh2 h2{
	font-family: 'Pretendard-Bold';
	font-size: 21px;
	font-weight: 700;
	line-height: 25px;
	letter-spacing: 0em;
	text-align: left;
	color:#14335A;
}
.ovh2 h2 span{
	position:relative;
	z-index:20;
}
.ovh2 h2 span b{
	font-weight: 700;
	position:relative;
	z-index:20;
}
.hbyline {
    z-index: 10;
    content: '';
    position: absolute;
    left: 0px;
    top: 22px;
    width: 100%;
    height: 7px;
    background: #FFD179;
    border-radius: 2px;
}

.ovcontBox{
	width:100%;
	position:relative;
	border-top: 1px solid #0048A3;
}

.oviconBox {
    border-bottom: 1px solid #EEEEEE;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0px 20px 0px;
}
.ovicon{
	display:inline-block;
	text-align:center;
}
.ovicon img{
	height:100px;
	display:inline-block;
	max-width:100%;
}
.ovicon h3{
	font-family: 'Pretendard-SemiBold';
	display:block;
	font-size: 16px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 0em;
	text-align: center;
	color:#222;
	margin-top:8px;
}

.ovcontBox h2 {
	font-family: 'Pretendard-Medium';
    font-size: 20px;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: 0px;
    text-align: left;
    color: #222;
    display: block;
    margin-top: 30px;
}
.ovcontBox h2 span{
	color:#14335A;
	font-weight: 700;
}

.overbottomBtnBox{
	width:100%;
	position:relative;
	height:180px;
	padding:0px 50px 0px 50px;
	
	background: #003372;
}
.ovtBg{
	position:absolute;
	right:0px;
	top:0px;
	z-index:10;
}
.ovttinner {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.ovtt {
	display:block;
}
.ovtt span{
	font-family: 'Pretendard-Bold';
	font-size: 27px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 0em;
	text-align: left;
	color:#fff;
}
.ovtt dl{
	font-family: Pretendard;
	margin-top:16px;
	display:block;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0px;
	text-align: left;
	color:#fff;
}

.ovtt_btn{
	z-index:20;
	position: absolute;
	width: 258px;
	height: 60px;
	right: 50px;
	top: 60px;
	background: #0048A3;
	box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.4);
}
.ovtt_btn a {
    padding: 0px 30px 0px 30px;
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ovtt_btn a img{
	height:10px;
}
.br12{
	display:none;
}
.mBr{display:none;}
@media (max-width: 1200px){
	.ovmapBox {
		margin: 40px 0px 50px 0px;
		background: #F8F8F8;
		width: 100%;
		position: relative;
		padding: 30px 30px 70px 30px;
	}
	.ovconBox {
		transform: translateX(50%);
		width: 500px;
		display: flex;
		position: absolute;
		right: 50%;
		bottom: 16px;
		justify-content: space-between;
	}
	
	.ovinfoBox {
		width: 100%;
		position: relative;
		padding-left: 0px;
		margin-bottom: 100px;
	}
	.ovh2 {
		position: relative;
		left: 0px;
		top: 0px;
		display: block;
		margin-bottom: 30px;
	}
	
	.br12{
		display:block;
	}
}
@media (max-width: 991px){
	.ovable_title {
		font-size: 18px;
		line-height: 22px;
	}
	.ovmap img {
		height: auto;
		max-width: 100%;
		display: inline-block;
	}
	
	.ovh2 h2 {
		font-size: 18px;
		line-height: 22px;
	}
	.ovcontBox h2 {
		font-size: 15px;
		line-height: 26px;
		margin-top: 20px;
	}
	
	
	.overbottomBtnBox {
		height: 180px;
		padding: 0px 30px 0px 30px;
	}
	.ovtt span {
		font-size: 24px;
		line-height: 30px;
	}
	.ovtt dl {
		margin-top: 14px;
		font-size: 16px;
		line-height: 22px;
	}
	.ovtt_btn {
		width: 248px;
		height: 50px;
		right: 30px;
		top: 65px;
		box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.4);
	}
	.ovtt_btn a {
		padding: 0px 20px 0px 20px;
		height: 100%;
		font-size: 18px;
		line-height: 22px;
	}
}
@media (max-width: 767px){
	.subV_bgover {background: url(../img/visual/subVisual04mo.jpg) no-repeat center;}
	.mBr{display:block!important;}
	.ovmapBox {
		margin: 0px 0px 60px 0px;
		background: #F8F8F8;
		width: 100%;
		position: relative;
		padding: 20px 20px 50px 20px;
	}
	.ovable_title {
		margin-bottom: 10px;
		letter-spacing: -0.4px;
		font-size: 16px;
		line-height: 20px;
	}
	.ovconBox {
		transform: translateX(50%);
		width: 300px;
		display: flex;
		position: absolute;
		right: 50%;
		bottom: 6px;
		justify-content: space-between;
	}
	.ovconBox dl {
		display: block;
		position: relative;
		padding-left: 14px;
		margin-bottom: 16px;
		font-size: 12px;
		font-weight: 600;
		line-height: 20px;
		letter-spacing: 0em;
		text-align: left;
		letter-spacing: -0.4px;
	}
	.ovconBox dl:before {
		content: '';
		position: absolute;
		left: 0px;
		top: 5px;
		width: 10px;
		height: 10px;
		border-radius: 50%;
	}
	
	
	.ovh2 {
		position: relative;
		left: 0px;
		top: 0px;
		display: block;
		margin-bottom: 10px;
	}
	.ovh2 h2 {
		font-size: 16px;
		line-height: 25px;
	}
	.hbyline {
		top: 18px;
		height: 5px;
		border-radius: 2px;
	}
	
	.oviconBox {
		flex-flow: row wrap;
		border-bottom: 1px solid #EEEEEE;
		display: flex;
		justify-content: space-around;
		align-items: center;
		padding: 20px 0px 20px 0px;
	}
	
	
	.ovinfoBox {
		margin-bottom: 60px;
	}
	.ovicon {
		margin-bottom: 20px;
		width: calc(50% - 0px);
		display: inline-block;
		text-align: center;
	}
	.ovicon:nth-child(3) {
		margin-bottom:0px;
	}
	.ovicon:nth-child(4) {
		margin-bottom:0px;
	}
	.ovicon img {
		height: 70px;
		max-width: 100%;
	}
	.ovicon h3 {
		font-size: 14px;
		line-height: 20px;
		margin-top: 4px;
	}
	
	.ovcontBox h2 {
		font-size: 16px;
		line-height: 26px;
		margin-top: 10px;
	}
	.ovcontBox h2 br{
		display:none;
	}
	
	
	.overbottomBtnBox {
		height: 206px;
		overflow: hidden;
		padding: 30px 20px 30px 20px;
	}
	.ovttinner {
		position: relative;
		z-index: 20;
		width: 100%;
		height: auto;
		display: block;
		align-items: center;
	}
	.ovtt span {
		font-size: 17px;
		line-height: 24px;
	}
	.ovtt dl {
		margin-top: 12px;
		font-size: 14px;
		line-height: 20px;
	}
	
	.ovtt_btn {
		margin-top: 20px;
		position: inherit;
		width: 100%;
		height: 50px;
		right: inherit;
		top: inherit;
		box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.4);
	}
	.ovtt_btn a {
		padding: 0px 20px 0px 20px;
		height: 100%;
		font-size: 16px;
		line-height: 20px;
	}
	
	.ovtBg {
		position: absolute;
		right: -370px;
		top: 0px;
		z-index: 10;
	}
	.ovtBg img{
		height:206px;
	}
}
/* ======================================//overseas-application ======================================*/