@charset "UTF-8";


#cs {
	padding:0px 0px 120px;
}
.csWp {
	width:100%;
	max-width:900px;
	margin: 0 auto 0;
}
/*=========================================
* Top
*==========================================*/
.csTop h3 {
	text-align:center;
	font-size:55px;
	font-weight:600;
}
.csTop p {
	text-align:center;
	font-size:20px;
}
/*=========================================
* title
*==========================================*/

.csTitle { 
	margin-top:60px;
	padding-bottom:10px;
	border-bottom:1px solid #222;
}
.csTitle.first {
	margin-top:0;
}
.csTitle h4 {
	font-size:22px;
	font-weight:500;
}
.csTitle h4 span {
	float:right;
	font-size:17px;
	font-weight:300;
	color:#333;
}
.csTitle h4 span i {
	font-size:20px;
	color:#ef0a0a;
	margin-right:5px;
}

/*=========================================
* 리스트
*==========================================*/
.csFormWp dl {
	margin:0;
	display: table;
    width: 100%;
    table-layout: fixed;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
	min-height:86px;

}
.csFormWp.checkformWp dl { 
	padding:15px 0;
}
.csFormWp dl:after {
	content:"";
	display:table;
	clear:both;
}
.csFormWp dl dt {
	margin: 0;
    padding: 0;
	display: table-cell;
	vertical-align: middle;
    font-weight: 600;
    width: 100px;
	font-size:17px;
	text-align:right;
	padding-right:10px;
}
.csFormWp dl dt i {
	color:#ef0a0a;
	margin-right:5px;
}
.csFormWp dl dd {
	margin: 0;
    padding: 0 20px 0 20px;
	display: table-cell;
	width: 100%;
    line-height: 22px;
}
.csFormWp dd .checks {
	display: inline-block;
    margin: 10px 20px 10px 0; 
}
.csFormWp dd span {
	display:block;
	padding:5px 0;
	color:#333;
	font-size:14px;
	font-weight:300;
	letter-spacing:0;
	text-align:right;
}
.csFormWp dd.tel:after {
	content:"";
	display:block;
	clear:both;
}
.csFormWp dd.tel input {
    width: 30%;
    float: left;
}
.csFormWp dd.tel span {
    width: 5%;
    display: block;
    float: left;
    line-height: 40px;
    text-align: center;
}

.csFormWp.csBasic:after {
	content:"";
	display:block;
	clear:both;
} 

 
/*=========================================
* input text
*==========================================*/
input[type="text"], input[type="password"], select{
    padding: 10px 15px;
    width: 100%;
    height: 45px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	 appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
	background:#f4f4f4;
	font-size:16px;
	color:#222;
}
input[type="text"]:focus, input[type="password"]:focus {
	border:1px solid #222;
	outline: 0 none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important;
    box-shadow: none !important;
}
/*=========================================
* 기타문의사항
*==========================================*/
textarea {
	padding: 10px 15px;
    width: 100% !important;
	border: 0;
	background:#f4f4f4;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
	-webkit-box-shadow:none;
    box-shadow: none;
	height:300px;
	font-size:16px;
	color:#222;
}
textarea:focus {
	border:1px solid #222;
	outline: 0 none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important;
    box-shadow: none !important;
}
/* form icon */

.inp_wp {
	margin-top:20px;
	position:relative;
}
.inp_wp i {
	width:50px;
	height:50px;
	text-align:center;
	line-height:50px;
	position:absolute;
	top:0px;
	right:0px;
	font-size:20px;
	color:#999;
	background:#fff;
	border:0;
}


/*=========================================
* 체크박스
*==========================================*/

.checks input[type="checkbox"] {
    /* 실제 체크박스는 화면에서 숨김 */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.checks input[type="checkbox"] + label {
    display: inline;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin: 0;
    color: #999;
    letter-spacing: -1px;
}

.checks input[type="checkbox"] + label {
    font-size: 15px;
	font-weight:400;
	color:#666;
	letter-spacing:0;
}

.checks input[type="checkbox"] + label:before {
    /* 가짜 체크박스 */
    content: ' ';
    display: inline-block;
    width: 22px;
    /* 체크박스의 너비를 지정 */
    height: 22px;
    /* 체크박스의 높이를 지정 */
    line-height: 22px;
    /* 세로정렬을 위해 높이값과 일치 */
    margin: -2px 8px 0 0;
    text-align: center;
    vertical-align: middle;
    background: url(../img/bg_chkbox_off.png) no-repeat left top;
    border: none;
    border-radius: 0;
}

.checks input[type="checkbox"] + label:active:before, .checks input[type="checkbox"]:checked + label:active:before {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.checks input[type="checkbox"]:checked + label {
    color: #000;
}
.checks input[type="checkbox"]:checked + label:before {
    /* 체크박스를 체크했을때 */
    background: url(../img/bg_chkbox_on.png) no-repeat left top;
    border: none;
    border-radius: 0;
}
.checks input[type="checkbox"]:disabled + label:before {
    /* 체크박스를 체크했을때 */
    background: url(../img/bg_chkbox_dis.png) no-repeat left top;
    border: none;
    border-radius: 0;
}

@media (max-width: 480px) {
    .checks input[type="checkbox"] {
        /* 실제 체크박스는 화면에서 숨김 */
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0
    }

    .checks input[type="checkbox"] + label:before {
        /* 가짜 체크박스 */
        content: ' ';
        display: inline-block;
        width: 20px;
        /* 체크박스의 너비를 지정 */
        height: 20px;
        /* 체크박스의 높이를 지정 */
        line-height: 20px;
        /* 세로정렬을 위해 높이값과 일치 */
        margin: -2px 6px 0 0;
        text-align: center;
        vertical-align: middle;
        background: url(../img/bg_chkbox_off02.png) no-repeat left top;
        -webkit-background-size: cover;
        background-size: cover;
        border: none;
        border-radius: 0;
    }

    .checks input[type="checkbox"]:checked + label:before {
        /* 체크박스를 체크했을때 */
        background: url(../img/bg_chkbox_on02.png) no-repeat left top;
        -webkit-background-size: cover;
        background-size: cover;
        border: none;
        border-radius: 0;
    }

    .checks input[type="checkbox"] + label {
        font-size: 14px;
    }
}



/*===============================================
*select bellatrix edit
===============================================*/
.select-area dd {
    position: relative;
}

.select-area dd::after {
    content: "\e936";
    position: absolute;
    top: 15px;
    right: 30px;
    z-index: 50;
    font-family: xeicon !important;
    color: #454545;
}

.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 50px;
    padding: 10px 38px 10px 16px;
    transition: border-color .1s ease-in-out,box-shadow .1s ease-in-out;
    border: 1px solid #aaa;
}

.custom-select:hover {
    border: 1px solid #999;
}

.custom-select:focus {
    border: 1px solid #222;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.2);
    outline: none;
}

/* remove default arrow in IE */
.custom-select::-ms-expand {
    display:none;
}




/*=========================================
* 개인정보취급동의
*==========================================*/
.chkbox-wrapper {
	margin-top:30px;
}
.chkbox-wrapper .chk {
	position: relative;
	padding: 0 0 0 35px;
	line-height: 26px; 
	display: block; 
	cursor: pointer; 
	-webkit-user-select: none; 
	-moz-user-select: none; 
	-ms-user-select: none; 
	user-select: none; 
}
.chkbox-wrapper .chk:last-child { 
	padding-bottom: 0; 
}
.chkbox-wrapper .chk:first-child ~ .chk { 
	color: #666; 
}
.chkbox-wrapper .chk input { 
	position: absolute; 
	filter: alpha(opacity=0); 
	opacity: 0; 
}
.chkbox-wrapper .boxchk { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 26px; 
	height: 25px; 
	background: url(../img/customer_qanda_check.png) no-repeat; 
}
.chkbox-wrapper .chk:hover input ~ .boxchk { 
	background: url(../img/customer_qanda_check.png) #fff no-repeat; 
}
.chkbox-wrapper .boxchk:after { 
	content: ""; 
	position: absolute; 
	display: none; 
}
.chkbox-wrapper .chk input:checked ~ .boxchk:after { 
	display: block; 
}
.chkbox-wrapper .chk .boxchk:after { 
	width: 26px; 
	height: 25px; 
	background: url(../img/customer_qanda_check_on.png) no-repeat; 
}
span.impact {
	font-size:24px;
	font-weight:400;
}
span.explain {
	display:block;
	font-size:16px;
	font-weight:300;
}
.agree { 
	margin-top: 3.125rem; 
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box; 
}
.agree .title { 
	font-size: 18px; 
	font-weight: 300; 
	letter-spacing: -0.1rem; 
}
.agree ul { 
	margin-top: 1.25rem; 
	padding: 30px; 
	border: 1px solid #aaa;
	background:#f7f7f7;
}
.agree ul li { 
	letter-spacing: -0.1rem; 
}
.agree ul li:first-child ~ li { 
	margin-top: 1.875rem; 
}
.agree ul strong { 
	padding-left: 0.625rem; 
	font-size: 16px; 
	font-weight: 400; 
	display: block; 
}
.agree ul strong::before { 
	content: url(../img/customer_bullet.gif); 
	position: relative; 
	top: -2px;
	right: 8px; 
}
.agree ul p { 
	margin-top: 0.3125rem; 
	padding-left: 0.875rem; 
	font-size: 15px; 
	color: #666; 
}


/*=========================================
* 버튼
*==========================================*/
.contact_btn {
	margin-top:40px;
	text-align:right;
}
.contact_btn .ok {
	background: transparent;
	padding:15px 90px;
	color:#222;
	font-size:16px;
	border:2px solid #222;
	transition: 0.3s ease-in-out;
	background:#fff;
	border-radius:0;
	position:relative;
}
.contact_btn .ok:hover {
	color:#fff;
	 background-color: #222;
}

/*=========================================
* 반응형
*==========================================*/
@media (max-width:1600px) {
}
@media (max-width:1200px) {
	#cs { margin-top:60px; }
	.csTop h3 { font-size:40px; }
	.csTop p { font-size:17px; }
	.csTitle { margin-top:60px; }
	.csWp { max-width:750px; }
}
@media (max-width:992px) {
	.csTitle h4 { font-size:18px; }
	.csTitle h4 span { font-size:13px; }
	.csFormWp dl dt { font-size:15px; width:80px; }
	.checks input[type="checkbox"] + label { font-size:13px; }
	.csFormWp input[type="text"], input[type="password"] { font-size:13px; }
	.csFormWp textarea { height:250px; }
	.csFormWp dl { padding:10px 0; min-height:60px; }
	.checks input[type="checkbox"] + label:before { margin:-2px 4px 0 0; }
	.csFormWp dd .checks { margin:10px 10px 10px 0; }
	span.impact { font-size:20px; }
	span.explain { font-size:13px; }
	.agree ul { padding:2rem;  }
	.agree ul p { font-size:14px; }
	.contact_btn { text-align:center; }
}
@media (max-width:830px) { 
	#cs { padding:0 2rem; }
	.contact_btn { margin-top:30px; margin-bottom:30px; }
}
@media (max-width:767px) {
	#cs { margin-top:0;}
	.csTop h3 { font-size:30px; }
	.csTop p { font-size:15px; }
	.csWp { padding:0 0rem; }
	.csTitle { padding-bottom:0;  margin-top:30px; }
	.csTitle h4 { font-size:15px; text-align:left;   padding:7px 0; }
	.csTitle h4 span { display:none;}
	.csFormWp dl { padding:10px 0; }
	.csFormWp dl dt { width:70px; text-align:center; font-size:13px; }
	.csFormWp dl dt i { display:block;}
	.csFormWp dl dd { width:100%; padding:0 10px; }
	input[type="text"] { height:40px; padding:5px 10px; font-size:13px; }
	.csFormWp dd span { text-align:left; font-size:12px;}
	.checks input[type="checkbox"] + label { font-size:13px; }
	.csFormWp dd .checks {margin:5px 20px 5px 0; }
	textarea { font-size:13px; }
	span.impact { font-size:18px; }
	span.explain { font-size:12px; line-height:1.4; letter-spacing:-0.01rem;}
	.csFormWp textarea { height:200px; }
	.agree ul { margin-top:0; padding:1.5rem; }
	.agree ul strong { font-size:13px; }
	.agree ul p { font-size:12px; letter-spacing:-0.01rem;}

}