/* common */
*{
	--mainCol: #ff5b01;
	--mainCol: #182e4e;
	--pCol: #ff5b01;
	word-break: keep-all !important;
}

html, body {
	/* scroll-behavior: smooth; */
}

.mb{
	display: none !important;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;300;400;500;700;900&family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

@font-face {
    font-family: 'pl';
    src: url('/include/font/Pretendard-Light.woff') format('woff');
    /* font-weight: normal; */
    font-style: normal;
}

@font-face {
    font-family: 'gmm';
    src: url('/include/font/GmarketSansTTFMedium.ttf') format('truetype');
    /* font-weight: normal; */
    font-style: normal;
}

body{
	/* overflow-x: hidden; */
	font-family: 'Noto Sans KR', sans-serif;
	padding-top: 100px;
}

h1, h2, h3, h4, h5, h6,
dt, th,
input, button{
	font-family: 'Noto Sans KR', sans-serif;
	font-family: 'Noto Sans KR', 'Noto Sans', sans-serif;
}

body *{
}

.noto{
	font-family: 'Noto Sans KR', sans-serif !important;
}

.pb{
	font-family: "pb";
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6{
	/* font-family: "pb"; */
	/* font-weight: 400; */
}

.pt0{
	padding-top: 0 !important;
}

.pb0{
	padding-bottom: 0 !important;
}

.mb0{
	margin-bottom: 0 !important;
}

.content{
	overflow-x: hidden;
}

#bo_v_con img{
	max-width: 100%;
}

a.btn_admin, .btn_admin{
	display: none !important;
}

/* imgBox */
.imgBox img{
	max-width: 100%;
	margin: auto;
	display: block;
}

/* inner */
.inner{
	width: 97%;
	max-width: 1800px;
	margin: auto;
}

/* header */
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	box-sizing: border-box;
	transition: all 0.5s;
	/* background: rgba(13,13,13,0.7); */
}

.header::before{
	content: '';
	display: block;
	width: 100%;
	height: 90px;
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	background: rgba(68,6,9,0.8);
	background: rgba(255,255,255,1);
	box-shadow: rgba(0,0,0,0.1) 0 0 10px;
	transition: all 1s;
	opacity: 0;
}

.header:hover::before,
.header.light::before{
	opacity: 1;
	width: 100%;
}

/* .header:hover,
.header.light{
	background: #fff;
	border-bottom: 1px solid #eee;
} */

.header .inner{
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.header .logo img.b{
	display: none;
}

/* .header:hover .logo img.b,
.header.light .logo img.b{
	display: block;
}

.header:hover .logo img.w,
.header.light .logo img.w{
	display: none;
} */

.header .nav{
	width: 55%;
	max-width: 660px;
}

.header .nav > ul{
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.header .nav > ul > li{
	position: relative;
}

.header .nav > ul > li > a{
	font-size: 16px;
	font-weight: 400;
	display: block;
	height: 90px;
	line-height: 90px;
	position: relative;
}

/* .header:hover .nav > ul > li > a,
.header.light .nav > ul > li > a{
	color: #222;
} */

.header .nav > ul > li > a::after{
	content: '';
	display: block;
	width: 0%;
	height: 2px;
	opacity: 0;
	background: var(--mainCol);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	transition: all 0.3s;
}

/* .header .nav > ul > li:hover > a{
	color: var(--mainCol);
}

.header .nav > ul > li:hover > a::after{
	width: 100%;
	opacity: 1;
} */

.header .nav > ul > li > ul{
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%,0px);
	z-index: 10;
	padding: 10px 0;
	/* background: rgba(255,255,255,0.9); */
	border-radius: 15px;
	display: none;
}

.header .nav > ul > li > ul > li > a{
	display: block;
	font-size: 15px;
	line-height: 1.4;
	padding: 8px 0;
	text-align: center;
	font-weight: 500;
	width: 180px;
	/* color: #fff; */
	/* border-bottom: 1px dashed rgba(0,0,0,0.1); */
}

.header .nav > ul > li > ul > li > a:hover{
	color: var(--mainCol);
	/* color: #fff; */
}

.header .menuR{
	width: 45px;
	height: 45px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s;
	background: #222;
	background: #d1deee;
	border-radius: 50%;
}

.header:hover .menuR,
.header.light .menuR,
.header .menuR.on{
	/* background: var(--mainCol); */
}

.header .menuBtn{
	display: block;
	width: 18px;
	height: 15px;
	position: static;
	right: auto;
	top: auto;
	transform: translate(0,0%);
}

.header .menuBtn span{
	width: 100%;
	height: 2px;
	position: absolute;
	left: 50%;
	background: #fff;
	background: #182e4e;
	transition: all 0.4s
}

.header:hover .menuBtn span,
.header.light .menuBtn span{
	/* background: #fff; */
}

.header .menuBtn span:nth-child(1){
	top: 0;
	transform: translate(-50%,0%);
}

.header .menuBtn span:nth-child(2){
	top: 50%;
	transform: translate(-50%,-50%);
}

.header .menuBtn span:nth-child(3){
	top: 100%;
	transform: translate(-50%,-100%);
}

.header .on .menuBtn span:nth-child(1){
	top: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.header .on .menuBtn span:nth-child(2){
	opacity: 0;
}

.header .on .menuBtn span:nth-child(3){
	top: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
}

.header .navBg{
	position: fixed;
	top: 90px;
	left: 0;
	width: 100%;
	height: 250px;
	background: #fff;
	background: rgba(13,13,13,0.93);
	background: rgba(255,255,255,1);
	display: none;
	box-shadow: rgba(0,0,0,0.1) 0 0 10px;
}

.header .navBg .navTel h4{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 5px;
	padding-top: 40px;
}

.header .navBg .navTel a{
	font-size: 34px;
	color: var(--mainCol);
	font-weight: 700;
	display: flex;
	align-items: center;
}

.header .navBg .navTel a img{
	width: 40px;
	margin-right: 10px;
}

/* quickBar */
.quickBar{
	position: fixed;
	top: auto;
	bottom: 50%;
	right: 0px;
	/* width: 89px; */
	z-index: 50;
	transform: translate(110%,50%);
	/* box-shadow: rgba(0,0,0,0.1) 0 0 10px; */
	transition: all 2s;
}

.quickBar.on{
	right: 0px;
	transform: translate(0,50%);
}

.quickBar .quickH,
.quickBar .quickF{
	display: none;
}

.quickBar ul{
	box-shadow: rgba(0,0,0,0.1) 0 0 10px;
	/* width: 89px; */
	background: rgba(255,255,255,1);
	backdrop-filter: blur(10px);
	background: var(--mainCol);
	border-radius: 0px;
	padding: 30px 0px;
	/* display: flex; */
}

.quickBar ul li{
	width: 100%;
	margin: auto;
	margin-bottom: 15px;
	/* margin-left: 15px; */
	/* border-bottom: 1px solid #eee; */
}

.quickBar ul li:last-child{
	border-bottom: 0;
	margin-bottom: 0;
}

.quickBar ul li a{
	display: block;
	padding: 0px 15px;
	text-align: center;
}

.quickBar ul li img{
	width: 50px;
	margin: 0 auto 5px;
	display: block;
	/* animation: qk 1.5s infinite; */
}

.quickBar ul li:nth-child(2) img{
	animation-delay: 0.2s;
}

.quickBar ul li:nth-child(3) img{
	animation-delay: 0.4s;
}

.quickBar ul li:nth-child(4) img{
	animation-delay: 0.6s;
}

.quickBar ul li:nth-child(5) img{
	animation-delay: 0.8s;
}

@keyframes qk{
	0%{transform: rotate(0deg)}
	5%{transform: rotate(10deg)}
	15%{transform: rotate(-10deg)}
	20%{transform: rotate(0deg)}
}

.quickBar ul li span{
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}

/* quick */
.quickArea .quickOpenBtn{
	width: 94px;
	height: 94px;
	border-radius: 50%;
	cursor: pointer;
	display: block;
	position: fixed;
	right: 50px;
	bottom: 50px;
	background-image: url(/include/img/quick_off.png);
	background-color: var(--mainCol);
	background-color: #182e4e;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.4s;
	z-index: 10;
	box-shadow: rgba(0,0,0,0.3) 0 0 5px;
}

.quickArea.on .quickOpenBtn{
	background-image: url(/include/img/quick_on.png);
	background-color: var(--mainCol);
}

.quickArea ul{
	position: fixed;
	z-index: 9;
	right: 97px;
	bottom: 50px;
	height: 94px;
	display: flex;
	align-items: center;
	background: rgba(0,0,0,0.5);
	background: #fef8f5;
	border-radius: 200px 0 0 200px;
	box-shadow: rgba(0,0,0,0.2) 0 0 5px;
	overflow: hidden;
	padding: 0;
	width: 0;
	box-sizing: border-box;
	transition: all 0.5s;
	/* border: 4px solid var(--mainCol); */
	opacity: 0;
}

.quickArea.on ul{
	width: 380px;
	padding: 0px 30px;
	padding-right: 50px;
	opacity: 1;
	box-sizing: border-box;
}

.quickArea ul li{
	/* transform: scaleX(0); */
	transition: all 0.5s;
	overflow: hidden;
	/* display: none; */
}

.quickArea.on ul li{
	/* transform: scaleX(1); */
	/* display: block; */
}

.quickArea ul li a{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.quickArea ul li .icon{
	background: var(--mainCol);
	/* background: #182e4e; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
}

.quickArea ul li .icon img{
	width: 23px;
}

.quickArea ul li p{
	/* color: #fff; */
	color: #555;
	font-size: 14px;
	text-align: center;
	font-weight: 600;
	width: 100%;
	white-space: nowrap;
	margin-top: 6px;
}

/* subContent */
.subContent{
	width: 100%;
	margin: 0px auto 0;
	/* min-height: calc(100vh - 90px); */
}

/* subVisual */
.subVisual{
	/* margin-top: 90px; */
	height: 533px;
	padding-top: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: auto 553px;
	/* background-attachment: fixed; */
	background-image: url(/include/img/visual_my.jpg);
	display: none !important;
}

.subVisual[data-group='intro']{
	background-image: url(/include/img/visual_intro.jpg);
}

.subVisual[data-group='work']{
	background-image: url(/include/img/visual_work.jpg);
}

.subVisual[data-group='community']{
	background-image: url(/include/img/visual_community.jpg);
}

.subVisual[data-group='online']{
	background-image: url(/include/img/visual_online.jpg);
}

.subVisual[data-group='case']{
	background-image: url(/include/img/visual_case.jpg);
}

.subVisual[data-group='my']{
	background-image: url(/include/img/visual_my.jpg);
}

.subVisual[data-group='column']{
	background-image: url(/include/img/visual_column.jpg);
}

.subVisual span{
	color: #fff;
	font-size: 20px;
	display: block;
	text-align: center;
	line-height: 1;
	margin-bottom: 13px;
}

.subVisual h2{
	text-align: center;
	color: #fff;
	font-size: 40px;
}

/* subNavi */
.subNavi ul{
	display: flex;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #c1c1c1;
}

.subNavi ul li{
	width: 50%;
}

.subNavi ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 18px;
	color: #1c1c1c;
	background: #f5f3f1;
	background: #f6f8fa;
	text-align: center;
	height: 60px;
	box-sizing: border-box;
}

.subNavi ul li + li a{
	border-left: 1px solid #c1c1c1;
}

.subNavi ul li.on a{
	/* background: var(--mainCol); */
	/* color: #fff; */
	color: var(--mainCol);
	font-weight: 600;
	/* border-color: var(--mainCol) */
}

/* onlineForm */
.onlineForm{
	border-radius: 30px;
	border: 1px solid #e2e2e2;
	box-sizing: border-box;
	padding: 50px 40px;
}

.onlineForm .formTit{
	text-align: center;
	font-size: 30px;
	line-height: 1;
	font-weight: 600;
}

.onlineForm .formTit strong{
	font-weight: 600;
	color: var(--mainCol);
}

.onlineForm .formP{
	text-align: center;
	margin-top: 15px;
	font-size: 18px;
	font-weight: 500;
}

.onlineForm ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
}

.onlineForm ul li{
	display: flex;
	margin-top: 20px;
	width: calc(100%/2 - 30px/2);
}

.onlineForm ul li:nth-child(-n+2){
	margin-top: 0;
}

.onlineForm ul li.full{
	width: 100%;
}

.onlineForm ul li label{
	font-size: 18px;
	width: 200px;
	font-weight: 600;
	line-height: 50px;
	display: none;
}

.onlineForm ul li .inputBox{
	width: calc(100% - 0px);
}

.onlineForm ul li .inputBox input,
.onlineForm ul li .inputBox select,
.onlineForm ul li .inputBox textarea{
	height: 50px;
	width: 100%;
	box-sizing: border-box;
	line-height: 50px;
	padding-left: 15px;
	font-size: 16px;
	border: 0;
	border-radius: 15px;
	background: #fef8f5;
	background: #f6f8fa;
}

.onlineForm ul li .inputBox textarea{
	height: 250px;
	width: 100%;
	line-height: 1.5;
	padding: 14px;
}

.onlineForm .perDiv{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
}

.onlineForm .perDiv label{
	font-size: 15px;
	color: #444;
	margin-left: 5px;
}

.onlineForm .perDiv input{
	width: 18px;
}

.onlineForm .sendBtn{
	width: 200px;
	height: 50px;
	line-height: 50px;
	background: var(--mainCol);
	background: #182e4e;
	color: #fff;
	font-size: 20px;
	text-align: center;
	display: block;
	border-radius: 120px;
	margin: 20px auto 0;
}

/* footer */
#footer{
	width: 100%;
	background: #1c1c1c;
	padding: 50px 0;
	text-align: center;
	border-radius: 50px 50px 0 0;
}

#footer .fLogo{
	width: 151px;
	margin: auto;
	margin-bottom: 40px;
}

#footer .fLogo img{
	width: 100%;
}

#footer .fnb{
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

#footer .fnb li{
	position: relative;
	margin-right: 10px;
	padding-right: 10px;
}

#footer .fnb li::after{
	content: '';
	display: block;
	width: 1px;
	height: 12px;
	background: #ccc;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
}

#footer .fnb li:last-child{
	margin-right: 0;
	padding-right: 0;
}

#footer .fnb li:last-child::after{
	display: none;
}

#footer .fnb li a{
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	opacity: 0.8;
}

#footer p{
	font-size: 13px; 
	line-height: 2;
	color: #fff;
	opacity: 0.8;
}



/* ---------------------------------------------------------- 1024 */
@media screen and (max-width: 1024px){




}


/* ---------------------------------------------------------- 720 */
@media screen and (max-width: 720px){

body {
	overflow-x: hidden;
	padding-top: 70px;
}

.pc{
	display: none !important;
}

.mb{
	display: block !important;
}

.inner{
	width: 90%;
}

/* header */
.header{
	/* z-index: 51; */
}

.header::before{
	height: 60px;
}

.header .inner{
	height: 60px;
	/* justify-content: center; */
	position: relative;
}

.header .logo{
	width: 90px;
}

.header .logo img{
	max-width: 100%;
}

.header .nav{
	width: 100%;
	position: fixed;
	top: 60px;
	right: 0;
	height: 100%;
	transform: translateX(110%);
	z-index: 999;
	background: #fff;
	transition: 1s;
	border-top: 1px solid #eee;
	/* display: none; */
}

.header .nav.show{
	transform: translateX(0%);
}

.header .nav > ul{
	flex-wrap: wrap;
}

.header .nav > ul > li{
	position: relative;
	width: 100%;
	border-bottom: 1px solid #eee;
}

.header .nav > ul > li > a{
	font-size: 14px;
	height: 50px;
	line-height: 50px;
	box-sizing: border-box;
	padding-left: 15px;
	color: #1c1c1c;
	font-weight: 600 !important;
}

.header .nav > ul > li > a::after{
	height: 2px;
}

.header .nav > ul > li > ul{
	position: static;
	left: auto;
	top: auto;
	transform: translate(0%,0);
	z-index: 10;
	padding-top: 10px;
	display: none;
}

.header .nav > ul > li > ul > li > a{
	font-size: 13px;
	padding: 8px 0;
	text-align: left;
	width: 100%;
	color: #1c1c1c;
	padding-left: 20px;
}

.header .nav > ul > li > a:hover,
.header .nav > ul > li > ul > li > a:hover{
	color: var(--mainCol);
}

.header .navBg{
	display: none !important;
}

/* quickBar */
.quickBar{
	top: auto;
	bottom: 0;
	right: auto;
	left: 0;
	width: 100%;
	transform: translate(0%,0%);
	box-shadow: rgba(0,0,0,0.1) 0 0 10px;
}

.quickBar.on{
	transform: translate(0,0%);
}

.quickBar .quickH,
.quickBar .quickF{
	display: none;
}

.quickBar ul{
	width: 100%;
	background: var(--mainCol);
	display: flex;
	border-radius: 0px 0px 0 0;
	padding: 0;
}

.quickBar ul li{
	width: 50%;
	margin-bottom: 0;
	border-bottom: 0px solid #eee;
}

.quickBar ul li a{
	padding: 10px 0 10px;
	text-align: center;
}

.quickBar ul li img{
	width: 36px;
	margin: 0 auto 3px;
}

.quickBar ul li span{
	font-size: 10px;
	color: #fff;
}

/* quick */
.quickArea .quickOpenBtn{
	width: 70px;
	height: 70px;
	right: 5vw;
	bottom: 5vw;
	display: none;
}

.quickArea ul{
	right: calc(5vw + 35px);
	right: 0;
	bottom: 0vw;
	height: 70px;
	border-radius: 20px 20px 0 0;
	background: #f6f8fa;
}

.quickArea ul{
	width: calc(100% - 5vw - 5vw - 35px);
	width: 100%;
	padding: 0px 4vw;
	opacity: 1;
}

.quickArea ul li .icon{
	width: 40px;
	height: 40px;
	background: #182e4e;
}

.quickArea ul li .icon img{
	width: 22px;
}

.quickArea ul li p{
	font-size: 11px;
	margin-top: 4px;
}


/*----- nav -----*/

/* subContent */
.subContent{
	/* padding: 12vw 0; */
}

/* subVisual */
.subVisual{
	/* margin-top: 90px; */
	height: 70vw;
	padding-top: 60px;
	background-size: auto 70vw;
	background-attachment: fixed;
}

.subVisual span {
    font-size: 3vw;
    margin-bottom: 2vw;
}

.subVisual h2{
	font-size: 6.5vw;
}

/* subNavi */
.subNavi ul{
	display: flex;
	flex-wrap: wrap;
	border-radius: 5vw;
	border: 1px solid #c1c1c1;
	background: #f5f3f1;
}

.subNavi ul li{
	border: 0;
	border-bottom: 1px solid #c1c1c1;
}

.subNavi ul li:nth-last-child(-n+2){
	border-bottom: 0px;
}

.subNavi ul li:nth-child(2n-1){
	border-right: 1px solid #c1c1c1;
}

.subNavi.two ul li{
	width: calc(100%/2);
}

.subNavi.three ul li{
	width: calc(100%/3);
}

.subNavi.four ul li{
	width: calc(100%/4);
}

.subNavi ul li a{
	font-size: 3vw;
	height: 10vw;
	border: 0 !important;
}

/* footmenu */
.footmenu{
	padding: 5vw 0;
}

.footmenu .fLogo{
	width: 120px;
	margin: auto;
}

.footmenu .fLogo img{
	width: 100%;
}

.footmenu .inner > ul{
	display: none;
}

/* onlineForm */
.onlineForm{
	border-radius: 5vw;
	padding: 7vw 5vw;
}

.onlineForm .formTit{
	font-size: 5vw;
}

.onlineForm .formP{
	margin-top: 3vw;
	font-size: 3.5vw;
}

.onlineForm ul{
	margin-top: 5vw;
}

.onlineForm ul li{
	margin-top: 3vw !important;
	width: calc(100%);
}

.onlineForm ul li:nth-child(-n+1){
	margin-top: 0 !important;
}

.onlineForm ul li label{
	display: none;
}

.onlineForm ul li .inputBox input,
.onlineForm ul li .inputBox select,
.onlineForm ul li .inputBox textarea{
	height: 10vw;
	line-height: 10vw;
	padding-left: 3vw;
	font-size: 3vw;
	border-radius: 3vw;
}

.onlineForm ul li .inputBox textarea{
	height: 30vw;
	padding: 3vw;
	line-height: 1.5;
}

.onlineForm .perDiv{
	margin-top: 3vw;
}

.onlineForm .perDiv label{
	font-size: 2.5vw;
	margin-left: 1vw;
}

.onlineForm .perDiv input{
	width: 3vw;
}

.onlineForm .sendBtn{
	width: 70%;
	height: 12vw;
	line-height: 12vw;
	font-size: 4vw;
	border-radius: 120px;
	margin: 4vw auto 0;
}

/* footer */
#footer{
	padding: 10vw 0;
	padding-bottom: calc(10vw + 70px);
	border-radius: 7vw 7vw 0 0;
}

#footer .fLogo{
	width: 80px;
	margin-bottom: 7vw;
}

#footer .fnb{
	margin-bottom: 2vw;
}

#footer .fnb li{
	margin-right: 2vw;
	padding-right: 2vw;
}

#footer .fnb li::after{
	height: 3vw;
}

#footer .fnb li a{
	font-size: 3vw;
}

#footer p{
	font-size: 2.5vw; 
}


/* mbBtn */
.mbBtn ul{
	display: flex;
}

.mbBtn li{
	width: 50%;
	font-size: 0;
}

.mbBtn li a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 14vw;
	background: #cdc081;
	font-size: 0;
}

.mbBtn li:last-child a{
	background: #283548;
	vertical-align: middle;
}

.mbBtn li a span{
	font-size: 4vw;
	margin-left: 1vw;
	font-weight: 600;
	color: #fff;
}

.mbBtn li a img{
	max-width: 50px;
	width: 5vw;
}

/* newform */
.newform{
	padding: 12vw 0;
	background-image: url(/include/img/form_bg_m.jpg);
}

.newform .inner{
	width: 90%;
	flex-wrap: wrap;
}

.newform .inner .txtBox{
	width: 100%;
	text-align: center;
	margin-bottom: 12vw;
}

.newform .inner .txtBox h2{
	color: #fff;
	font-size: 4vw;
	margin-bottom: 1vw;
}

.newform .inner .txtBox .callBox{
	display: flex;
	align-items: center;
	justify-content: center;
}

.newform .inner .txtBox .callBox img{
	width: auto;
	width: 5vw;
	max-width: 35px;
}

.newform .inner .txtBox .callBox p{
	font-size: 7vw;
	color: #fff;
	font-weight: bold;
}

.newform .inner .txtBox .callBox p strong{
	font-weight: bold;
	margin-left: 1vw;
}

.newform .inner .txtBox .callBox p strong:last-child{
	display: inline-block;
}

.newform .inner form{
	width: 100%;
}

.newform .inner .formBox{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.newform .formUl{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

.newform .formUl li{
	width: 100%;
}

.newform .formUl li:nth-child(1){
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 4vw;
}

.newform .formUl li:nth-child(1) > div{
	width: 32%;
	height: 10vw;
	line-height: 10vw;
	margin-right: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.newform .formUl li:nth-child(1) > div:last-child{
	margin-right: 0;
}

.newform .formUl li:nth-child(1) > div .iconCheck{
	display: block;
	width: 3vw;
	height: 10vw;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-right: 1vw;
}

.newform .formUl li:nth-child(1) > div input{
	display: none;
}

.newform .formUl li:nth-child(1) > div label{
	color: #fff;
	font-size: 3vw;
	cursor: pointer;
}

.newform .formUl li:nth-child(2){
	display: none;
}

.newform .formUl li .tellDiv{
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.newform .formUl li select,
.newform .formUl li input[type='text'],
.newform .formUl li input[type='tel']{
	height: 8vw;
	line-height: 8vw;
	width: 32%;
	border: 0;
	box-sizing: border-box;
	padding-left: 10px;
	/* border-radius: 0; */
	font-size: 3vw;
	font-weight: bold;
}

.newform .formUl li:nth-child(2) input[type='text'],
.newform .formUl li:nth-child(2) input[type='tel']{
	width: 100%;
}

.newform .check{
	margin: 2vw 0;
	margin-right: 1vw;
	width: calc(100%);
}

.newform .check .per{
	display: flex;
	align-items: center;
	white-space: nowrap;
	color: #fff;
	font-size: 2.5vw;
}

.newform .check .per input{
	margin-right: 3px;
	width: 2.5vw;
}

.newform .check .per a{
	color: #fff;
	margin-left: 3px;
	display: inline-block;
}

.newform .btnBox{
	width: 100%;
	display: flex;
	justify-content: center;
}

.newform .btnBox > div{
	width: 100%;
}

.newform .btnBox a{
	display: block;
	width: 100%;
	height: 12vw;
	line-height: 12vw;
	color: #fff;
	font-size: 3vw;
	text-align: center;
}

/* call_banner */
.call_banner{position: fixed;bottom: 0;left: 0;z-index: 99}
.call_banner img{
	width: 100%;
}

/* nav5 formCoun */
/* .counForm {background: #ffd543; height: 390px; padding:6% 0;} */
/* .counForm ul {}
.counForm ul li {}
.counForm ul li div {display: flex;}
.counBtn {display: block;width: 90%;margin:auto}
.sub_04 .subtit {width:70%; text-align: center;}
.sub_04 form ul li {font-size: 14px;}
.sub_04 form .client {width:90%; margin:auto;line-height:40px;}
.sub_04 form .client .uName {height: 40px;line-height: 40px;width: 25%}
.sub_04 form .client .uTel {height: 40px;line-height: 40px;width: 26%; border-radius:5px; margin-right:4%;}
.sub_04 form .client .area_input {width: 75%;}
.sub_04 form .client .input-num-size {width: 100%;height: 40px;border-radius:5px;}
.sub_04 form ul li label{float:left;width:100px;color:#444;line-height:44px;text-indent: 30px;border-radius: 5px 0px 0 5px;text-indent: 26px;}
.sub_04 form ul li label.uName {background: url(../img/ico_uName4.png) no-repeat left 7px center #fff; background-size: 15px auto;}
.sub_04 form ul li label.uTel {background: url(../img/ico_uTel4.png) no-repeat left 7px center #fff; background-size: 15px auto;}
.sub_04 form .proBox {position: relative; height: 50px; overflow:auto; padding:5px; background:#fff; width:87%; margin:auto; font-size: 12px; border-radius: 5px;}
.sub_04 form .check {text-align: left; margin:3% 6%; font-size:14px}
.input-num-size {width:25%;}
.blind {width:0;}
.wave {margin: 0 3%;} */






}