@charset "utf-8";

/* 제목 */
.page_title {
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 100px;
}

/* 섹션 공통 */
.edu_apply_section {
	margin-bottom: 100px;
}
.edu_apply_section .sec_title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
	position: relative;
	display: block;
	color: #000;
}
.edu_apply_section .sec_title::before {
	content: "";
	display: block;
	width: 30px;
	height: 3px;
	background-color: #000;
	margin-bottom: 10px;
}

/* 필수 표시 안내 */
.edu_apply_section .essential_info {
	text-align: right;
	color: #e60012;
	margin-bottom: 10px;
}

/* 테이블 스타일 */
.edu_apply_table {
	width: 100%;
	border-top: 2px solid #000;
	border-collapse: collapse;
}
.edu_apply_table th {
	background-color: #f5f5f5;
	padding: 22px;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #e5e5e5;
	width: 200px;
}
.edu_apply_table td {
	padding: 22px;
	border-bottom: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
}
.edu_apply_table .essential {
	color: #e60012;
	margin-right: 5px;
}

/* 입력 필드 */
.edu_apply_table input[type="text"],
.edu_apply_table select {
	height: 45px;
	border: 1px solid #ccc;
	padding: 0 15px;
	border-radius: 5px;
	font-size: 15px;
	width: 100%;
	max-width: 300px;
	outline: none;
	box-sizing: border-box;
	background-color: #fff;
}

/* 생년월일 셀렉트 박스 */
.birth_selects {
	display: flex;
	gap: 10px;
	align-items: center;
	max-width: 450px;
}
.edu_apply_table input[type="text"]:focus,
.edu_apply_table select:focus {
	border-color: #000;
}
.edu_apply_table .input_desc {
	display: inline-block;
	margin-left: 10px;
	font-size: 14px;
	color: #888;
	vertical-align: middle;
}

/* 개인정보 동의 박스 */
.privacy_policy_box {
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	padding: 30px;
	background-color: #fff;
	height: 200px;
	overflow-y: auto;
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 1.6;
	color: #555;
}
.privacy_policy_box p {
	margin-bottom: 10px;
}
.privacy_agree_area {
	background-color: #f5f5f5;
	border: 1px solid #dcdcdc;
	padding: 25px 30px;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.privacy_agree_area .agree_label {
	font-weight: normal;
}
.privacy_agree_area .agree_checks {
	display: flex;
	flex-direction: row;
	gap: 30px;
}
.privacy_agree_area .agree_check {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	cursor: pointer;
}
.privacy_agree_area .agree_check input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #ccc;
	border-radius: 50%;
	outline: none;
	background-color: #fff;
	cursor: pointer;
	position: relative;
	margin: 0;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.privacy_agree_area .agree_check input[type="radio"]:checked {
	border-color: #0f69ff;
}
.privacy_agree_area .agree_check input[type="radio"]::after {
	content: '';
	width: 10px;
	height: 10px;
	background-color: #0f69ff;
	border-radius: 50%;
	display: block;
	opacity: 0;
	transform: scale(0);
	transition: all 0.2s ease;
}
.privacy_agree_area .agree_check input[type="radio"]:checked::after {
	opacity: 1;
	transform: scale(1);
}

/* 버튼 영역 */
.edu_apply_btns {
	text-align: center;
	margin-top: 60px;
	display: flex;
	justify-content: center;
	gap: 15px;
}
.edu_apply_btns .btn_cancel {
	display: inline-block;
	width: 250px;
	height: 60px;
	line-height: 58px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #fff;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
}
.edu_apply_btns .btn_cancel:hover {
	background-color: #f5f5f5;
	border-color: #bbb;
}
.edu_apply_btns .btn_submit {
	display: inline-block;
	width: 250px;
	height: 60px;
	line-height: 60px;
	border: none;
	border-radius: 5px;
	background-color: #222;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}
.edu_apply_btns .btn_submit:hover {
	background-color: #0f69ff;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
	.page_title {
		margin-bottom: 60px;
		font-size: 26px;
	}
	.edu_apply_section {
		margin-bottom: 60px;
	}
	.edu_apply_table th {
		width: 180px;
		padding: 15px;
	}
	.edu_apply_table td {
		padding: 15px;
	}
	.privacy_agree_area {
		padding: 20px;
	}
}

@media (max-width: 768px) {
	.page_title {
		margin-bottom: 40px;
		font-size: 24px;
	}
	.edu_apply_section {
		margin-bottom: 50px;
	}
	.edu_apply_section .sec_title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.edu_apply_table {
		border-top: 1px solid #000;
	}
	.edu_apply_table colgroup {
		display: none;
	}
	.edu_apply_table thead {
		display: none;
	}
	.edu_apply_table tr {
		display: flex;
		flex-direction: column;
		border-bottom: 1px solid #e5e5e5;
	}
	.edu_apply_table th, .edu_apply_table td {
		width: 100% !important;
		text-align: left;
		border-bottom: none;
		border-left: none;
		box-sizing: border-box;
	}
	.edu_apply_table th {
		background-color: #f9f9f9;
		padding: 12px 15px;
		font-size: 15px;
	}
	.edu_apply_table td {
		padding: 15px;
	}
	.edu_apply_table input[type="text"],
	.edu_apply_table select {
		max-width: 100%;
	}
	.birth_selects {
		flex-wrap: wrap;
	}
	.birth_selects select {
		flex: 1;
		min-width: 80px;
	}
	.privacy_agree_area {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.privacy_agree_area .agree_checks {
		width: 100%;
		justify-content: flex-start;
	}
	.edu_apply_btns {
		flex-direction: column-reverse;
		gap: 10px;
		margin-top: 40px;
	}
	.edu_apply_btns .btn_cancel,
	.edu_apply_btns .btn_submit {
		width: 100%;
		height: 55px;
		line-height: 55px;
	}
}

@media (max-width: 480px) {
	.edu_apply_section .sec_title {
		font-size: 18px;
	}
	.privacy_policy_box {
		padding: 15px;
		font-size: 14px;
	}
	.privacy_agree_area .agree_label {
		font-size: 14px;
	}
	.privacy_agree_area .agree_check {
		font-size: 14px;
	}
}
