@charset "utf-8";

/*************************************
//	메인	//
*************************************/
/***** 메인 공통 시작 *****/
*:not(.overlay, .overlay2, .overlay3) {
	position: relative;
	/* z-index: 1; */
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 0;
}

.overlay2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 0;
}

.overlay3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 0;
}
/***** 메인 공통 끝 *****/


/***** 메인 배너 시작 *****/
.main_banner_area {
	height: 896px;
	background: url('../images/main_banner.png') no-repeat center center / cover;
	text-align: center;
	color: #fff;
}

.main_banner_area .top {
	padding-top: 161px;
}

.main_banner_area .center {
	margin-top: 65px;
	font-size: 60px;
	font-weight: 300;
	line-height: 1.15;
}

.main_banner_area .bottom {
	display: inline-block;
	margin-top: 30px;
	font-size: 24px;
	line-height: 1.4;
}

.main_banner_btn {
	display: block;
	width: 276px;
	height: 76px;
	margin: 60px auto 0;
	border: 1px solid #fff;
	background: none;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	transition: .2s;
}

.main_banner_btn:focus,
.main_banner_btn:hover {
	background: #fff;
	color: #000;
}

@media screen and (max-width:1000px) {
	.main_banner_area {
		height: 141.7vw;
		background-image: url('../images/m_main_banner.png');
	}

	.main_banner_area .top {
		padding-top: 20.83vw;
	}

	.main_banner_area .top > img {
		width: 15vw;
	}

	.main_banner_area .center {
		margin-top: 9.269vw;
		font-size: 8.8vw;
	}

	.main_banner_area .bottom {
		margin-top: 6.88vw;
		font-size: 4.4vw;
		line-height: 1.35;
	}

	.main_banner_btn {
		display: block;
		width: 44.7vw;
		height: 13.7vw;
		margin: 7.98vw auto 0;
		font-size: 4.4vw;
	}
}
/***** 메인 배너 끝 *****/



/***** 메인 인트로 시작 *****/
.main_intro_area {
	padding: 100px 0;
}

.main_intro_area .main_intro_mini {
	font-size: 30px;
	font-weight: bold;
	color: #007EB4;
}

.main_intro_area .main_intro {
	margin-top: 20px;
	font-size: 40px;
	line-height: 1.25;
}

.main_intro_area .main_intro_content {
	margin-top: 76px;
	border: 2px solid #E5E5E5;
	border-radius: 30px;
	overflow: hidden;
}

.main_intro_area .main_intro_content > div {
	float: left;
	width: 33.33%;
	height: 280px;
	padding: 50px;
	box-sizing: border-box;
}

.main_intro_area .main_intro_content > div:nth-child(1),
.main_intro_area .main_intro_content > div:nth-child(3),
.main_intro_area .main_intro_content > div:nth-child(4) {
	border-right: 2px solid #E5E5E5;
}

.main_intro_area .main_intro_content > div:nth-child(1),
.main_intro_area .main_intro_content > div:nth-child(2) {
	border-bottom: 2px solid #E5E5E5;
}

.main_intro_area .main_intro_content > div:hover {
	background: linear-gradient(90deg, #34846E 0%, #007EB4 100%);
}

.main_intro_area .main_intro_content > div:hover * {
	color: #fff;
}

.main_intro_area .main_intro_content > div > span {
	font-size: 40px;
	font-weight: bold;
	color: #007EB4;
}

.main_intro_area .main_intro_content > div > h3 {
	margin-top: 20px;
	font-size: 30px;
	font-weight: bold;
}

.main_intro_area .main_intro_content > div > p {
	margin-top: 25px;
	font-size: 20px;
	line-height: 1.2;
}

.main_intro_area .main_intro_content > div.big {
	width: 50%;
}

@media screen and (max-width:1000px) {
	.main_intro_area {
		padding: 12vw 0 18vw;
	}

	.main_intro_area .main_intro_mini {
		font-size: 4.4vw;
	}

	.main_intro_area .main_intro {
		margin-top: 3vw;
		font-size: 6vw;
	}

	.main_intro_area .main_intro_content {
		margin-top: 8vw;
		border-radius: 3vw;
	}

	.main_intro_area .main_intro_content > div {
		width: 100%;
		height: 44vw;
		padding: 7vw;
		border-bottom: 2px solid #E5E5E5;
	}

	.main_intro_area .main_intro_content > div:nth-child(1),
	.main_intro_area .main_intro_content > div:nth-child(3),
	.main_intro_area .main_intro_content > div:nth-child(4) {
		border-right: 0;
	}

	.main_intro_area .main_intro_content > div:last-child {
		border-bottom: 0;
	}

	.main_intro_area .main_intro_content > div > span {
		font-size: 6vw;
	}

	.main_intro_area .main_intro_content > div > h3 {
		margin-top: 3vw;
		font-size: 4.4vw;
	}

	.main_intro_area .main_intro_content > div > p {
		margin-top: 3vw;
		font-size: 4vw;
	}

	.main_intro_area .main_intro_content > div.big {
		width: 100%;
	}
}

/***** 메인 인트로 끝 *****/


/***** 메인 가치 시작 *****/
.main_value_area {
	text-align: center;
	background: url('../images/main_img01.png') no-repeat center bottom / cover;
	color: #fff;
}

.main_value_area .main_value_title {
	padding-top: 120px;
	font-size: 50px;
	font-weight: 500;
}

.main_value_area .main_value_intro {
	margin-top: 30px;
	font-size: 24px;
}

.main_value_area .main_value {
	margin-top: 95px;
	border-radius: 30px 30px 0 0;
	overflow: hidden;
}

.main_value_area .main_value > li {
	float: left;
	width: 33.33%;
	height: 345px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.main_value_area .main_value > li > h3 {
	margin-top: 115px;
	font-size: 30px;
	font-weight: bold;
}

.main_value_area .main_value > li > p {
	margin-top: 25px;
	font-size: 20px;
	line-height: 1.2;
}

@media screen and (max-width:1000px) {
	.main_value_area {
		background: url('../images/m_main_img01.png') no-repeat center bottom / cover;
	}

	.main_value_area .main_value_title {
		padding-top: 19vw;
		font-size: 7vw;
	}

	.main_value_area .main_value_intro {
		margin-top: 4vw;
		font-size: 4.4vw;
	}

	.main_value_area .main_value {
		margin-top: 10.5vw;
		padding-bottom: 19vw;
		border-radius: 3vw 3vw 0 0;
	}

	.main_value_area .main_value > li {
		width: 100%;
		height: 40vw;
	}

	.main_value_area .main_value > li > h3 {
		margin-top: 9.5vw;
		font-size: 5vw;
	}

	.main_value_area .main_value > li > p {
		margin-top: 3.5vw;
		font-size: 4.4vw;
	}
}

/***** 메인 가치 끝 *****/


/***** 메인 콘택트 시작 *****/
.main_contact_area {
	padding: 87px 0 167px;
	background: url('../images/m_bg_img.png') no-repeat bottom right / 595px;
}

.main_contact_area .main_contact_ico {
	display: block;
	margin: 0 auto;
}

.main_contact_area .main_contact_map {
	width: 100%;
	height: 615px;
	margin-top: 50px;
	border-radius: 30px 30px 0 0;
	overflow: hidden;
}

.main_contact_area .main_contact_map #daumRoughmapContainer1734486694699 {
	position: relative;
	top: -1px;
	left: -1px;
	width: calc(100% + 2px);
	height: 100%;
}

.main_contact_area .main_contact_map #daumRoughmapContainer1734486694699 .wrap_map {
	height: inherit;
}

.main_contact_area .main_contact_box {
	display: flex;
	height: 275px;
	padding: 65px;
	background: linear-gradient(90deg, #34846E 0%, #007EB4 100%);
	border-radius: 0 0 30px 30px;
	box-sizing: border-box;
	justify-content: space-between;
	color: #fff;
}

.main_contact_area .main_contact_box .contact {
}

.main_contact_area .main_contact_box .contact > span {
	display: inline-block;
	line-height: 34px;
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 34px;
	font-size: 24px;
	font-weight: bold;
}

.main_contact_area .main_contact_box .contact .contact_detail1 {
	margin-top: 20px;
	font-size: 34px;
	font-weight: bold;
}

.main_contact_area .main_contact_box .contact .contact_detail2 {
	margin-top: 15px;
	font-size: 30px;
	font-weight: bold;
}

@media screen and (max-width:1000px) {
	.main_contact_area {
		padding: 12.6vw 0 23vw;
		background-size: 59.5vw;
	}

	.main_contact_area .main_contact_ico {
		width: 40.6vw;
	}

	.main_contact_area .main_contact_map {
		height: 136.8vw;
		margin-top: 9.2vw;
		border-radius: 3vw 3vw 0 0;
	}

	.main_contact_area .main_contact_box {
		display: block;
		height: 67.5vw;
		padding: 8vw 4vw;
		border-radius: 0 0 3vw 3vw;
	}

	.main_contact_area .main_contact_box .contact {
		margin-bottom: 8.5vw;
	}

	.main_contact_area .main_contact_box .contact > span {
		line-height: 4.4vw;
		background-size: 3.5vw;
		font-size: 3.4vw;
	}

	.main_contact_area .main_contact_box .contact:first-child > span {
		padding-left: 6vw !important;
	}

	.main_contact_area .main_contact_box .contact:last-child > span {
		padding-left: 7vw !important;
	}

	.main_contact_area .main_contact_box .contact .contact_detail1 {
		margin-top: 2.5vw;
		font-size: 5vw;
	}

	.main_contact_area .main_contact_box .contact .contact_detail2 {
		margin-top: 2vw;
		font-size: 4.5vw;
	}
}

/***** 메인 콘택트 끝 *****/



/*************************************
//	서브	//
*************************************/
/**** 서브배너 ****/
.sub_banner {
	position: relative;
	display: flex;
	height: 270px;
	background: url('../images/sub01_banner.png') no-repeat center center / cover;
	align-items: center;
	justify-content: center;
}

.sub_banner::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	content: "";
	z-index: 0;
}

.sub_banner > span {
	position: relative;
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	z-index: 1;
}

@media screen and (max-width:1000px) {
	.sub_banner {
		height: 27vw;
		background-image: url('../images/m_sub01_banner.png');
	}

	.sub_banner > span {
		font-size: 6vw;
	}
}


/**** 서브 공통 ****/
.sub_title_box {
	padding-top: 110px;
}

.sub_title_box .sub_title {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
}

.sub_title_box .sub_dir {
	display: flex;
	margin-top: 12px;
	font-size: 18px;
	font-weight: 500;
	color: #707070;
	align-items: center;
	justify-content: center;
}

.sub_title_box .sub_dir > span {
	font-size: 7px;
	margin: 0 12px;
}

@media screen and (max-width:1000px) {
	.sub_title_box {
		padding-top: 10vw;
	}

	.sub_title_box .sub_title {
		font-size: 4.8vw;
	}

	.sub_title_box .sub_dir {
		margin-top: 4vw;
		font-size: 4.1vw;
	}

	.sub_title_box .sub_dir > span {
		font-size: 1.3vw;
		margin: 0 3.5vw;
	}
}


.sub_container {
	background: url('../images/m_bg_img.png') no-repeat bottom right / 596px;
	padding-bottom: 150px;
}

.sub_contents {
	margin-top: 73px;
	padding: 35px 42px;
	border: 2px solid #E5E5E5;
	border-radius: 30px;
	background: #fff;
}

@media screen and (max-width:1000px) {
	.sub_container {
		background-size: 59.5vw;
		padding-bottom: 21vw;
	}

	.sub_contents {
		margin-top: 7.5vw;
		padding: 6.5vw 3vw;
		border-radius: 3vw;
	}
}


/**** 인사말 ****/
.intro01_intro {
	margin-top: 54px;
	font-size: 22px;
	line-height: 1.5;
}

.intro01_promise {
	margin-top: 40px;
	margin-bottom: 35px;
	font-size: 18px;
	line-height: 1.65;
}

@media screen and (max-width:1000px) {
	.intro01_intro {
		margin-top: 8vw;
		font-size: 4.4vw;
		line-height: 1.35;
	}

	.intro01_promise {
		margin-top: 8vw;
		margin-bottom: 6vw;
		font-size: 4vw;
		line-height: 1.15;
	}
}


/**** 시설소개 ****/
.intro02_intro {
	font-size: 22px;
	line-height: 1.5;
	text-align: center;
}

.intro02_list {
	margin-top: 60px;
}

.intro02_list > li {
	margin-bottom: 50px;
}

.intro02_list > li .fac_title {
	font-size: 22px;
}

.intro02_list > li .fac_detail {
	display: flex;
	height: 150px;
	margin-top: 20px;
	border-top: 2px solid #007EB4;
	border-bottom: 1px solid #E2E2E2;
	align-items: center;
}

.intro02_list > li .fac_detail .icon {
	width: 220px;
	height: inherit;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 105px;
	background-color: #F9F9F9;
}

.intro02_list > li .fac_detail .detail {
	padding-left: 25px;
	
}

.intro02_list > li .fac_detail .detail > span {
	position: relative;
	display: inline-block;
	padding-left: 12px;
	font-size: 18px;
	line-height: 1.65;
}

.intro02_list > li .fac_detail .detail > span::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "- ";
}

@media screen and (max-width:1000px) {
	.intro02_intro {
		font-size: 4.4vw;
		line-height: 1.35;
	}

	.intro02_list {
		margin-top: 10vw;
	}

	.intro02_list > li {
		margin-bottom: 8vw;
	}

	.intro02_list > li .fac_title {
		font-size: 4vw;
	}

	.intro02_list > li .fac_detail {
		display: block;
		height: auto;
		margin-top: 4vw;
	}

	.intro02_list > li .fac_detail .icon {
		width: 100%;
		height: 28.4vw;
		background-size: 20vw;
	}

	.intro02_list > li .fac_detail .detail {
		padding: 5vw 0;
	}

	.intro02_list > li .fac_detail .detail > span {
		padding-left: 2.4vw;
		font-size: 3.6vw;
		line-height: 1.25;
	}
}


/**** 기관현황 ****/
.intro03_table {
	width: 100%;
	margin-bottom: 50px;
	background: #fff;
}

.intro03_table.service01_table {
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 1.65;
}

.intro03_table caption {
	margin-bottom: 20px;
	font-size: 22px;
	text-align: left;
}

.intro03_table caption.read-only {
	margin-bottom: 0;
	font-size: 0;
}

.intro03_table:not(.service01_table) tr:first-child th,
.intro03_table:not(.service01_table) tr:first-child td {
	border-top: 2px solid #007EB4;
}

.intro03_table th,
.intro03_table td {
	padding: 18px 0;
	font-size: 18px;
	border-bottom: 1px solid #E2E2E2;
}

.intro03_table th {
	background: #F3F3F3;
}

.intro03_table td {
	padding-left: 25px;
}

.intro03_table td.ta-center {
	padding-left: 0;
}

.intro03_table td.bg-lightgray,
.bd-right {
	border-right: 1px solid #E2E2E2;
}

@media screen and (max-width:1000px) {
	.intro03_table {
		margin-bottom: 8vw;
	}

	.intro03_table.service01_table {
		margin-top: 2vw;
		margin-bottom: 2vw;
	}

	.mob-drag {
		width: 100%;
		overflow-X: auto;
	}

	.mob-drag .intro03_table {
		width: 128vw;
	}

	.intro03_table caption {
		margin-bottom: 4vw;
		font-size: 4vw;
	}

	.intro03_table th,
	.intro03_table td {
		padding: 3vw 0;
		font-size: 3.6vw;
	}

	.intro03_table td {
		padding-left: 4.5vw;
	}

}


/**** 오시는길 ****/
.intro04_map {
	width: 100%;
	height: 600px;
	margin-bottom: 30px;
	overflow: hidden;
}

.intro04_map #daumRoughmapContainer1734486694699 {
	width: 100%;
	height: 100%;
}

.intro04_map #daumRoughmapContainer1734486694699 .wrap_map {
	height: calc(100% - 32px);
}

@media screen and (max-width:1000px) {
	.intro04_map {
		height: 60vw;
		margin-bottom: 6vw;
	}
}


/**** 9남매 서비스 ****/
.service01_list {
	margin-bottom: 50px;
}

.service01_list.first {
	margin-top: 60px;
}

.service01_list dt,
.service01_list dd {}

.service01_list dt {
	font-size: 22px;
	padding-bottom: 20px;
	border-bottom: 2px solid #007EB4;
}

.service01_list dd {
	padding: 15px 0;
	border-bottom: 1px solid #E2E2E2;
	font-size: 18px;
}

.service01_list p {
	position: relative;
	padding-left: 35px;
	line-height: 1.65;
}

.service01_list p::before {
	position: absolute;
	top: 0;
	left: 15px;
	content: "•";
	color: #007EB4;
}

@media screen and (max-width:1000px) {
	.service01_list {
		margin-bottom: 8vw;
	}

	.service01_list.first {
		margin-top: 8vw;
	}

	.service01_list dt {
		font-size: 4vw;
		padding-bottom: 4vw;
	}

	.service01_list dd {
		padding: 3vw 0;
		font-size: 3.6vw;
	}

	.service01_list p {
		padding-left: 6vw;
		padding-right: 2vw;
		line-height: 1.25;
	}

	.service01_list p::before {
		left: 2vw;
	}
}



/******************************  접수 신청 페이지  ******************************/
#sub_contents02 {
	margin-bottom: 200px;
}

.apply_area {
	padding: 60px 0 70px;
	border: 1px solid #DDDDDD;
	background: #FAFAFA;
}

.apply_area .apply_intro {
	text-align: center;
}

.apply_area .apply_intro > img {}

.apply_area .apply_intro > p {
	margin-top: 25px;
	font-size: 18px;
	line-height: 1.44;
}

@media screen and (max-width:1000px) {
	.apply_area {
		padding: 12.5vw 0;
	}

	.apply_area .apply_intro img {
		width: 16vw;
		margin: 0 auto;
	}

	.apply_area .apply_intro p {
		margin-top: 6vw;
		font-size: 4vw;
		letter-spacing: -0.1vw;
	}
}


.apply_form {
	width: 800px;
	margin: 0 auto;
	/* margin-top: 35px; */
}

.apply_form > caption {
	font-size: 18px;
	text-align: left;
	margin-bottom: 10px;
}

.apply_form th,
.apply_form td {
	border: 1px solid #DDDDDD;
	font-size: 18px;
}

.apply_form th {
	width: 280px;
	padding: 24px 0;
	background: #000;
	color: #fff;
}

.apply_form td {
	padding: 15px;
	background: #fff;
}

.apply_form td::after {
	display: block;
	clear: both;
	content: "";
}

input.apply_text {
	padding: 0 10px;
	height: 34px;
	border: 1px solid #E1E1E1;
	background: #EFEFEF;
	font-size: 18px;
}

input.apply_tel {
	float: left;
}

input.apply_radio {
	width: 0px;
	height: 0px;
}

input.apply_radio::before,
input.apply_radio::after {
	position: absolute;
	border-radius: 50%;
	content: "";
}

input.apply_radio::before {
	width: 19px;
	height: 19px;
	border: 1px solid #0088FF;
	transform: translateY(-12px);
	background: #fff;
}

input.apply_radio:focus::before {
	border: 1px solid #000;
}

input.apply_radio:checked::after {
	width: 13px;
	height: 13px;
	transform: translate(4px,-8px);
	background: #0088FF;
}

input.apply_radio:focus::after {
	background: #000;
}

input.apply_radio + label {
	padding-left: 27px;
	margin-right: 55px;
}

input.apply_checkbox {
	width: 0px;
	height: 0px;
}

input.apply_checkbox::before,
input.apply_checkbox::after {
	position: absolute;
	content: "";
}

input.apply_checkbox::before {
	width: 19px;
	height: 19px;
	border: 1px solid #0088FF;
	transform: translateY(-14px);
	background: #fff;
}

input.apply_checkbox:focus::before {
	border: 1px solid #000;
	background: rgba(0,126,180,0.5);
}

input.apply_checkbox:checked::after {
	width: 13px;
	height: 13px;
	transform: translate(4px,-10px);
	background: #0088FF;
}

input.apply_checkbox:focus::after {
	background: #000;
}

input.apply_checkbox + label {
	padding-left: 27px;
	margin-right: 15px;
	font-size: 18px;
}

input.apply_sbtn {
	height: 41px;
	margin-left: 7px;
	padding: 0 20px;
	border: 0;
	background: var(--main-color);
	color: #fff;
}

span.hypen {
	float: left;
	margin: 0 5px;
	line-height: 34px;
}

span.txt {
	margin-left: 7px;
}

.mini {
	margin-top: 15px;
	font-size: 0.8em;
	line-height: 1.35;
}


@media screen and (max-width:1000px) {
	.apply_form {
		width: 90%;
		margin-top: 9.5vw;
	}

	.apply_form th,
	.apply_form td {
		display: block;
		font-size: 4vw;
		box-sizing: border-box;
	}

	.apply_form th {
		width: 100%;
		padding: 4.5vw 0;
	}

	.apply_form td {
		width: 100%;
		border-top: 0;
		border-bottom: 0;
		padding: 4.5vw 4.2vw;
		text-align: center;
	}

	.apply_form td:last-child {
		border-bottom: 1px solid #ddd;
	}

	input.apply_text {
		width: 100%;
		padding: 0 2vw;
		height: 9.6vw;
		font-size: 4vw;
		box-sizing: border-box;
	}

	input.apply_tel {
		width: 30%;
	}

	input.apply_radio::before {
		width: 5vw;
		height: 5vw;
		transform: translateY(-3.2vw);
	}

	input.apply_radio:checked::after {
		width: 3.5vw;
		height: 3.5vw;
		transform: translate(1vw,-2.3vw);
	}

	input.apply_radio + label {
		padding-left: 6.5vw;
		margin-right: 3vw;
	}

	input.apply_checkbox::before {
		width: 5vw;
		height: 5vw;
		transform: translateY(-3.2vw);
	}

	input.apply_checkbox:checked::after {
		width: 3.5vw;
		height: 3.5vw;
		transform: translate(0.9vw,-2.3vw);
	}

	input.apply_checkbox + label {
		padding-left: 6.5vw;
		margin-right: 3vw;
		font-size: 3.6vw;
	}

	input.apply_sbtn {
		width: 100%;
		height: 9.6vw;
		margin-top: 3vw;
		margin-left: 0;
		padding: 0;
	}

	input.apply_headcnt {
		width: 30vw;
	}

	span.hypen {
		width: 5%;
		margin: 0;
		line-height: 9.6vw;
	}

	span.txt {
		margin-left: 2vw;
	}

	.mini {
		text-align: left;
	}
}


.term_area {
	font-size: 18px;
}

.term_area .term_box {
	height: auto;
	margin-top: 40px;
	margin-bottom: 20px;
	padding: 30px 25px;
	border: 1px solid #DDDDDD;
	background: #FAFAFA;
	line-height: 1.45;
	/* overflow-Y: scroll; */
}

.term_area .term_form {}

.apply_btn_area {
	margin-top: 45px;
	text-align: center;
}

input.apply_button {
	width: 297px;
	height: 55px;
	border: 0;
	border-radius: 5px;
	background: #000;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

input.apply_button2 {
	width: 297px;
	height: 55px;
	margin-left: 5px;
	border: 0;
	border-radius: 5px;
	background: #1F2A57;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

input.apply_button3 {
	width: 297px;
	height: 55px;
	border: 0;
	border-radius: 5px;
	background: var(--main-color);
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

@media screen and (max-width:1000px) {
	.term_area {
		font-size: 4vw;
	}

	.term_area .term_box {
		height: 48vw;
		margin-top: 11.6vw;
		margin-bottom: 2.5vw;
		padding: 3.5vw 2.5vw;
		overflow-Y: auto;
	}

	.apply_btn_area {
		margin-top: 45px;
		text-align: center;
	}

	input.apply_button {
		width: 59.5vw;
		height: 13.3vw;
		font-size: 4vw;
	}

	input.apply_button2 {
		width: 48%;
		margin-left: calc(2% - 5px);
		height: 13.3vw;
		font-size: 4vw;
	}

	input.apply_button3 {
		width: 48%;
		height: 13.3vw;
		font-size: 4vw;
	}
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
	animation-name: fade-in;
}

span.ajax_msg {
	display: block;
	margin-top: 10px;
	font-size: 18px;
	color: var(--main-color);
	animation-name: fade-in;
	animation-duration: .3s;
}

span.ajax_msg.red {
	color: red;
}

.form_notice {
	margin: 15px 0 20px;
	font-size: 18px;
}

.apply_submit {
	display: block;
	width: 233px;
	height: 50px;
	margin: 0 auto;
	margin-top: 30px;
	background: #007EB4;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

@media screen and (max-width:1000px) {
	.form_notice {
		margin: 3vw 0;
		font-size: 3.6vw;
	}

	.apply_submit {
		width: 44vw;
		height: 10vw;
		margin-top: 10vw;
		font-size: 4vw;
	}
}


/* 치매학습지 */
.workbook_img {
	float: left;
	width: calc(33.33% - 16.67px);
	margin-right: 25px;
}

.workbook_img:last-child {
	margin-right: 0;
}

@media screen and (max-width:1000px) {
	.workbook_img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 2vw;
	}

	.service01_list p + .workbook_img {
		margin-top: 4vw;
	}

	.workbook_img:last-child {
		margin-bottom: 0;
	}
}