.tc-wrap {
	width: 1000px;
	margin: 0 auto;
	padding: 60px 0 100px;
	color: #333;
}

.tc-page-title {
	font-size: 38px;
	font-weight: 800;
	color: #222;
	padding-bottom: 30px;
	border-bottom: 2px solid #333;
}

.tc-sec {
	margin-top: 45px;
}

.tc-sec-title {
	font-size: 22px;
	font-weight: 800;
	color: #222;
	padding-left: 14px;
	position: relative;
}

.tc-sec-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ED008C;
}

.tc-req-tag {
	color: #E60012;
	font-size: 18px;
	margin-left: 6px;
}

.tc-sec-text {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin-top: 14px;
	padding-left: 14px;
}

.tc-agree-box {
	margin-top: 18px;
	padding: 20px;
	height: 160px;
	overflow-y: auto;
	background: #FAFAFA;
	border: 1px solid #DDD;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.tc-agree-check {
	display: flex;
	align-items: center;
	margin-top: 14px;
	font-size: 16px;
	cursor: pointer;
}

.tc-agree-check input {
	width: 18px;
	height: 18px;
	margin-right: 8px;
}

.tc-agree-check input[type="checkbox"],
.tc-gender input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border: 1px solid #BBB;
	background: #fff;
	cursor: pointer;
}

.tc-agree-check input[type="checkbox"] {
	border-radius: 2px;
}

.tc-gender input[type="radio"] {
	border-radius: 50%;
}

.tc-agree-check input[type="checkbox"]:checked,
.tc-gender input[type="radio"]:checked {
	background: #ED008C;
	border-color: #ED008C;
}

.tc-agree-check input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.tc-gender input[type="radio"]:checked::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -4px 0 0 -4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
}

.tc-form {
	margin-top: 22px;
	border-top: 2px solid #333;
}

.tc-row {
	display: flex;
	align-items: flex-start;
	padding: 18px 0;
	border-bottom: 1px solid #E5E5E5;
}

.tc-label {
	flex: 0 0 180px;
	padding: 8px 0 0 14px;
	font-size: 16px;
	font-weight: 700;
	color: #333;
}

.tc-label em {
	color: #E60012;
	font-style: normal;
	margin-left: 3px;
}

.tc-field {
	flex: 1;
}

.tc-field input[type="text"],
.tc-field input[type="tel"],
.tc-field select {
	height: 42px;
	padding: 0 12px;
	border: 1px solid #CCC;
	border-radius: 3px;
	font-size: 15px;
	color: #333;
	background: #fff;
}

.tc-field input[type="text"],
.tc-field input[type="tel"] {
	width: 320px;
}

.tc-field input[readonly] {
	background: #F5F5F5;
}

.tc-field select {
	width: 200px;
	-webkit-appearance: none;
	appearance: none;
	background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E") no-repeat right 12px center;
}

.tc-gender {
	display: flex;
	align-items: center;
	height: 42px;
}

.tc-gender label {
	display: flex;
	align-items: center;
	margin-right: 30px;
	font-size: 16px;
	cursor: pointer;
}

.tc-gender input {
	width: 18px;
	height: 18px;
	margin-right: 7px;
}

.tc-addr {
	position: relative;
}

.tc-addr-top {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.tc-addr-top input {
	width: 160px !important;
	margin-right: 8px;
}

.tc-zip-btn {
	height: 42px;
	padding: 0 18px;
	border: 1px solid #333;
	border-radius: 3px;
	background: #fff;
	font-size: 15px;
	font-weight: 700;
	color: #333;
	cursor: pointer;
}

.tc-addr input#tcAddr1,
.tc-addr input#tcAddr2 {
	width: 100% !important;
	margin-bottom: 8px;
}

.tc-submit-wrap {
	margin-top: 50px;
	text-align: center;
}

.tc-submit {
	width: 320px;
	height: 60px;
	border: 0;
	border-radius: 4px;
	background: #ED008C;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
}

.tc-submit:disabled {
	background: #BBB;
	cursor: default;
}

.tc-zip-layer {
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	z-index: 50;
	background: #fff;
	border: 1px solid #999;
	border-radius: 3px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
	overflow: hidden;
}

.tc-zip-panel {
	height: 420px;
	display: flex;
	flex-direction: column;
}

.tc-zip-head {
	flex: 0 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 46px;
	padding: 0 6px 0 16px;
	background: #F5F5F5;
	color: #333;
	border-bottom: 1px solid #DDD;
	font-size: 16px;
	font-weight: 700;
}

.tc-zip-close {
	width: 40px;
	height: 40px;
	border: 0;
	background: none;
	color: #666;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.tc-zip-embed {
	flex: 1 1 auto;
	min-height: 0;
}

/* tc 페이지 자기 참조 + 우편번호 레이어 가림 */
.floating-recruit {
	display: none;
}
