/* 축소하지 못했습니다. 축소되지 않은 콘텐츠를 반환합니다.
(796,24): run-time error CSS1038: Expected hex color, found '#FFF0'
 */
html, body{
	position:relative;
}

body{
	margin: 0;
	padding-top: 68px;
	font-family: 'Noto Sans KR', sans-serif;
	height: 100%
}


.noscroll_y {
	overflow-y: hidden;
	touch-action: none;
}

.noscroll_x{
	overflow-x: hidden;
}

.html_lock_IE{
	height: 100%;
	overflow: hidden;
}

/*Header*/

header{
	z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	height: 68px;
	background-color: white;
	border-bottom: 1px solid #EBECF0;
	-ms-user-select: none; 
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none
}

header:hover #sub_nav{
	top:67px;
}

header #wrap_nav{
	z-index: 100;
	background-color: #fff;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
}

header #logo_nav{
	float: left;
	position: relative;
	height: 34px;
	top:50%;
	-webkit-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

header ul{
	float: right;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	top: 50%;
	padding: 0;
	margin: -16px 0 0 0;
	height: 32px;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}

header ul li{
	cursor: pointer;
	list-style: none;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	margin-left: 36px;
	width: 80px;
}

header ul li a{
	display: block;
	text-decoration: none;
	color: black;
}

#sub_nav{
	z-index: -1;
	position: fixed;
	box-sizing: border-box;
	display: inline-block;
	background-color: #fff;
	top: -146px;
	width: 100%;
	height: 120px;
	border-bottom: 1px solid #EBECF0;
	transition: all 0.2s ease-out;
}

.wrap_sub_nav{
	max-width: 1200px;
	margin: 0 auto;
}

.right_sub_nav{
	float: right;	
}

.menu_sub_nav{
	display: inline-block;
	vertical-align: top;
	text-align: center;
	width: 80px;
	margin-left: 36px;
	font-size: 14px;
	line-height: 30px;
	color: #444;
}

.menu_sub_nav a div{
	color: black;
}

.menu_sub_nav a{
	cursor: pointer;
	margin-bottom: 8px;
	color: #000;
	text-decoration: none;
}

.menu_sub_nav a:hover{
	text-decoration: underline;
}

#hamburger_menu_button{
	display: none;
	float: right;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	top: 50%;
	margin-top: -22px;
	width: 44px;
	height: 44px;
}

@media screen and (max-width: 1240px){
	header #wrap_nav, header #sub_nav{
		padding: 0 36px;
	}	
}

@media (max-width:960px){
	body{
		padding-top: 54px;
	}
	header{
		height: 54px;
	}
	header #logo_nav{
		height: 28px;
	}
	header #wrap_nav, header #sub_nav{
		padding: 0 8px 0 16px;
	}
	header ul{
		display: none;
	}
	#hamburger_menu_button{
		display: block !important;
	}
	#sub_nav{
		display: none;
	}
}

/*Hamburger Menu*/

/*Button*/

button{
	cursor: pointer;
	font-family: 'Noto Sans KR', sans-serif !important;
}

.shd_pri_btn{
	box-shadow: 0 28px 36px -16px rgba(255, 54, 75, .45);
}

.color_pri_btn{
	background-color: #FF364B;
	color: white;
	border: none;
	transition: background 0.15s ease-out;
}

.color_pri_btn:hover{
	background-color: #FF4F62;
}

.color_sec_btn{
	background-color: #EBECF0;
	color: #686B7D;
	border: none;
	transition: background 0.15s ease-out;
}

.color_sec_btn:hover{
	background-color: #F4F4F7;
}

/*Top Button*/

.top{
	z-index: 50;
	display: block;
	cursor: pointer;
	position: fixed;
	background-color: white;
	width: 48px;
	height: 48px;
	border: 1px solid #EBECF0;
	bottom: 64px;
	right: -50px;
	box-shadow: 0 12px 16px -8px rgba(0,0,0,.1);
	transition: all 0.2s ease-out;
}

.top img{
	width: 48px;
}

.visible{
	right: 50px;
}

@media screen and (max-width: 768px){
	.top{
		bottom: 50px;
	}
	.visible{
		right: 36px;
	}
}

@media screen and (max-width: 375px){
	.top{
		bottom: 36px;
	}
	.visible{
		right: 16px;
	}
}
/*Footer*/

footer{
	width: 100%;
	text-align: left;
	background-color: #222222;
}

#wrap_footer{
	max-width: 1200px;
	margin: 0 auto;
	padding: 44px 0;
	height: 36px;
	line-height: 160%;
	font-size: 12px;
	color: rgba(255,255,255,.5);
}

.text_footer{
	float: left;
}

.footer_label{
	font-weight: 700;	
	margin: 0 4px 0 8px;
}

.contact_footer{
	margin-bottom: 8px;
}

.contact_footer span a{
	color: rgba(255,255,255,.5);
	text-decoration: none;
}

.logo_footer{
	float: right;
	width: 72px;
}

@media screen and (max-width:1240px){
	#wrap_footer{
		padding: 44px 36px;
	}
}

@media screen and (max-width:768px){
	#wrap_footer{
		height: auto;
	}
	.text_footer{
		float: none;
	}
	.text_footer .footer_label:nth-child(2){
		margin: 0 4px 0 0;
	}
	.contact_footer span:nth-child(1){
		display: block;
	}
	.logo_footer{
		float: none;
		display: block;
		margin-top:20px;
	}
}

@media screen and (max-width: 500px){
	.contact_footer{
		width: 220px;
	}
	.text_footer .footer_label:nth-child(6){
		margin: 0 4px 0 0;
	}
}


@media screen and (max-width:375px){
	#wrap_footer{
		padding: 36px 16px;
	}
}
/*Common*/
.invisible{
	display: none;
}

.sec_common{
	width: 100%;
	padding-bottom: 100px;
}

.wrap_sec_common{
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width:1240px){
	.wrap_sec_common{
		margin: 0 36px;
	}	
}

@media screen and (max-width:500px){
	.wrap_sec_common{
		margin: 0 16px;
	}
}

.wrap_title_content{
	padding: 60px 0 48px 0;
}

.title_content{
	line-height: 100%;
	font-size: 36px;
	font-weight: 500;
	color: black;	
	margin: 0;
}

.wrap_content{
	padding: 36px 0;
}

.wrap_cont_l{
	padding: 64px 0;
	border-bottom: 1px solid #EBECF0;
}

.wrap_sec_common .wrap_cont_l:nth-child(2){
	border-top: 1px solid #EBECF0;
}

.wrap_sub_title_content{
	display: inline-block;
	width: 17%;
	vertical-align: top;
}

@media screen and (max-width:768px){
	.title_content{
		font-size: 28px;
		font-weight: bold;
	}
	.wrap_sub_title_content{
		display: block;
		width: 100%;
		margin-bottom: 32px;
	}
}

.sub_title_content{
	line-height: 100%;
	font-size: 20px;
	font-weight: 700;
	color: black;
	margin: 0;
}

@media screen and (max-width:375px){
	.title_content{
		font-size: 20px;
	}
	.wrap_title_content{
		padding: 48px 0 24px 0;
	}
	.wrap_content{
		padding: 20px 0;
	}
	.sub_title_content{
		font-size: 16px;
	}
	.wrap_sub_title_content{
		margin-bottom: 16px;
	}
	.wrap_cont_l{
		padding: 36px 0;
	}
}

.info_content{
	display: inline-block;
	width: 82%;
	color: #444;
	font-size: 15px;
}

@media screen and (max-width:768px){
	.info_content{
		width: 100%;
		font-size: 14px;
	}
}

.info_group{
	margin:0;
}

@media screen and (max-width: 375px){
	.info_group{
		margin-top: 16px;
	}
}

.info_t_field{
	margin-bottom: 31px;
}

.info_label{
	font-size: 15px;
	line-height: 15px;
	font-weight: 500;
	color: #000;
	margin-bottom: 11px;
}

.info_prgph{
	line-height: 27px;
}

.info_prgph_crt{
	margin-top: 4px;
}

.info_prgph_in{
	margin-left: 10px;
}

.info_prgph_br{
	margin-bottom: 6px;
}

.banner{
	width: 100%;
	line-height: 100%;
	font-size: 36px;
	font-weight: 500;
	color: white;
}

.banner div{
	max-width: 1200px;
	margin: 0 auto;
	padding: 132px 0;
}

@media screen and (max-width:1240px){
	.banner div{
		margin:0 36px;
	}
}

@media screen and (max-width:500px){
	.banner div{
		margin:0 16px;
	}
}

@media screen and (max-width:500px){
	.banner {
		font-size: 24px;
	}
	
	.banner div{
		padding: 64px 0;
	}
}
	
	
.radio_wrap {
	position: relative;
	margin: 12px 36px 12px 0px;
}

.radio_wrap input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	top: -1px;
	overflow: hidden;
	clip:rect(0,0,0,0);
	border: 0;
}

.radio_wrap input[type="radio"] + label {
	display: inline-block;
	position: relative;
	padding-left: 26px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.radio_wrap input[type="radio"] + label:before {
	content: '';
	position: absolute;
	left: 0;
	top:2px;
	width: 16px;
	height: 16px;
	text-align: center;
	background: #fff;
	border: 1px solid #A9ACBA;
	border-radius: 100%;
	box-shadow: none;
}

.radio_wrap input[type="radio"] + label:active:before, .radio_wrap input[type="radio"]:checked + label:active:before {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.radio_wrap input[type="radio"]:checked + label:before {
	background: #fff;
	border-color: #FF364B;
}

.radio_wrap input[type="radio"]:checked + label:after {
	content: '';
	position: absolute;
	top: 7px;
	left: 5px;
	width: 8px;
	height: 8px;
	background: #FF364B;
	border-radius: 100%;
}

/*checkbox*/

.ckbox_wrap {
	position: relative;
	margin-right: 48px;
}

.ckbox_wrap input[type="checkbox"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	top: -1px;
	overflow: hidden;
	clip:rect(0,0,0,0);
	border: 0;
}

.ckbox_wrap input[type="checkbox"] + label {
	display: inline-block;
	position: relative;
	padding-left: 26px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.ckbox_wrap input[type="checkbox"] + label:before {
	content: '';
	position: absolute;
	left: 0;
	top:9px;
	width: 16px;
	height: 16px;
	text-align: center;
	border: 1px solid #A9ACBA;
	box-shadow: none;
}

.ckbox_wrap input[type="checkbox"] + label:active:before, .ckbox_wrap input[type="radio"]:checked + label:active:before {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.ckbox_wrap input[type="checkbox"]:checked + label:before {
	border-color: #FF364B;
	background: url('/img/checkbox.png') no-repeat center center/cover;
}


/*clear*/

.clr{
	clear:both;
}

/*table*/

@media screen and (max-width:375px){
	table{
		font-size: 13px;
	}
}

.table_new{
	display: inline-block;
	width: 16px;
	text-align: center;
	font-family: 'Poppins';
	color: #FF364B;
	font-weight: 700;
	margin-right: 6px;
}

.table_lock{
	width: 16px;
	text-align: center;
	vertical-align: middle;
	margin-right: 6px;
	margin-top: -5px;
}

/*Pagination*/

.pagination{
	text-align: center;
	margin: 24px 0 100px 0;
}

.arrow_left_pgn, .numb_pgn_active, .numb_pgn, .arrow_right_pgn{
	font-family: 'Poppins';
	display: inline-block;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	text-align: center;
	font-size: 14px;
	line-height: 32px;
	cursor: pointer;
}

.numb_pgn, .numb_pgn_active{
	margin-right: 12px;
}

.numb_pgn{
	color: #444;
	transition: background .2s ease-out, font-weight .2s ease-out;
}

.numb_pgn:hover{
	background-color: #F4F4F7;
	font-weight: 600;
}

.numb_pgn_active{
	background-color: #FF364B;
	color: #fff;
	font-weight: 600;
}

.arrow_left_pgn, .arrow_right_pgn{
	display: inline-block;
}
.arrow_left_pgn{
	background: url('/img/arrow_left_pgn.png') no-repeat center center/cover;
	display: inline-block;
	margin-right: 12px;
}
.arrow_right_pgn{
	background: url('/img/arrow_right_pgn.png') no-repeat center center/cover;
	display: inline-block;
}

@media screen and (max-width:768px){
	.pagination div:nth-child(7), .pagination div:nth-child(8), .pagination div:nth-child(9), .pagination div:nth-child(10), .pagination div:nth-child(11){
		display: none;
	}
	.numb_pgn, .numb_pgn_active{
		margin-right: 4px;
	}
	.arrow_left_pgn{
		margin-right: 4px;
	}
}
/*For Media*/

@media screen and (max-width: 375px){
	.mob_blck{
		display: block !important;
	}
	.radio_row_crt{
		height: 43px;
		margin: 20px 0 0 0 ;
	}
}

/*Tab*/

.tab{
	box-sizing: border-box;
	border-bottom: 1px solid #D7D9E0;
	-ms-user-select: none; 
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.wrap_tab{
	max-width: 1200px;
	margin: 0 auto;
}

.tab_menu, .tab_menu_active{
	cursor: pointer;
	display: inline-block;
	box-sizing: border-box;
	font-size: 15px;
	line-height: 54px;
	font-weight: 500;
	margin-right: 24px;
}

.tab_menu a{
	text-decoration: none;
	color: #9c9c9c;
	transition: color 0.15s ease-out;
}

.tab_menu a:hover{
	color: #6c6c6c;
}

.tab_menu_active{
	color: #FF364B;
	border-bottom: 3px solid #FF364B;
	border-top: 3px solid #FFF0;
}

@media screen and (max-width:1240px){
	.wrap_tab{
		margin: 0 36px;
	}
}

@media screen and (max-width: 768px){
	.tab_menu, .tab_menu_active{
		line-height: 44px;
	}
}

@media screen and (max-width: 500px){
	.wrap_tab{
		margin: 0 16px;
	}
}

/*Modal*/

.modal_bg{
	display: none;
	position: fixed;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	top: 0;
	left: 0;
	z-index: 200;
}

.modal_prv{
	z-index: 201;
	box-sizing: border-box;
	display: none;
	max-width: 588px;
	width: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: white;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.wrap_modal{
	margin: 0 auto;
	padding: 0 36px;
}


.modal_close{
	float: right;
	cursor: pointer;
	background-color: white;
	width: 48px;
	transition: background 0.2s ease-out;
}

.modal_close:hover{
	background-color: #EBECF0;
}

.modal_title{
	margin: 48px 0 36px 0;
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	color: #000;
	text-align: center;
}

.modal_text_field{
	overflow: auto;
	box-sizing: border-box;
	background-color: #F4F4F7;
	padding: 24px;
	width: 100%;
	height: 244px;
	font-size: 15px;
	color: #444;
}

.modal_btn{
	box-sizing: border-box;
	margin: 36px auto;
	width: 100%;
	outline: none;
	border: none;
	text-align: center;
	font-size: 16px;
	line-height: 52px;
	font-weight: 500;
}

@media screen and (max-width:768px){
	.wrap_modal{
		padding: 0 24px;
	}
	.modal_prv{
		max-width: 480px;
	}
	.modal_text_field{
		font-size: 14px;
	}
	.modal_title{
		margin: 48px 0 24px 0;
	}
	.modal_text_field{
		height: 200px;
	}
	.modal_btn{
		margin: 24px auto;
	}
}

@media screen and (max-width:375px){
	.modal_text_field{
		font-size: 14px;
	}
	.modal_title{
		font-size: 16px;
		margin: 48px 0 16px 0;
	}
	.modal_text_field{
		height: 160px;
		padding: 16px;
	}
	.modal_btn{
		margin: 20px auto 24px auto;
	}
}

/**/
.modal_doc_bg{
	display: block;
	position: fixed;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	top: 0;
	left: 0;
	z-index: 200;
}

.modal_doc_prv{
	z-index: 201;
	box-sizing: border-box;
	display: block;
	width: 90%;
	max-width: 588px;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: white;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.modal_doc_text{
	text-align: center;
	font-size: 15px;
	line-height: 27px;
	color: #444;
}
.modal_doc_tmb{
	margin: 0 0 20px 0;
}
.modal_doc_tmb p{
	line-height: 27px;
	margin: 0;
}
.modal_doc_tmb strong{
	display: block;
	padding-bottom: 12px;
}
@media screen and (max-width:768px){
	.modal_doc_prv{
		max-width: 480px;
	}
	.modal_doc_text{
		font-size: 14px;
		line-height: 24px;
	}
}

@media screen and (max-width:375px){
	.modal_doc_prv{
	}
}

/*Editor Text Field*/

.field_editor{
	padding: 48px 0;
	border-top: 1px solid #D7D9E0;
	border-bottom: 1px solid #D7D9E0;
}

.field_editor img{ max-width: 100%}


.btn_go_list, .btn_del{
	box-sizing: border-box;
	padding: 0 32px;
	margin-top: 24px;
	font-size: 14px;
	line-height: 42px;
	font-weight: 500;
}


.btn_go_list{
	margin-left: 12px;
	float: right;
}

.btn_del{
	margin-right: 12px;
	float: left;
}


/*Hamburber Navigation*/
.mb_nav_bg{
	display: none;
	position: fixed;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 200;
	transition: all 0.2s ease-out;
}
.c_before{
	background-color: rgba(0,0,0,0);
}
.c_after{
	background-color: rgba(0,0,0,0.8);
}
.mb_nav{
	z-index: 201;
	box-sizing: border-box;
	display: none;
	width: 300px;
	height: 100%;
	position: absolute;
	top: 0;
	right: -350px;
	background-color: white;
	transition: all 0.2s ease-out;
}

.close_nav{
	cursor: pointer;
	width: 44px;
	float: right;
	margin: 5px 8px 0 0;
}

.child_menu{
	overflow: hidden;
	transition: max-height 0.3s ease-out, padding 0.3s ease-out;
	max-height: 0;
	padding: 0;
}

.spread .child_menu{
	max-height: 10em;
}

.menu_mb_nav{
	cursor: pointer;
	padding: 20px 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
	color: #000;
	transition: background 0.2s ease-out;
}

.menu_mb_nav:hover{
	background-color: #F4F4F7;
}

.first_menu{
	margin-top: 48px;
}

.child_menu{
}

.child_menu div{
	background-color: #F9FAFC;
	padding: 20px 16px 20px 24px;
	font-size: 14px;
	line-height: 100%;
	font-weight: 400;
	color: #000;
}

.child_menu div:hover{
	background-color: #EBECF0;	
}

.mb_nav a{
	text-decoration: none;
}

.arrow_nav{
	width: 16px;
	float:right;
	transition: all ease-out 0.2s;
}

.spread .arrow_nav{
	transform: rotate(180deg);
}

/*No Content*/

.no_content{
}

.no_content img{
	display: block;
	width: 64px;
	margin: 100px auto 12px auto;
}

.no_content div{
	width: 280px;
	text-align: center;
	margin: 0 auto 164px auto;
	font-size: 15px;
	line-height: 15px;
	font-weight: 400;
}

@media screen and (max-width:375px){
	.no_content img{
		margin: 64px auto 12px auto;
	}
	.no_content div{
		margin: 0 auto 100px auto;
	}
}

/*Validation*/

.vld_alert{
	color: #FF5555;
	margin: 4px 0 0 0;
}

/*input*/
input, textarea{
	-webkit-appearance: none;
	border-radius: 0;
}

/*Color*/
.red{
	color: #ff3333;
}
/*Banner*/

.main_banner{
	display: inline-block;
	width: 100%;
	height: 612px;
	background: url("../img/main_banner_bg.png") no-repeat center center/cover;
	text-align: center;
}

.main_banner_content{
	display: inline-block;
	position: relative;
	top: 50%;
	margin-top: -206px;
	height: 418px;
}

/*Button-Apply*/

.btn_go_apply{
	width: 100%;
	height: 56px;
	padding: 0;
	margin: 0;
	background-color: #FF364B;
	border: none;
	text-align: center;
	line-height: 100%;
	font-size: 16px;
	font-weight: 700;
	color: white;
}

.arrow_btn_go_apply{
	vertical-align: middle;
	width: 16px;
	margin-left: 6px;
	margin-top: -3px;
}
/*Section Common*/
.sm_1, .sm_2, .sm_3, .sm_4, .sm_5, .sm_6{
	box-sizing: border-box;
}

.low_resol{
	display: none !important;
}
/*Section 1*/
.sec_main{
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto;
	overflow: visible;
}

.sm_1{
	padding: 125px 0 100px 0;
}

.sm_2{
	padding :100px 0;
}

/*Section 1*/

.sm_1 h1{
	font-size: 56px;
	line-height: 138%;
	font-weight: 800;
	color: #000;
	margin: 0 0 24px 0;
}

.sm_1 p{
	font-family: 'Poppins';
	font-size: 14px;
	line-height: 14px;
	font-weight: 300;
	margin: 0 0 36px 0;
	padding-left: 4px;
	overflow: visible;
}

.text_sm_1 a{
	text-decoration: none;
}

.btn_m_guide, .btn_m_apply{
	box-sizing: border-box;
	display: inline-block;
	width: 170px;
	border-radius: 0;
	font-size: 16px;
	line-height: 52px;
	font-weight: 500;	
}

.btn_m_guide{
	background: none;
	border: 1px solid #FF364B;
	color: #FF364B;
	margin: 0 21px 0 4px;
	
}

.btn_m_apply{
	border: 1px solid #FF364B;
}

.split_sm_1{
	width: 49%;
	display: inline-block;
	vertical-align: middle;
	overflow: visible;
}

.sm_1 div img{
	float: right;
	display: inline-block;
	vertical-align: middle;
	width: 376px;
	box-shadow: 36px 36px 48px 0 rgba(0,0,0,.35);
}


/*Section 2*/

.img_sm_2{
	display: inline-block;
	position: relative;
	background: url('/img/sm_2.png') no-repeat left center/cover;
	width: 472px;
	height: 292px;
	vertical-align: middle;
}

.img_sm_2 h2{
	position: absolute;
	right: -12%;
	font-size: 36px;
	line-height: 36px;
	font-weight: 800;
	color: #000;
	margin: 44px 0 0 0;	
}

.right_sm_2{
	float: right;
	display: inline-block;
	vertical-align: top;
	margin-top: 55px;
	width: 55%;
}

.view_all_sm_2{
	text-align: right;
}

.view_all_sm_2 img{
	width: 14px;
	vertical-align: middle;
}

.view_all_sm_2 p{
	vertical-align: middle;
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #444;
	margin: 0;
}

.label_field_sm_2{
	margin-bottom: 14px;
}

.new_sm_2{
	float:left;
}

.bar_sm_2{
	font-family: 'Poppins';
	float: right;
	font-size: 14px;
	line-height: 14px;
	
}

.board_sm_2{
	margin-top: 48px;
}

.post_sm_2{
	float: right;
	margin-left: 36px;
	width: 27%;
}

.new_sm_2{
	font-family: 'Poppins';
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	color: #FF364B;
	
}

.title_sm_2{
	font-size: 15px;
	font-weight: 500;
	line-height: 27px;
	color: #444;
	margin-bottom: 14px;
	max-height: 60px;
	display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.date_sm_2{
	font-family: 'Poppins';
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #878B9C;
}

/*Section 3*/

.sm_3{
	max-width: 1200px;
	position: relative;
	margin:0 auto;
	padding: 100px 0;
}

.card_sm_3{
	position: relative;
	height: 500px !important;
}

.card_sm_3 div div{
	position: absolute;
	display: inline-block;
	vertical-align: middle;
	top:120px;
	left: 324px;
	width: 136px;
}

.slider_sm_3{
	min-height: 300px;
}

.arrows_sm_3{
	float: right;
}


.prev_sm_3, .next_sm_3{
	cursor: pointer;
	display: inline-block;
	width: 48px;
	height: 48px;
	border-radius: 24px;
	background-color: #000;
	transition: background 0.15s ease-out;
}

.prev_sm_3 img, .next_sm_3 img{
	width: 48px;
	height: 48px;
}

.prev_sm_3{
	margin-right: 16px;
}

.prev_sm_3:hover, .next_sm_3:hover{
	background-color: #444;
}

.sm_3 h2{
	font-size: 36px;
	line-height: 36px;
	font-weight: 800;
	color:#000;
	margin: 0 36px 48px 0;
	display: inline-block;
	vertical-align: middle;
}

.view_all_sm_3{
	text-align: left;
	display: inline-block;
	vertical-align: top;
	margin-top: 6px;
}

.view_all_sm_3 img{
	width: 14px;
	vertical-align: middle;
}

.view_all_sm_3 p{
	vertical-align: middle;
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #444;
	margin: 0;
}


/*Section 4*/
.sm_4{
	max-width: 1200px;
	position: relative;
	margin:0 auto;
	padding: 100px 0;
}

.sm_4 h2{
	font-size: 36px;
	line-height: 36px;
	font-weight: 800;
	color: #000;	
	margin: 0 0 64px 0;
	display: inline-block;
}

.view_all_sm_4{
	text-align: right;
	float: right;
	margin-top: 5px;
}

.view_all_sm_4 img{
	width: 14px;
	vertical-align: middle;
}

.view_all_sm_4 p{
	vertical-align: middle;
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #444;
	margin: 0;
}

.q_sm_4, .a_sm_4{
	display: inline-block;
	width: 16px;
	margin-right: 6px;
	margin: 3px 8px 0 0;
	float: left;
}

.wrap_q_sm_4, .wrap_a_sm_4{
	vertical-align: top;
}

.wrap_q_sm_4{
	margin-bottom: 10px;
}

.question_sm_4, .answer_sm_4{
	float:left;
	vertical-align: top;
	display:-webkit-box;
    -webkit-box-orient:vertical;
	overflow: hidden;
	font-size: 14px;
	line-height: 24px;
	width: 80%;
	margin-bottom: 12px;
	
}

@media screen and (max-width: 375px){
	.question_sm_4, .answer_sm_4{
		margin-bottom: 4px;
	}
}

.question_sm_4{
	color: #000;
    -webkit-line-clamp:2;
	font-weight: 500;
}

.answer_sm_4{
	color: #444;
    -webkit-line-clamp:2;
	font-weight: 400;
}

.faq_sm_4{
	display: inline-block;
	vertical-align: top;
	width: 22%;
	margin-right: 3.4%;
}

.wrap_faq_sm_4 .faq_sm_4:nth-child(4){
	margin: 0;
}

/*Section 5*/

.sm_5{
	max-width: 1200px;
	position: relative;
	margin:0 auto;
	padding: 100px 0;
}

.split_right_sm_5, .split_left_sm_5{
	display: inline-block;
}

.split_right_sm_5{
	margin-left: 172px;
}

.img_contact_sm_5{
	position: relative;
	display: inline-block;
	width: 368px;
	height: 490px;
	background: url('/img/img_contact_sm_5.png') no-repeat center center/cover;
}

.h2_contact{
	font-size: 36px;
	line-height: 36px;
	font-weight: 800;
	position: absolute;
	right: -46px;
	top: 46px;
	margin: 0;
	color: #000;
}

.h2_qa{
	font-size: 36px;
	line-height: 36px;
	font-weight: 800;
	margin: 0 0 24px 0;
}

.wrap_ct_text_sm_5{
	display: inline-block;
	vertical-align: top;
	margin: 146px 0 0 48px;
}

.textset_sm_5{
	margin-bottom: 24px;
}

.label_sm_5{
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #000;
	margin-bottom: 8px;
}

.call_sm_5, .email_sm_5, .time_sm_5{
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #686B7D;
}

.call_sm_5 a{
	color: #686B7D;
	text-decoration: none;
}

.img_qa_sm_5{
	display: inline-block;
}

.wrap_qa_text_sm_5{
	vertical-align: top;
	display: inline-block;
	margin-left: 36px;
}

.view_all_sm_5{
	text-align: left;
	display: inline-block;
	vertical-align: top;
	margin-top: 6px;
}

.view_all_sm_5 img{
	width: 14px;
	vertical-align: middle;
}

.view_all_sm_5 p{
	vertical-align: middle;
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #444;
	margin: 0;
}
/*Section 6*/

.sm_6{
	background-color: #F9FAFC;
	position: relative;
	padding: 64px 0;
}

.wrap_sm_6{
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.sm_6 img{
	background-color: #fff;
	border: 1px solid #EBECF0;
	width: 170px;
	margin: 0 6px;
}

.sm_6 h2{
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	color: #000;
	margin: 0 0 36px 0;
}

/*Responsive Section*/


@media screen and (max-width:1240px){
	.sm_1, .sm_2, .sm_3, .sm_4, .sm_5, .sm_6{
		padding: 70px 36px;
		max-width: none;
	}
    
    .slider_sm_3{ min-height: 400px}
	.sm_1 h1{
		font-size: 48px;
	}
	.sm_1 div img{
		width: 70%;
	}
	.btn_m_guide, .btn_m_apply{
		width: 150px;
		line-height: 42px;
	}
	.btn_m_guide{
		margin-right: 12px;
	}
	.split_right_sm_5{
		display: block;
		margin: 48px 0 0 55%;
	}
	.right_sm_2{
		float: none;
		display: block;
		margin-top: 20px;
		width: 100%;
	}
	.view_all_sm_2{
		width: 100%;
	}
	.board_sm_2{
		float: none;
		width: 100%;
		margin: 0 0 0 18px;
		text-align: right;
	}
	.post_sm_2{
		float: none;
		display: inline-block;
		width: 22%;
		margin: 0 5% 0 0;
		text-align: left;
	}
	.board_sm_2 .post_sm_2:nth-child(3){
		margin-right: 0;
	}
	.view_all_sm_2{
		margin-bottom: 24px;
	}
	.sm_2 h2{
		bottom: -16px;
		left: 16px;
	}
	.sm_3 .year_ctst{
		display: none;
	}
	.sm_3 .ctst_ab{
		width: 100%;
		left: 0;
		top: 0;
		margin-left: 0 !important;
	}
	.sm_3 .ctst_ab div{
		display: none;
	}
	.poster_main{
		width: 80% !important;
	}
	.card_sm_3{
		height: auto !important;
	}
}

@media screen and (max-width:950px){
	.sm_1 h1{
		font-size: 36px;
	}
	.slider_sm_3{
		min-height: 370px;
	}
	.sm_2 h2, .sm_3 h2, .sm_4 h2, .sm_5 h2{
		font-size: 28px;
	}
	.h2_contact{
		right: -38px;
		top: 24px;
	}
}

@media screen and (max-width:768px){
	.sm_1, .sm_2, .sm_3, .sm_4, .sm_6{
		padding: 42px 36px;
		max-width: none;
	}
	.sm_5{
		padding: 28px 36px 72px 36px;
		max-width: none;
	}
	.split_sm_1{
		display: block;
		width: 100%;
	}
	.text_sm_1{
		text-align: center;
		margin-top: 36px;
	}
	.low_resol{
		display: block !important;
		margin: 0 auto;
	}
	.sm_1 div img{
		float: none;
		width: 50% !important;
		display: block !important;
		margin: 0 auto !important;
	}
	.high_resol{
		display: none !important;
	}
	.faq_sm_4{
		width: 46%;
		margin: 0 5% 36px 0;
	}
	.wrap_faq_sm_4 .faq_sm_4:nth-child(1), .wrap_faq_sm_4 .faq_sm_4:nth-child(3){
		margin: 0 12px 36px 0;
	}
	
	.sm_3 .poster_ctst{
		width: 200px !important;
        height: 280px !important;
	}
	.img_sm_2{
		width: 100%;
	}
	.board_sm_2{
		text-align: left;
		margin:0;
	}
	.post_sm_2{
		width: 29%;
	}
	.slider_sm_3{
		min-height: 300px;
	}
	.wrap_faq_sm_4 .faq_sm_4:nth-child(2), .wrap_faq_sm_4 .faq_sm_4:nth-child(4){
		margin: 0;
	}
	.split_right_sm_5{
		margin: 64px 0 0 0;
	}
	.img_contact_sm_5{
		width: 160px;
		height: 280px;
	}
	.wrap_ct_text_sm_5{
		margin: 100px 0 0 32px;
	}
	.h2_qa{
		position: static;
	}
	.view_all_sm_3{
		bottom: 146px;
	}
}

@media screen and (max-width: 640px){
	.sm_3 .poster_ctst{
		
	}
	.slider_sm_3{
	
	}
}
@media screen and (max-width: 500px){
	.post_sm_2{
		width: 100%;
		margin-bottom: 24px;
	}
	.title_sm_2{
		margin-bottom: 6px;
	}
	.label_field_sm_2{
		margin-bottom: 6px;
	}
	.bar_sm_2{
		display: none;
	}
	.sm_3 .poster_ctst{
		
	}
	.arrows_sm_3{
		float:none;
		margin-bottom:20px;
	}
	.sm_3 h2{
		margin: 0 24px 24px 0;
	}
	.slider_sm_3{
	
	}
	.faq_sm_4{
		width: 100%;
		margin: 0 0 20px 0 !important;
	}
	.answer_sm_4{
		width: 90%;	
		margin-bottom: 0;
	}
	.sm_4 h2{
		margin: 0 0 24px 0;
	}
	.split_right_sm_5, .split_left_sm_5{
		display: block;
	}
	.img_contact_sm_5{
		display: block;
		width: 100%;
		height: 120px;
	}
	.h2_contact{
		top:auto;
		bottom: -14px;
		left: 16px;
	}
	.wrap_ct_text_sm_5{
		margin: 36px 0 0 16px;
	}
	.sm_6 img{
		width: 124px;
		margin: 0 4px;
	}
}
@media screen and (max-width: 400px){
	.sm_1, .sm_2, .sm_3, .sm_4, .sm_5, .sm_6{
		padding: 34px 16px;
		max-width: none;
	}
	.sm_1 h1{
		font-size: 32px;
		margin: 0 0 16px 0;
	}
	.sm_1 p{
		margin: 0 0 20px 0;
	}
	.btn_m_guide, .btn_m_apply{
		box-sizing: border-box;
		width: 100%;
		display: block;
	}
	.btn_m_guide{
		margin: 0 auto 12px auto;
	}
    
        
	.sm_3 .poster_ctst{
        
        width: 140px !important;
        height: 200px !important;
		
	}
	.slider_sm_3{
        min-height:230px
	}

}

@media screen and (max-width: 375px){
	.sm_1, .sm_2, .sm_3, .sm_4, .sm_5, .sm_6{
		padding: 34px 16px;
		max-width: none;
	}
	.prev_sm_3, .next_sm_3{
		width: 36px;
		height: 36px;
	}
	.prev_sm_3 img, .next_sm_3 img{
		width: 36px;
		height: 36px;
	}
	.prev_sm_3{
		margin-right: 8px;
	}
    

	.sm_4 h2{
		margin: 0 0 24px 0;
	}
}
/**/

.wrap_main{
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	background-color: white;
}

.wrap_main_content{
	display: inline-block;
	float: left;
	width: 30%;
	height: 226px;
	margin-right: 4.7%;
	margin-bottom: 48px;	
}

.wrap_main_content_big{
	display: inline-block;
	float: left;
	width: 64.7%;
	margin-right: 4.7%;
}

.wrap_main_content_small{
	display: inline-block;
	float: left;
	width: 30%;
	margin-right: 4.7%;
}

.wrap_main div:nth-child(3), .wrap_main div:nth-child(5){
	margin-right: 0;
}

.title_main_content{
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid #D7D9E0;
	text-align: left;
	color: black;
	line-height: 100%;
	font-size: 20px;
	font-weight: 500;
	padding-bottom: 16px;
}

.title_main_content div, .title_main_content_nu div{
	display: inline-block;
	float: right;
	margin-top:3px;
	
}

.title_main_content img, .title_main_content_nu img{
	display: table-cell;
	width: 16px;
}

.title_main_content_nu{
	display: inline-block;
	width: 100%;
	text-align: left;
	color: black;
	line-height: 100%;
	font-size: 20px;
	font-weight: 500;
	padding-bottom: 16px;
}

.more_board{
	display: table-cell;
	float: left;
	line-height: 100%;
	font-size: 14px;
	font-weight: 300;
	color: #686B7D;
}

.board_main div{
	text-align: left;
	padding: 12px 0;
	font-size: 14px;
	line-height: 100%;
	color: #444;
}

.board_main div:first-child{
	margin-top: 8px;
}

.poster_main{
	padding: 0;
	width: 100%;
}

.poster_main img{
	display: inline;
	width: 18.4%;
	margin-right: 2%;
}

.poster_main img:nth-child(5){
	margin-right: 0;
}

.contact_main{
	text-align: left;
}

.contact_main .wrap_contact_main:nth-child(1){
	margin-top: 16px;
}

.wrap_contact_main{
	margin-top: 28px;
}

.contact_main div img{
	background-color: #F7F7F9;
	width: 36px;
	height: 36px;
	border-radius: 18px;
	box-sizing: border-box;
}

.contact_main_text_field{
	display: inline-block;
	margin: 0 0 0 16px;
	height: 36px;
}

.contact_main_label{
	line-height: 100%;
	margin-bottom: 8px;
	font-size: 14px;
	color: black;
}

.contact_main_text{
	line-height: 100%;
	font-size: 14px;
	color: #686B7D;
}

.btn_qa_main{
	width: 100%;
	background-color: #F4F4F7;
	border: none;
	padding: 18px 0;
	line-height: 100%;
	font-size: 16px;
	font-weight: 500;
	color: #444;
	margin-bottom: 37px;
}

.img_host_main{
	display: inline-block;
	background: url('../img/host_1.png') no-repeat center center/cover;
	width: 47.2%;
	height: 76px;
	border: 1px solid #EBECF0;
	margin-right: 12px;
}

.img_host_main:nth-child(2){
	margin-right: 0;
	background: url('../img/host_2.png') no-repeat center center/cover;
}
.banner_introduce{
	background: url('../img/banner_introduce.png') no-repeat center center/cover;
}

.tb_int{
	width: 100%;
	border-spacing: 1px;
}

.tb_int tr{
	
}

.label_tb_int{
	background-color: #F9FAFC;
	border-bottom: 1px solid #EBECF0;
	height: 100%;
	width: 20%;
	text-align: center;
	font-weight: 500;
	color: #000;
}

.text_tb_int{
	border-bottom: 1px solid #EBECF0;
	padding: 11px 20px;
	width: 75%;
	font-weight: 400;
	line-height: 30px;
	color: #444;
}

@media screen and (max-width: 375px){
	.text_tb_int{
		line-height: 20px;
	}
}

.tb_int:nth-child(1){
	border-top: 1px solid #C5C7D1;
}

.tb_memb{
	width: 100%;	
	border-spacing: 0px;
}

.tr_memb_name th{
	background-color: #F9FAFC;
	border-top: 1px solid #C5C7D1;
	border-bottom: 1px solid #EBECF0;
	width: 30%;
	height: 50px;
	font-weight: 500;
	color: #000;
}

.tr_memb_name th:nth-child(1), .tr_memb_name th:nth-child(2), .tr_memb_text td:nth-child(1), .tr_memb_text td:nth-child(2){
	border-right: 1px solid #EBECF0
}

.tr_memb_text td{
	border-bottom: 1px solid #EBECF0;
	padding: 11px 20px;
	width: 30%;
	text-align: center;
	font-weight: 400;
	line-height: 27px;
	color: #444;
}
.banner_guide{
	background: url('../img/banner_guide.png') no-repeat center center/cover;
}

.btn_dl_guide{
	border: 1px solid #FF364B;
	background: none;
	outline: none;
	padding: 12px;
	margin: 11px 0 0 10px;
	font-size: 15px;
	line-height: 15px;
	font-weight: 500;
	color: #FF364B;
}

.dl_red{
	vertical-align: middle;
	width: 20px;
	margin-right: 8px;
}

.btn_dl_guide span{
	vertical-align: middle;
}

.tb_award{
	width: 100%;	
	border-spacing: 0px;
	margin-left: 10px;
}

.tr_award_name th:nth-child(1), .tr_award_name th:nth-child(2), .tr_award_name th:nth-child(3), .tr_award_text td:nth-child(1), .tr_award_text td:nth-child(2), .tr_award_text td:nth-child(3){
	border-right: 1px solid #EBECF0;
}

.tr_award_name th{
	background-color: #F9FAFC;
	border-top: 1px solid #C5C7D1;
	border-bottom: 1px solid #EBECF0;
	height: 50px;
	font-weight: 500;
	color: #000;
}

.tr_award_text{
	border-bottom: 1px solid #EBECF0;
	padding: 11px 20px;
	text-align: center;
	font-weight: 400;
	line-height: 27px;
	color: #444;
}

.tr_award_text td{
	border-bottom: 1px solid #EBECF0;
	padding: 11px 20px;
	text-align: center;
	font-weight: 400;
	line-height: 27px;
	color: #444;
}

@media screen and (max-width: 375px){
	
	.tb_award{
		margin-left: 0;	
	}
	
	.tr_award_text td{
		padding: 11px 8px;
	}
}
.banner_apply{
	background: url('../img/banner_apply.png') no-repeat center center/cover;
}

.tr_vlt span{
	margin-right: 48px;
}

.tb_vlt div{
}

.tb_vlt input{
	height: 47px;
}

.tb_vlt input:focus{
	border: 1px solid #000;
}

.tb_vlt input::placeholder, .tb_vlt textarea::placeholder{
	color: #878B9C;
	font-weight: 300;
	
}

.tb_vlt{
	border-spacing: 0;
	border-top: 1px solid #C5C7D1;
	width: 100%;
}

.tb_vlt tr{
}

.tb_vlt th{
	background-color: #F9FAFC;
	border-bottom: 1px solid #EBECF0;
	border-right: 1px solid #EBECF0;
	height: 100%;
	width: 20%;
	font-weight: 500;
	color: #000;
}

.tb_vlt td{
	border-bottom: 1px solid #EBECF0;
	padding: 20px;
}

.tr_vlt th span{
	margin: 0;
}

.tf_s, .tf_m, .tf_l, .tf_vl, .ta_vl{
	box-sizing: border-box;
	border-radius: 0;
	box-shadow: none;
	-webkit-appearance: none;
}

.tf_s{
	font-size: 15px;
	padding: 0 16px;
	line-height: 47px;
	border: 1px solid #D7D9E0;
	outline: none;
	width: 184px;
}

.tf_m{
	font-size: 15px;
	padding: 0 16px;
	line-height: 47px;
	border: 1px solid #D7D9E0;
	outline: none;
	width: 299px;
}

.tf_l{
	display: block;
	font-size: 15px;
	padding: 0 16px;
	margin-top: 12px;
	line-height: 47px;
	border: 1px solid #D7D9E0;
	outline: none;
	width: 380px;
}

.tf_vl{
	font-size: 15px;
	padding: 0 16px;
	line-height: 47px;
	border: 1px solid #D7D9E0;
	outline: none;
	width: 80%;	
}

.tf_zip{
	float: left;	
}

.ta_vl{
	box-sizing: border-box;
	resize: none;
	padding: 10px 16px;
	width: 80%;
	height: 138px;
	border: 1px solid #D7D9E0;
	outline: none;
	font-size: 15px;
	line-height: 27px;
	font-weight: 300 !important;
	font-family: "Noto Sans KR", sans-serif;
}

.ta_vl:focus{
	border: 1px solid #000;
}

.btn_src_adr{
	float: left;
	background-color: #EBECF0;
	width: 184px;
	margin-left: 12px;
	color: #686B7D;
	outline: none;
	border: none;
	font-size: 15px;
	line-height: 49px;
	padding: 0 28px;
	vertical-align: middle;
	box-sizing: border-box;
}

.tr_vlt td span{
	display: none;
	margin-bottom: 12px;	
}

@media screen and (max-width: 768px){
	
	.tb_vlt th{
		width: 25%;	
	}
	
	.tf_s, .tf_m, .tf_l, .tf_vl	{
		padding: 0 14px;
	}
	
	.tf_s{
		width: 96px;
	}
	
	.tf_m{
		width: 200px;
	}
	
	.tf_l{
		width: 234px;
	}
	
	.tf_vl, .ta_vl{
		width: 100%;	
	}
	
	.btn_src_adr{
		width: 126px;
	}
}

@media screen and (max-width: 768px){
	
	.tf_zip{
	float: none;	
	}
	
	.tb_vlt th{
		width: 25%;	
	}
	
	.tf_s, .tf_m, .tf_l, .tf_vl	{
		padding: 0 14px;
	}
	
	.tf_s{
		width: 55%;
		min-width: 140px;
	}
	
	.tf_m{
		width: 75%;
	}
	
	.tf_l{
		width: 100%;
	}
	
	.btn_src_adr{
		width: 55%;
		min-width: 140px;
		padding: 0 12px;
		margin: 12px 0 0 0;
	}
}

@media screen and (max-width: 375px){
	
	.tb_vlt{
		border:none;
	}
	.tf_zip{
		float: left;	
	}
	
	.tr_vlt td span{
		display: inline-block;
		margin-bottom: 8px;
		margin-right: 4px;
	}
	
	.tr_vlt th{
		display: none;
	}
	
	.tr_vlt td{
		padding: 12px 0;
		border-bottom: none;
	}
	
	.tf_s{
		width: 48%;
		min-width: 0px;
	}
	
	.tf_m{
		width: 100%;
	}
	s
	.tf_l{
		width: 100%;
	}
	
	.btn_src_adr{
		width: 48%;
		padding: 0 12px;
		margin: 0 0 0 4%;
		min-width: 0;
	}
}

.ckbox_wrap label{
	margin-top:-5px;
}

.ck_prv label{
	color: black;
	text-decoration: underline;
}

.ck_prv_wrap span{
	font-size: 15px;
	line-height: 27px;
	color: black;
	text-decoration: underline;
	margin-left: 26px;
}

.ck_lock_wrap{
	margin-bottom: 36px;
}

.ck_lock label{
	color: black;
	text-decoration: underline;
}

.ck_lock_wrap span{
	font-size: 15px;
	line-height: 27px;
	color: black;
	margin-left: 26px;
}

.ck_rule_wrap span{
	display: inline-block;
	font-size: 15px;
	line-height: 27px;
	color: #444;
	margin-left: 26px;
}

@media screen and (max-width: 768px){
	.ck_rule_wrap span, .ck_prv_wrap span, .ck_lock_wrap span{
		font-size: 14px;
		line-height: 27px;
	}	
}
.input_ck_field{
	margin-bottom: 11px;
}

.ck_crt{
	margin-top: -24px;
}

/*apply*/

.wrap_apply{
	text-align: center;
	margin-top: 64px;
}

.apply_bold{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
	color: #000;
}

.apply_adr{
	color: #444;
	margin-bottom: 36px;
	font-size: 15px;
}

.apply_adr a{
	text-decoration: none;
	color: #444;
}

.btn_apply{
	width: 100%;
	max-width: 386px;
	font-size: 16px;
	line-height: 52px;
	border: none;
}

@media screen and (max-width:768px){
	.btn_apply{
		max-width: none;
	}
	
	.apply_bold{
	font-size: 15px;
	}

	.apply_adr{
	font-size: 14px;
	}
}

/*complete*/

.code_tb_int{
	border-bottom: 1px solid #EBECF0;
	padding: 18px 20px;
	width: 75%;
	font-weight: 800;
	line-height: 30px;
	color: #000;
	font-size: 20px;
}

.tb_t_bold{
	font-weight: 700;
	color: #000;
}

.p_m p{
	margin: 0 0 4px 0;
}

.wrap_apply_cpt{
	padding: 72px;
	border: 1px solid #EBECF0;
	font-size: 15px;
}

@media screen and (max-width:768px){
	.wrap_apply_cpt{
		padding: 12px 0 0 0;
		border: none;
	}
}

.noti_cpt{
	width: 405px;
	margin: 28px auto 0 auto;
}

.noti_cpt img{
	float: left;
	width: 36px;
	height: 36px;
	margin-top:2px;
}

.noti_cpt p{
	float: right;
	font-size: 36px;
	line-height: 36px;
	font-weight: 500;
	color: #000;
	margin: 0 0 0 16px;
}

.h2_apply_cpt{
	margin: 100px 0 0 0;
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	color: #000;
}

.h3_apply_cpt{
	margin: 48px 0 16px 0;
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	color: #000;
}

@media screen and (max-width:768px){
	
	.noti_cpt{
		position: relative;
		width: 100%;
		margin: 0 auto;
		padding: 24px 0;
		text-align: center;
		border-top: 1px solid #EBECF0;
		border-bottom: 1px solid #EBECF0;
		
	}
	
	.noti_cpt img{
		float: none;
		position: absolute;
		display: inline-block;
		width: 24px;
		height: 24px;
		margin-top:0px;
	}
	
	.noti_cpt p{
		float: none;
		display: inline-block;
		font-size: 20px;
		line-height: 24px;
		margin: 0 0 0 32px;
	}
	
	.h2_apply_cpt{
		margin: 64px 0 0 0;
		font-size: 24px;
	}
	
	.h3_apply_cpt{
		margin: 36px 0 8px 0;
		font-size: 16px;
	}
}

@media screen and (max-width: 375px){
	.h2_apply_cpt{
		font-size: 18px;
	}
}

.wrap_apply_cpt table{
	border-top: 1px solid #C5C7D1;
}

.apply_guide{
	margin-top: 48px;
}

.apply_guide p{
	float: none;
	margin: 0 0 20px 0;
	font-size: 15px;
	line-height: 27px;
	color: #444;
}

.apply_guide button{
	float: none;
	padding: 0 32px;
	background-color: #FF364B;
	border: none;
	font-size: 16px;
	font-weight: 500;
	line-height: 52px;
	color: #fff;
}

#show_prv{
	cursor: pointer;	
}

/*Not Ready*/
.wrap_n_rdy img{
	display: block;
	margin: 0 auto;
	width: 450px;
}

.wrap_n_rdy p{
	text-align: center;
	margin: 0;
	line-height: 100%;
	color: #444;
	font-size: 14px;
}

.wrap_n_rdy div strong{
	font-weight: 500;
	color: black;
}

.text_n_rdy{
	font-size: 20px;
	margin: 24px 0 20px 0 !important;
}

@media screen and (max-width:500px){
	.wrap_n_rdy img{
		width: 100%;
	}
}


/*Radio*/

.radio_wrap{
	display: inline-block;
}

#applyEtc{
	width: 200px;
	height: 41px;
	line-height: 41px;
	border: 1px solid #D7D9E0;
	outline: none;
	font-family: 'Noto Sans KR';
	font-size: 15px;
	font-weight: 300;
	margin-left: 8px;
	padding: 0 12px;
}

#applyEtc:focus{
	border: 1px solid #000;
}

#applyEtc::placeholder{
	color: #878B9C;
}

@media screen and (max-width:375px){
	#applyEtc{
		width: 160px;
	}
}

/*Validation*/

.vld_etc{
	position: absolute;
	left: 60px;
}
.sec_contest{
	width: 100%;
	padding-bottom: 0px;
}

.banner_contest{
	background: url('../img/banner_contest.png') no-repeat center center/cover;
}

.wrap_ctst{
	padding-bottom: 300px;
}

@media screen and (max-width:1100px){
	.wrap_ctst{
		padding-bottom: 0;
	}
}

.year_ctst{
	position: absolute;
	font-family: 'Poppins';
	font-size: 196px;
	line-height: 100%;
	font-weight: 800;
	color: #F4F4F7;
	user-select: none;
	top:0;
}

.card_ctst{
	position: relative;
	height: 500px;
	width: 43%;
	display: inline-block;
}


.wrap_ctst .card_ctst:nth-child(odd){
	margin-bottom: 300px;
}

.wrap_ctst .card_ctst:nth-child(even){
	margin-left: 120px;
	top:100px;
}

.wrap_ctst .card_ctst:last-child{
	margin-bottom: 0;
}

.ctst_ab{
	position: absolute;
	top:124px;
	left: 24px;
}

.poster_ctst{
	position: absolute;
	top:0;
	left:0;
	display: inline-block;
	cursor: pointer;
	width: 264px;
    height: 370px;
	box-shadow: 0 48px 128px -24px rgba(0,0,0,.15);
	vertical-align: middle;
	transition: width .2s ease-in-out, height .2s ease-in-out, box-shadow .2s ease-in-out, top .2s ease-in-out, left .2s ease-in-out;
}	


@media screen and (min-width:768px){
	.poster_ctst:hover{
		width: 268px;
		top: -10px;
		left: -2px;
		box-shadow:  0 64px 128px -24px rgba(0,0,0,.25);
	}

    
    
    
    
}

.card_ctst div div{
	position: absolute;
	display: inline-block;
	vertical-align: middle;
	top:120px;
	left: 324px;
	width: 196px;
}

.arrow_ctst{
	width: 24px;
}

.title_ctst{
	font-size: 24px;
	line-height: 32px;
	color: #000;
	font-weight: 700;
	margin: 0;
}

.numb_ctst{
	font-family: 'Poppins';
	margin: 12px 0;
	color: #000;
}

@media screen and (max-width:1100px){
	.card_ctst{
		display: block;
		width: 100%;
		max-width: 500px;
	}
	.wrap_ctst .card_ctst:nth-child(odd){
		margin: 0 auto 160px auto;
	}
	.wrap_ctst .card_ctst:nth-child(even){
		margin: 0 auto 160px auto;
		top: 0;
	}
}

@media screen and (max-width:640px){
	.year_ctst{
		position: static;
		font-size: 128px;
		text-align: center;
	}
	.ctst_ab{
		position: absolute;
		top:84px;
		left: 50%;
		margin-left: -132px;
	}
	.poster_ctst{
		position: static;
		display: block;
	}
	.sec_contest .poster_ctst:hover{
		width: 264px;
		top: 0px;
		left: 0px;
		box-shadow:  0 64px 128px -24px rgba(0,0,0,.25);
	}
	.card_ctst div div{
		position: static;
		display: block;
		margin-top: 24px;
		width: 264px;
	}
	.arrow_ctst{
		display: none;
	}
}

@media screen and (max-width:375px){
	.card_ctst{
		height: 540px;
	}
	.year_ctst{
		font-size: 124px;
	}
	.ctst_ab{
		top:84px;
	}
	.wrap_ctst .card_ctst:nth-child(odd){
		margin: 0 auto 100px auto;
	}
	.wrap_ctst .card_ctst:nth-child(even){
		margin: 0 auto 100px auto;
		top: 0;
	}
}

/*Contest Info*/

.wrap_ctst_info{
	position: relative;
	
}

.ctst_info_ab{
	text-align: center;

}

.year_ctst_info{
	font-family: 'Poppins';
	font-size: 240px;
	font-weight: 900;
	line-height: 100%;
	color: #F4F4F7;
	text-align: center;
}

.poster_ctst_info{
	width: 264px;
     margin-top: -100px
}

.title_ctst_info{
	text-align: center;
	font-size: 36px;
	line-height: 120%;
	font-weight: 700;
	color: #000;
	margin: 16px auto 64px auto;
}

.numb_ctst_info{
	text-align: center;
	font-size: 14px;
	line-height: 100%;
	font-weight: 400;
	margin: 36px auto 0 auto;
}

@media screen and (max-width:768px){
	
    .poster_ctst_info{  margin-top: -50px}
    
    .wrap_ctst_info{
	
	}
	.year_ctst_info{
		font-size: 128px;
	}
	.ctst_info_ab{
		text-align: center;
	
	}
    
    .title_ctst_info{
	text-align: center;
	font-size: 20px;
    }
    
}

@media screen and (max-width:375px){
	.wrap_ctst_info{
	
	}
	.year_ctst_info{
		font-size: 100px;
	}
	.ctst_info_ab{
		text-align: center;
	
	}
	.numb_ctst_info{
		margin: 24px auto 0 auto;
	}
}




.banner_reference{
	background: url('../img/banner_reference.png') no-repeat center center/cover;
}

/*Photo*/

.card_pht{
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	color: #000;
	width: 22.5%;
	margin-right: 3%;
	margin-bottom: 36px;
	transition: text-decoration .2s ease-out;
}

.card_pht:hover{
	text-decoration: underline;
}

.card_pht div{
}

.wrap_pht .card_pht:nth-child(4), .wrap_pht .card_pht:nth-child(8), .wrap_pht .card_pht:nth-child(12){
	margin-right: 0;
}

@media screen and (max-width:1240px){
	.card_pht{
		width: 30.9%;
		margin-right: 3.1%;
		
	}
	.wrap_pht .card_pht:nth-child(3), .wrap_pht .card_pht:nth-child(6), .wrap_pht .card_pht:nth-child(9), .wrap_pht .card_pht:nth-child(12){
		margin-right: 0;
	}
	.wrap_pht .card_pht:nth-child(4), .wrap_pht .card_pht:nth-child(8){
		margin-right: 3.1%;
	}
}

@media screen and (max-width:768px){
	.card_pht{
		width: 48%;
		margin-right: 2.9%
	}
	.wrap_pht .card_pht:nth-child(2), .wrap_pht .card_pht:nth-child(4), .wrap_pht .card_pht:nth-child(6), .wrap_pht .card_pht:nth-child(8), .wrap_pht .card_pht:nth-child(10), .wrap_pht .card_pht:nth-child(12){
		margin-right: 0;
	}
	.wrap_pht .card_pht:nth-child(3), .wrap_pht .card_pht:nth-child(9){
		margin-right: 2.9%;
	}
}

@media screen and (max-width:375px){
	.card_pht{
		width: 100%;
		margin-right:0 !important;
	}
	.card_pht div{
	}
}

.title_pht{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #000;
	margin: 11px 0 0 0;
}

.date_pht{
	font-family: 'Poppins';
	font-size: 14px;
	line-height: 100%;
	color: #444;
	margin: 6px 0 0 0;
}

.img_pht{
	position: absolute;
	top: 50%;
	bottom: 50%;
	transform: translate(-50%,-50%);
}

.img_land{
	height: 100%;
}

.img_ptr{
	width: 100%;
}
.wrap_img{
	width: 100px;
	height: 100px;
	overflow: hidden;
}
/**/

.pht_wrt_date, .pht_ctst_date, .pht_writer{
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #444;
	margin-right: 12px;
}

/*Testing*/

.wrap_img_pht{
	position: relative;
	height: 270px;
	overflow: hidden;
	text-align: center;
}
.ptr, .hrz, .sq{
}

.ptr{
	width: 100%;
}

.hrz{
	height: 100%;
}

.sq{
	width: 100%;
}
.banner_notice{
	background: url('../img/banner_notice.png') no-repeat center center/cover;
}

/*Table Head ( Number, Search )*/

.head_tb_noti{
	margin-bottom: 20px;
}

.numb_noti, .input_src_noti{
	display: inline-block;
}

.numb_noti{
	padding-top: 16px;
	font-size: 15px;
	font-weight: 400;
	color: #000;
}

.src_noti{
	padding:0;
	float: right;
	box-sizing: border-box;
	width: 285px;
	border: 1px solid #D7D9E0;
}

.input_src_noti{
	margin:0;
	background: none;
	outline: none;
	width: 75%;
	padding-left: 16px;
	font-size: 15px;
	line-height: 39px;
	height: 39px;
	font-weight: 400;
	color: #000;
	border: none;
}

.btn_src_noti{
	float: right;
	vertical-align: middle;
}

@media screen and (max-width: 768px){
	.numb_noti{
		padding-top: 0;
		margin-bottom:12px;
	}
	.src_noti{
		float: none;
	}
}

@media screen and (max-width: 375px){
	.src_noti{
		width: 100%;
	}
	.input_src_noti{
		width: 79%;
	}
}
/*Table*/

.tb_noti{
	display: table;
	width: 100%;
	border-top: 1px solid #C5C7D1;
	padding-bottom: 40px;
	table-layout:fixed
}

.tr_noti div{
	text-overflow: ellipsis;
	overflow: hidden;
	white-space : nowrap;
}

.tbody_noti{
	display: table-row-group
}

.tr_th_noti{
	display: table-row;
	font-size: 15px;
	font-weight: 500;
	color: black;
}

.th_noti_numb, .th_noti_title, .th_noti_date, .th_noti_view, .th_noti_state, .th_noti_writer{
	display: table-cell;
	background-color: #F4F4F7;
	line-height: 51px;
	border-bottom: 1px solid #EBECF0;
}

.th_noti_numb, .td_noti_numb, .th_noti_state, .td_noti_state, .th_noti_writer, .td_noti_writer{
	text-align: center;
	width: 10%;
}

.th_noti_title, .td_noti_title{
	padding-left: 16px;
	padding-right: 16px;
}

.th_noti_date, .td_noti_date{
	text-align: center;
	width: 10%;
	min-width: 100px;
}

.th_noti_view, .td_noti_view{
	text-align: center;
	width: 10%;
	min-width: 80px;
}

.th_noti_state, .td_noti_state{
	width:10%;
	min-width: 100px;
}

.th_noti_writer, .td_noti_writer{
	
}

.tr_noti{
	cursor: pointer;
	display: table-row;
	font-size: 15px;
	font-weight: 400;
	color: #444;
	text-decoration: none;
	transition: background 0.2s ease-out;
}

.tr_noti:hover{
	background-color: #F9FAFC;
}

.td_noti_numb, .td_noti_title, .td_noti_date, .td_noti_view, .td_noti_state, .td_noti_writer{
	display: table-cell;
	line-height: 51px;
	border-bottom: 1px solid #EBECF0;
}

@media screen and (max-width: 768px){
	
	.tr_th_noti{
		display: none;
	}
	.tb_noti{
		display: block;
		padding-bottom: 12px;
	}
	.tbody_noti{
		display: block;
	}
	.tr_noti{
		display: block;
		border-bottom: 1px solid #EBECF0;
		padding: 14px 0 20px 0;
	}
	.td_noti_title, .td_noti_view, .td_noti_state{
		display: block;
		border: none;
		text-align: left;
	}
	.td_noti_date, .td_noti_writer{
		display: inline-block;
		border: none;
		text-align: left;
	}
	.td_noti_numb, .td_noti_view{
		display: none;
	}
	.td_noti_title{
		padding-left: 0;
		margin-bottom: 10px;
		font-size: 15px;
		line-height: 27px;
		font-weight: 500;
		color: #000;
	}
	.td_noti_date{
		font-size: 14px;
		line-height: 14px;
		font-weight: 400;
		color: #888;
	}
	.td_noti_state{
		font-size: 14px;
		line-height: 14px;
		font-weight: 400;
		color: #444;
		margin-bottom: 8px;
	}
	.td_noti_writer{
		font-size: 14px;
		line-height: 14px;
		font-weight: 400;
		color: #888;
		margin-right: 8px;
		width: auto;
	}
}

/*Notice Detail*/

.noti_head{
	padding: 33px 0 36px 0;
	border-top: 1px solid #A9ACBA;
}

.noti_title{
	margin-bottom: 12px;
	font-size: 20px;
	line-height: 26px;
	font-weight: 500;
	color: #000;
}

.noti_sub_info{
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #444;
}

.noti_info{
	padding: 48px 0;
	border-top: 1px solid #EBECF0;
	border-bottom: 1px solid #EBECF0;
	overflow: hidden;
}

.noti_info img{
	max-width: 100%;
}
@media screen and (max-width: 375px){
	.noti_head{
		padding: 20px 0 24px 0;
	}
	.noti_title{
		font-size: 16px;
		line-height: 24px;
	}
	.noti_sub_info{
		font-size: 13px;
	}
}

/*FAQ*/

.faq_wrap{
	border-top: 1px solid #C5C7D1;
}

.que_q, .asw_a, .faq_text{
	display: inline-block;
}

.que_q, .asw_a{
	width: 25px;
	vertical-align: middle;
	padding: 0 12px;
}

.faq_text{
	line-height: 25px;
	vertical-align: middle;
	max-width: 80%;
	font-size: 15px;
}

.faq_row{
	border-bottom: 1px solid #EBECF0;
}

.faq_row a{
	text-decoration: none;
	color: #000;
}

.faq_row a:visited{
	color:#000;
}

.que_row{
	cursor: pointer;
	padding: 15px 0;
	transition: background 0.2s ease-out;
}

.que_row:hover{
	background-color: #F9FAFC;
}

.asw_row{
	overflow: hidden;
	transition: max-height 0.3s ease-out, padding 0.3s ease-out;
	background-color: #F7F7F9;
	max-height: 0;
	padding: 0;
}

.que_row div a:after{
	content: '';
	opacity: 0;
}
/*.asw_row:target{
	max-height: 10em;
	padding: 15px 0;
}*/


@media screen and (max-width: 375px){
	.faq_text{
		font-size: 14px;
	}
}

.spread .asw_row{
	max-height: 10em;
	padding: 15px 0;
}

/*Q&A*/

.head_tb_qa{
	height: 43px;
	margin-bottom: 20px;
}


.btn_qa_wrt{
	box-sizing: border-box;
	float: right;
	line-height: 43px;
	margin: 0;
	padding: 0 32px;
	font-size: 14px;
	font-weight: 500;
}

.src_qa{
	padding:0;
	float: right;
	box-sizing: border-box;
	width: 285px;
	border: 1px solid #D7D9E0;
}

.tb_qa{
	display: table;
	width: 100%;
	border-top: 1px solid #C5C7D1;
	padding-bottom: 24px;
	table-layout: fixed;
}

.noti_info > .qa_detail:nth-child(1){
	margin-bottom : 36px;
}

.qa_detail img{
	display: inline-block;
	vertical-align: middle;
	width: 36px;
}

.qa_detail span{
	vertical-align: middle;
	font-size: 16px;
	font-weight: 700;
}

.qa_detail p{
	margin: 8px 0 0 0;
	color: #444;
}

@media screen and (max-width: 768px){
	.head_tb_qa{
		height: auto;
	}
	.tb_qa{
		display: block;
		padding-bottom: 12px;
	}
	.src_qa{
		float: none;
		width: 100%;
	}
}

@media screen and (max-width: 500px){
	.src_qa{
		width: 100%;
		float: none;
	}
	.btn_qa_wrt{
		margin-bottom: 12px;
	}
}
@media screen and (max-width: 375px){
	.src_qa{
		width: 100%;
		float: none;
	}
	.btn_qa_wrt{
	}
}


/*Q&A Information (Detail)*/

.qa_state{
	display: inline-block;
	padding: 4px 8px;
	font-size: 13px;
	margin-right: 8px;
	color: white;
}

.state_wait{
	background-color: #A9ACBA;
}

.state_comp{
	background-color: #FF364B;
}

.noti_sub_info{
	display: inline-block;
}

.btn_answer{
	box-sizing: border-box;
	float: left;
	padding: 0 32px;
	margin-top: 24px;
	margin-right: 12px;
	font-size: 14px;
	line-height: 42px;
	font-weight: 500;
}

@media screen and (max-width: 768px){
	.qa_detail_btn, .qa_detail_p_btn{
		float: left;
		margin-left: 0;
		margin-right: 12px;
	}
}

@media screen and (max-width: 500px){
	.qa_detail_btn, .qa_detail_p_btn{
		width: 32%;
		margin-right: 2%;
	}
	.btn_answer{
		width: 100%;
	}
	.btn_go_list{
		margin-right: 0;
	}
}


/*Q&A Del Modal*/
.del_md_bg{
	display: none;
	position: fixed;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	top: 0;
	left: 0;
	z-index: 200;
}

.del_md_prv{
	display: none;
	z-index: 201;
	box-sizing: border-box;
	width: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -109px;
	margin-left: -200px;
	background-color: white;
}

.btn_del_md_del, .btn_del_md_close{
	box-sizing: border-box;
	margin: 8px auto 36px auto;
	width: 48%;
	outline: none;
	border: none;
	text-align: center;
	font-size: 16px;
	line-height: 52px;
	font-weight: 500;
}

.btn_del_md_del{
	float: right;
}

.btn_del_md_close{
	float: left;
}

.del_md_btn_wrap{
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 768px){
	.del_md_prv{
		width: 340px;
		margin-left: -170px;
	}
}

@media screen and (max-width: 375px){
	.del_md_prv{
		width: 284px;
		margin-left: -142px;
		margin-top: -99px;
	}
}

/*QA write*/
.wrap_wrt_qa{
	max-width: 590px;
	margin: 0 auto;
}

.wrap_wrt_qa p{
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 400;
}


.wrap_input_qa_wrt_email{
	margin-bottom: 36px;
}

.wrap_input_qa_wrt_email div{
	display: block;
}

.wrap_wrt_qa input{
	box-sizing: border-box;
	padding: 0 16px;
	font-family: 'Noto Sans Kr';
	font-size: 15px;
	line-height: 47px;
	height: 47px;
	border: 1px solid #D7D9E0;
	outline: none;
}

.wrap_wrt_qa input:focus{
	border: 1px solid #000;
}

.input_qa_wrt{
	margin-bottom: 36px;
}

.input_qa_wrt input{
	box-sizing: border-box;
	width: 183px;
	margin: 0 0 0 0;
}

.input_qa_email input{
	box-sizing: border-box;
	width: 383px;
	margin: 0;
}

.input_qa_title{	
	margin-bottom: 36px;
}

.input_qa_title input{
	width: 590px;
}

.textarea_qa{
	margin-bottom: 12px;
}

.textarea_qa textarea{
	box-sizing: border-box;
	outline: none;
	resize: none;
	border-radius: 0;
	border: 1px solid #D7D9E0;
	width: 590px;
	height: 364px;
	padding: 10px 16px;
	font-family: 'Noto Sans KR';
	font-size: 15px;
	line-height: 27px;
	font-weight: 400;
	color: #444;
}

.textarea_qa textarea:focus{
	border: 1px solid #000;
}

.input_qa_pw{
	margin-bottom: 24px;
}

.input_qa_pw input{
	width: 183px;
}

.wrap_wrt_qa input::placeholder, .wrap_wrt_qa textarea::placeholder{
	font-size: 15px;
	font-weight: 400;
	color: #878B9C;
}

#show_prv_qa{
	cursor: pointer;
}

.btn_qa_rgst{
	width: 100%;
	font-size: 16px;
	font-weight: 500;	
	line-height: 52px;
	margin-top: 53px;
}

.wrt_qa_tm{
	border-top: 1px solid #EBECF0;
	height: 64px;
}

@media screen and (max-width:768px){
	.wrap_wrt_qa{
		max-width: inherit;
		margin: 0 auto;
	}
	.wrap_input_qa_wrt_email div{
		display: block;
	}
	.input_qa_wrt{
		margin-bottom: 36px;
	}
	.input_qa_title input{
		width: 100%;
	}
	.textarea_qa textarea{
		width: 100%;
	}
}

@media screen and (max-width: 500px){
	.input_qa_email input{
		width: 100%;
	}
}

@media screen and (max-width:375px){
	.textarea_qa textarea{
		height: 220px;
	}
}
/*Q&A Password*/

.wrap_qa_pw{
	text-align: center;
}

.wrap_qa_pw p{
	font-family: 'Noto Sans Kr';
	font-size: 15px;
	font-weight: 500;
	color: #000;
	margin: 0 0 24px 0;
}

.wrap_qa_pw input{
	box-sizing: border-box;
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 43px;
	color: #000;
	outline: none;
	border: 1px solid #D7D9E0;
	border-radius: 0;
	padding: 0 16px;
	margin: 0 auto 24px auto;
	width: 200px;
}

.wrap_qa_pw button{
	box-sizing: border-box;
	font-size: 15px;
	font-weight: 500;
	line-height: 43px;
	width: 200px;
}
