@charset "UTF-8";
/* 체크박스/라디오박스 */
.wrap_ck {
	position: relative;
	padding-left: 34px;
}

.wrap_ck input[type='checkbox'] {
	position: absolute;
	padding: 0;
	margin: -1px;
	width: 1px;
	height: 1px;
	border: 0;
	overflow: hidden;
	clip-path: inset(50%);
}

.wrap_ck label {
	font-size: 16px;
	color: #333;
	cursor: pointer;
}

.wrap_ck label span {
	margin-left: 4px;
	font-weight: 600;
	color: #dd4508;
}

.wrap_ck label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 750px) {
	.wrap_ck {
		padding-left: 28px;
	}

	.wrap_ck label {
		font-size: 14px;
	}
}

.wrap_rd {
	position: relative;
	padding-left: 34px;
}

.wrap_rd input[type='radio'] {
	position: absolute;
	padding: 0;
	margin: -1px;
	width: 1px;
	height: 1px;
	border: 0;
	overflow: hidden;
	clip-path: inset(50%);
}

.wrap_rd label {
	font-size: 16px;
	color: #333;
	cursor: pointer;
	line-height: 22px;
}

.wrap_rd label span {
	margin-left: 4px;
	font-weight: 600;
	color: #dd4508;
}

.wrap_rd label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 750px) {
	.wrap_rd {
		padding-left: 28px;
	}

	.wrap_rd label {
		font-size: 14px;
	}
}

/* 첨부파일 버튼 */
.wrap_file {
	display: flex;
	align-items: center;
	gap: 20px;
}

.wrap_file .file_input_textbox {
	padding: 0 10px;
	width: 360px;
	height: 44px;
	border: 1px solid #d4d4d4;
	border-radius: 10px;
	box-sizing: border-box;
}

.wrap_file .file_input_div {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	position: relative;
	width: 160px;
	height: 44px;
	overflow: hidden;
}

.wrap_file .file_input_div button {
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #fff;
	background-color: #333;
	border-radius: 50px;
}

.wrap_file .file_input_div .file_input_hidden {
	position: absolute;
	right: 0px;
	top: 0px;
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: alpha(opacity=0);
	cursor: pointer;
}

.wrap_file .msg {
	color: #999;
}

@media screen and (max-width: 750px) {
	.wrap_file {
		flex-wrap: wrap;
		gap: 10px 8px;
	}

	.wrap_file .file_input_textbox {
		width: calc(100% - 138px);
	}

	.wrap_file .file_input_div {
		width: 130px;
	}

	.wrap_file .msg {
		width: 100%;
		font-size: 14px;
	}
}

.added_file {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.added_file .file {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 10px 16px;
	height: 44px;
	background-color: #f5f5f5;
	border-radius: 50px;
	box-sizing: border-box;
}

.added_file .file .name {
	font-size: 16px;
	color: #333;
}

.added_file .file .btn_delete {
	width: 24px;
	height: 24px;
	font-size: 0;
	background: url(/kor/img/icn_x_red.svg) no-repeat;
}

@media screen and (max-width: 750px) {
	.added_file {
		gap: 10px;
	}

	.added_file .file {
		padding: 11px 16px;
		height: 40px;
	}

	.added_file .file .name {
		font-size: 14px;
	}

	.added_file .file .btn_delete {
		width: 20px;
		height: 20px;
		background-size: contain;
	}
}

.wrap_form {
	margin-bottom: 80px;
}

.wrap_form .header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	margin-bottom: 40px;
	border-bottom: 1px solid #000;
}

.wrap_form .header .form_tit {
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
}

.wrap_form .header .right {
	font-size: 18px;
	color: #666;
	line-height: 1;
}

.wrap_form .header .right span {
	color: #DD4508;
}

.wrap_form .header .util {
	position: absolute;
	right: 0;
	top: 5px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.wrap_form .header .util button {
	padding: 0 15px;
	font-size: 16px;
	line-height: 24px;
	height: 24px;
	border: 1px solid #999;
	color: #999;
	border-radius: 5px;
}

.wrap_form p.center {
	text-align: center;
}

.wrap_form p.contxt {
	line-height: 44px;
	font-size: 16px;
	font-weight: bold;
}

.wrap_form .div_stack .btm_line {
	position: relative;
	padding: 50px 0;
	border-bottom: 1px solid #999;
}

.wrap_form .div_stack .btm_line:first-child {
	padding-top: 0;
}

.wrap_form .div_stack .btm_line:last-child {
	border-bottom: 0;
}

.wrap_form .div_stack .btm_line .btn_delete {
	position: absolute;
	right: 0;
	top: 20px;
}

.wrap_form .div_stack .btm_line .btn_delete button {
	display: inline-block;
	padding: 0 20px;
	height: 34px;
	line-height: 34px;
	background: #999;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
}

.wrap_form input[type='date'] {
	padding: 0 16px;
	width: 190px;
	height: 40px;
	font-size: 16px;
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	background: url(/kor/img/icn_date_gray.svg) #fff no-repeat 93% 50%;
	box-sizing: border-box;
}

.wrap_form dl {
	display: flex;
	margin-bottom: 30px;
	font-size: 18px;
}

.wrap_form dl:last-child {
	margin-bottom: 0;
}

.wrap_form dl dt {
	width: 205px;
	color: #333;
	box-sizing: border-box;
	padding-right: 40px;
}

.wrap_form dl dt span {
	color: #dd4508;
}

.wrap_form dl dd {
	width: calc(100% - 205px);
	color: #333;
}

.wrap_form dl dd .atch_img {
	max-height: 100px;
}

.wrap_form dl dd .added_file .file .name {
	margin-bottom: 0;
}

.wrap_form dl dd .mt0 {
	margin-top: 0;
}

.wrap_form dl dd .flex {
	display: flex;
	align-items: center;
}

.wrap_form dl dd .flex .tit_con {
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 22px;
}

.wrap_form dl dd .flex.prefer {
	gap: 42px;
	margin-bottom: 24px;
}

.wrap_form dl dd .flex.prefer .prefer_no {
	font-size: 16px;
	font-weight: 600;
}

.wrap_form dl dd .flex.job {
	gap: 42px;
	margin-top: 24px;
}

.wrap_form dl dd .flex.job .wrap_input.md {
	width: 275px;
}

.wrap_form dl dd .flex.name {
	gap: 130px;
	margin-bottom: 14px;
}

.wrap_form dl dd .flex.email {
	gap: 10px;
	margin-bottom: 14px;
}

.wrap_form dl dd .flex.email p {
	color: #999;
}

.wrap_form dl dd .flex.email .wrap_input {
	width: 240px;
}

.wrap_form dl dd .flex.tel {
	gap: 10px;
	margin-bottom: 14px;
}

.wrap_form dl dd .flex.tel p {
	color: #999;
}

.wrap_form dl dd .flex.tel .wrap_input {
	width: 140px;
}

.wrap_form dl dd .flex.tel .wrap_select {
	width: 140px;
}

.wrap_form dl dd .flex.address {
	gap: 20px;
	margin-bottom: 14px;
}

.wrap_form dl dd .flex.address .btn {
	display: block;
	width: 160px;
	height: 44px;
	line-height: 44px;
	border-radius: 22px;
	text-align: center;
	color: #fff;
	font-weight: 600;
	background: #333;
}

.wrap_form dl dd .flex.network {
	gap: 20px;
	margin-bottom: 14px;
}

.wrap_form dl dd .flex.network .wrap_select {
	width: 130px;
}

.wrap_form dl dd .flex.network.space {
	padding-left: 150px;
}

.wrap_form .wrap_file {
	margin-bottom: 24px;
}

.wrap_form .wrap_file .download a {
	color: #0A31A8;
	font-size: 18px;
	font-weight: 600;
}

.wrap_form .rd_list {
	display: flex;
	align-items: center;
	gap: 40px;
}

.wrap_form .rd_list li {
	margin-bottom: 24px;
}

.wrap_form .rd_list .fx {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wrap_form .rd_list .wrap_rd label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 15px;
	height: 15px;
	border: 2px solid #d4d4d4;
	border-radius: 50%;
}

.wrap_form .rd_list .wrap_rd label:after {
	display: none;
	content: '';
	position: absolute;
	left: 5px;
	top: 10px;
	width: 9px;
	height: 9px;
	background: #0A31A8;
	border-radius: 50%;
}

.wrap_form .rd_list .wrap_rd input[type='radio']:checked + label:before {
	border-color: #0A31A8;
}

.wrap_form .rd_list .wrap_rd input[type='radio']:checked + label:after {
	display: block;
}

.wrap_form .ck_list li {
	float: left;
	margin-right: 40px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.wrap_form .ck_list li.mb0 {
	margin-bottom: 0;
}

.wrap_form .ck_list .wrap_ck {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wrap_form .ck_list .wrap_ck input[type='checkbox'] {
	display: none;
}

.wrap_form .ck_list .wrap_ck label {
	font-size: 16px;
	color: #333;
}

.wrap_form .ck_list .wrap_ck label:before {
	content: '';
	display: block;
	top: 2px;
	width: 20px;
	height: 20px;
	border: 2px solid #d4d4d4;
	border-radius: 5px;
	box-sizing: border-box;
}

.wrap_form .ck_list .wrap_ck input[type='checkbox']:checked + label:before {
	background: url(/kor/img/icn_ck_square_on.svg) no-repeat 50%;
	background-size: contain;
	border: none;
}

.wrap_form .ck_list:after {
	content: "";
	clear: both;
	display: block;
}

.wrap_form .flex_list {
	margin-bottom: 30px;
}

.wrap_form .flex_list li {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 30px;
}

.wrap_form .flex_list li p {
	font-size: 18px;
	color: #333;
}

.wrap_form .flex_list li .item {
	width: 200px;
}

.wrap_form .flex_list li .item.w400 {
	width: 400px;
}

.wrap_form .flex_list li .item.w160 {
	width: 160px;
}

.wrap_form .flex_list li .item .wrap_select {
	width: 100%;
}

.wrap_form .flex_list li .item .wrap_input {
	width: 100%;
}

.wrap_form .flex_list li .item .tit {
	display: none;
	font-size: 18px;
	margin-bottom: 16px;
}

.wrap_form .flex_list li .item .tit span {
	color: #DD4508;
}

.wrap_form .flex_list li .item .date {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wrap_form .flex_list li .item.btn_wrap {
	width: 100px;
}

.wrap_form .flex_list li .item.btn_wrap button {
	display: inline-block;
	padding: 0 20px;
	height: 34px;
	line-height: 34px;
	background: #999;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
}

.wrap_form .flex_list li .item.grow {
	width: 100%;
	flex-grow: 1;
}

.wrap_form .flex_list li:first-child .item .tit {
	display: block;
}

.wrap_form .wrap_number {
	display: flex;
	align-items: center;
	gap: 5px;
}

.wrap_form .wrap_number input[type=number] {
	padding: 0 20px;
	text-align: right;
	width: 100px;
	height: 44px;
	line-height: 44px;
	border: 1px solid #d4d4d4;
	border-radius: 10px;
	box-sizing: border-box;
}

.wrap_form .cmt_text {
	font-size: 16px;
	color: #999999;
}

.wrap_form .info {
	display: flex;
	align-items: center;
}

.wrap_form .info li {
	position: relative;
	padding: 0 10px;
}

.wrap_form .info li:first-child {
	padding-left: 0;
}

.wrap_form .info li:after {
	content: '';
	position: absolute;
	right: -1px;
	top: 7px;
	width: 2px;
	height: 12px;
	background-color: #d4d4d4;
}

.wrap_form .info li:last-child:after {
	display: none;
}

.wrap_form .wrap_select {
	position: relative;
	width: 360px;
	height: 44px;
	background-color: #fff;
	font-size: 16px;
	box-sizing: border-box;
	border: 1px solid #d4d4d4;
	border-radius: 10px;
	overflow: hidden;
}

.wrap_form .wrap_select select {
	display: block;
	position: relative;
	padding-left: 20px;
	padding-right: 40px;
	width: 100%;
	height: 100%;
	color: #999;
	line-height: 42px;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
	background: url(/kor/img/icn_arrow_down.svg) no-repeat right center;
	background-size: contain;
}

.wrap_form .wrap_select select:focus {
	border-color: #0A31A8;
}

.wrap_form .depth {
	position: relative;
	width: 360px;
	height: 44px;
	background-color: #fff;
}

.wrap_form .depth input[type='checkbox'] {
	display: none;
}

.wrap_form .depth label {
	display: block;
	position: relative;
	padding-left: 20px;
	width: 100%;
	height: 100%;
	color: #999;
	line-height: 44px;
	border: 1px solid #d4d4d4;
	border-radius: 10px;
	cursor: pointer;
	box-sizing: border-box;
}

.wrap_form .depth label:after {
	content: '';
	position: absolute;
	right: 20px;
	top: 8px;
	width: 26px;
	height: 26px;
	background: url(/kor/img/icn_arrow_gray.svg) no-repeat;
	transform: rotate(180deg);
}

.wrap_form .depth label:focus {
	border-color: #0A31A8;
}

.wrap_form .depth .dropdown {
	display: none;
	position: absolute;
	left: 0;
	top: 53px;
	padding: 16px 10px;
	width: 100%;
	border: 1px solid #d4d4d4;
	border-radius: 15px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	overflow: hidden;
	z-index: 1;
}

.wrap_form .depth .dropdown li {
	padding: 0 10px;
	width: 100%;
	height: 44px;
	line-height: 44px;
	cursor: pointer;
}

.wrap_form .depth input[type='checkbox']:checked ~ label {
	border-color: #0A31A8;
}

.wrap_form .depth input[type='checkbox']:checked ~ label:after {
	transform: rotate(0);
}

.wrap_form .depth input[type='checkbox']:checked ~ .dropdown {
	display: block;
}

.wrap_form .wrap_input {
	position: relative;
	width: 662px;
	height: 44px;
	box-sizing: border-box;
	overflow: hidden;
}

.wrap_form .wrap_input.md {
	width: 320px;
}

.wrap_form .wrap_input input {
	padding: 0 20px;
	width: 100%;
	height: 100%;
	border: 1px solid #d4d4d4;
	border-radius: 10px;
	box-sizing: border-box;
}

.wrap_form .wrap_input input::placeholder {
	color: #999;
}

.wrap_form .wrap_input input:focus, .wrap_form .wrap_input input:active {
	border-color: #0A31A8;
}

.wrap_form .wrap_input .cnt {
	position: absolute;
	right: 38px;
	top: 9px;
	color: #999;
}

.wrap_form .wrap_textarea {
	padding: 20px 20px 10px;
	width: 100%;
	height: 400px;
	border: 1px solid #d4d4d4;
	border-radius: 10px;
	box-sizing: border-box;
}

.wrap_form .wrap_textarea textarea {
	width: 100%;
	height: 94%;
	border: none;
	resize: none;
}

.wrap_form .wrap_textarea textarea::placeholder {
	color: #999;
}

.wrap_form .wrap_textarea .cnt {
	color: #999;
	text-align: right;
}

@media screen and (max-width: 1200px) {
	.wrap_form .header {
		margin-bottom: 25px;
	}

	.wrap_form .header .form_tit {
		font-size: 20px;
	}

	.wrap_form .header .right {
		font-size: 16px;
	}

	.wrap_form dl {
		display: block;
		margin-bottom: 30px;
		font-size: 16px;
	}

	.wrap_form dl dt {
		width: 100%;
		margin-bottom: 15px;
		font-size: 16px;
	}

	.wrap_form dl dd {
		width: 100%;
	}

	.wrap_form dl dd .flex {
		display: block;
		margin-bottom: 15px;
	}

	.wrap_form dl dd .flex .tit_con {
		margin-bottom: 15px;
	}

	.wrap_form dl dd .flex .tit_con p {
		width: 100px;
	}

	.wrap_form dl dd .flex.email {
		display: flex;
	}

	.wrap_form dl dd .flex.email .wrap_input {
		width: 160px;
	}

	.wrap_form dl dd .flex.tel {
		display: flex;
	}

	.wrap_form dl dd .flex.tel .wrap_input {
		width: 160px;
	}

	.wrap_form dl dd .flex.address {
		display: flex;
	}

	.wrap_form dl dd .flex.network .wrap_select {
		margin-bottom: 15px;
	}

	.wrap_form dl dd .flex.network .wrap_input {
		margin-bottom: 15px;
	}

	.wrap_form dl dd .flex.network.space {
		padding-left: 0;
		padding-top: 20px;
	}

	.wrap_form .rd_list {
		display: block;
	}

	.wrap_form .rd_list li {
		display: block;
	}

	.wrap_form .rd_list li .wrap_input {
		margin-top: 10px;
	}

	.wrap_form .rd_list .fx {
		display: block;
	}

	.wrap_form .ck_list li {
		display: block;
	}

	.wrap_form .ck_list li .wrap_input {
		margin-top: 10px;
	}

	.wrap_form .flex_list > li {
		display: block;
		border-bottom: 1px solid #d4d4d4;
		margin-bottom: 40px;
		padding-bottom: 20px;
	}

	.wrap_form .flex_list > li .item {
		margin-bottom: 20px;
		width: 100% !important;
	}

	.wrap_form .flex_list > li .item .tit {
		display: block;
		margin-bottom: 10px;
		font-size: 16px;
	}

	.wrap_form .wrap_input {
		width: 100%;
	}

	.wrap_form .wrap_input.md {
		width: 100%;
	}

	.wrap_form .wrap_input input {
		padding: 0 20px;
		font-size: 16px;
	}

	.wrap_form .wrap_select {
		width: 100%;
	}

	.wrap_form .cmt_text {
		font-size: 14px;
	}
}