@charset "utf-8";

/* ==================================================
	body 공통 속성
================================================== */
/* 기본 폰트 및 사이즈 설정 */
html {
	font-size: 10px;
}

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-gray4);
	background: var(--color-white);
	word-break: keep-all;
}

.hid {
	position: absolute;
	left: -9999%;
	font-size: 0;
	line-height: 0;
	text-indent: -9999rem;
}


a:focus,
input.type-text:focus, 
textarea:focus, 
textarea.type-text:focus { background-color: #ecf0f8; border:solid 2px var(--brand-color-sub) ;-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)
}

a, a:link, a:hover, a:active, a:visited { color: inherit; text-decoration: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
a:active{ }
.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:1700px) {
	html {
		font-size: 9px;
	}
}

@media (max-width:1280px) {
	html {
		font-size: 8.5px;
	}
}

@media (max-width:1000px) {
	html {
		font-size: 8px;
	}
}

@media (max-width:750px) {
	html {
		font-size: 7.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);
	/*margin: 0 auto;
	height: auto !important;
	background-position: center top;
	overflow-x: hidden;*/
}

/* ==================================================
	컨텐츠
================================================== */
#container {
	clear: both;
	position: relative;
	min-width: var(--rem-320);
	background: url('../images/common/sub_bg.png') center 13.5rem  no-repeat;
}
#container.mcontents {
	background: unset;
}

#container.bg_chang2 {
	background: url('../images/common/sub_bg02.png') center 42rem  no-repeat;
}
#container.bg_chang4 {
	background: url('../images/common/sub_bg02.png') center 42rem  no-repeat;
}

.container._sub {
	padding-top: var(--header-hei);
}

.container._sub #header::before {
	opacity: 1;
}

.container._sub #header #logo .hov {
	display: block;
}

.container._sub #header #logo .on {
	display: none;
}

.container._sub #header .h_inner {
	background-color: var(--color-white);
}

.cont_detail {
	padding: 8rem 0 10rem;
}

.cont_detail2 {
	padding: 0 0 8rem 0;
	overflow: hidden;
}

.cont_detail3 {
	padding: 6rem 0 0 0;
}

.inner {
	position: relative;
	width: 100%;
	max-width: var(--px-base);
	margin: 0 auto;
	padding-left: var(--spacing);
	padding-right: var(--spacing);
}

/* 모바일CSS */
@media screen and (max-width:800px) {
	.cont_detail3 {
		padding-top: 1rem;
	}
}

@media screen and (max-width:640px) {
	.cont_detail {
		padding-top: 4rem;
		padding-bottom: 6rem;
	}

	.cont_detail2 {
		padding-top: 1rem;
		padding-bottom: 6rem;
	}

	.cont_detail3 {
		padding-top: 4rem;
		padding-bottom: 0;
	}
}

/* ==================================================
	경로
================================================== */
#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.3rem;
	left: -2rem;
	width: 0.5248rem;
	height: 0.901rem;
	background: url('../images/gnb/arrow.svg');
	background-repeat: no-repeat;
	background-size: cover;
}

#path .plink li:first-child::after {
	display: none;
}

#path .plink li img {
	width: 100%;
	max-width: 1.8142rem;
}

#path .plink .last {
	font-weight: var(--font-bd);
}

/* 모바일 CSS */
@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: 2rem;
	}
}

/* ==================================================
	비주얼
================================================== */
#subvisual {
	position: relative;
	z-index: 2
}

#subvisual .sv-box {
	position: relative;
	width: 100%;
}

#subvisual .sv-box .inner {
	padding-top: 7rem;
	padding-bottom: 7rem;
    background: url('../images/common/sv-box01.png') center no-repeat;
    background-size: 18%;
    background-position-x: 100%;
    background-position-y: 5rem;
}


#subvisual .sv-box.subvis_nont .inner {
	padding: 5rem 0 4rem 0;
}

#subvisual .sv-box .inner .sv-title {
	display: flex;
	align-items: flex-end;
	margin-top: var(--rem-24);
}

.sv-box .inner .sv-title h3 {
	position: relative;
	font-family: var(--font-nexonlv2);
	font-size: 4.8rem;
	font-weight: var(--font-bd);
	color: var(--color-black);
}

.svisual {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-top: 50rem;
    padding-left: var(--spacing);
    padding-right: var(--spacing);
}

.svisual.bizvisual {
	padding-top: 45rem;
}

.svis_img {
	width: 100%;
    height: calc(100% - 13rem);
    position: absolute;
    bottom: 0;
    left: 2rem;
    z-index: -1;
    border-radius: 20rem;
}

.svis_img {
    width: calc(100% - 4rem);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	animation: blurs 1s;
}

.visual_kdc {
	background-image: url('../images/kdc/sub_visual.jpg?v=202505');
	background-repeat: no-repeat;
	background-color: #040a16;
}

.visual_pr {
	background-image: url('../images/pr/sub_visual.jpg');
	background-repeat: no-repeat;
	background-color: #080708;
}

.svis_tit {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: var(--px-base);
    padding-left: var(--spacing);
	text-align: var(    --text-ag-left);
	color: var(--color-black);
/*	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);
}

/* 주요사업 텍스트 */
.svis_biztit {
	position: absolute;
	top: 36%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: var(--px-base);
	color: var(--color-white);
	text-shadow: 2px 0px 1px rgba(0, 0, 0, 0.3)
}

.svis_biztcon {
	width: 46%;
}

.svis_biztcon>h1 {
	font-size: 7rem;
	font-family: var(--font-nexonlv2);
	font-weight: var(--font-bd);
}

.svis_biztcon>h4 {
	font-size: 2.6rem;
	font-weight: var(--font-md);
	margin-top: 1.5rem;
}

.svis_biztcon>p {
	font-size: 1.8rem;
	margin-top: 3.6rem;
	line-height: 1.6;
	word-break: keep-all;
}

/* 애니메이션 */
.svisual .svis_tit h3.svtit_h3 {
	opacity: 0;
	transform: translateY(-50px);
}

.svisual.active .svis_tit h3.svtit_h3 {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.5s;
	-webkit-transition: all 0.7s 0.5s;
}

.svisual .svis_biztcon>h1 {
	opacity: 0;
	transform: translateY(-50px);
}

.svisual.active .svis_biztcon>h1 {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.5s;
	-webkit-transition: all 0.7s 0.5s;
}

.svisual .svis_biztcon>h4 {
	opacity: 0;
	transform: translateY(-50px);
}

.svisual.active .svis_biztcon>h4 {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.5s;
	-webkit-transition: all 0.7s 0.5s;
}

.svisual .svis_biztcon>p {
	opacity: 0;
	transform: translateY(-50px);
}

.svisual.active .svis_biztcon>p {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.8s;
	-webkit-transition: all 0.7s 0.8s;
}


@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:1600px) {
	.svis_tit {
		width: 96%;
	}

	.svis_biztit {
		width: 96%;
		margin: 0 auto;
		top: 20%;
	}
}

@media screen and (max-width:1400px) {
	#subvisual .sv-box .inner {
		display: block;
		height: auto;
		padding-top: var(--rem-40);
		padding-bottom: var(--rem-40);
	}

	#subvisual .sv-box.plant-box .inner {
		display: block;
		height: auto;
		padding: 3.4rem 0 1rem 0;
	}

	#subvisual .sv-box .inner .sv-title {
		display: block;
		margin-top: 3rem;
	}

	.sv-box .inner .sv-title h3 {
		font-size: 4rem;
	}

	.svisual {
		padding-top: 47rem;
	}

	.svisual.bizvisual {
		padding-top: 32rem;
	}

	.svis_tit h3.svtit_h3 {
		font-size: 3.0rem;
	}

	.svis_tit h3 span {
		font-size: var(--rem-40);
	}
	/* 주요사업 텍스트 */
	.svis_biztit {
		top: 38%;
	}

	.svis_biztcon {
		width: 100%;
	}

	.svis_biztcon>h1 {
		font-size: 6rem;
	}

	.svis_biztcon>h4 {
		font-size: 2rem;
		margin-top: 1.2rem;
	}

	.svis_biztcon>p {
		display: none;
	}
}

@media screen and (max-width:1100px) {
	#subvisual .sv-box .inner {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	
	.svisual {
		padding-top: 45rem;
	}

	.svis_tit h3.svtit_h3 {
		font-size: var(--rem-22);
	}
	.svis_tit h3 span {
		font-size: var(--rem-30);
	}
}

@media screen and (max-width:600px) {
	.sv-box .inner .sv-title {
		font-size: 2.6rem;
	}

	.sv-box .inner .sv-title h3 {
		font-size: 3.8rem;
	}

	.svisual {
		padding-top: 30rem;
	}

	#subvisual .sv-box .inner {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}

	.svisual.bizvisual {
		padding-top: 25rem;
	}

	.svis_tit h3.svtit_h3 {
		font-size: 2.5rem;
	}
}

@media screen and (max-width:480px) {

	.svisual {
		padding-top: 25rem;
	}

	#subvisual .sv-box .inner {
		padding-top: 4rem;
		padding-bottom: 2.4rem;
	}

	.svis_tit h3.svtit_h3 {
		font-size: 2rem;
	}

	.svis_tit h3.svtit_h3 span {
		display: inline-block;
        font-size: 2.5rem;
	}

	.svis_img {
		height: calc(100% - 11rem);
	}
}

/* ==================================================
	타이틀
================================================== */
.sub_tit {
	display: none;
	color: var(--color-black);
}

.sub_tit>span {
	position: relative;
	display: inline-block;
	font-size: 2.8rem;
	font-weight: var(--font-bd);
	color: var(--brand-color-main)
}

.sub_tit>span:after {
	display: none;
	content: '';
	position: absolute;
	background: var(--brand-color-main);
	width: 0.8rem;
	height: 0.8rem;
	right: -1.4rem;
	top: 50%;
	border-radius: 5rem;
	margin-top: 0.3rem;
}

/* 애니메이션 */
.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:1023px) {
	.sub_tit {
		display: block;
		margin-bottom: var(--rem-30);
	}
}
@media screen and (max-width:800px) {
	.sub_tit>span {
		font-size: var(--rem-26);
	}
}
@media screen and (max-width:450px) {
	.sub_tit>span {
		font-size: var(--rem-24);
	}
}

/* ==================================================
	카피라이터
================================================== */
#footerW {
	clear: both;
	width: 100%;
	background: var(--color-gray4);
}

.ft_inner {
	position: relative;
	width: 100%;
	max-width: var(--px-base);
	margin: 0 auto;
}

.footer_top .ft_top {
	padding-top: 2.7rem;
	padding-bottom: 2.7rem;
}

.footer_top .btn_top {
	position: absolute;
	right: 0;
	top: 0;
	width: 62px;
	height: 62px;
	background: rgba(255, 255, 255, 0.16);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 1.7rem;
	font-weight: var(--font-sb);
}

.footer_top .ft_top>div {
	display: flex;
    gap: 3rem;
    align-items: flex-end;
    justify-content: space-between;
}

.footer_top .ft_top h2 a {
	display: block;
	width: 24rem;
	height: 5.1rem;
	background: url('../images/gnb/logo.svg?=2025') no-repeat center;
	background-size: 100%;
}

.footer_top .ft_top div>ul {
}

.footer_bot {
	position: relative;
	width: 100%;
	border-top: 1px solid var(--color-gray3);
	padding: 3.5rem 0;
}

.caddress>ul {
	font-size: 1.5rem;
	color: var(--color-white);
}

.caddress>ul+ul {
	margin-top: 1.3rem;
}

.caddress>ul>li {
	position: relative;
	display: inline-block;
	padding-left: 1.2rem;
	padding-right: 1.2rem;
	font-weight: var(--font-lg);
}

.caddress>ul>li:after {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	right: 0;
	width: 1px;
	height: 1.4rem;
	background: var(--color-white);
}

.caddress>ul>li:last-child:after {
	display: none;
}

.caddress>ul>li:first-child {
	padding-left: 0;
}

.caddress>ul>li b {
	font-weight: var(--font-bd);
}

.copyright {
	position: absolute;
	right: 0;
	bottom: 0;
	color: #b0b0b0;
	font-size: 1.4rem;
}

.copy_utll{	
    display: flex;
    gap: 2rem;
    padding-bottom: 0.6rem;
	padding-right: 80px;
}
.copy_utll a{
    color: var(--color-white2);
}

.copy_utll a:link, 
.copy_utll a:hover, 
.copy_utll a:active, 
.copy_utll a:visited { 
	background: none;
border: none; }

/* 모바일CSS */
@media screen and (max-width: 1400px) {
	.ft_inner {
		width: 96%;
	}
}

@media screen and (max-width: 1200px) {
	.ft_inner {
		width: 94%;
	}
}

@media screen and (max-width: 900px) {
	.ft_bot {
		display: block;
	}
}

@media screen and (max-width:850px) {
	.footer_top .ft_top {
		padding-top: 3rem;
		padding-bottom: 2rem;
	}

	.footer_top .ft_top>div {
		flex-direction: column;
		align-items: center
	}

	.footer_top .btn_top {
		width: 50px;
		height: 50px;
		font-size: 1.4rem;
	}

	.footer_bot {
		padding-bottom: 3rem;
		text-align: center;
	}

	.caddress>ul {
		font-size: 1.4rem;
	}

	.caddress>ul>li:last-child {
		display: block;
		padding-left: 0;
		padding-right: 0;
		margin-top: 1rem;
	}

	.caddress>ul:first-child>li:nth-child(1):after {
		display: none;
	}

	.caddress>ul>li:nth-child(2):after {
		display: none;
	}

	.copyright {
		position: relative;
		margin-top: 2rem;
	}

	.copy_utll {
		padding-right: 0;
	}
}