@charset "utf-8";

/* ==================================================
	body 공통 속성
================================================== */
/* 기본 폰트 및 사이즈 설정 */
html {
	font-size: 10px;
	/* 서브 히어로는 세로 드롭다운을 위해 overflow visible — 가로 스크롤은 문서 루트에서만 차단 */
	overflow-x: hidden;
}

body {
	font-size: var(--rem-18);
	font-family: 'Pretendard', 'Noto Sans KR', '돋움', 'Dotum', '굴림', 'Gulim', 'Lucida Grande', 'Tahoma', 'Verdana', 'AppleGothic', 'UnDotum', 'sans-serif';
	font-weight: var(--font-rg);
	-webkit-text-size-adjust: none;
	-ms-interpolation-mode: bicubic;
	color: var(--color-gray5);
	word-break: keep-all;
	background: var(--color-white);
	line-height: 1.6;
}

.hid {
	position: absolute;
	left: -9999%;
	font-size: 0;
	line-height: 0;
	text-indent: -9999rem;
}


a,
a:link,
a:hover,
a:active,
a:visited {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* border:solid 3px #ffffff00; */
}

a:focus,
input.type-text:focus,
textarea:focus,
textarea.type-text:focus {
	/* border:solid 3px var(--brand-color-main) ; */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border-radius: 5px;
}

table caption {
	text-indent: -2000px;
}

hr {
	clear: both;
	height: 1px;
	border: none;
	background: #FFF;
	margin-bottom: 15px;
	line-height: 0;
	color: #FFF
}

input,
button {
	font-family: var(--font-Pretendard)
}

.ellips {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

caption,
legend {
	display: none
}


img {
	/* 이미지 렌더링 방식 변경 */
	image-rendering: -webkit-optimize-contrast;
	/* z축을 0으로 초기화, 입체감 삭제 */
	transform: translateZ(0);
	/* 뒷면 숨기기, 입체감 삭제 */
	backface-visibility: hidden;
}

/* Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fix */
@-webkit-viewport {
	width: device-width;
}

@-moz-viewport {
	width: device-width;
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

/* 모바일CSS */
@media (max-width:1280px) {
	html {
		font-size: 9.5px;
	}
}

@media (max-width:800px) {
	html {
		font-size: 9px;
	}
}

@media (max-width:600px) {
	html {
		/* font-size: 8.5px; */
	}
}

/*
 @media (max-width:450px) {
	html {
		font-size: 7px;
	}
} */


/* ==================================================
	skipnavi
================================================== */
#skipnavi {
	height: 0px;
	position: relative;
	z-index: 100000;
}

#skipnavi>ul>li {
	text-align: center;
}

#skipnavi>p {
	width: 0;
	height: 0;
	overflow: hidden;
	white-space: nowrap;
}

#skipnavi>ul>li>a {
	position: absolute;
	display: block;
	color: #fff;
	font-size: 18px;
	top: -10000px;
	left: 0;
	border: 2px solid var(--brand-color-main);
	z-index: 10000;
}

#skipnavi>ul>li>a:hover,
#skipnavi>ul>li>a:focus,
#skipnavi>ul>li>a:active {
	position: absolute;
	top: 0;
	height: 7px;
	padding: 12px 0 31px;
	background: var(--brand-color-main);
	z-index: 10000;
	width: 100%;
	overflow: hidden;
}


/* ==================================================
	레이아웃 큰박스
================================================== */
#wrap {
	position: relative;
	width: 100%;
	min-width: var(--rem-320);
}

/* ==================================================
	컨텐츠
================================================== */
#container {
	clear: both;
	position: relative;
	min-width: var(--rem-320);
}

.container._sub #header::before {
	opacity: 1;
}

.cont_detail {
	padding: 8rem 0 10rem;
}

.cont_detail2 {
	padding: 8rem 0 0;
}

.inner {
	position: relative;
	width: 100%;
	max-width: var(--px-base);
	margin: 0 auto;
}

/* #header와 동일한 좌우 패딩(반응형) */
.cont_detail .inner {
	padding-left: var(--spacing);
	padding-right: var(--spacing);
	box-sizing: border-box;
}

.cont_detail2 .inner {
	padding-left: var(--header-inner-padding);
	padding-right: var(--header-inner-padding);
	box-sizing: border-box;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:800px) {
	.cont_detail {
		padding-top: 7rem;
		padding-bottom: 9rem;
	}

	.cont_detail2 {
		padding-top: 7rem;
	}
}

@media screen and (max-width:600px) {
	.cont_detail {
		padding-top: 4rem;
		padding-bottom: 6rem;
	}

	.cont_detail2 {
		padding-top: 4rem;
	}
}

/* ==================================================
	컨텐츠 배경
================================================== */
.con_bg {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #f4f7fc 0%, #ffffff 40%, #ffffff 100%);
	margin-top: 4rem;
}

.con_bg:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image: linear-gradient(rgba(0, 168, 204, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 168, 204, 0.03) 1px, transparent 1px);
	background-size: 12rem 12rem;
}

.con_bg>.inner {
	position: relative;
	z-index: 2;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:800px) {
	.con_bg {
		margin-top: 3rem;
	}

	.con_bg:before {
		background-size: 10rem 10rem;
	}
}

@media screen and (max-width:600px) {
	.con_bg {
		margin-top: 2rem;
	}

	.con_bg:before {
		background-size: 8rem 8rem;
	}
}

/* ==================================================
	경로
================================================== */
#path {
	width: 100%;
}

#path .plink {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 1.7rem;
	gap: 0 4rem;
}

#path .plink li {
	position: relative;
}

#path .plink li:after {
	content: "";
	display: block;
	position: absolute;
	top: 0.9rem;
	left: -2rem;
	width: 0.5248rem;
	height: 0.901rem;
	background: url('../../lib/images/gnb/arrow_path.svg') no-repeat;
	background-size: cover;
}

#path .plink li:first-child::after {
	display: none;
}

#path .plink li img {
	width: 100%;
	max-width: var(--rem-18);
    vertical-align: text-top;
}

#path .plink .last {
	font-weight: var(--font-bd);
}

/* 모바일 CSS */
@media screen and (max-width:1024px) {
	#path .plink li img {
		max-width: var(--rem-16);
	}
}
@media screen and (max-width:640px) {
	#path .plink {
		font-size: 1.6rem;
		gap: 0 3rem;
	}

	#path .plink li:after {
		top: 0.35rem;
	}

	#path .plink li img {
		max-width: var(--rem-14);
	}
}


/* ==================================================
	비주얼
================================================== */
.sub-hero {
	position: relative;
	z-index: 10;
	padding-top: var(--header-hei);
	width: 100%;
	max-width: 100%;
	overflow: visible;
	box-sizing: border-box;
}

.sub-hero .inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"path path"
		"title lnb";
	align-items: center;
	row-gap: 2rem;
	padding-top: 5rem;
	box-sizing: border-box;
}

.sub-hero .inner #path {
	grid-area: path;
}

.sub-hero .inner .page-title {
	grid-area: title;
	margin-bottom: 0;
}


.sub-hero .inner #lnb_con .lnb>ul {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #f1f3f5;
	border-radius: 10rem;
	padding: 0.8rem 0.7rem 0.8rem 0.8rem;
}

.sub-hero .inner #lnb_con .lnb>ul>li {
	height: 100%;
	text-align: center;
}

.sub-hero .inner #lnb_con .lnb>ul>li a {
	display: block;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 0.85rem 4.4rem;
	background: transparent;
	border-radius: 0;
	font-size: 2.2rem;
	font-weight: var(--font-md);
	color: #495057;
	white-space: nowrap;
}

.sub-hero .inner #lnb_con .lnb>ul>li.on a,
.sub-hero .inner #lnb_con .lnb>ul>li a:hover {
	border-radius: 3rem;
	background: linear-gradient(90deg, #32357b 0%, #71b245 100%);
	font-weight: var(--font-bd);
    color: var(--color-white);
}

/* 전용설비 등 서브: Figma 전용설비 타이틀 스펙 (50px, Bold, black) */
.sub-hero .page-title {
	font-size: 5rem;
	font-weight: var(--font-bd);
	color: var(--color-black);
	letter-spacing: -0.02em;
	transition: opacity 0.25s ease, letter-spacing 0.25s ease;
}

.sub-hero .page-title:hover {
	opacity: 0.88;
}

.sub-hero .breadcrumbs-hbgr .bc-item>button:hover,
.sub-hero .breadcrumbs-hbgr .home-link:hover {
	opacity: 0.9;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width: 1460px) {
	.sub-hero .inner {
		padding-left: var(--header-inner-padding);
		padding-right: var(--header-inner-padding);
	}
}
@media screen and (max-width: 1280px) {
	.sub-hero {
		padding-top: var(--header-hei);
		overflow: visible;
	}

	.sub-hero .inner {
		padding-top: 4.4rem;
		row-gap: 1.6rem;
	}

	.sub-hero .page-title {
		font-size: 4.2rem;
	}

	.sub-hero .inner #path .plink {
		font-size: 1.6rem;
		gap: 0 3rem;
	}


	.sub-hero .inner #lnb_con .lnb>ul>li a {
		font-size: var(--rem-18);
		padding: 0.85rem 3.6rem;
	}
}

@media screen and (max-width: 800px) {
	.sub-hero {
		padding-top: var(--header-hei);
		overflow: visible;
	}

	.sub-hero .inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"path"
			"title"
			"lnb";
		padding-top: 3.2rem;
		row-gap: 1.2rem;
	}

	.sub-hero .page-title {
		font-size: 3.2rem;
	}

	.sub-hero .inner #path .plink {
		font-size: 1.5rem;
		gap: 0 2.4rem;
	}

	.sub-hero .inner #path .plink li:after {
		top: 0.8rem;
		left: -1.25rem;
	}

	
	.sub-hero .inner #lnb_con .lnb4>ul>li{
		width: 25%;
	}
	.sub-hero .inner #lnb_con .lnb5>ul>li{
		width: 20%;
	}
	.sub-hero .inner #lnb_con .lnb4>ul>li a,
	.sub-hero .inner #lnb_con .lnb5>ul>li a{
		width: 100%;
		padding: 0.85rem 2rem;
	}
}

@media screen and (max-width: 600px) {
	.sub-hero {
		padding-top: var(--header-hei);
		overflow: visible;
	}

	.sub-hero .inner {
		padding-top: 2.8rem;
		row-gap: 1rem;
	}

	.sub-hero .page-title {
		font-size: 2.6rem;
	}

	#lnb_con{display: none;}

	.sub-hero .inner #path .plink {
		font-size: 1.4rem;
		gap: 0 2.1rem;
	}

	.sub-hero .inner #path .plink li:after {
		top: 0.65rem;
		left: -1.1rem;
	}
}

#subvisual {
	position: relative;
	z-index: 2;
	height: var(--sub-visual-hei);
	display: flex;
	flex-direction: column;
	justify-content: center;
	top: 0;
	margin-top: calc(var(--header-hei, 10rem) + 40px);
	box-sizing: border-box;
	border-radius: 2rem;
}

#subvisual .sv-box {
	position: relative;
	width: 100%;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.svis_img {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	animation: fade 1s ease-in-out;
	/* animation: blurs 1s; */
	/* transform: scale(1.0, 1.0) rotate(0.002deg); */
}

.visual_center {
	background-image: url('../../lib/images/center/sub_visual.jpg?v=0201');
	background-repeat: no-repeat;
}

.visual_curriculum {
	background-image: url('../../lib/images/curriculum/sub_visual.jpg?v=0201');
	background-repeat: no-repeat;
}

.visual_facilities {
	background-image: url('../../lib/images/facilities/sub_visual.jpg?v=0201');
	background-repeat: no-repeat;
}

.visual_community {
	background-image: url('../../lib/images/community/sub_visual.jpg?v=0201');
	background-repeat: no-repeat;
}


#subvisual .inner .sv-title {
	text-align: center;
}

.sv-box .inner .sv-title h3 {
	position: relative;
	font-size: var(--rem-65);
	font-weight: var(--font-bd);
	color: var(--color-white);
	text-transform: capitalize;
	text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
}

.svis_tit {
	text-align: var(--text-ag-left);
	color: var(--color-white);
	text-shadow: 2px 0px 1px rgba(0, 0, 0, 0.3)
}

.svis_tit h3.svtit_h3 {
	/*	font-family: var(--font-nexonlv2);*/
	font-size: var(--rem-30);
	font-weight: var(--font-bd);
	line-height: 1.5;
}

.svis_tit h3 span {
	display: block;
	font-size: var(--rem-50);
}

/* 애니메이션 */
#subvisual .sv-title h3 {
	opacity: 0;
	transform: translateY(-50px);
}

#subvisual .active .sv-title h3 {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.5s;
	-webkit-transition: all 0.7s 0.5s;
}

@keyframes point {
	0% {
		transform: scaleX(0)
	}

	100% {
		transform: scaleX(1)
	}
}

@keyframes blurs {
	0% {
		filter: blur(15px);
		transform: scale(1.2)
	}

	100% {
		filter: blur(0);
		transform: scale(1)
	}
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:1400px) {
	.sv-box .inner .sv-title h3 {
		font-size: var(--rem-60);
	}

	.svis_tit h3.svtit_h3 {
		font-size: var(--rem-24);
	}

	.svis_tit h3 span {
		font-size: var(--rem-40);
	}
}

@media screen and (max-width:800px) {
	#subvisual .sv-box .inner {
		display: block;
		height: auto;
		padding-top: var(--rem-40);
		padding-bottom: var(--rem-40);
	}

	#subvisual .sv-box .inner .sv-title {
		display: block;
		margin-top: 3rem;
	}

	.sv-box .inner .sv-title h3 {
		font-size: var(--rem-50);
	}

	.svis_tit h3.svtit_h3 {
		font-size: 3.6rem;
	}
}

@media screen and (max-width:640px) {
	#subvisual {
		margin-top: calc(var(--header-hei, 10rem) + 25px);
		border-radius: 1.5rem;
	}

	.sv-box .inner .sv-title {
		margin-top: 2rem;
	}

	.sv-box .inner .sv-title h3 {
		font-size: var(--rem-40);
	}

	.svis_tit h3.svtit_h3 {
		font-size: 2.5rem;
	}
}

@media screen and (max-width:450px) {
	.sv-box .inner .sv-title {
		margin-top: 1rem;
	}

	.sv-box .inner .sv-title h3 {
		font-size: 3.5rem;
	}

	.svis_tit h3.svtit_h3 {
		font-size: 2rem;
	}
}

/* ==================================================
	타이틀
================================================== */
.sub_tit {
	padding-bottom: var(--rem-40);
	text-align: center;
}

.sub_tit>span {
	position: relative;
	display: inline-block;
	font-size: var(--rem-40);
	font-weight: var(--font-bd);
	color: var(--color-black);
	text-transform: capitalize;
}

/* 애니메이션 */
.sub_tit {
	opacity: 0;
	transform: translateY(30px);
}

.sub_tit.active {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.6s;
	-webkit-transition: all 0.7s 0.6s;
}

/* ==================
	반응형CSS
=====================*/
@media screen and (max-width:1280px) {
	.sub_tit>span {
		font-size: var(--rem-40);
	}

	.sub_tit {
		padding-bottom: var(--rem-40);
	}
}

@media screen and (max-width:800px) {
	.sub_tit>span {
		font-size: 3.5rem;
	}

	.sub_tit {
		padding-bottom: 2rem;
	}
}

@media screen and (max-width:450px) {
	.sub_tit>span {
		font-size: var(--rem-30);
	}

	.sub_tit {
		padding-bottom: var(--rem-20);
	}
}

/* ==================================================
	탑 스크롤 버튼 (.copy-top): 스크롤 시에만 표시
================================================== */
.copy-top {
	position: fixed;
	right: 3rem;
	bottom: 3rem;
	width: 5.6rem;
	height: 5.6rem;
	background: #474747;
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	cursor: pointer;
	z-index: 90;
	font-size: 1.4rem;
	font-weight: var(--font-sb);
	border: none;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.copy-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.copy-top:hover {
	background: #333;
}

.copy-top .xi-angle-up-thin {
	font-size: 2.2rem;
	line-height: 1;
}

.copy-top__txt {
	font-size: 1.1rem;
	letter-spacing: 0.02em;
}

@media screen and (max-width: 850px) {
	.copy-top {
		right: 2rem;
		bottom: 2rem;
		width: 5rem;
		height: 5rem;
		font-size: 1.2rem;
	}

	.copy-top .xi-angle-up-thin {
		font-size: 2rem;
	}
}

/* ==================================================
	푸터 (Figma node-id 41:623)
================================================== */
#footerW .footer {
	background: rgba(0, 0, 0, 0.05);
	padding: 4rem 0;
}

#footerW .footer-inner {
	margin: 0 auto;
	width: 100%;
	max-width: var(--px-base);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#footerW .footer-policy,
#footerW .footer-address,
#footerW .copyright {
	margin: 0;
	font-style: normal;
	line-height: 1.5;
	word-break: keep-all;
}

#footerW .footer-policy {
	font-size: 1.6rem;
	color: #212529;
}

#footerW .footer-address {
	font-size: var(--rem-14);
	color: #212529;
}

#footerW .copyright {
	padding-top: 1rem;
	font-size: var(--rem-14);
	color: #868686;
}

#footerW .footer-policy a {
	color: inherit;
	text-decoration: none;
}

#footerW .footer-policy a:hover {
	text-decoration: underline;
}

#footerW .divider {
	display: inline-block;
	margin: 0 1.2rem;
	background: #A8B1B9;
	width: 2px;
	height: 1.4rem;
	vertical-align: middle;
}

@media screen and (max-width: 1600px) {
	#footerW .footer-inner {
		padding: 0 var(--header-inner-padding);
	}
}

@media screen and (max-width: 1024px) {
	#footerW .footer {
		padding: 3.2rem 0;
	}

	#footerW .footer-policy {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 768px) {
	#footerW .footer-inner {
		gap: 1.4rem;
	}

	#footerW .footer-policy,
	#footerW .footer-address,
	#footerW .copyright {
		font-size: 1.3rem;
		text-align: center;
	}

	#footerW .divider {
		margin: 0 0.6rem;
	}
}

@media screen and (max-width: 640px) {
	#footerW .footer {
		padding: 2.4rem 0;
	}

	#footerW .footer-policy,
	#footerW .footer-address,
	#footerW .copyright {
		font-size: 1.2rem;
	}
}