@charset "utf-8";

/* ==================================================
	공통사항
================================================== */
.cont_inner {
	width: 100%;
}

/* 애니메이션 */
.cont_inner.ani {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s 0.8s, transform 0.7s 0.8s;
	-webkit-transition: opacity 0.7s 0.8s, transform 0.7s 0.8s;
}

.cont_inner.ani.active {
	opacity: 1;
	transform: translateY(0);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:1100px) {
	.cont_inner {
		margin-top: 0;
	}
}

/* ==================================================
	아이콘
================================================== */
.con_title {
	position: relative;
	display: flex;
	align-items: center;
	font-size: var(--rem-28);
	font-weight: var(--font-sb);
	margin-bottom: 1.8rem;
	padding-left: 1.8rem;
}

.con_title:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 0.5rem;
	height: 2.4rem;
	background: var(--brand-color-main);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:1023px) {
	.con_title {
		font-size: 2.4rem;
		padding-left: 1.7rem;
	}

	.con_title:before {
		height: 2.2rem;
	}
}

/* ==================================================
	버튼 (a, btn)
================================================== */
a.cbtn {
	position: relative;
	display: block;
	font-family: var(--font-Paperlogy);
	font-size: 1.6rem;
	font-weight: var(--font-md);
	vertical-align: middle;
	transition: all .25s ease;
	line-height: 1;
	color: var(--color-white);
	background: var(--brand-color-dmain);
	border: 1px solid var(--brand-color-dmain);
	border-radius: 50px;
	transition: all 0.3s;
	width: 100%;
	max-width: 190px;
	box-sizing: border-box;
}

a.cbtn:hover {
	color: var(--color-white);
	background: #D2306A;
	border: 1px solid #D2306A;
}

a.cbtn span {
	display: block;
	padding: 1.2rem 4rem 1.2rem 1.5rem;
	line-height: 1;
	text-align: center;
	word-break: keep-all;
}

a.cbtn span.cbtn_icon {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	padding: 0;
	-webkit-transition: right .25s ease;
	transition: right .25s ease-out;
}

a.cbtn:hover span.cbtn_icon {
	right: 1rem;
}

a.cbtn span.cbtn_link {
	width: 26px;
	height: 14px;
	margin-top: -7px;
	background: url('../../lib/images/icon/white_arrow.png') no-repeat 0 0;
}

a.cbtn:hover span.cbtn_link {
	background: url('../../lib/images/icon/white_arrow.png') no-repeat 0 0;
}

a.cbtn span.cbtn_icon {
	position: absolute;
	right: 25px;
	top: 50%;
	padding: 0;
	-webkit-transition: right .25s ease;
	transition: right .25s ease-out
}

a.cbtn:hover span.cbtn_icon {
	right: 20px;
}

a.cbtn span.cbtn_link {
	width: 26px;
	height: 14px;
	margin-top: -7px;
	background: url('../../lib/images/icon/white_arrow.png') no-repeat 0 0;
}

a.cbtn:hover span.cbtn_link {
	background: url('../../lib/images/icon/white_arrow.png') no-repeat 0 0;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:1200px) {
	a.cbtn span {
		display: block;
		padding: 1.5rem 6.5rem 1.5rem 3.5rem;
		line-height: 1;
	}

	a.cbtn .cbtn_icon {
		right: 2.3rem;
	}

	a.cbtn:hover .cbtn_icon {
		right: 1.8rem;
	}
}

@media screen and (max-width:640px) {
	a.cbtn span {
		display: block;
		padding: 1.2rem 6.5rem 1.2rem 3.5rem;
		line-height: 1;
	}
}

/* ==================================================
	공통 폼 입력 스타일 (콘텐츠 영역 전체)
================================================== */
.content_form input[type="text"],
.content_form input[type="email"],
.content_form input[type="number"],
.content_form input[type="password"],
.content_form select,
.content_form textarea {
	width: 100%;
	max-width: 500px;
	height: 58px;
	padding: 0 24px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	color: #222;
	transition: all 0.3s;
	outline: none;
	background: var(--color-white);
	box-sizing: border-box;
	display: block;
}

.content_form textarea {
	height: auto;
	min-height: 120px;
	padding: 18px 24px;
	resize: vertical;
}

.content_form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size: 16px;
	font-family: 'Pretendard' !important;
	font-weight: inherit;
	color: #999;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 18px;
	cursor: pointer;
}

.content_form select option {
	font-size: 16px;
	font-family: 'Pretendard' !important;
	font-weight: inherit;
	color: #222;
}

.content_form input[type="text"]:focus,
.content_form input[type="email"]:focus,
.content_form input[type="number"]:focus,
.content_form select:focus,
.content_form textarea:focus {
	border-color: var(--brand-color-main);
	box-shadow: 0 0 0 5px rgba(20, 88, 166, 0.1);
}

/* placeholder 통일 - 폼 입력/textarea (벤더 접두사 포함) */
.content_form input::placeholder,
.content_form textarea::placeholder,
.content_form .cont_detail input::placeholder,
.content_form .cont_detail textarea::placeholder,
.content_form input::-webkit-input-placeholder,
.content_form textarea::-webkit-input-placeholder,
.content_form .cont_detail input::-webkit-input-placeholder,
.content_form .cont_detail textarea::-webkit-input-placeholder,
.content_form input::-moz-placeholder,
.content_form textarea::-moz-placeholder,
.content_form .cont_detail input::-moz-placeholder,
.content_form .cont_detail textarea::-moz-placeholder {
	font-size: 16px !important;
	font-family: 'Pretendard' !important;
	color: #999 !important;
	opacity: 1;
}

.content_form .tel-input-group input::placeholder,
.content_form .tel-input-group input::-webkit-input-placeholder,
.content_form .tel-input-group input::-moz-placeholder {
	font-size: inherit !important;
}

.content_form .tel-input-group {
	display: flex;
	align-items: center;
	gap: 12px;
}

.content_form .tel-input-group input[type="text"] {
	width: 110px;
	max-width: 110px;
	text-align: center;
}

/* ==================================================
	애니메이션
================================================== */
@-webkit-keyframes fadeUpAni {
	0% {
		opacity: 1;
		transform: translate3d(0, 54px, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0px, 0);
	}
}

.fadeUp.active {
	animation-name: fadeUpAni;
	animation-duration: 2s;
}

/* ==================================================
	이미지 움직이는 효과
================================================== */
.over-cover {
	overflow: hidden;
	position: relative;
	display: inline-block;
	line-height: 0;
	border-radius: 1rem;
}

.over-cover img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.over-cover:hover img {
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}

/* ==================================================
	영상
================================================== */
.movie_con {
	text-align: center;
}

.movie_con video {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	border: 1px solid #d7d7d7;
}

.promovie_con {
	text-align: center;
}

.promovie_con video {
	width: 100%;
	max-width: 1000px;
}

/* ==================================================
	유튜브 영상
================================================== */
.youtubeWrap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 35px;
	height: 0;
	overflow: hidden
}

.youtubeWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1
}

.youtubeWrap .btn_prev,
.youtubeWrap .btn_next {
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -45px;
	z-index: 100;
	background: rgba(0, 0, 0, 0.6);
	color: var(--color-white)
}

.youtubeWrap .btn_prev {
	left: 0
}

.youtubeWrap .btn_next {
	right: 0
}

.youtubeWrap .btn_prev>img {
	float: left
}

.youtubeWrap .btn_next>img {
	float: right
}

.youtubeWrap .btn_prev>span,
.youtubeWrap .btn_next>span {
	display: inline-block;
	float: left;
	height: 90px;
	padding: 0 15px;
	margin: 20px 0;
	max-height: 50px;
	max-width: 180px;
	font-size: 16px;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	display: none;
}

.youtubeWrap .btn_prev:hover>span,
.youtubeWrap .btn_prev:focus>span,
.youtubeWrap .btn_next:hover>span,
.youtubeWrap .btn_next:focus>span {
	display: inline-block
}

.overveiw-wrap {
	overflow: hidden;
}

/* ==================================================
	센터소개 - 인사말
================================================== */
/* 인사말 페이지 고도화 스타일 - Scoped Premium Design */
.greeting-wrap.premium-enhanced {
	position: relative;
	margin-top: 4rem;
}

.greeting-bg-deco {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.deco-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(6rem);
}

.deco-1 {
	width: 50rem;
	height: 50rem;
	top: -15rem;
	right: -10rem;
	background: radial-gradient(circle, rgba(42, 161, 169, 0.08) 0%, transparent 70%);
	animation: float1 20s infinite alternate ease-in-out;
}

.deco-2 {
	width: 40rem;
	height: 40rem;
	bottom: -10rem;
	left: -10rem;
	background: radial-gradient(circle, rgba(218, 75, 126, 0.05) 0%, transparent 70%);
	animation: float2 15s infinite alternate-reverse ease-in-out;
}

@keyframes float1 {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	100% {
		transform: translate(50px, 80px) rotate(10deg);
	}
}

@keyframes float2 {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	100% {
		transform: translate(-40px, -60px) rotate(-15deg);
	}
}

.greeting-flex {
	display: flex;
	gap: 100px;
	align-items: flex-start;
	position: relative;
	z-index: 1;
}

/* 이미지 섹션 */
.photo-area {
	flex: 0 0 38rem;
	position: relative;
}

.photo-frame {
	position: relative;
	border-radius: 3rem;
	overflow: hidden;
	box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.12);
	transform: translateY(40px);
	opacity: 0;
	transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.photo-frame.active {
	transform: translateY(0);
	opacity: 1;
}

.photo-frame img {
	width: 100%;
	display: block;
	transition: transform 0.8s ease;
}

.photo-area:hover .photo-frame img {
	transform: scale(1.08);
}

.photo-deco-blob {
	position: absolute;
	top: -3rem;
	right: -3rem;
	width: 16rem;
	height: 16rem;
	background: var(--brand-color-main);
	opacity: 0.15;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	z-index: -1;
	animation: blobAni 10s infinite alternate ease-in-out;
}

@keyframes blobAni {
	from {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	}

	to {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
	}
}

/* 텍스트 섹션 */
.text-area {
	flex: 1;
}

.msg-label {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 8px 16px;
	background: rgba(42, 161, 169, 0.1);
	color: var(--brand-color-main);
	font-size: 13px;
	font-weight: 800;
	border-radius: 5rem;
	margin-bottom: 3rem;
	letter-spacing: 2px;
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.8s ease;
}

.msg-label::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--brand-color-main);
	border-radius: 50%;
}

.msg-label.active {
	opacity: 1;
	transform: translateX(0);
}

.greeting-title {
	font-size: 4.2rem;
	font-weight: var(--font-eb);
	line-height: 1.35;
	margin-bottom: 4.5rem;
	letter-spacing: -1.5px;
	word-break: keep-all;
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
}

.greeting-title.active {
	opacity: 1;
	transform: translateY(0);
}

.greeting-title span {
	color: var(--brand-color-main);
	position: relative;
	display: inline-block;
}

.greeting-title span::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 100%;
	height: 15px;
	background: rgba(42, 161, 169, 0.12);
	z-index: -1;
}

.greeting-p-wrap p {
	font-size: 1.9rem;
	line-height: 2;
	color: #555;
	margin-bottom: 2.5rem;
	word-break: keep-all;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s ease;
}

.greeting-p-wrap p strong {
	color: #333;
	font-weight: var(--font-bd);
}

.greeting-p-wrap p.active {
	opacity: 1;
	transform: translateY(0);
}

/* 서명 섹션 */
.signature-area {
	margin-top: 6rem;
	padding-top: 4rem;
	border-top: 2px solid #f0f3f5;
	text-align: right;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s ease;
}

.signature-area.active {
	opacity: 1;
	transform: translateY(0);
}

.sign-org {
	font-size: 1.7rem;
	color: #777;
	margin-bottom: 1.2rem;
	font-weight: var(--font-md);
}

.sign-name-wrap {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 15px;
}

.sign-name {
	font-size: 34px;
	font-weight: 900;
	color: #111;
	letter-spacing: 4px;
}

.sign-suffix {
	font-size: 18px;
	color: #999;
	font-weight: var(--font-md);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1200px) {
	.greeting-flex {
		gap: 6rem;
	}

	.photo-area {
		flex: 0 0 32rem;
	}

	.greeting-title {
		font-size: 3.6rem;
	}
}

@media screen and (max-width: 1024px) {
	.greeting-flex {
		flex-direction: column;
		align-items: center;
		gap: 6rem;
		text-align: center;
	}

	.photo-area {
		width: 100%;
		max-width: 32rem;
	}

	.greeting-title {
		font-size: 3.2rem;
	}

	.greeting-title span::after {
		display: none;
	}

	.greeting-p-wrap {
		text-align: left;
	}

	.sign-name-wrap {
		justify-content: center;
	}

	.signature-area {
		text-align: center;
	}
}

@media screen and (max-width: 640px) {
	.greeting-title {
		font-size: 2.6rem;
		margin-bottom: 3rem;
	}

	.greeting-p-wrap p {
		font-size: 1.7rem;
		line-height: 1.8;
	}

	.sign-name {
		font-size: 2.8rem;
	}
}

/* ==================================================
	센터소개 - 조직도
================================================== */
.org_chart_wrap {
	position: relative;
	width: 100%;
	max-width: 120rem;
	margin: 0 auto;
	box-sizing: border-box;
}

/* 박스 레이아웃 */
.org_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2.6rem 2.4rem;
	border-radius: 2rem;
	width: 31rem;
	box-sizing: border-box;
}

.org_box .role {
	font-size: 2.5rem;
	font-weight: var(--font-bd);
	color: var(--color-white);
	margin-bottom: 1.3rem;
	text-align: center;
	line-height: 1;
}

.org_box .name_box {
	background: var(--color-white);
	width: 100%;
	padding: 1.2rem 0;
	border-radius: 2rem 0;
	text-align: center;
}

.org_box .name_box .dept {
	font-size: 1.6rem;
	font-weight: var(--font-md);
	margin-right: 0.5rem;
}

.org_box .name_box .name {
	font-size: 2.2rem;
	font-weight: var(--font-bd);
}

/* 타입별 색상 */
.org_box.type_master {
	background-color: var(--brand-color-main);
}

.org_box.type_vice {
	background-color: #157881;
}

.org_box.type_research {
	background-color: var(--brand-color-sub);
	width: 19.2rem;
}

/* 레벨 1 */
.org_level1 {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}

/* 영역 구분 1 */
.org_line_v1 {
	position: relative;
	width: 1px;
	height: 7.8rem;
	margin: 0 auto;
}

.org_line_v1::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: #c3c3c3;
}

/* 영역 구분 2 */
.org_level2 {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	margin-bottom: 5rem;
}

/* 영역 중앙은 컨테이너 중앙 기준으로 오른쪽 정렬 배치 */
.org_level2 .type_research {
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: 20rem;
}

/* 영역 구분 3 */
.org_level3 {
	position: relative;
	margin-top: 8rem;
}

.org_level3 .committee_label {
	position: absolute;
	top: -2.5rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--brand-color-dmain);
	color: var(--color-white);
	font-size: 2.3rem;
	font-weight: var(--font-bd);
	padding: 1.2rem 4rem;
	border-radius: 5rem;
	z-index: 5;
	white-space: nowrap;
}

.org_level3 .committee_box {
	background: #dedede;
	border: 1px solid #dadada;
	border-radius: 2rem;
	padding: 6.8rem 3.5rem 5rem;
}

.org_level3 .member_list {
	display: flex;
	justify-content: center;
	gap: 3.5rem;
	flex-wrap: wrap;
}

.org_level3 .member_list li {
	flex: 1;
	min-width: 18rem;
	max-width: 19.5rem;
}

.org_level3 .mem_card {
	background: var(--color-white);
	border-radius: 2rem 0;
	padding: 1.5rem 0;
	text-align: center;
	height: 7.8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.org_level3 .mem_card .dept {
	display: block;
	font-size: 1.6rem;
	font-weight: var(--font-md);
}

.org_level3 .mem_card .name {
	display: block;
	font-size: 2.2rem;
	font-weight: var(--font-bd);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1024px) {
	.org_level2 {
		flex-direction: column;
		align-items: center;
		margin-bottom: 3rem;
	}

	.org_level2 .type_research {
		position: static;
		margin-left: 0;
		margin-top: 2rem;
	}

	.org_level3 .committee_box {
		padding: 5rem 2rem 3rem;
	}

	.org_level3 .member_list {
		gap: 1.5rem;
	}

	.org_level3 .member_list li {
		min-width: calc(50% - 1rem);
		max-width: none;
	}
}

@media screen and (max-width: 640px) {

	.org_level1 .org_box,
	.org_level2 .org_box {
		width: 26rem;
		max-width: 26rem;
		box-sizing: border-box;
	}

	.org_box {
		width: 100%;
		max-width: 26rem;
		padding: 2rem;
	}

	.org_box.type_research {
		width: 26rem;
		max-width: 26rem;
	}

	.org_level3 .member_list li {
		min-width: 100%;
	}

	.org_box .role {
		font-size: 2rem;
	}

	.org_level3 .committee_label {
		font-size: 2rem;
		padding: 1rem 3rem;
	}

	.org_level3 .mem_card .name {
		font-size: 1.8rem;
	}
}

/* ==================================================
	센터소개 - 미션·비전
================================================== */
.mv-wrap {
	padding-top: 3rem;
	position: relative;
}

/* 배경 데코 */
.mv-bg-deco {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.dot-pattern {
	position: absolute;
	top: 100px;
	right: 50px;
	width: 200px;
	height: 200px;
	background-image: radial-gradient(#2fbebc 1.5px, transparent 1.5px);
	background-size: 20px 20px;
	opacity: 0.8;
}

.mv-container {
	position: relative;
	z-index: 1;
}

/* 상단 타이틀 섹션 */
.mv-top-info {
	text-align: center;
	margin-bottom: 12rem;
}

.mv-top-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	color: var(--brand-color-main);
	font-size: 1.4rem;
	font-weight: var(--font-eb);
	letter-spacing: 3px;
	margin-bottom: 3rem;
}

.mv-top-label .line {
	width: 3rem;
	height: 2px;
	background: var(--brand-color-main);
	opacity: 0.3;
}

.mv-top-desc {
	font-size: 2.6rem;
	color: #666;
	line-height: 1.6;
	word-break: keep-all;
	font-weight: var(--font-lg);
}

.mv-top-desc strong {
	display: block;
	margin-top: 2rem;
	font-size: 4rem;
	color: var(--color-black);
	font-weight: var(--font-eb);
	letter-spacing: -1px;
}

.mv-top-desc .highlight {
	color: var(--brand-color-main);
	position: relative;
	display: inline-block;
}

.mv-top-desc .highlight::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 100%;
	height: 15px;
	background: rgba(0, 127, 168, 0.12);
	z-index: -1;
}

/* 동그라미 섹션 레이아웃 */
.mv-circle-wrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 7rem;
	margin-bottom: 5rem;
}

.mv-circle-item {
	flex: 1;
	max-width: 38rem;
	text-align: center;
}

/* 서플 링(궤도) 애니메이션 */
.circle-box-outer {
	position: relative;
	width: 30rem;
	height: 30rem;
	margin: 0 auto 5rem;
}

.circle-orbit {
	position: absolute;
	top: -2rem;
	left: -2rem;
	right: -2rem;
	bottom: -2rem;
	border: 1px dashed #c2c2c2;
	border-radius: 50%;
	animation: rotateOrbit 20s linear infinite;
	pointer-events: none;
}

@keyframes rotateOrbit {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.circle-box {
	width: 100%;
	height: 100%;
	background: var(--color-white);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	box-shadow: 0 30px 60px rgba(0, 50, 100, 0.06);
	transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
	border: 1px solid #f2f5f9;
}

/* 컬러 바리에이션 포인트 */
.mission .circle-box {
	border-top: 8px solid var(--brand-color-dmain);
}

.vision .circle-box {
	border-top: 8px solid var(--brand-color-main);
}

.strategy .circle-box {
	border-top: 8px solid var(--brand-color-sub);
}

.mv-circle-item:hover .circle-box {
	transform: translateY(-20px) scale(1.02);
	box-shadow: 0 40px 80px rgba(0, 50, 100, 0.12);
}

.icon-wrap {
	width: 4.8rem;
	height: 4.8rem;
	margin-bottom: 2rem;
	opacity: 0.6;
	transition: all 0.4s ease;
}

.mission .icon-wrap {
	color: var(--brand-color-dmain);
}

.vision .icon-wrap {
	color: var(--brand-color-main);
}

.strategy .icon-wrap {
	color: var(--brand-color-sub);
}

.mv-circle-item:hover .icon-wrap {
	opacity: 1;
	transform: scale(1.15);
}

.circle-inner .en {
	display: block;
	font-size: 15px;
	font-weight: var(--font-eb);
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 1.2rem;
	color: #99aab5;
}

.circle-inner .ko {
	display: block;
	font-size: 4.4rem;
	font-weight: var(--font-eb);
	line-height: 1;
}

/* 배경 숫자 데코 */
.circle-num-deco {
	position: absolute;
	font-size: 10rem;
	font-weight: var(--font-eb);
	color: #f7f9fc;
	top: -1rem;
	right: 2rem;
	z-index: -1;
	user-select: none;
}

/* 텍스트 박스 */
.txt-box p {
	font-size: 1.9rem;
	color: #555;
	line-height: 1.8;
	word-break: keep-all;
}

.txt-box strong {
	font-weight: var(--font-bd);
	border-bottom: 2px solid #e1e8f0;
}

.txt-box .emphasize {
	color: var(--brand-color-main);
	font-size: 2.4rem;
	font-weight: var(--font-eb);
	display: block;
}

.mv-list {
	list-style: none;
	padding: 0;
	text-align: left;
	display: inline-block;
}

.mv-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 15px;
	font-size: 18px;
	color: #555;
}

.mv-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 13px;
	width: 12px;
	height: 2px;
	background: #5c6b89;
	border-radius: 2px;
}

/* 하단 핵심가치 (Ultra-Premium) */
.mv-bottom-values {
	padding-top: 10rem;
	margin-top: 6rem;
	background: #F4F4F4;
	border-radius: 5rem;
	padding: 8rem 4rem;
	text-align: center;
}

.value-head {
	margin-bottom: 5rem;
}

.value-title {
	font-size: 1.8rem;
	font-weight: var(--font-eb);
	color: var(--brand-color-main);
	text-transform: uppercase;
	letter-spacing: 6px;
	margin-bottom: 15px;
}

.value-subtitle {
	font-size: 2.3rem;
	color: #333;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	max-width: 130rem;
	margin: 0 auto;
}

.v-card {
	position: relative;
	background: var(--color-white);
	padding: 5rem 3rem;
	border-radius: 3rem;
	overflow: hidden;
	text-align: left;
	border: 1px solid #f0f3f7;
	transition: all 0.4s ease;
}

.v-card-inner {
	position: relative;
	z-index: 2;
}

.v-num {
	font-size: 1.5rem;
	font-weight: var(--font-eb);
	color: var(--brand-color-main);
	margin-bottom: 2rem;
	display: inline-block;
	padding: 4px 10px;
	background: #f0f7ff;
	border-radius: 6px;
}

.v-name {
	font-size: 2.5rem;
	font-weight: var(--font-eb);
	margin-bottom: 1.5rem;
}

.v-desc {
	font-size: 1.7rem;
	color: #777;
	line-height: 1.6;
}

.v-hover-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--brand-color-main) 0%, #157881 100%);
	opacity: 0;
	transition: all 0.4s ease;
	z-index: 1;
}

.v-card:hover {
	transform: translateY(-1.5rem);
	border-color: transparent;
}

.v-card:hover .v-hover-bg {
	opacity: 1;
}

.v-card:hover .v-name,
.v-card:hover .v-desc {
	color: var(--color-white);
}

.v-card:hover .v-num {
	background: rgba(255, 255, 255, 0.2);
	color: var(--color-white);
}

/* ==================
	반응형CSS
=====================*/
@media (max-width: 1200px) {
	.mv-top-info {
		margin-bottom: 6rem;
	}

	.mv-circle-wrap {
		gap: 3rem;
	}

	.circle-box-outer {
		width: 26rem;
		height: 26rem;
	}

	.circle-inner .ko {
		font-size: 3.8rem;
	}

	.mv-bottom-values {
		margin-top: 0;
	}

	.value-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.mv-top-info {
		margin-bottom: 5rem;
	}

	.mv-bg-deco {
		display: none;
	}

	.mv-top-desc {
		font-size: 2.3rem;
	}

	.mv-top-desc strong {
		font-size: 3.2rem;
	}

	.mv-circle-wrap {
		flex-direction: column;
		align-items: center;
	}

	.mv-circle-item {
		margin-bottom: 5rem;
		width: 100%;
		max-width: 40rem;
	}

	.mv-circle-item:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: var(--font-sb)px) {
	.value-grid {
		grid-template-columns: 1fr;
	}

	.mv-top-desc {
		font-size: 2rem;
	}

	.mv-top-desc strong {
		font-size: 2.8rem;
	}

	.circle-box-outer {
		width: 24rem;
		height: 24rem;
	}
}

/* ==================================================
	센터소개 - 찾아오시는 길
================================================== */
.loc_con {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--rem-30);
}

/* 상단이미지 */
.loc_left {
	flex-basis: 45%;
}

.loc_left img {
	width: 100%;
	border-radius: 2rem;
}

/* 주소정보 */
.loc_right>h4 {
	font-family: var(--font-Elice);
	font-size: 2.8rem;
	font-weight: var(--font-sb);
	margin-bottom: 2.5rem;
}

.loc_right>ul>li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 1.5rem;
}

.loc_right>ul>li:first-child {
	margin-top: 0;
}

.loc_right>ul>li .icon i {
	color: var(--color-white);
	font-size: 2.3rem;
}

.loc_right>ul>li .icon {
	width: 4rem;
	height: 4rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background: var(--brand-color-main);
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.loc_right>ul>li b,
.loc_right>ul>li p {
	color: var(--color-black);
}

.loc_right>ul>li b {
	display: inline-block;
	width: 6rem;
	flex-shrink: 0;
	font-size: 1.9rem;
	font-weight: var(--font-bd);
	margin: 0 2.5rem 0 1.5rem;
}

/* 지도 */
.loc_detail {
	width: 100%;
	margin-top: var(--rem-40);
}

/*====== 카카오지도 요소들 지우기======*/
.root_daum_roughmap .cont {
	display: none;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 800px) {
	.loc_con {
		display: block;
	}

	.loc_right {
		margin-top: 2.5rem;
	}
}

@media screen and (max-width: 640px) {
	.loc_right>ul>li b {
		width: 7rem;
	}
}

/* ==================================================
	교육과정 - IPE 프로그램
================================================== */
.ipe-section {
	position: relative;
	z-index: 1;
	margin-bottom: 6rem;
}

.ipe-section:last-child {
	margin-bottom: 0;
}

.ipe-intro-content {
	border-radius: 5rem;
	padding: 6rem 0;
	background: #f4f4f4;
}

/* 공통 섹션 타이틀 */
.section-title {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 3rem;
}

.section-title .num {
	font-size: 1.5rem;
	font-weight: var(--font-eb);
	color: var(--brand-color-main);
	background: rgba(0, 127, 168, 0.1);
	padding: 3px 8px;
	border-radius: 4px;
}

.section-title h3 {
	font-size: 2.6rem;
	font-weight: var(--font-bd);
}

.section-title .line {
	flex: 1;
	height: 1px;
	background: #eee;
}

/* 최상단 */
.ipe-intro {
	text-align: center;
	margin-bottom: 4rem;
}

.ipe-label {
	font-size: 1.3rem;
	font-weight: var(--font-bd);
	color: var(--brand-color-main);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.ipe-main-title {
	font-size: 3.8rem;
	font-weight: var(--font-bd);
	margin-bottom: 2.5rem;
}

.ipe-definition-card {
	max-width: 86rem;
	margin: 0 auto;
	background: var(--color-white);
	padding: 3rem 4rem;
	border-radius: 2.4rem;
	display: flex;
	align-items: center;
	gap: 3rem;
	box-shadow: 0 1rem 3rem rgba(0, 50, 100, 0.03);
	border: 1px solid rgba(0, 127, 168, 0.08);
}

.def-icon {
	width: 6rem;
	height: 6rem;
	background: var(--brand-color-main);
	color: var(--color-white);
	border-radius: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.def-icon svg {
	width: 3rem;
	height: 3rem;
}

.def-text {
	text-align: left;
}

.def-text .tag {
	font-weight: var(--font-eb);
	color: var(--brand-color-main);
	font-size: 1.6rem;
	margin-bottom: 6px;
	display: block;
}

.def-text .quote {
	font-size: 1.9rem;
	line-height: 1.6;
	color: #333;
	margin-bottom: 8px;
	word-break: keep-all;
}

.def-text .quote strong {
	color: var(--brand-color-main);
}

.def-text .source {
	color: #999;
	font-size: 1.3rem;
}

/* 1. 교육목적 */
.purpose-desc {
	margin-bottom: 2.5rem;
	font-size: 1.6rem;
	color: #666;
	word-break: keep-all;
}

.purpose-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.p-card {
	background: var(--color-white);
	padding: 3rem 2rem;
	border-radius: 2rem;
	border: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

.p-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.05);
	border-color: var(--brand-color-main);
}

.p-icon {
	width: 4rem;
	height: 4rem;
	color: var(--brand-color-main);
	margin-bottom: 1.5rem;
}

.p-card h4 {
	font-size: 2rem;
	font-weight: var(--font-bd);
	margin-bottom: 1rem;
}

.p-card p {
	font-size: 1.6rem;
	line-height: 1.6;
	color: #666;
	word-break: keep-all;
}

/* 2. 기대 역량*/
.comp-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.comp-item {
	flex: 1;
	min-width: 15rem;
	display: flex;
	justify-content: center;
}

.comp-circle {
	width: 20rem;
	height: 20rem;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem;
	border: 1px solid #f0f4f8;
	transition: none;
	/* hover 효과 제거 */
	position: relative;
}

/* 개별 서클 색상 (튀지 않는 프리미엄 필터링 색상) */
.c1 {
	background: #f0f7ff;
	color: #2c5282;
	border-color: #e2e8f0;
}

.c2 {
	background: #fdf2f8;
	color: #702459;
	border-color: #fce7f3;
}

.c3 {
	background: #f0fff4;
	color: #22543d;
	border-color: #c6f6d5;
}

.c4 {
	background: #f7fafc;
	color: #2d3748;
	border-color: #edf2f7;
}

.c5 {
	background: #fffaf0;
	color: #744210;
	border-color: #feebc8;
}

.c-icon {
	width: 3.2rem;
	height: 3.2rem;
	margin-bottom: 1.2rem;
	opacity: 0.8;
}

.comp-name {
	font-size: 2rem;
	font-weight: var(--font-bd);
}

/* 3. 학습목표 */
.obj-container {
	background: #fafafa;
	padding: 3rem 4rem;
	border-radius: 2.4rem;
}

.obj-list li {
	display: flex;
	align-items: center;
	gap: 1.8rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid #eee;
}

.obj-num {
	font-size: 2rem;
	font-weight: var(--font-bd);
	color: var(--brand-color-main);
	opacity: 0.5;
	flex-shrink: 0;
}

.obj-list li p {
	font-size: 1.7rem;
	line-height: 1.6;
	flex: 1;
	min-width: 0;
}

/* 4. IPE 활동 현장 (갤러리) */
.ipe-section.ipe-image .ipeimg-container {
	max-width: 100%;
}

.ipeimg-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ipeimg-list li {
	border-radius: 1.2rem;
	overflow: hidden;
	background: #fafafa;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ipeimg-list li img {
	width: 100%;
	height: auto;
	display: block;
	border: none;
	border-radius: 0;
	object-fit: cover;
	aspect-ratio: 4/3;
}

/* ==================
	반응형CSS
=====================*/
@media (max-width: 1200px) {
	.ipe-section {
		margin-bottom: 5rem;
	}

	.ipe-definition-card {
		padding: 2.5rem 3rem;
		gap: 2.5rem;
	}

	.comp-wrap {
		gap: 1.2rem;
	}

	.comp-item {
		min-width: calc(33.33% - 1rem);
	}

	.ipeimg-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 1024px) {
	.ipe-intro-content {
		padding: 4rem 2rem;
		border-radius: 3rem;
	}

	.ipe-main-title {
		font-size: 3.2rem;
		margin-bottom: 2rem;
	}

	.ipe-definition-card {
		flex-direction: column;
		padding: 2.5rem 2.5rem;
		gap: 2rem;
		max-width: 100%;
	}

	.def-text .quote {
		font-size: 1.7rem;
		text-align: center;
	}

	.def-text {
		text-align: center;
	}

	.section-title {
		margin-bottom: 2.5rem;
		gap: 12px;
	}

	.section-title h3 {
		font-size: 2.4rem;
	}

	.purpose-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.comp-item {
		min-width: calc(50% - 0.75rem);
	}

	.comp-circle {
		width: 16rem;
		height: 16rem;
	}

	.comp-name {
		font-size: 1.8rem;
	}

	.obj-container {
		padding: 2.5rem 3rem;
	}

	.obj-list li {
		padding: 1.2rem 0;
		gap: 1.5rem;
	}

	.obj-num {
		font-size: 1.8rem;
	}

	.obj-list li p {
		font-size: 1.6rem;
	}

	.ipeimg-list {
		gap: 1.8rem;
	}
}

@media (max-width: 768px) {
	.ipe-section {
		margin-bottom: 4rem;
	}

	.ipe-intro-content {
		padding: 3rem 1.5rem;
		border-radius: 2.4rem;
	}

	.ipe-label {
		font-size: 1.2rem;
		letter-spacing: 0.15em;
	}

	.ipe-main-title {
		font-size: 2.6rem;
		margin-bottom: 1.5rem;
	}

	.def-icon {
		width: 5rem;
		height: 5rem;
		border-radius: 1.4rem;
	}

	.def-icon svg {
		width: 2.5rem;
		height: 2.5rem;
	}

	.def-text .tag {
		font-size: 1.4rem;
	}

	.def-text .quote {
		font-size: 1.5rem;
	}

	.def-text .source {
		font-size: 1.2rem;
	}

	.section-title {
		flex-wrap: wrap;
		margin-bottom: 2rem;
		gap: 10px;
	}

	.section-title .num {
		font-size: 1.3rem;
		padding: 2px 6px;
	}

	.section-title h3 {
		font-size: 2.2rem;
	}

	.purpose-desc {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}

	.p-card {
		padding: 2rem 1.5rem;
		border-radius: 1.6rem;
	}

	.p-icon {
		width: 3.5rem;
		height: 3.5rem;
		margin-bottom: 1.2rem;
	}

	.p-card h4 {
		font-size: 1.8rem;
		margin-bottom: 0.8rem;
	}

	.p-card p {
		font-size: 1.5rem;
	}

	.comp-item {
		min-width: calc(50% - 0.6rem);
	}

	.comp-wrap {
		gap: 1rem;
	}

	.comp-circle {
		width: 14rem;
		height: 14rem;
		padding: 0.8rem;
	}

	.c-icon {
		width: 2.8rem;
		height: 2.8rem;
		margin-bottom: 1rem;
	}

	.comp-name {
		font-size: 1.5rem;
	}

	.obj-container {
		padding: 2rem 1.5rem;
		border-radius: 1.8rem;
	}

	.obj-list li {
		padding: 1rem 0;
		gap: 1.2rem;
		flex-wrap: wrap;
	}

	.obj-num {
		font-size: 1.6rem;
	}

	.obj-list li p {
		font-size: 1.5rem;
	}

	.ipeimg-list {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.ipeimg-list li img {
		aspect-ratio: 16/10;
	}
}

@media (max-width: 640px) {
	.ipe-intro-content {
		padding: 2.5rem 1.2rem;
		border-radius: 2rem;
	}

	.ipe-main-title {
		font-size: 2.2rem;
	}

	.ipe-definition-card {
		padding: 2rem 1.5rem;
		gap: 1.5rem;
		border-radius: 1.8rem;
	}

	.def-text .quote {
		font-size: 1.4rem;
	}

	.section-title h3 {
		font-size: 1.9rem;
	}

	.comp-item {
		min-width: 100%;
	}

	.comp-circle {
		width: 12rem;
		height: 12rem;
		margin: 0 auto;
	}

	.comp-name {
		font-size: 1.4rem;
	}

	.obj-container {
		padding: 1.5rem 1.2rem;
	}

	.obj-list li {
		gap: 1rem;
		padding: 0.9rem 0;
	}

	.obj-num {
		font-size: 1.5rem;
	}

	.obj-list li p {
		font-size: 1.4rem;
	}

	.ipeimg-list {
		gap: 1.2rem;
	}

	.ipe-section.ipe-image .section-title {
		margin-bottom: 1.5rem;
	}
}

/* 학습목표 500px 이하: 여백·숫자 정렬 보정 */
@media (max-width: 500px) {
	.obj-container {
		padding: 1.2rem 1rem;
		border-radius: 1.6rem;
	}

	.obj-list li {
		align-items: flex-start;
		gap: 0.9rem;
		padding: 0.85rem 0;
	}

	.obj-num {
		font-size: 1.4rem;
		min-width: 2.4rem;
		line-height: 1.5;
	}

	.obj-list li p {
		font-size: 1.35rem;
		line-height: 1.55;
	}
}

/* ==================================================
	교육과정 - 시뮬레이션 교육
================================================== */
.sim-wrap.cont_inner {
	height: auto;
	min-height: 0;
}

.sim-intro {
	font-size: 1.8rem;
	line-height: 1.8;
	color: var(--color-gray5);
	margin-bottom: 4rem;
	padding: 2rem;
	background: var(--color-white2, #f9f9f9);
	border-radius: 1rem;
	border-left: 4px solid var(--brand-color-main);
}

.sim-feature-section {
	display: flex;
	gap: 4rem;
	align-items: stretch;
}

.sim-feature-list {
	flex: 1;
	min-width: 0;
	list-style: none;
	padding: 0;
	margin: 2rem 0 3rem;
}

.sim-feature-img {
	flex-shrink: 0;
	width: 55%;
	max-width: 520px;
	align-self: stretch;
	border-radius: 1rem;
	overflow: hidden;
	background: var(--color-gray1);
}

.sim-feature-img img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	vertical-align: top;
}

.sim-feature-list li {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 2rem 0;
	border-bottom: 1px solid var(--color-gray2);
}

.sim-feature-list li:last-child {
	border-bottom: 0;
}

.sim-feature-num {
	flex: 0 0 4rem;
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: var(--font-bd);
	color: var(--color-white);
	background: var(--brand-color-main);
	border-radius: 50%;
}

.sim-feature-list strong {
	display: block;
	width: 100%;
	font-size: 1.8rem;
	color: var(--color-black);
	margin-bottom: 0.3rem;
}

.sim-feature-list p {
	font-size: 1.6rem;
	line-height: 1.7;
	color: var(--color-gray5);
	margin: 0;
	flex: 1;
	min-width: 0;
}

.sim-cta {
	font-size: 1.6rem;
	color: var(--color-gray5);
	padding: 2rem;
	background: var(--color-white2, #f9f9f9);
	border-radius: 0.8rem;
}

.sim-cta a {
	color: var(--brand-color-main);
	font-weight: var(--font-sb);
	text-decoration: underline;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 640px) {
	.sim-feature-section {
		flex-direction: column;
		gap: 2.5rem;
	}

	.sim-feature-img {
		width: 100%;
		max-width: none;
		min-height: 240px;
	}

	.sim-feature-img img {
		min-height: 240px;
		object-fit: cover;
	}

	.sim-intro {
		font-size: 1.6rem;
		margin-bottom: 3rem;
		padding: 1.5rem;
	}

	.sim-feature-num {
		width: 3.2rem;
		height: 3.2rem;
		font-size: 1.4rem;
	}

	.sim-feature-list strong {
		font-size: 1.6rem;
	}

	.sim-feature-list p {
		font-size: 1.5rem;
	}
}

/* ==================================================
	교육과정 - BLS 교육
================================================== */
.bls-wrap.cont_inner {
	height: auto;
	min-height: 0;
}

.bls-intro {
	font-size: 1.8rem;
	line-height: 1.8;
	color: var(--color-gray5);
	margin-bottom: 4rem;
	padding: 2rem;
	background: var(--color-white2, #f9f9f9);
	border-radius: 1rem;
	border-left: 4px solid var(--brand-color-main);
}

.bls-content-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 3rem;
}

.bls-content-list li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1rem;
	font-size: 1.7rem;
	line-height: 1.6;
	color: var(--color-gray5);
}

.bls-content-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 0.6rem;
	height: 0.6rem;
	background: var(--brand-color-main);
	border-radius: 50%;
}

.bls-info {
	margin: 1.5rem 0 3rem;
	padding: 2rem;
	background: var(--color-white2, #f9f9f9);
	border-radius: 0.8rem;
}

.bls-info p {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--color-gray5);
	margin-bottom: 0.8rem;
}

.bls-info p:last-child {
	margin-bottom: 0;
}

.bls-info strong {
	color: var(--color-black);
	margin-right: 0.5rem;
}

/* ==================================================
	교육과정 - 교육신청 리스트
================================================== */
.apply-list-wrap {
	margin-top: 3rem;
}

.apply-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8rem 3rem;
	list-style: none;
	padding: 0;
}

.apply-list li {
	flex: 1;
	min-width: calc(33.333% - 2rem);
	max-width: calc(33.333% - 2rem);
}

.apply-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-white);
	border: 1px solid #cecece;
	border-radius: 0;
}

.card-top {
	position: relative;
	background: var(--brand-color-main);
	padding: 6rem 3rem 4rem;
	text-align: center;
	color: var(--color-white);
}

.status-badge {
	position: absolute;
	top: -3.8rem;
	left: 50%;
	transform: translateX(-50%);
	width: 7.6rem;
	height: 7.6rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: var(--font-sb);
	color: var(--color-white);
	z-index: 2;
}

.status-badge.recruiting {
	background: var(--brand-color-dmain);
}

.status-badge.closed {
	background: #a7a7a7;
}

.program-tag {
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 3rem;
	padding: 0.5rem 2rem;
	margin-bottom: 2rem;
}

.program-tag span {
	font-size: 1.5rem;
	font-weight: var(--font-md);
}

.program-title {
	font-size: 2.3rem;
	font-weight: var(--font-md);
	line-height: 1.3;
	word-break: keep-all;
	height: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-bottom {
	padding: 4rem 3rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.info-details {
	list-style: none;
	padding: 0;
	margin: 0 0 3rem;
}

.info-details li {
	display: flex;
	margin-bottom: 2rem;
	font-size: 1.6rem;
}

.info-details li:last-child {
	margin-bottom: 0;
}

.info-details li strong {
	width: 7.5rem;
	flex-shrink: 0;
	color: var(--color-black);
	font-weight: var(--font-md);
}

.info-details li span {
	color: #333;
	white-space: nowrap;
}

.apply-btn {
	display: block;
	width: 100%;
	background: var(--brand-color-dmain);
	color: var(--color-white) !important;
	text-align: center;
	padding: 1.2rem 0;
	border-radius: 4rem;
	font-size: 1.6rem;
	font-weight: var(--font-md);
	text-decoration: none;
	transition: background 0.3s;
	margin-top: auto;
}

.apply-btn:hover {
	background: #c13a69;
}

.apply-btn:focus,
.apply-btn:active {
	border-radius: 4rem;
}

.apply-btn.disabled {
	background: #a7a7a7;
	cursor: default;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1200px) {
	.apply-list li {
		min-width: calc(50% - 1.5rem);
		max-width: calc(50% - 1.5rem);
	}
}

@media screen and (max-width: 768px) {
	.apply-list li {
		min-width: 100%;
		max-width: 100%;
	}

	.apply-list-wrap {
		margin-top: 4rem;
	}

	.status-badge {
		width: 6.4rem;
		height: 6.4rem;
		top: -3.2rem;
		font-size: 1.4rem;
	}

	.card-top {
		padding: 5rem 2rem 3rem;
	}

	.program-title {
		font-size: 2rem;
	}

	.card-bottom {
		padding: 3rem 2rem;
	}
}

/* ==================================================
	교육과정 - 교육신청 상세화면
================================================== */
.edu_view_wrap {
	margin-top: 2rem;
}

.edu_info_card {
	display: flex;
	border: 1px solid #e6e6e6;
	background: var(--color-white);
}

.edu_info_card .info_left {
	width: 38rem;
	background: var(--brand-color-main);
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6rem 4rem;
	position: relative;
	text-align: center;
}

.edu_info_card .status_badge {
	position: absolute;
	top: -3.8rem;
	left: 50%;
	transform: translateX(-50%);
	width: 7.6rem;
	height: 7.6rem;
	background: var(--brand-color-dmain);
	border: 3px solid var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: var(--font-sb);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.edu_info_card .category {
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 3rem;
	padding: 4px 25px;
	font-size: 1.6rem;
	margin-bottom: 2rem;
}

.edu_info_card .title {
	font-size: 2.3rem;
	font-weight: var(--font-md);
	line-height: 1.4;
	word-break: keep-all;
}

.edu_info_card .info_right {
	flex: 1;
	padding: 5rem 6rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.edu_info_card .info_list {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem 0;
}

.edu_info_card .info_list li {
	width: 100%;
	display: flex;
	align-items: baseline;
}

.edu_info_card .info_list .label {
	width: 12rem;
	font-weight: var(--font-md);
	color: var(--brand-color-main);
}

.edu_info_card .info_list .label i {
	margin-right: 0.4rem;
	vertical-align: middle;
}

.edu_info_card .info_list .val {
	flex: 1;
	color: #333;
}

.edu_info_card .info_right_img {
	flex-shrink: 0;
	width: 30rem;
}

.edu_info_card .info_right_img img {
	display: block;
	max-width: 100%;
	height: auto;
}

.edu_view_wrap .btn_area {
	margin-top: 5rem;
	display: flex;
	justify-content: center;
	gap: 15px;
}

.edu_view_wrap .btn_area a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4rem;
	font-size: 1.6rem;
	font-weight: var(--font-md);
	text-decoration: none;
	min-width: 20rem;
	padding: 1.2rem 0;
	transition: all 0.3s;
}

.edu_view_wrap .btn_apply {
	background: var(--brand-color-dmain);
	color: var(--color-white) !important;
}

.edu_view_wrap .btn_apply:hover {
	background: #c13a69;
}

.edu_view_wrap .btn_list {
	border: 1px solid rgba(42, 161, 169, 0.7);
}

.edu_view_wrap .btn_list:hover {
	border: 1px solid var(--brand-color-main) !important;
	background: var(--brand-color-main) !important;
	color: var(--color-white);
}

.edu_view_wrap .btn_list:hover {
	background: #f9f9f9;
}

.edu_view_wrap .section_title {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	padding-left: 0 !important;
	font-size: 2.3rem;
	font-weight: var(--font-sb);
	color: var(--color-black);
	margin-top: 5rem;
	margin-bottom: 2rem;
}

.edu_view_wrap .section_title::before {
	display: none !important;
}

.edu_view_wrap .section_title i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(42, 161, 169, 0.1);
	color: var(--brand-color-main);
	border-radius: 8px;
	font-size: 1.8rem;
}

.edu_view_wrap .section_cont {
	border-top: 1px solid #333;
	border-bottom: 1px solid #e6e6e6;
	padding: 4rem 0;
	font-size: 1.6rem;
	color: #333;
	line-height: 1.6;
}

.edu_view_wrap .section_cont:last-child {
	border-bottom: 0;
}

.edu_view_wrap .notice_box {
	background: #fdfdfd;
	border: 1px solid #d5d5d5;
	padding: 4rem 3rem;
}

.edu_view_wrap .notice_box ol {
	list-style: decimal;
	padding-left: 2rem;
}

.edu_view_wrap .notice_box ol li {
	font-size: 1.6rem;
	color: #333;
	margin-bottom: 1rem;
}

.edu_view_wrap .notice_box ol li:last-child {
	margin-bottom: 0;
}

/* 첨부파일 섹션 스타일 */
.edu_view_wrap .attachment_list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 5px;
}

.edu_view_wrap .attachment_item {
	display: flex;
	align-items: center;
	padding: 2rem 2.5rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 1.6rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
}

.edu_view_wrap .attachment_item:hover {
	background: var(--color-white);
	border-color: var(--brand-color-main);
	transform: translateY(-3px);
	box-shadow: 0 1.2rem 2.5rem rgba(42, 161, 169, 0.12);
}

.edu_view_wrap .attachment_item .file_icon {
	width: 5.2rem;
	height: 5.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-white);
	border-radius: 1.2rem;
	margin-right: 2.2rem;
	color: var(--brand-color-main);
	font-size: 2.6rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.edu_view_wrap .attachment_item:hover .file_icon {
	background: var(--brand-color-main);
	color: var(--color-white);
	transform: rotate(-10deg);
}

.edu_view_wrap .attachment_item .file_info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.edu_view_wrap .attachment_item .file_name {
	font-size: 1.8rem;
	font-weight: var(--font-bd);
	color: #1a202c;
	transition: color 0.3s ease;
	word-break: break-all;
}

.edu_view_wrap .attachment_item:hover .file_name {
	color: var(--brand-color-main);
}

.edu_view_wrap .attachment_item .file_meta {
	font-size: 1.4rem;
	color: #718096;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 5px;
}

.edu_view_wrap .attachment_item .file_meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: var(--color-white);
	border: 1px solid #edf2f7;
	border-radius: 8px;
	font-weight: var(--font-md);
	transition: all 0.3s ease;
}

.edu_view_wrap .attachment_item:hover .file_meta span {
	border-color: #cbd5e0;
	color: #4a5568;
}

.edu_view_wrap .attachment_item .file_meta span i {
	color: var(--brand-color-main);
	font-size: 1.5rem;
}

.edu_view_wrap .attachment_item .download_btn {
	width: 4.4rem;
	height: 4.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #edf2f7;
	color: #4a5568;
	font-size: 2rem;
	transition: all 0.3s ease;
}

.edu_view_wrap .attachment_item:hover .download_btn {
	background: var(--brand-color-main);
	color: var(--color-white);
	transform: scale(1.1);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1200px) {
	.edu_info_card {
		flex-direction: column;
	}

	.edu_info_card .info_left {
		width: 100%;
		padding: 8rem 4rem 4rem;
	}

	.edu_info_card .info_right {
		padding: 4rem 3rem;
	}
}

@media screen and (max-width: 768px) {
	.edu_info_card .info_right {
		flex-direction: column;
	}

	.edu_info_card .info_right_img {
		width: 100%;
		max-width: 100%;
		margin-top: 3rem;
	}

	/* 첨부파일 섹션 스타일 */
	.edu_view_wrap .attachment_item {
		padding: 1.5rem 2rem;
	}

	.edu_view_wrap .attachment_item .file_icon {
		width: 4.4rem;
		height: 4.4rem;
		font-size: 2.2rem;
		margin-right: 1.5rem;
	}

	.edu_view_wrap .attachment_item .file_name {
		font-size: 1.6rem;
	}

	.edu_view_wrap .attachment_item .download_btn {
		width: 3.8rem;
		height: 3.8rem;
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 640px) {
	.edu_info_card .title {
		font-size: 2rem;
	}

	.edu_view_wrap .btn_area {
		flex-direction: column;
		align-items: center;
	}

	.edu_view_wrap .btn_area {
		margin-top: 3rem;
	}

	.edu_view_wrap .btn_area a {
		width: 100%;
		max-width: 25rem;
		padding: 0.8rem 0;
	}

	.edu_info_card .info_list .label {
		width: 9rem;
		font-size: 1.5rem;
	}

	.edu_info_card .info_list .val {
		font-size: 1.5rem;
	}
}

/* ==================================================
	교육과정 - 교육신청 - 신청폼
================================================== */
.apply-form-wrap {
	position: relative;
	z-index: 1;
}

/* 1. 요약 카드 섹션 */
.program-info-card {
	background: var(--color-white);
	border: 1px solid #e1e7ed;
	border-radius: 2rem;
	padding: 4rem;
	margin-bottom: 60px;
	box-shadow: 0 1.5rem 4rem rgba(20, 88, 166, 0.05);
	display: flex;
	align-items: center;
	gap: 4rem;
	position: relative;
	overflow: hidden;
}

.program-info-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: var(--brand-color-main);
}

.program-info-card .card-icon {
	width: 8rem;
	height: 8rem;
	background: rgba(20, 88, 166, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.program-info-card .card-icon i {
	font-size: 3.2rem;
	color: var(--brand-color-main);
}

.program-info-card .card-content {
	flex: 1;
}

.program-info-card .card-label {
	font-size: 1.5rem;
	color: #666;
	margin-bottom: 5px;
	font-weight: var(--font-md);
}

.program-info-card .card-value {
	font-size: 2.6rem;
	font-weight: var(--font-bd);
	color: #111;
}

/* card-value 호수 - room_num 스타일 참조 */
.program-info-card .card-value-room {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: var(--font-sb);
	color: var(--brand-color-main);
	border: 1px solid var(--brand-color-main);
	border-radius: 5rem;
	padding: 0.3rem 1.5rem;
	margin-left: 0.8rem;
	white-space: nowrap;
}

.program-info-card .card-sub-info {
	margin-top: 1.5rem;
	display: flex;
	gap: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid #f1f3f5;
}

.program-info-card .sub-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.7rem;
	color: #444;
}

.program-info-card .sub-item i {
	color: var(--brand-color-main);
	font-size: 1.8rem;
}

.program-info-card .sub-item strong {
	font-weight: var(--font-sb);
	color: #222;
}

/* 2. 개인정보 동의 섹션 */
.privacy-section {
	margin-top: 7rem;
	margin-bottom: 5rem;
}

.privacy-wrap {
	background: #fbfcfe;
	border: 1px solid #e1e7ed;
	border-radius: 1.6rem;
	padding: 4rem;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.02);
}

.privacy-text-box {
	background: var(--color-white);
	border: 1px solid #eaeef2;
	padding: 2.5rem;
	height: 49rem;
	overflow-y: auto;
	color: #666;
	line-height: 1.8;
	border-radius: 1.2rem;
	margin-bottom: 3rem;
}

.privacy-text-box h4 {
	font-size: 2rem;
	padding-top: 1.3rem;
}

.privacy-text-box p {
	margin: 1rem 0;
}

.privacy-text-box .text-annot {
	color: #666;
}

.privacy-agreement-check {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	background: var(--color-white);
	padding: 2rem 3rem;
	border-radius: 5rem;
	border: 1px solid #e1e7ed;
	width: fit-content;
	margin: 0 auto;
	cursor: pointer;
}

.privacy-agreement-check input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 2.2rem;
	height: 2.2rem;
	border: 2px solid #ddd;
	border-radius: 6px;
	background-color: #f8f9fb;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
	flex-shrink: 0;
}

.privacy-agreement-check input[type="checkbox"]:checked {
	background-color: var(--brand-color-main);
	border-color: var(--brand-color-main);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px;
}

/* 3. 폼 테이블 및 입력 요소 */
.form-write-section {
	background: var(--color-white);
}

.premium-write-table {
	width: 100%;
	border-top: 2px solid #111;
	border-collapse: collapse;
}

.premium-write-table th {
	background: #f8faff;
	width: 20rem;
	text-align: left;
	vertical-align: middle;
	padding: 2.8rem 4rem;
	border-bottom: 1px solid #eceff3;
	font-weight: var(--font-sb);
	color: #333;
	font-size: 1.7rem;
}

.premium-write-table td {
	padding: 2.2rem 4rem;
	border-bottom: 1px solid #eceff3;
}

/* 성별 라디오 그룹 */
.radio-group-inline {
	display: flex;
	align-items: center;
	gap: 2.4rem;
	flex-wrap: wrap;
}

.radio-group-inline label {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	cursor: pointer;
	font-size: 1.6rem;
	color: #333;
}

.radio-group-inline input[type="radio"] {
	width: 2rem;
	height: 2rem;
	accent-color: var(--brand-color-main);
	cursor: pointer;
}

/* 학년 셀렉트 - 폼 내 최대폭 제한 */
.premium-write-table select[name="grade"] {
	max-width: 20rem;
}

/* input + 안내 문구 나란히 정렬 */
.premium-write-table .input-notice {
	font-size: 1.5rem;
	color: #ff4757;
	line-height: 1.5;
	margin-top: 0.8rem;
}

/* 첨부파일 업그레이드 디자인 */
.file-input-wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.custom-file-upload {
	display: flex;
	align-items: center;
	gap: 2rem;
	background: #f8f9fb;
	padding: 1.2rem 2.4rem;
	border-radius: 1.2rem;
	border: 1px dashed #ced4da;
	width: fit-content;
	transition: all 0.3s;
}

.custom-file-upload:hover {
	border-color: var(--brand-color-main);
	background: #f1f6ff;
}

.file-select-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--brand-color-main);
	color: var(--color-white);
	padding: 1.2rem 2.4rem;
	border-radius: 8px;
	font-size: 1.5rem;
	font-weight: var(--font-sb);
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 4px 12px rgba(20, 88, 166, 0.15);
}

.file-select-btn:hover {
	background: var(--brand-color-dmain);
	transform: translateY(-2px);
}

.file-name-display {
	font-size: 15px;
	color: #495057;
	font-weight: 500;
	max-width: 30rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.file-guide-text {
	font-size: 1.4rem;
	color: #fa5252;
	font-weight: var(--font-md);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 5px;
}

.form-btn-area {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 2.4rem;
}

.premium-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24rem;
	height: 6.8rem;
	border-radius: 5rem;
	font-size: 2rem;
	font-weight: var(--font-bd);
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-btn:hover {
	transform: translateY(-2px);
}

.premium-btn:active {
	transform: translateY(0);
}

a.btn-back-home {
	background: #f1f4f7;
	color: #555;
}

a.btn-back-home:hover {
	background: #e4e8ec;
	color: #333;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-submit-apply {
	background: var(--brand-color-main);
	color: var(--color-white);
}

.btn-submit-apply:hover {
	background: var(--brand-color-dmain);
	box-shadow: 0 6px 20px rgba(42, 161, 169, 0.35);
}

.required-dot {
	color: #ff4757;
	margin-left: 4px;
	font-weight: bold;
}

/* 괄호 안 보조 문구 - 본문과 구분 표기 (필수), (예상) 등 */
.text-annot {
	font-size: 0.85em;
	color: #888;
	font-weight: var(--font-md);
	vertical-align: baseline;
}

/* 교육신청 확인·취소 (training_check) */
.check-form-wrap {
	margin-top: 2rem;
}

.check-form-wrap .con_title {
	margin-bottom: 1rem;
}

.check-form-wrap .check-intro {
	margin-bottom: 2.5rem;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #666;
}

.check-form-wrap .result-msg {
	margin: 1.5rem 0;
	padding: 1.5rem 2rem;
	background: var(--color-white)8e1;
	border: 1px solid #ffc107;
	color: #333;
	border-radius: 10px;
	font-size: 1.5rem;
}

.check-form-wrap .result-msg.err {
	background: #ffebee;
	border-color: #f44336;
}

#searchResultArea {
	margin-top: 5rem;
}

.check-form-wrap .apply-list-table,
.check-form-wrap .rental-list-table {
	margin-top: 3rem;
}

.check-form-wrap .apply-list-table thead th,
.check-form-wrap .rental-list-table thead th {
	background: #f8faff;
	width: auto;
	vertical-align: middle;
	text-align: center;
}

.check-form-wrap .apply-list-table tbody td,
.check-form-wrap .rental-list-table tbody td {
	text-align: center;
}

.check-form-wrap .apply-list-table .status,
.check-form-wrap .rental-list-table .status {
	font-weight: 600;
}

.check-form-wrap .apply-list-table .status.접수,
.check-form-wrap .rental-list-table .status.신청 {
	color: var(--brand-color-main);
}

.check-form-wrap .rental-list-table .status.승인 {
	color: #2e7d32;
}

.check-form-wrap .rental-list-table .status.거부 {
	color: #c62828;
}

.check-form-wrap .apply-list-table .status.취소,
.check-form-wrap .rental-list-table .status.취소 {
	color: #999;
}

.check-form-wrap .btn-cancel-apply {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.8rem;
	background: #888;
	color: var(--color-white);
	border: none;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: 600;
	border-radius: 5rem;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.check-form-wrap .btn-cancel-apply:hover {
	background: #666;
	transform: translateY(-1px);
}

.check-form-wrap .no-data {
	text-align: center;
	padding: 4rem 2rem;
	color: #666;
	font-size: 1.6rem;
	line-height: 1.6;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 640px) {

	/* 폼용 테이블만 블록 배치 (신청 목록 테이블은 제외) */
	.premium-write-table:not(.apply-list-table) th,
	.premium-write-table:not(.apply-list-table) td {
		display: block;
		width: 100%;
	}

	.premium-write-table:not(.apply-list-table) th {
		padding: 1.6rem 1.5rem;
		font-size: 1.5rem;
	}

	.premium-write-table:not(.apply-list-table) td {
		padding: 1.2rem 1.5rem 1.6rem;
	}

	/* 연락처 입력 그룹 - 모바일에서 가로 여백에 맞춰 균등 배치 */
	.content_form .tel-input-group {
		gap: 6px;
		width: 100%;
	}

	.content_form .tel-input-group input[type="text"] {
		flex: 1;
		min-width: 0;
		width: 0;
		max-width: none;
		font-size: 1.5rem;
		padding: 1rem 0.3rem;
		text-align: center;
		box-sizing: border-box;
	}

	/* 폼 버튼 영역 - 모바일에서 세로 배치·풀폭 */
	.form-btn-area {
		margin-top: 2rem;
		padding: 0 1rem;
		flex-direction: column;
		gap: 1.2rem;
	}

	.form-btn-area .premium-btn {
		min-width: 0;
		width: 100%;
		max-width: 100%;
		height: 5.6rem;
		font-size: 1.7rem;
	}

	/* 교육신청 - 신청폼(training_application) 모바일 */
	.apply-form-wrap .program-info-card {
		flex-direction: column;
		padding: 2.4rem;
		gap: 2rem;
		margin-bottom: 3rem;
		text-align: center;
	}

	.apply-form-wrap .program-info-card .card-icon {
		width: 6rem;
		height: 6rem;
	}

	.apply-form-wrap .program-info-card .card-icon i {
		font-size: 2.6rem;
	}

	.apply-form-wrap .program-info-card .card-value {
		font-size: 2rem;
	}

	.apply-form-wrap .program-info-card .card-value-room {
		font-size: 1.7rem;
		padding: 0.25rem 1.2rem;
		margin-left: 0.5rem;
	}

	.apply-form-wrap .program-info-card .card-sub-info {
		flex-direction: column;
		gap: 1rem;
		padding-top: 1.2rem;
		margin-top: 1.2rem;
	}

	.apply-form-wrap .program-info-card .sub-item {
		justify-content: center;
		font-size: 1.5rem;
	}

	.apply-form-wrap .privacy-wrap {
		padding: 2rem;
	}

	.apply-form-wrap .privacy-text-box {
		height: auto;
		max-height: 28rem;
		padding: 1.8rem;
		font-size: 1.45rem;
	}

	.apply-form-wrap .privacy-text-box h4 {
		font-size: 1.8rem;
	}

	.apply-form-wrap .privacy-agreement-check {
		width: 100%;
		max-width: 100%;
		padding: 1.5rem 2rem;
		border-radius: 1.2rem;
		box-sizing: border-box;
	}

	.apply-form-wrap .privacy-agreement-check span {
		text-align: center;
		line-height: 1.5;
	}

	.apply-form-wrap .con_title,
	.rental-form-wrap .con_title {
		font-size: 2rem;
	}

	/* 시설대관 모바일 - 개인정보/동의 영역 교육신청과 동일 스타일 */
	.rental-form-wrap .privacy-wrap {
		padding: 2rem;
	}

	.rental-form-wrap .privacy-text-box {
		padding: 1.8rem;
		font-size: 1.45rem;
	}

	.rental-form-wrap .privacy-text-box h4 {
		font-size: 1.8rem;
	}

	.rental-form-wrap .privacy-agreement-check {
		width: 100%;
		max-width: 100%;
		padding: 1.5rem 2rem;
		border-radius: 1.2rem;
		box-sizing: border-box;
	}

	.rental-form-wrap .privacy-agreement-check span {
		text-align: center;
		line-height: 1.5;
	}

	/* 교육신청 확인 - 신청 목록 모바일 카드 레이아웃 */
	#searchResultArea {
		margin-top: 3rem;
	}

	.check-form-wrap .apply-list-table,
	.check-form-wrap .rental-list-table {
		display: block;
		margin-top: 2rem;
		font-size: 1.4rem;
		border: none;
		border-top: none;
	}

	.check-form-wrap .apply-list-table thead,
	.check-form-wrap .rental-list-table thead {
		display: none;
	}

	.check-form-wrap .apply-list-table tbody,
	.check-form-wrap .rental-list-table tbody {
		display: block;
	}

	.check-form-wrap .apply-list-table tbody tr,
	.check-form-wrap .rental-list-table tbody tr {
		display: block;
		background: var(--color-white);
		border: 1px solid #e1e7ed;
		border-radius: 12px;
		padding: 1.6rem;
		margin-bottom: 1.2rem;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	}

	.check-form-wrap .apply-list-table tbody tr:last-child,
	.check-form-wrap .rental-list-table tbody tr:last-child {
		margin-bottom: 0;
	}

	.check-form-wrap .apply-list-table tbody td,
	.check-form-wrap .rental-list-table tbody td {
		display: block;
		text-align: left;
		padding: 0.6rem 0;
		border: none;
		white-space: normal;
		border-bottom: 1px solid #f1f3f5;
	}

	.check-form-wrap .apply-list-table tbody td:last-child,
	.check-form-wrap .rental-list-table tbody td:last-child {
		border-bottom: none;
		padding-top: 1rem;
		padding-bottom: 0;
	}

	.check-form-wrap .apply-list-table tbody td::before,
	.check-form-wrap .rental-list-table tbody td::before {
		content: attr(data-label);
		display: inline-block;
		font-weight: 600;
		color: #555;
		min-width: 7rem;
		margin-right: 0.6rem;
		font-size: 1.35rem;
	}

	.check-form-wrap .apply-list-table tbody td:nth-child(1)::before {
		content: "과정명";
	}

	.check-form-wrap .apply-list-table tbody td:nth-child(2)::before {
		content: "교육기간";
	}

	.check-form-wrap .apply-list-table tbody td:nth-child(3)::before {
		content: "신청일시";
	}

	.check-form-wrap .apply-list-table tbody td:nth-child(4)::before {
		content: "상태";
	}

	.check-form-wrap .apply-list-table tbody td:nth-child(5)::before {
		content: "취소";
	}

	/* 대관 신청 목록 (6열) 모바일 라벨 */
	.check-form-wrap .rental-list-table tbody td:nth-child(1)::before {
		content: "시설명";
	}

	.check-form-wrap .rental-list-table tbody td:nth-child(2)::before {
		content: "대관일";
	}

	.check-form-wrap .rental-list-table tbody td:nth-child(3)::before {
		content: "대관시간";
	}

	.check-form-wrap .rental-list-table tbody td:nth-child(4)::before {
		content: "신청일시";
	}

	.check-form-wrap .rental-list-table tbody td:nth-child(5)::before {
		content: "상태";
	}

	.check-form-wrap .rental-list-table tbody td:nth-child(6)::before {
		content: "취소";
	}

	.check-form-wrap .apply-list-table .btn-cancel-apply,
	.check-form-wrap .rental-list-table .btn-cancel-apply {
		padding: 0.6rem 1.4rem;
		font-size: 1.3rem;
		margin-top: 0.4rem;
	}

	.check-form-wrap .con_title {
		font-size: 2rem;
	}

	.check-form-wrap .check-intro {
		font-size: 1.45rem;
		margin-bottom: 2rem;
	}

	.check-form-wrap .result-msg {
		padding: 1.2rem 1.5rem;
		font-size: 1.4rem;
	}

	.check-form-wrap .no-data {
		padding: 3rem 1.5rem;
		font-size: 1.45rem;
	}

	.file-input-wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.custom-file-upload {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
}

/* 교육신청 - 태블릿 (768px 이하) */
@media screen and (max-width: 768px) {
	.apply-form-wrap .program-info-card {
		padding: 3rem;
		gap: 2.5rem;
		margin-bottom: 4rem;
	}

	.apply-form-wrap .privacy-wrap {
		padding: 2.5rem;
	}

	.check-form-wrap .apply-list-table thead th,
	.check-form-wrap .apply-list-table tbody td,
	.check-form-wrap .rental-list-table thead th,
	.check-form-wrap .rental-list-table tbody td {
		padding: 1.2rem 1rem;
		font-size: 1.45rem;
	}
}

/* 교육신청 - 소형 기기 (480px 이하) */
@media screen and (max-width: 480px) {
	.content_form .tel-input-group input[type="text"] {
		padding: 0.9rem 0.2rem;
		font-size: 1.4rem;
	}

	.apply-form-wrap .program-info-card {
		padding: 1.8rem;
		gap: 1.5rem;
		margin-bottom: 2.5rem;
	}

	.apply-form-wrap .program-info-card .card-value {
		font-size: 1.8rem;
	}

	.apply-form-wrap .program-info-card .card-value-room {
		font-size: 1.3rem;
		padding: 0.15rem 0.8rem;
		margin-left: 0.3rem;
	}

	.apply-form-wrap .privacy-wrap {
		padding: 1.5rem;
	}

	.apply-form-wrap .privacy-text-box {
		max-height: 24rem;
		padding: 1.4rem;
		font-size: 1.4rem;
	}

	.content_form .rental-form-wrap .privacy-text-box,
	.rental-form-wrap .privacy-text-box {
		max-height: none;
	}

	.apply-form-wrap .privacy-agreement-check,
	.rental-form-wrap .privacy-agreement-check {
		padding: 1.2rem 1.5rem;
	}

	.rental-form-wrap .privacy-wrap {
		padding: 1.5rem;
	}

	.rental-form-wrap .privacy-text-box {
		padding: 1.4rem;
		font-size: 1.4rem;
	}

	.check-form-wrap .apply-list-table tbody tr,
	.check-form-wrap .rental-list-table tbody tr {
		padding: 1.2rem;
	}

	.check-form-wrap .apply-list-table tbody td,
	.check-form-wrap .rental-list-table tbody td {
		padding: 0.5rem 0;
		font-size: 1.3rem;
	}

	.check-form-wrap .apply-list-table tbody td::before,
	.check-form-wrap .rental-list-table tbody td::before {
		min-width: 6.2rem;
		font-size: 1.25rem;
	}
}

/* ==================================================
	교육시설 - 층별안내
================================================== */
.floor-layout {
	display: grid;
	grid-template-columns: 6fr 4fr;
	gap: 64px;
	align-items: start;
}

.floor-left {
	display: flex;
	flex-direction: column;
	min-width: 81.9rem;
}

.floor-plan {
	position: relative;
}

.floor-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: inline-block;
	min-width: 18rem;
	background: var(--brand-color-main);
	color: var(--color-white);
	font-size: 3rem;
	font-weight: var(--font-sb);
	line-height: 1;
	padding: 2rem 0.5rem;
	border-radius: 0 0 5rem 0;
	text-align: center;
}

.floor_img {
	position: relative;
}

.floor_img img {
	width: 100%;
}

.fl_mbimg {
	display: none;
}

/* 이미지 영역 */
.floor_btnall {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/* 1층 */
.floor1_btn01 {
	left: 34.3%;
	top: 40.1%;
}

.floor1_btn02 {
	left: 72.6%;
	top: 58%;
}

/* 2층 */
.floor2_btn01 {
	left: 24.6%;
	top: 15.0%;
}

.floor2_btn02 {
	left: 32%;
	top: 19%;
}

.floor2_btn03 {
	left: 39%;
	top: 17.5%;
}

.floor2_btn04 {
	left: 46%;
	top: 16%;
}

.floor2_btn05 {
	left: 43%;
	top: 25%;
}

.floor2_btn06 {
	left: 37.5%;
	top: 27.5%;
}

.floor2_btn07 {
	left: 30%;
	top: 38%;
}

.floor2_btn08 {
	left: 74%;
	top: 8%;
}

.floor2_btn09 {
	left: 77.7%;
	top: 42%;
}

.floor-instruction {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	position: absolute;
	bottom: 2.5rem;
	left: 2rem;
	z-index: 1;
	color: #333;
	font-size: 1.6rem;
	line-height: 1;
}

.floor-right {
	display: flex;
	flex-direction: column;
	gap: 4.8rem;
}

.floor-card {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

.floor-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.8rem;
	flex-wrap: wrap;
}

.floor-title {
	font-size: 2.8rem;
	font-weight: var(--font-sb);
	line-height: 1.3;
	color: var(--color-blue);
	flex: 1 1 auto;
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

.floor-title .floor-room {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: var(--font-sb);
	color: var(--brand-color-main);
	border: 1px solid var(--brand-color-main);
	border-radius: 5rem;
	padding: 0.3rem 1.5rem;
	margin-left: 0.8rem;
	white-space: nowrap;
}

a.floor-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-color-main);
	color: var(--color-white);
	font-size: 1.8rem;
	font-weight: var(--font-sb);
	line-height: 1;
	padding: 1.5rem 3rem;
	border-radius: 5rem;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.3s;
}

a.floor-btn:hover {
	background: var(--brand-color-main);
}

.floor-img {
	position: relative;
	width: 100%;
	height: 33rem;
	border-radius: 0 0 5rem 0;
	overflow: hidden;
	background: #eee;
	border: 1px solid #ededed;
}

.floor-img>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.floor-img-guide {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 1rem 1rem;
	font-size: 1.6rem;
	color: var(--color-white);
	letter-spacing: -0.02em;
	background: rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
}

.floor-img-guide-icon {
	width: 2.3rem;
	height: 2.3rem;
	flex-shrink: 0;
}

.floor-desc {
	font-size: 1.7rem;
	line-height: 1.5;
}

.floor-cards-section {
	display: grid;
	gap: 4rem;
	margin-top: 5rem;
}

.floor-cards-section.floor-cards-col2 {
	grid-template-columns: repeat(2, 1fr);
}

.floor-cards-section.floor-cards-col2 .floor-img {
	height: 42rem;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (min-width:1281px) {
	.floor_btnall .floor_btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 3rem;
		height: 3rem;
		background: var(--brand-color-main);
		position: relative;
		border-radius: 50%;
		z-index: 1;
		cursor: pointer;
	}

	.floor_btnall .floor_btn:hover {
		background: var(--brand-color-dmain);
	}

	.floor_btnall .floor_btn>.floor_plus {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
	}

	.floor_btnall .floor_btn>.floor_plus i {
		font-size: 1.5rem;
		line-height: 1;
		color: var(--color-white);
	}

	.floor_btnall .floor_btn.bt_on>.floor_plus i {
		display: none;
	}

	.floor_btnall .floor_btn .bg {
		position: absolute;
		left: 0%;
		top: 0%;
		width: 100%;
		height: 100%;
		transform: scale(0);
		transform-origin: center;
		background: var(--brand-color-main);
		transition: .6s;
		border-radius: 50%;
		z-index: -1;
		opacity: 1;
	}

	.floor_btnall .floor_btn:hover .bg,
	.floor_btnall .floor_btn.bt_on:hover {
		background: var(--brand-color-dmain);
	}

	.floor_btnall .floor_btn:before,
	.floor_btnall .floor_btn:after {
		content: '';
		display: block;
		background: var(--brand-color-main);
		border-radius: 50%;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.floor_btnall .floor_btn:hover:before,
	.floor_btnall .floor_btn:hover:after,
	.floor_btnall .floor_btn.bt_on:before,
	.floor_btnall .floor_btn.bt_on:after,
	.floor_btnall .floor_btn.bt_on:hover:before,
	.floor_btnall .floor_btn.bt_on:hover:after {
		background: var(--brand-color-dmain);
	}

	.floor_btnall .floor_btn:before {
		z-index: -1;
		animation: scaleWave 1.8s ease-in-out infinite;
	}

	.floor_btnall .floor_btn:after {
		z-index: -2;
		animation: scaleWave 1.8s 0.45s ease-in-out infinite;
	}

	.floor-instruction .floor_btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 3rem;
		height: 3rem;
		background: var(--brand-color-main);
		position: relative;
		border-radius: 50%;
		z-index: 1;
		cursor: default;
		flex-shrink: 0;
		color: var(--color-white);
	}

	/* 컨텐츠 영역 */
	.floor-instruction .floor_btn:before,
	.floor-instruction .floor_btn:after {
		content: '';
		display: block;
		background: var(--brand-color-main);
		border-radius: 50%;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.floor-instruction .floor_btn:before {
		z-index: -1;
		animation: scaleWave 1.8s ease-in-out infinite;
	}

	.floor-instruction .floor_btn:after {
		z-index: -2;
		animation: scaleWave 1.8s 0.45s ease-in-out infinite;
	}

	.floor-instruction .floor_btn svg,
	.floor-instruction .floor_btn .floor_plus i,
	.floor-instruction .floor_btn i {
		display: block;
		position: relative;
		z-index: 1;
		color: var(--color-white);
	}

	@keyframes scaleWave {

		0%,
		100% {
			transform: translate(-50%, -50%) scale(1);
			opacity: 0.85;
		}

		50% {
			transform: translate(-50%, -50%) scale(1.4);
			opacity: 0.35;
		}
	}
}

@media screen and (max-width: 1280px) {
	.floor-layout {
		grid-template-columns: 1fr;
		gap: 4rem;
		align-items: stretch;
	}

	.floor-left {
		min-width: 0;
	}

	.fl_pcimg {
		display: none;
	}

	.fl_mbimg {
		display: block;
	}

	.floor-badge {
		font-size: 2.6rem;
		padding: 1.6rem 0.5rem;
		min-width: 16rem;
	}

	.floor-instruction {
		font-size: 1.5rem;
		bottom: 2rem;
		left: 1.6rem;
	}

	.floor-instruction .floor_btn {
		width: 2.8rem;
		height: 2.8rem;
	}

	.floor-title {
		font-size: 2.6rem;
	}

	.floor-title .floor-room {
		font-size: 1.8rem;
		padding: 0.3rem 1.4rem;
	}

	a.floor-btn {
		font-size: 1.6rem;
		padding: 1.4rem 2.6rem;
	}

	.floor-img {
		height: 30rem;
	}

	.floor-desc {
		font-size: 1.6rem;
	}

	.floor-right {
		gap: 4rem;
	}

	.floor-card {
		gap: 1.4rem;
	}

	.floor_btn {
		position: absolute;
		width: 2.5rem;
		height: 2.5rem;
		cursor: pointer;
		background: url('../../lib/images/facilities/floorbtn_plus.svg');
		background-repeat: no-repeat;
		background-size: contain;
	}

	.floor_btn:hover {
		background: url('../../lib/images/facilities/floorbtn_plus_on.svg');
		background-repeat: no-repeat;
		background-size: contain;
	}

	.bt_on,
	.bt_on:hover {
		background: url('../../lib/images/facilities/floorbtn_minus_on.svg');
		background-repeat: no-repeat;
		background-size: contain;
	}

	.floor_btn>.floor_plus {
		display: none;
	}

	/* 1층 */
	.floor1_btn01 {
		left: 38.5%;
		top: 37.5%;
	}

	.floor1_btn02 {
		left: 65.5%;
		top: 61.2%;
	}

	/* 2층 */
	.floor2_btn01 {
		left: 34%;
		top: 12%;
	}

	.floor2_btn02 {
		left: 39%;
		top: 20.5%;
	}

	.floor2_btn03 {
		left: 43.5%;
		top: 21.5%;
	}

	.floor2_btn04 {
		left: 48%;
		top: 23%;
	}

	.floor2_btn05 {
		left: 45.5%;
		top: 36%;
	}

	.floor2_btn06 {
		left: 42.5%;
		top: 42%;
	}

	.floor2_btn07 {
		left: 38%;
		top: 57%;
	}

	.floor2_btn08 {
		left: 67.8%;
		top: 27.8%;
	}

	.floor2_btn09 {
		left: 69%;
		top: 67.3%;
	}

	.floor-badge {
		font-size: 2.4rem;
		padding: 1.4rem 0.5rem;
		min-width: 14rem;
	}

	.floor-instruction {
		bottom: 1.8rem;
		left: 1.6rem;
		right: 1.6rem;
		font-size: 1.5rem;
	}

	.floor-instruction .floor_btn {
		position: relative;
		width: 2.8rem;
		height: 2.8rem;
	}

	.floor-right {
		gap: 3.6rem;
	}

	.floor-card {
		gap: 1.4rem;
	}

	.floor-card-header {
		gap: 1.2rem;
	}

	.floor-title {
		font-size: 2.4rem;
	}

	.floor-title .floor-room {
		font-size: 1.6rem;
		padding: 0.3rem 1.2rem;
	}

	a.floor-btn {
		font-size: 1.5rem;
		padding: 1.3rem 2.4rem;
	}

	.floor-img {
		height: auto;
		border-radius: 0 0 4rem 0;
	}

	.floor-desc {
		font-size: 1.6rem;
		line-height: 1.55;
	}

	.floor-cards-section {
		gap: 3.2rem;
		margin-top: 4rem;
	}

	.floor-cards-section.floor-cards-col2 {
		grid-template-columns: 1fr;
		gap: 2.8rem;
		margin-top: 3.2rem;
	}

	.floor-cards-section.floor-cards-col2 .floor-img {
		height: auto;
	}
}

/* 768px 이하: 작은 태블릿 */
@media screen and (max-width: 768px) {
	.floor-layout {
		gap: 3.2rem;
	}

	.floor-badge {
		font-size: 2.2rem;
		padding: 1.2rem 0.5rem;
		min-width: 12rem;
		border-radius: 0 0 4rem 0;
	}

	.floor-instruction {
		bottom: 1.5rem;
		left: 1.2rem;
		right: 1.2rem;
		font-size: 1.4rem;
		gap: 0.6rem;
	}

	.floor-instruction .floor_btn {
		width: 2.6rem;
		height: 2.6rem;
	}

	.floor-right {
		gap: 3rem;
	}

	.floor-card {
		gap: 1.2rem;
	}

	.floor-title {
		font-size: 2.2rem;
	}

	.floor-title .floor-room {
		font-size: 1.5rem;
		padding: 0.3rem 1.1rem;
		margin-left: 0.6rem;
	}

	a.floor-btn {
		font-size: 1.45rem;
		padding: 1.2rem 2.2rem;
		border-radius: 4rem;
	}

	.floor_btnall {
		display: none;
	}

	.floor-instruction {
		display: none;
	}

	.floor-img {
		border-radius: 0 0 3rem 0;
	}

	.floor-desc {
		font-size: 1.55rem;
	}
}

/* var(--font-sb)px 이하: 모바일 */
@media screen and (max-width: var(--font-sb)px) {
	.floor-layout {
		gap: 2.8rem;
	}

	.floor-badge {
		font-size: 1.8rem;
		padding: 1rem 0.4rem;
		min-width: 10rem;
		border-radius: 0 0 3rem 0;
	}

	.floor-right {
		gap: 2.6rem;
	}

	.floor-card {
		gap: 1rem;
	}

	.floor-title {
		font-size: 2rem;
		line-height: 1.35;
	}

	.floor-title .floor-room {
		font-size: 1.4rem;
		padding: 0.2rem 1rem;
		margin-left: 0.5rem;
	}

	a.floor-btn {
		font-size: 1.35rem;
		padding: 1.1rem 1.8rem;
		border-radius: 3rem;
	}

	.floor-img {
		border-radius: 0 0 2.5rem 0;
	}

	.floor-desc {
		font-size: 1.45rem;
		line-height: 1.5;
	}
}

/* 480px 이하: 작은 모바일 */
@media screen and (max-width: 480px) {
	.floor-layout {
		gap: 2.4rem;
	}

	.floor-badge {
		font-size: 1.6rem;
		padding: 0.8rem 0.4rem;
		min-width: 8rem;
		border-radius: 0 0 2.5rem 0;
	}

	.floor-title {
		font-size: 1.8rem;
	}

	.floor-title .floor-room {
		font-size: 1.2rem;
		padding: 0.2rem 0.8rem;
		margin-left: 0.4rem;
	}

	a.floor-btn {
		font-size: 1.25rem;
		padding: 1rem 1.6rem;
	}

	.floor-img {
		border-radius: 0 0 2rem 0;
	}

	.floor-img-guide {
		font-size: 1.5rem;
	}

	.floor-desc {
		font-size: 1.4rem;
	}
}

/* ==================================================
	교육시설 모달창
================================================== */
.popup_wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
}

.popup_wrap.on {
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup_inner {
	background: var(--color-white);
	width: 90%;
	max-width: 850px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	animation: popupAni 0.4s ease-out;
}

@keyframes popupAni {
	from {
		opacity: 1;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.popup_header {
	padding: 2.5rem 3.5rem;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.btn_close {
	background: none;
	border: none;
	font-size: 3.5rem;
	cursor: pointer;
	color: #999;
	transition: color 0.3s;
}

.btn_close:hover {
	color: #333;
}

/* 시설 안내 갤러리형 모델 (피그마 대응) */
.gallery_modal .popup_inner {
	max-width: 150rem;
	width: 95%;
	height: auto;
	min-height: 80rem;
	border-radius: 4rem;
	padding: 0;
	box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.15);
	background: var(--color-white);
}

.gallery_modal .popup_header {
	padding: 4rem 6rem 3rem;
	border-bottom: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gallery_modal .popup_header h3 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 0.8rem;
	font-size: 3.5rem;
	font-weight: var(--font-bd);
	color: var(--color-black);
}

.popup_inner .floor-room {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: var(--font-sb);
	color: var(--brand-color-main);
	border: 1px solid var(--brand-color-main);
	border-radius: 5rem;
	padding: 0.3rem 1.5rem;
	margin-left: 0;
	white-space: nowrap;
	flex-shrink: 0;
}

.gallery_modal .btn_close {
	font-size: 4.5rem;
	color: var(--color-black);
	background: none;
	border: none;
	cursor: pointer;
}

.gallery_modal .popup_content {
	padding: 0 6rem 6rem;
}

.modal_gallery_layout {
	display: flex;
	gap: 3.5rem;
	margin-bottom: 3rem;
}

/* 섹션 메인 이미지 */
.gallery_main_group {
	flex: 1;
	min-width: 0;
	position: relative;
	border-radius: 2.5rem;
	overflow: hidden;
}

.gallery_main_group .slick-list {
	border-radius: 2.5rem;
	overflow: hidden;
}

.gallery_main_group .slick-track {
	border-radius: 2.5rem;
}

.gallery_main_group .slick-slide {
	border-radius: 2.5rem;
	overflow: hidden;
}

.gallery_main_group .slick-slide>div {
	border-radius: 2.5rem;
	overflow: hidden;
	height: 100%;
}

.main_slider img,
.gallery_main_group .slick-slide img {
	width: 100%;
	height: 58rem;
	object-fit: cover;
	border-radius: 2.5rem;
	display: block;
}

/* 메인 네비게이션 활성 표시 */
.gallery_main_group .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 6.5rem;
	height: 6.5rem;
	background: rgba(255, 255, 255, 0.6) !important;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.gallery_main_group .slick-arrow:hover {
	background: rgba(255, 255, 255, 0.9) !important;
	scale: 1.05;
}

.gallery_main_group .slick-arrow:before {
	font-family: 'xeicon' !important;
	font-size: 3rem;
	color: #333;
}

.gallery_main_group .slick-prev {
	left: 3rem;
}

.gallery_main_group .slick-next {
	right: 3rem;
}

.gallery_main_group .slick-prev:before {
	content: '\e93d';
}

.gallery_main_group .slick-next:before {
	content: '\e940';
}

/* 우측 퀵네비게이션 리스트 */
.gallery_thumb_group {
	width: 32rem;
	flex-shrink: 0;
}

.thumb_slider .thumb_item {
	padding-bottom: 2rem;
	outline: none;
	cursor: pointer;
}

.thumb_slider .thumb_item .img_box {
	border-radius: 2.2rem;
	overflow: hidden;
	height: 18rem;
	border: 0.3rem solid transparent;
	transition: all 0.3s;
	background: #f0f0f0;
}

.thumb_slider .thumb_item.slick-current .img_box {
	border-color: var(--brand-color-main);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thumb_slider .thumb_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 하단 정렬 레이아웃 */
.modal_footer_info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4rem;
	border-top: 1px solid #eee;
	padding-top: 3.5rem;
}

.modal_text_wrap {
	flex: 1;
}

.modal_text_wrap p {
	font-size: 2rem;
	line-height: 1.5;
	word-break: keep-all;
}

.modal_btn_wrap .btn_rental {
	display: inline-block;
	background: var(--brand-color-dmain);
	color: var(--color-white) !important;
	padding: 1.8rem 5rem;
	border-radius: 1.2rem;
	font-size: 2rem;
	font-weight: 700;
	transition: all 0.3s;
}

.modal_btn_wrap .btn_rental:hover {
	background: #c03a5d;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(220, 74, 113, 0.3);
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1400px) {
	.gallery_modal .popup_inner {
		width: 95%;
		max-width: 120rem;
	}

	.gallery_main_group img {
		height: 45rem;
	}

	.gallery_thumb_group {
		width: 25rem;
	}

	.thumb_slider .thumb_item .img_box {
		height: 13.5rem;
	}
}

@media screen and (max-width: 1024px) {
	.popup_wrap.on {
		align-items: flex-start;
		padding: 2rem 0 4rem;
		overflow-y: auto;
	}

	.popup_inner {
		width: 94%;
		max-width: none;
		margin: auto;
	}

	.gallery_modal .popup_inner {
		width: 94%;
		max-width: none;
		min-height: auto;
		border-radius: 3rem;
	}

	.gallery_modal .popup_header {
		padding: 3rem 4rem 2.5rem;
	}

	.gallery_modal .popup_header h3 {
		font-size: 2.8rem;
		gap: 0 0.6rem;
	}

	.popup_inner .floor-room {
		font-size: 1.6rem;
		padding: 0.3rem 1.2rem;
	}

	.gallery_modal .btn_close {
		font-size: 3.5rem;
	}

	.gallery_modal .popup_content {
		padding: 0 4rem 4rem;
	}

	.modal_gallery_layout {
		flex-direction: column;
		gap: 2.5rem;
		margin-bottom: 2rem;
	}

	#modal_main_slider img,
	.main_slider img,
	.gallery_main_group .slick-slide img {
		height: auto;
		object-fit: contain;
		border-radius: 2rem;
	}

	.gallery_main_group .slick-arrow {
		width: 5rem;
		height: 5rem;
	}

	.gallery_main_group .slick-arrow:before {
		font-size: 2.4rem;
	}

	.gallery_main_group .slick-prev {
		left: 2rem;
	}

	.gallery_main_group .slick-next {
		right: 2rem;
	}

	.gallery_thumb_group {
		width: 100%;
	}

	.thumb_slider .thumb_item {
		padding: 0 0.5rem;
	}

	.thumb_slider .thumb_item .img_box {
		height: auto;
		min-height: 8rem;
		aspect-ratio: 4/3;
		border-radius: 1.5rem;
	}

	.thumb_slider .thumb_item .img_box img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.modal_footer_info {
		flex-direction: column;
		text-align: center;
		gap: 2.5rem;
		padding-top: 3rem;
	}

	.modal_text_wrap p {
		font-size: 1.8rem;
		text-align: left;
	}

	.modal_btn_wrap .btn_rental {
		padding: 1.5rem 4rem;
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 768px) {
	.popup_wrap.on {
		padding: 1.5rem 0 3rem;
	}

	.gallery_modal .popup_inner {
		border-radius: 2.4rem;
	}

	.gallery_modal .popup_header {
		padding: 2.5rem 2.5rem 2rem;
	}

	.gallery_modal .popup_header h3 {
		font-size: 2.4rem;
		gap: 0 0.6rem;
	}

	.popup_inner .floor-room {
		font-size: 1.5rem;
		padding: 0.3rem 1.1rem;
	}

	.gallery_modal .btn_close {
		font-size: 3rem;
	}

	.gallery_modal .popup_content {
		padding: 0 2.5rem 3rem;
	}

	.modal_gallery_layout {
		gap: 2rem;
		margin-bottom: 1.5rem;
	}

	.gallery_main_group .slick-arrow {
		width: 4.2rem;
		height: 4.2rem;
	}

	.gallery_main_group .slick-arrow:before {
		font-size: 2rem;
	}

	.gallery_main_group .slick-prev {
		left: 1.5rem;
	}

	.gallery_main_group .slick-next {
		right: 1.5rem;
	}

	.modal_footer_info {
		gap: 2rem;
		padding-top: 2.5rem;
	}

	.modal_text_wrap p {
		font-size: 1.6rem;
	}

	.modal_btn_wrap .btn_rental {
		padding: 1.3rem 3rem;
		font-size: 1.6rem;
		border-radius: 1rem;
	}
}

@media screen and (max-width: 640px) {
	.popup_wrap.on {
		padding: 1rem 0 2rem;
		align-items: flex-start;
	}

	.popup_inner {
		width: 96%;
	}

	.gallery_modal .popup_inner {
		width: 96%;
		border-radius: 2rem;
		max-height: calc(100vh - 3rem);
		overflow-y: auto;
	}

	.gallery_modal .popup_header {
		padding: 2rem 1.5rem 1.5rem;
	}

	.gallery_modal .popup_header h3 {
		font-size: 2.2rem;
		gap: 0 0.5rem;
	}

	.popup_inner .floor-room {
		font-size: 1.4rem;
		padding: 0.2rem 1rem;
	}

	.gallery_modal .btn_close {
		font-size: 2.8rem;
	}

	.gallery_modal .popup_content {
		padding: 0 1.5rem 2.5rem;
	}

	.modal_gallery_layout {
		gap: 1.5rem;
	}

	.gallery_main_group .slick-arrow {
		width: 3.8rem;
		height: 3.8rem;
	}

	.gallery_main_group .slick-arrow:before {
		font-size: 1.8rem;
	}

	.gallery_main_group .slick-prev {
		left: 1rem;
	}

	.gallery_main_group .slick-next {
		right: 1rem;
	}

	.modal_footer_info {
		gap: 1.5rem;
		padding-top: 2rem;
	}

	.modal_text_wrap p {
		font-size: 1.5rem;
	}

	.modal_btn_wrap .btn_rental {
		padding: 1.2rem 2.5rem;
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	.gallery_modal .popup_inner {
		width: 97%;
		border-radius: 1.6rem;
	}

	.gallery_modal .popup_header {
		padding: 1.5rem 1.2rem 1.2rem;
	}

	.gallery_modal .popup_header h3 {
		font-size: 1.9rem;
		gap: 0 0.4rem;
	}

	.popup_inner .floor-room {
		font-size: 1.2rem;
		padding: 0.2rem 0.8rem;
	}

	.gallery_modal .btn_close {
		font-size: 2.5rem;
	}

	.gallery_modal .popup_content {
		padding: 0 1.2rem 2rem;
	}

	.gallery_main_group .slick-arrow {
		width: 3.2rem;
		height: 3.2rem;
	}

	.gallery_main_group .slick-arrow:before {
		font-size: 1.5rem;
	}

	.gallery_main_group .slick-prev {
		left: 0.8rem;
	}

	.gallery_main_group .slick-next {
		right: 0.8rem;
	}

	.modal_text_wrap p {
		font-size: 1.4rem;
	}

	.modal_btn_wrap .btn_rental {
		padding: 1.1rem 2rem;
		font-size: 1.4rem;
	}
}

/* 피그마 기반 프로토타입 레이아웃 */
.floor_guide_wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 6rem;
	padding-top: 4rem;
}

.floor_main_section {
	display: flex;
	gap: 4.5rem;
	align-items: flex-start;
}

.floor_map_area {
	flex: 1.5;
	position: relative;
	background: var(--color-white);
	border-radius: 0 0 8rem 0;
	overflow: hidden;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}

.floor_map_area .label_2f {
	position: absolute;
	left: 0;
	top: 0;
	background: var(--brand-color-main);
	color: var(--color-white);
	padding: 1.5rem 6rem;
	font-size: 2.8rem;
	font-weight: var(--font-sb);
	border-radius: 0 0 5rem 0;
	z-index: 2;
}

.floor_side_info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

.facility_card {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.facility_card .card_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.facility_card .card_title {
	font-size: 3rem;
	font-weight: var(--font-sb);
	color: #103558;
}

.facility_card .btn_apply_sm {
	background: var(--brand-color-main);
	color: var(--color-white) !important;
	padding: 1rem 3rem;
	border-radius: 5rem;
	font-size: 1.8rem;
	font-weight: var(--font-sb);
	transition: all 0.3s;
}

.facility_card .btn_apply_sm:hover {
	background: #1e8e96;
}

.facility_card .card_img {
	width: 100%;
	height: 33rem;
	border-radius: 0 0 6rem 0;
	overflow: hidden;
	background: #eee;
}

.facility_card .card_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.facility_card .card_desc {
	font-size: 2.22rem;
	line-height: 1.45;
	color: #333;
	word-break: keep-all;
}

.facility_bottom_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 6rem;
	row-gap: 8rem;
}

.floor_guide_info_text {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2rem;
	font-size: 1.8rem;
	color: #666;
}

.floor_guide_info_text i {
	color: var(--brand-color-main);
	font-size: 2.6rem;
}

/* ==================================================
	시설 대관 신청 (현재 미사용 - .facility-rental-section)
==================================================
.facility-rental-section {
	margin-top: 5rem;
	padding-top: 4rem;
	border-top: 1px solid var(--color-gray2, #eee);
}

.facility-rental-tit {
	text-align: center;
	font-size: 2.8rem;
	font-weight: var(--font-bd, 700);
	color: #212529;
	margin: 0 0 3.5rem;
	letter-spacing: -0.02em;
}

.facility-rental-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4rem;
	max-width: 140rem;
	margin: 0 auto;
	padding: 0 2rem;
	box-sizing: border-box;
}

.facility-rental-card {
	background: #F6F6F6;
	border-radius: 1.2rem;
	padding: 2rem 2rem 2.8rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	transition: box-shadow 0.25s;
}

.facility-rental-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.facility-rental-icon {
	width: 5.6rem;
	height: 5.6rem;
	border-radius: 50%;
	background: #E0E0E0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1.6rem;
	flex-shrink: 0;
}

.facility-rental-ico {
	display: block;
	width: 2.8rem;
	height: 2.8rem;
	background-color: #47C4D6;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.facility-rental-name {
	font-size: 1.8rem;
	font-weight: var(--font-sb, var(--font-sb));
	color: #212529;
	margin: 0 0 2rem;
	line-height: 1.35;
}

.facility-rental-btns {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.facility-rental-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: var(--font-md);
	color: var(--color-white);
	padding: 1.2rem;
	border-radius: 0.8rem;
}

.facility-rental-btn--apply {
	background: #DC4A71;
}

.facility-rental-btn--info {
	background: #82C741;
}

@media screen and (max-width: 1200px) {
	.floor_main_section {
		flex-direction: column;
	}

	.facility-rental-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.facility-rental-grid {
		grid-template-columns: 1fr;
	}
}

.facility-rental-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: var(--font-md);
	color: var(--color-white);
	text-decoration: none;
	padding: 1.2rem 1.6rem;
	border-radius: 0.8rem;
	transition: opacity 0.2s;
}

.facility-rental-btn:hover {
	opacity: 0.9;
}

.facility-rental-arrow {
	display: inline-block;
	margin-left: 0.2rem;
}

.facility-rental-btn--apply {
	background: #DC4A71;
}

.facility-rental-btn--info {
	background: #82C741;
}

@media screen and (max-width: 1024px) {
	.facility-rental-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: var(--font-sb)px) {
	.facility-rental-tit {
		font-size: 2.2rem;
		margin-bottom: 2.5rem;
	}

	.facility-rental-grid {
		grid-template-columns: 1fr;
		gap: 1.8rem;
		padding: 0 1rem;
	}

	.facility-rental-card:nth-child(10),
	.facility-rental-card:nth-child(11) {
		grid-column: 1;
	}

	.facility-rental-card {
		padding: 2rem 1.6rem;
	}
}
*/

/* ==================================================
	교육시설 - 시설 대관 신청
================================================= */
.rental_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 5rem 2rem;
}

.rental_box {
	position: relative;
	padding-top: 3.5rem;
}

.rental_box .box_inner {
	position: relative;
	background: #f4f4f4;
	border: 1px solid #e6e6e6;
	border-radius: 2rem;
	height: 23rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding-bottom: 3.5rem;
}

.rental_box .icon_circle {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 7.1rem;
	height: 7.1rem;
	z-index: 10;
}

.rental_box .icon_circle .icon_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--brand-color-main);
	border-radius: 50%;
}

.rental_box .icon_circle .icon_bg img {
	display: none;
}

.rental_box .icon_circle .icon_img {
	position: absolute;
	top: 48.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 3.6rem;
	height: 3.6rem;
}

.rental_box .bg_pattern {
	position: absolute;
	top: 1rem;
	right: 0;
	width: 7rem;
	opacity: 0.9;
}

.rental_box .txt_content {
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.rental_box .tit {
	font-size: 2.3rem;
	font-weight: var(--font-sb);
	color: var(--color-black);
	margin-bottom: 2rem;
	text-align: center;
	word-break: keep-all;
	line-height: 1.2;
	padding: 0 1rem;
}

/* 영역 */
.rental_box .btn_group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	padding: 0;
	align-items: center;
	box-sizing: border-box;
}

.rental_box .btn_group a.cbtn:nth-child(2) {
	background: var(--brand-color-sub);
	border: 1px solid var(--brand-color-sub);
}

.rental_box .btn_group a.cbtn:nth-child(2):hover {
	background: #7ab332;
	border: 1px solid #7ab332;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1400px) {
	.rental_box .box_inner {
		height: 25rem;
	}

	.rental_list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 1024px) {
	.rental_list {
		grid-template-columns: repeat(2, 1fr);
	}

	.rental_box .btn_group {
		padding: 0 1rem;
	}
}

@media screen and (max-width: 640px) {
	.rental_box .box_inner {
		height: 23rem;
	}

	.rental_list {
		grid-template-columns: repeat(1, 1fr);
		gap: 3rem 2rem;
	}
}

/* ==================================================
	교육시설 - 시설 대관 신청 - 달력
================================================= */
/* 컨텐츠 내 레이아웃 정렬 */
.rental_content_layout {
	display: flex;
	gap: 4rem;
	align-items: stretch;
}

/* 최상단 타이틀 */
.facility_title_area {
	margin-bottom: 3rem;
	border-bottom: 2px solid var(--brand-color-main);
	padding-bottom: 1.5rem;
}

.facility_title_area h3 {
	display: inline-flex;
	align-items: center;
	font-size: 3rem;
	font-weight: var(--font-bd);
	color: #222;
}

.facility_title_area h3>span {
	color: var(--brand-color-main)
}

.facility_title_area h3 .room_num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: var(--font-sb);
	color: var(--brand-color-main);
	border: 1px solid var(--brand-color-main);
	border-radius: 5rem;
	padding: 0.3rem 1.5rem;
	margin: 0 0.8rem;
	white-space: nowrap;
}

/*  좌측: 캘린더 영역 */
.rental_calendar_section {
	flex: 1;
	background: var(--color-white);
	border: 1px solid #e1e1e1;
	border-radius: 1.2rem;
	padding: 5rem 4rem;
}

.rental_calendar_header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	padding-bottom: 3rem;
	margin-bottom: 3.5rem;
	border-bottom: 1px solid #ddd;
}

.rental_calendar_header h4 {
	margin: 0;
	font-size: 3.5rem;
	font-weight: var(--font-bd);
	line-height: 1;
	color: #222;
}

.rental_calendar_header .btn_calendar_nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 2rem;
	color: #000;
	line-height: 1;
}

.rental_calendar_header .btn_calendar_nav i {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

/* 캘린더 그리드 */
.calendar_table .weekdays {
	display: flex;
	padding-bottom: 1.5rem;
}

.calendar_table .weekdays span {
	flex: 1;
	text-align: center;
	font-weight: 600;
	font-size: 1.8rem;
}

.calendar_table .weekdays span:first-child,
.calendar_table .weekdays span:last-child {
	color: #ccc !important;
}

.calendar_dates {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
}

.date_cell {
	width: 100%;
	height: 8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	cursor: pointer;
	transition: all 0.2s;
	color: #222;
	position: relative;
	z-index: 1;
}

.date_cell.active::before {
	content: '';
	position: absolute;
	width: 4.8rem;
	height: 4.8rem;
	background: var(--brand-color-dmain);
	border-radius: 50%;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.date_cell.past {
	color: #ccc !important;
	cursor: default;
}

.date_cell:nth-child(7n+1),
.date_cell:nth-child(7n) {
	color: #ccc;
}

.date_cell.active {
	color: var(--color-white) !important;
	font-weight: 700;
	background: none !important;
}

.date_cell:hover:not(.empty):not(.past):not(.active) {
	background: #f8f9fa;
}

/* 우측: 예약 신청 영역 */
.rental_booking_section {
	width: 50rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.booking_title_wrap h5 {
	font-size: 2.5rem;
	font-weight: var(--font-bd);
	margin-bottom: 15px;
}

.status_guide_box {
	background: var(--color-white);
	border: 1px dashed #cdcdcd;
	border-radius: 5px;
	padding: 1.5rem;
	display: flex;
	justify-content: flex-end;
	/* 우측 정렬 */
	gap: 10px;
	margin-bottom: 1rem;
}

.guide_btn {
	padding: 6px 15px;
	font-size: 1.4rem;
	border-radius: 5px;
	font-weight: var(--font-md);
	display: flex;
	align-items: center;
	justify-content: center;
}

.guide_btn.available {
	border: 1px solid #222;
	background: var(--color-white);
	color: #222;
}

.guide_btn.unavailable {
	border: 1px solid #cdcdcd;
	background: var(--color-white);
	color: #cdcdcd;
}

.guide_btn.selected {
	background: var(--brand-color-dmain);
	color: var(--color-white);
}

/* 시간 슬롯 그리드 */
.time_selection_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.time_item {
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #e1e1e1;
	background: var(--color-white);
	border-radius: 6px;
	font-size: 1.7rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}

.time_item:hover:not(.disabled):not(.selected) {
	background: var(--brand-color-dmain);
	color: var(--color-white);
}

.time_item.selected {
	background: var(--brand-color-dmain) !important;
	border-color: var(--brand-color-dmain) !important;
	color: var(--color-white) !important;
}

.time_item.disabled {
	background: #f1f1f1;
	color: #cccccc;
	cursor: not-allowed;
}

.btn_booking_confirm {
	height: 70px;
	background: var(--brand-color-main) !important;
	color: var(--color-white) !important;
	border: none;
	border-radius: 6px;
	font-size: 2rem;
	font-weight: 700;
	cursor: pointer;
	margin-top: auto;
}

.btn_booking_confirm:hover {
	filter: brightness(0.9);
}

/* ==================
	반응형CSS
=====================*/
/* 1024px 이하: 태블릿 - 세로 배치 */
@media screen and (max-width: 1024px) {
	.facility_title_area {
		margin-bottom: 2.5rem;
		padding-bottom: 1.2rem;
	}

	.facility_title_area h3 {
		font-size: 2.6rem;
		flex-wrap: wrap;
		gap: 0.3rem 0;
	}

	.facility_title_area h3 .room_num {
		font-size: 1.7rem;
		padding: 0.25rem 1.2rem;
		margin: 0 0.5rem;
	}

	.rental_content_layout {
		flex-direction: column;
		gap: 3rem;
	}

	.rental_calendar_section {
		padding: 4rem 3rem;
	}

	.rental_booking_section {
		width: 100%;
	}

	.rental_calendar_header {
		gap: 2.5rem;
		padding-bottom: 2.5rem;
		margin-bottom: 3rem;
	}

	.rental_calendar_header h4 {
		font-size: 3rem;
	}

	.date_cell {
		height: 7rem;
		font-size: 1.8rem;
	}

	.date_cell.active::before {
		width: 4.4rem;
		height: 4.4rem;
	}

	.booking_title_wrap h5 {
		font-size: 2.2rem;
	}

	.time_item {
		height: 5.5rem;
		font-size: 1.6rem;
	}

	.btn_booking_confirm {
		height: 6.5rem;
		font-size: 1.8rem;
	}
}

/* 768px 이하: 작은 태블릿 */
@media screen and (max-width: 768px) {
	.facility_title_area {
		margin-bottom: 2rem;
		padding-bottom: 1rem;
	}

	.facility_title_area h3 {
		font-size: 2.2rem;
	}

	.facility_title_area h3 .room_num {
		font-size: 1.5rem;
		padding: 0.2rem 1rem;
		margin: 0 0.4rem;
	}

	.rental_content_layout {
		gap: 2.5rem;
	}

	.rental_calendar_section {
		padding: 3rem 2.5rem;
	}

	.rental_calendar_header {
		gap: 2rem;
		padding-bottom: 2rem;
		margin-bottom: 2.5rem;
	}

	.rental_calendar_header h4 {
		font-size: 2.6rem;
	}

	.rental_calendar_header .btn_calendar_nav {
		font-size: 1.8rem;
	}

	.calendar_table .weekdays span {
		font-size: 1.6rem;
	}

	.date_cell {
		height: 6rem;
		font-size: 1.7rem;
	}

	.date_cell.active::before {
		width: 4rem;
		height: 4rem;
	}

	.status_guide_box {
		justify-content: center;
		padding: 1.2rem;
	}

	.guide_btn {
		padding: 5px 12px;
		font-size: 1.3rem;
	}

	.time_selection_grid {
		gap: 1.2rem;
	}

	.time_item {
		height: 5rem;
		font-size: 1.5rem;
	}

	.booking_title_wrap h5 {
		font-size: 2rem;
	}

	.btn_booking_confirm {
		height: 6rem;
		font-size: 1.7rem;
	}
}

/* 600px 이하: 모바일 */
@media screen and (max-width: 600px) {
	.facility_title_area {
		margin-bottom: 1.5rem;
		padding-bottom: 0.8rem;
		border-bottom-width: 1px;
	}

	.facility_title_area h3 {
		font-size: 1.9rem;
	}

	.facility_title_area h3 .room_num {
		font-size: 1.3rem;
		padding: 0.15rem 0.8rem;
		margin: 0 0.3rem;
	}

	.rental_content_layout {
		gap: 2rem;
	}

	.rental_calendar_section {
		padding: 2.5rem 2rem;
		border-radius: 1rem;
	}

	.rental_calendar_header {
		gap: 1.5rem;
		padding-bottom: 1.5rem;
		margin-bottom: 2rem;
	}

	.rental_calendar_header h4 {
		font-size: 2.2rem;
	}

	.rental_calendar_header .btn_calendar_nav {
		font-size: 1.6rem;
	}

	.calendar_table .weekdays {
		padding-bottom: 1rem;
	}

	.calendar_table .weekdays span {
		font-size: 1.4rem;
	}

	.calendar_dates {
		gap: 3px;
	}

	.date_cell {
		height: 4.8rem;
		font-size: 1.5rem;
	}

	.date_cell.active::before {
		width: 3.6rem;
		height: 3.6rem;
	}

	.status_guide_box {
		flex-wrap: wrap;
		gap: 8px;
		padding: 1rem;
	}

	.guide_btn {
		padding: 4px 10px;
		font-size: 1.2rem;
	}

	.time_selection_grid {
		gap: 10px;
	}

	.time_item {
		height: 4.8rem;
		font-size: 1.4rem;
	}

	.booking_title_wrap h5 {
		font-size: 1.8rem;
	}

	.btn_booking_confirm {
		height: 5.5rem;
		font-size: 1.6rem;
		border-radius: 5px;
	}
}

/* 480px 이하: 작은 모바일 */
@media screen and (max-width: 480px) {
	.facility_title_area {
		margin-bottom: 1.2rem;
		padding-bottom: 0.6rem;
	}

	.facility_title_area h3 {
		font-size: 1.6rem;
	}

	.facility_title_area h3 .room_num {
		font-size: 1.2rem;
		padding: 0.1rem 0.6rem;
		margin: 0 0.25rem;
	}

	.rental_calendar_section {
		padding: 2rem 1.5rem;
		border-radius: 8px;
	}

	.rental_calendar_header {
		gap: 1.2rem;
		padding-bottom: 1.2rem;
		margin-bottom: 1.5rem;
	}

	.rental_calendar_header h4 {
		font-size: 2rem;
	}

	.rental_calendar_header .btn_calendar_nav {
		font-size: 1.4rem;
	}

	.calendar_table .weekdays span {
		font-size: 1.3rem;
	}

	.date_cell {
		height: 4.2rem;
		font-size: 1.4rem;
	}

	.date_cell.active::before {
		width: 3.2rem;
		height: 3.2rem;
	}

	.guide_btn {
		padding: 4px 8px;
		font-size: 1.1rem;
	}

	.time_item {
		height: 4.4rem;
		font-size: 1.3rem;
	}

	.booking_title_wrap h5 {
		font-size: 1.6rem;
	}

	.btn_booking_confirm {
		height: 5rem;
		font-size: 1.5rem;
	}
}

/* ==================================================
	교육시설 - 시설 대관 신청 - 달력 하단 내용
================================================= */
.rental_guide_container {
	margin-top: 5rem;
}

.rental_guide_container .guide_section {
	margin-bottom: 5rem;
}

.rental_guide_container .ag-rental-bottom .procedure_wrapper {
	position: relative;
	padding: 2rem 0;
}

.rental_guide_container .ag-rental-bottom .step_line {
	position: absolute;
	top: 50%;
	left: 5%;
	width: 90%;
	height: 2px;
	background: #ededed;
	z-index: 0;
}

.rental_guide_container .ag-rental-bottom .procedure_steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	position: relative;
	z-index: 1;
}

.rental_guide_container .ag-rental-bottom .step_card {
	background: var(--color-white);
	border: 1px solid #e3e3e3;
	padding: 4.5rem 2rem 4rem;
	border-radius: 3rem;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.02);
}

.rental_guide_container .ag-rental-bottom .step_card:hover {
	transform: translateY(-1.2rem);
	border-color: var(--brand-color-main);
	box-shadow: 0 2.5rem 5rem rgba(42, 161, 169, 0.12);
}

.rental_guide_container .ag-rental-bottom .step_card.highlight {
	border-color: rgba(42, 161, 169, 0.3);
	background: linear-gradient(to bottom, var(--color-white), #f0fafa);
}

.rental_guide_container .ag-rental-bottom .step_badge {
	position: absolute;
	top: -1.2rem;
	left: 50%;
	transform: translateX(-50%);
	background: #f8fafc;
	color: #94a3b8;
	padding: 0.4rem 1.4rem;
	border-radius: 5rem;
	font-size: 1.2rem;
	font-weight: var(--font-eb);
	border: 1px solid #f0f4f8;
	transition: all 0.3s;
}

.rental_guide_container .ag-rental-bottom .step_card:hover .step_badge {
	background: var(--brand-color-main);
	color: var(--color-white);
	border-color: var(--brand-color-main);
}

.rental_guide_container .ag-rental-bottom .step_icon_circle {
	width: 7.2rem;
	height: 7.2rem;
	background: #f9f9f9;
	border-radius: 2.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2.5rem;
	color: var(--brand-color-main);
	font-size: 2.8rem;
	transition: all 0.4s;
}

.rental_guide_container .ag-rental-bottom .step_card:hover .step_icon_circle {
	background: var(--brand-color-main);
	color: var(--color-white);
	transform: rotateY(180deg);
}

.rental_guide_container .ag-rental-bottom .step_title {
	font-size: 2rem;
	font-weight: var(--font-eb);
	color: #1e293b;
	letter-spacing: -0.5px;
}

.rental_guide_container .ag-rental-bottom .step_desc {
	font-size: 1.6rem;
	color: #64748b;
	margin-top: 1rem;
	line-height: 1.5;
	word-break: keep-all;
}

/* AG: 하단 정보 패널 그룹 */
.rental_guide_container .ag-rental-bottom .info_box_container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-top: 3rem;
}

.rental_guide_container .ag-rental-bottom .info_panel {
	background: #fffcfc;
	border: 1px solid #ffe4e4;
	border-radius: 2.5rem;
	overflow: hidden;
}

.rental_guide_container .ag-rental-bottom .cancel_panel {
	padding: 4rem;
}

.rental_guide_container .ag-rental-bottom .panel_header {
	margin-bottom: 2.5rem;
}

.rental_guide_container .ag-rental-bottom .panel_tag {
	font-size: 1.3rem;
	font-weight: var(--font-eb);
	text-transform: uppercase;
	color: #ef4444;
	background: rgba(239, 68, 68, 0.08);
	padding: 0.3rem 1rem;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	display: inline-block;
}

.rental_guide_container .ag-rental-bottom .panel_title {
	font-size: 2rem;
	font-weight: 800;
	color: #1e293b;
}

.rental_guide_container .ag-rental-bottom .cancel_list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem 4rem;
}

.rental_guide_container .ag-rental-bottom .cancel_list li {
	font-size: 1.6rem;
	color: #475569;
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.rental_guide_container .ag-rental-bottom .cancel_list li i {
	color: #ef4444;
	font-size: 1.8rem;
}

/* cancel_panel 전용: facility_rental_date2 동그라미 숫자 */
.cancel_panel .cancel_list {
	counter-reset: cancel-num;
}

.cancel_panel .cancel_list li {
	counter-increment: cancel-num;
}

.cancel_panel .cancel_list li i {
	display: none;
}

.cancel_panel .cancel_list li::before {
	content: counter(cancel-num);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	height: 2.4rem;
	background: #ef4444;
	color: var(--color-white);
	font-size: 1.4rem;
	font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
}

.rental_guide_container .ag-rental-bottom .notice_panel {
	background: #f8fafc;
	border: 1px solid #e3e3e3;
	padding: 3rem 4rem;
}

.rental_guide_container .ag-rental-bottom .notice_flex {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.rental_guide_container .ag-rental-bottom .notice_icon {
	width: 5.6rem;
	height: 5.6rem;
	background: var(--brand-color-main);
	color: var(--color-white);
	border-radius: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
}

.rental_guide_container .ag-rental-bottom .notice_content .primary_msg {
	font-size: 1.8rem;
	color: #1e293b;
	font-weight: var(--font-sb);
	margin-bottom: 0.5rem;
}

.rental_guide_container .ag-rental-bottom .notice_content .secondary_msg {
	font-size: 1.6rem;
	color: #64748b;
}

/* ==================
	반응형CSS
=====================*/
@media (max-width: 1200px) {
	.rental_guide_container {
		margin-top: 4rem;
	}

	.rental_guide_container .ag-rental-bottom .procedure_steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.rental_guide_container .ag-rental-bottom .step_line {
		display: none;
	}

	.rental_guide_container .ag-rental-bottom .cancel_list {
		gap: 1.2rem 3rem;
	}
}

@media (max-width: 1024px) {
	.rental_guide_container {
		padding: 0 2rem;
	}

	.rental_guide_container .guide_section {
		margin-bottom: 4rem;
	}

	.rental_guide_container .ag-rental-bottom .info_box_container {
		gap: 2.5rem;
		margin-top: 2.5rem;
	}

	.rental_guide_container .ag-rental-bottom .cancel_panel {
		padding: 3rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_panel {
		padding: 2.5rem 3rem;
	}
}

@media (max-width: 768px) {
	.rental_guide_container {
		margin-top: 3.5rem;
		padding: 0 2rem;
	}

	.rental_guide_container .guide_section {
		margin-bottom: 3.5rem;
	}

	.rental_guide_container .ag-rental-bottom .procedure_wrapper {
		padding: 1.5rem 0;
	}

	.rental_guide_container .ag-rental-bottom .procedure_steps {
		gap: 1.5rem;
	}

	.rental_guide_container .ag-rental-bottom .step_card {
		padding: 3rem 2rem;
	}

	.rental_guide_container .ag-rental-bottom .step_title {
		font-size: 1.8rem;
	}

	.rental_guide_container .ag-rental-bottom .step_desc {
		font-size: 1.5rem;
	}

	.rental_guide_container .ag-rental-bottom .info_box_container {
		gap: 2rem;
		margin-top: 2rem;
	}

	.rental_guide_container .ag-rental-bottom .cancel_panel {
		padding: 2.5rem 2rem;
	}

	.rental_guide_container .ag-rental-bottom .cancel_list {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.rental_guide_container .ag-rental-bottom .cancel_list li {
		font-size: 1.5rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_panel {
		padding: 2rem 2.5rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_flex {
		gap: 2rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_content .primary_msg {
		font-size: 1.6rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_content .secondary_msg {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.rental_guide_container {
		margin-top: 3rem;
		padding: 0 1.5rem;
	}

	.rental_guide_container .guide_section {
		margin-bottom: 3rem;
	}

	.rental_guide_container .ag-rental-bottom .procedure_steps {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.rental_guide_container .ag-rental-bottom .step_card {
		padding: 3.5rem 2rem 2.5rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
		text-align: center;
	}

	.rental_guide_container .ag-rental-bottom .step_badge {
		left: 50%;
		transform: translateX(-50%);
		top: -0.8rem;
	}

	.rental_guide_container .ag-rental-bottom .step_icon_circle {
		margin: 0;
		width: 6rem;
		height: 6rem;
		font-size: 2.4rem;
		flex-shrink: 0;
		border-radius: 50%;
	}

	.rental_guide_container .ag-rental-bottom .step_content {
		min-width: 0;
	}

	.rental_guide_container .ag-rental-bottom .step_title {
		font-size: 1.7rem;
	}

	.rental_guide_container .ag-rental-bottom .step_desc {
		font-size: 1.4rem;
		margin-top: 0.5rem;
	}

	.rental_guide_container .ag-rental-bottom .panel_title {
		font-size: 1.8rem;
	}

	.rental_guide_container .ag-rental-bottom .cancel_panel {
		padding: 2rem;
	}

	.rental_guide_container .ag-rental-bottom .cancel_list li {
		font-size: 1.4rem;
		gap: 1rem;
	}

	.rental_guide_container .ag-rental-bottom .cancel_list li::before {
		min-width: 2rem;
		height: 2rem;
		font-size: 1.2rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_panel {
		padding: 2rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_icon {
		width: 4.8rem;
		height: 4.8rem;
		font-size: 2rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_flex {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_content .primary_msg {
		font-size: 1.5rem;
	}

	.rental_guide_container .ag-rental-bottom .notice_content .secondary_msg {
		font-size: 1.4rem;
	}
}

/* ==================================================
	교육시설 - 시설 대관 신청 - 신청폼
================================================= */
/* 대관 신청 - 개인정보 박스 높이를 텍스트 끝에 맞춤 */
.content_form .rental-form-wrap .privacy-text-box,
.rental-form-wrap .privacy-text-box {
	height: auto;
	min-height: 0;
	max-height: none;
	overflow-y: visible;
}

/* 사용 인원 입력 + 단위(명) - table 레이아웃으로 한 줄 강제 */
.content_form .rental-form-wrap .count-input-wrap {
	display: table;
	table-layout: fixed;
	width: 1%;
	border-collapse: collapse;
}

.content_form .rental-form-wrap .count-input-wrap .count-input-cell {
	display: table-cell;
	width: 11rem;
	padding-right: 0.8rem;
	vertical-align: middle;
}

.content_form .rental-form-wrap .count-input-wrap .count-input-cell input[type="number"] {
	width: 100% !important;
	max-width: 100% !important;
	height: 58px;
	padding: 0 1.2rem;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
	box-sizing: border-box;
}

.content_form .rental-form-wrap .count-input-wrap .count-unit-cell {
	display: table-cell;
	width: 1%;
	vertical-align: middle;
	font-size: 1.6rem;
	color: #555;
	font-weight: var(--font-md);
	white-space: nowrap;
}

/* 숫자 입력 스피너 제거 */
.content_form .rental-form-wrap .count-input-wrap input[type="number"]::-webkit-outer-spin-button,
.content_form .rental-form-wrap .count-input-wrap input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* 사용 목적 textarea - 다른 폼 입력과 동일 스타일 */
.content_form .rental-form-wrap .input-textarea,
.rental-form-wrap .input-textarea {
	width: 100%;
	max-width: 100%;
	min-height: 14rem;
	padding: 18px 24px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	color: #222;
	line-height: 1.6;
	resize: vertical;
	box-sizing: border-box;
	transition: border-color 0.3s, box-shadow 0.3s;
	outline: none;
	background: var(--color-white);
}

.content_form .rental-form-wrap .input-textarea:focus,
.rental-form-wrap .input-textarea:focus {
	border-color: var(--brand-color-main);
	box-shadow: 0 0 0 5px rgba(20, 88, 166, 0.1);
}

.content_form .rental-form-wrap .input-textarea::placeholder,
.rental-form-wrap .input-textarea::placeholder,
.content_form .rental-form-wrap .input-textarea::-webkit-input-placeholder,
.rental-form-wrap .input-textarea::-webkit-input-placeholder,
.content_form .rental-form-wrap .input-textarea::-moz-placeholder,
.rental-form-wrap .input-textarea::-moz-placeholder {
	font-size: 16px !important;
	font-family: 'Pretendard', sans-serif !important;
	color: #999 !important;
	opacity: 1;
}

/* 대관 신청 - 유의사항 섹션 */
.precautions-area {
	margin-bottom: 5rem;
}

.precautions-area .precautions-box {
	background: var(--color-white);
	border: 1px solid #e1e7ed;
	border-radius: 1.6rem;
	padding: 2.5rem 3rem;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.02);
}

.precautions-area .precautions-notice {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 2rem;
	font-weight: var(--font-sb);
	color: #c62828;
	margin-bottom: 1.5rem;
}

.precautions-area .precautions-notice i {
	font-size: 2.4rem;
	line-height: 1;
	vertical-align: middle;
	display: inline-flex;
	align-items: center;
}

.precautions-area .precautions-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.precautions-area .precautions-list li {
	position: relative;
	padding-left: 2rem;
	font-size: 1.7rem;
	color: #555;
	line-height: 1.75;
	margin-bottom: 0.8rem;
}

.precautions-area .precautions-list li::before {
	content: "·";
	position: absolute;
	left: 0;
	color: var(--brand-color-main);
	font-weight: bold;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 640px) {

	.content_form .rental-form-wrap .privacy-text-box,
	.rental-form-wrap .privacy-text-box {
		max-height: none;
	}

	.content_form .rental-form-wrap .count-input-wrap .count-input-cell {
		width: 10rem;
		padding-right: 0.6rem;
	}

	.content_form .rental-form-wrap .spinner-btns {
		width: 32px;
	}

	.content_form .rental-form-wrap .count-input-with-spinner input[type="number"] {
		padding: 0 0.6rem;
	}

	.rental-form-wrap .precautions-area .precautions-box {
		padding: 1.8rem 2rem;
	}

	.rental-form-wrap .precautions-area .precautions-notice {
		font-size: 1.6rem;
	}

	.rental-form-wrap .precautions-area .precautions-list li {
		font-size: 1.4rem;
		padding-left: 1.6rem;
	}
}

/* ==================================================
	개인정보 처리방침
================================================== */
.privacy_txt {
	display: flex;
	flex-direction: column;
	gap: 1rem
}

.privacy_txt h2 {
	font-size: var(--rem-23);
	margin-top: var(--rem-20);
}

.privacy_txt ul {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.privacy_txt ul li {
	padding-left: 1rem
}

.privacy_txt>ul>li>ul {
	margin-top: 1rem;
}

.privacy_txt .dash_list li {
	padding-left: 2rem
}

.privacy_txt .dash_list li::before {
	content: '-';
	margin-left: -2rem;
	margin-right: 1rem;
}