@charset "utf-8";

/* =========================
   공통
========================= */
a,
button {
	transition: all 400ms cubic-bezier(.16, 1, .64, 1);
	transition-timing-function: cubic-bezier(.16, 1, .64, 1);
}

img {
	max-width: 100%;
}

.wrap {
	width: clamp(0px, 100%, 100%);
	margin: 0 auto;
	padding: 0 10rem;
}

.main_wrap {
	width: clamp(0px, 100%, 100%);
	margin: 0 auto;
}


/* =========================
   헤더영역
========================= */
/* HEADER */
#fs_header {
	background: #fff;
}

#fs_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 10rem;
	padding:0 10rem;
}

@media only screen and (max-width:1799px) {}

@media only screen and (max-width:1399px) {}

@media only screen and (max-width:1023px) {
	#fs_head {
		display: none;
	}
}


/* =========================
   헤더영역
========================= */
/* HEADER */
#fs_header {background:#fff;}
#fs_head {display:flex;justify-content:space-between;align-items:center;height:10rem;}
@media only screen and (max-width:1799px) {
}
@media only screen and (max-width:1399px) {
}
@media only screen and (max-width:1023px) {
	#fs_head {display:none;}
}

/* 로고 */
#fs_head .logo a {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 헤더메뉴 */
#fs_head .head_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8rem;
}

#fs_head .fs_top_menu .lnb {
	display: flex;
	gap: 5.5rem;
}

#fs_head .fs_top_menu .lnb>li {
	position: relative;
	line-height: 7rem;
	transition: all .4s ease-in-out;
	color: var(--black);
}

#fs_head .fs_top_menu .lnb .lnb_title {
	position: relative;
	z-index: 20;
	display: block;
	font-weight: 600;
	font-size: 2rem;
	letter-spacing: -0.04em;
}

#fs_head .fs_top_menu .lnb .lnb_title.hov {
	color: var(--primary) !important;
}

#fs_head .fs_top_menu .lnb .lnb_title::before {
	position: absolute;
	top: 1.5rem;
	left: 0;
	content: "";
	width: 0;
	height: 4px;
	background: var(--primary);
	transition: width .4s ease-in-out;
}

#fs_head .fs_top_menu .lnb .lnb_title.hov::before {
	width: 50%;
}

#fs_head.on .fs_top_menu .lnb .lnb_title {
	color: var(--black);
}

/* 2뎁스 */
#fs_head .lnb_layer01 {
	display: none;
	position: absolute;
	left: -4rem;
	z-index: 10;
	min-width: 100%;
	width: max-content;
	padding: 2.5rem 3rem;
	background: rgba(0, 0, 0, .8);
	border-radius: .5em;
}

#fs_head .lnb_layer01 li a {
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.2;
	color: rgba(255, 255, 255, .9);
	padding: 0 1rem;
}

#fs_head .fs_top_menu>ul>li.hov .lnb_layer01 a:hover {
	color: var(--primary);
	background: var(--wm10);
	border-radius: .2em;
}

@media only screen and (max-width:1699px) {
	#fs_head .head_right {
		gap: 6rem;
	}

	#fs_head .fs_top_menu .lnb {
		gap: 3.5rem;
	}
}

@media only screen and (max-width:1499px) {
	#fs_head .head_right {
		gap: 4rem;
	}
}

@media only screen and (max-width:1299px) {
	#fs_head .head_right {
		gap: 3rem;
	}
	#fs_head {
		padding: 0 2rem;
	}
	.wrap {
		padding: 0 2rem;
	}
}

/* 글로벌 */
.global_box {display:flex;flex:0 0 auto;align-items:center;gap:.5rem;}


/* 언어선택 */
.lang_box {
	position: relative;
	height: 100%;
}

.lang_box button {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-weight: 600;
	color: var(--black);
	padding: 0 3rem;
	height: 100%;
	line-height: 2.5;
	border-radius: 3rem;
	border: 1px solid var(--black);
}

.lang_box i {
	transition: all 400ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
	transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
	line-height: 1;
}

.lang_box .lang span {
	position: relative;
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
}

.lang_box .lang_dep_box {
	opacity: 0;
	visibility: hidden;
	width: 100%;
	padding: 1rem;
	text-align: center;
	position: absolute;
	top: 100%;
	background: #fff;
	color: #fff;
	box-shadow: 5px 7px 15px rgba(0, 0, 0, .1);
	transition: all .4s;
	-webkit-transition: all .4s;
	font-size: 1.5rem;
}

.lang_box.on i {
	transform: rotate(180deg);
}

.lang_box.on .lang_dep_box {
	display: block;
	background: #fff;
	border: 1px solid #000;
	color: var(--black);
	opacity: 1;
	visibility: visible;
	position: absolute;
	z-index: 10;
	border-radius: 1rem;
}

.lang_box.on .lang_dep_box li {
	margin: 1rem 0;
}

.lang_box.on .lang_dep_box li.select {
	font-weight: 700;
	color: var(--primary);
}

.lang_box.on .lang_dep_box a {
	display: block;
}

.lang_box.on .lang_dep_box a:is(:hover, :focus, :active) {
	text-decoration: underline;
}

@media only screen and (max-width:1299px) {
	.lang_box button {
		padding: 0 2rem;
	}
}

@media only screen and (max-width:1199px) {
	.lang_box button {
		padding: 0 1rem;
	}
}

/* 사이트맵 버튼 */
#pfBtn {
	display: flex;
	width: 5.3rem;
	height: 5rem;
	position: relative;
	top: 0;
	right: 0;
	z-index: 101;
}

#pfBtn span {
	display: block;
	position: relative;
	margin: auto;
	width: 6px;
	height: 6px;
	background: #000;
	border-radius: 50%;
}

#pfBtn span:before,
#pfBtn span:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	width: 6px;
	height: 6px;
	background: #000;
	border-radius: 50%;
}

#pfBtn span:before {
	top: -9px;
}

#pfBtn span:after {
	top: 9px;
}

/*#pfBtn.active {background:#fff;}*/
#pfBtn.active span {
	border: none;
	background: transparent;
}

#pfBtn.active span:before,
#pfBtn.active span:after {
	left: 50%;
	top: 50%;
	width: 30px;
	height: 3px;
	border-radius: 0;
	background: var(--white);
}

#pfBtn.active span:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

#pfBtn.active span:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* 사이트맵 오픈 */
#pfWrap {
	display: none;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 100;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	backdrop-filter: blur(1rem);
}

#pfWrap .bg_wrap {
	position: absolute;
	z-index: 1;
	width: 30%;
	margin: 0 auto;
}

#pfWrap .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100vh;
	margin-left: 0;
	background: url('../../images/fs/layout/sitemap_industrial_tanks.png') no-repeat 72% bottom/cover;
}

.pf_cate {
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	height: 100%;
	background-color: var(--bm60);
}

.pf_cate .pf_mn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	padding: 0 15%;
	max-height: 82%;
	overflow-y: auto;
}

.pf_cate .pf_1dep {
	opacity: 0;
	margin-left: 10rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.pf_cate .pf_1dep+li {
	margin-top: 3rem;
}

.pf_cate .pf_1dep>a {
	display: block;
	width: max-content;
	font-size: 3.2rem;
	font-weight: 600;
	color: #fff;
}

.pf_cate .pf_1dep ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
	gap: .5rem 0;
}

.pf_cate .pf_1dep ul li {
	margin-right: 2.5rem;
}

.pf_cate .pf_1dep ul a {
	opacity: 0.9;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
}

.pf_cate .pf_1dep ul a:hover {
	opacity: 1;
}

/* 헤더 스크롤 */
#fs_header:has(#fs_head.fix) {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
}

/* 반응형 메뉴 */
#topmenuM {
	display: none;
}

@media only screen and (max-width:1023px) {
	#topmenuM {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		height: 8rem;
		line-height: 1.8;
		background: #fff;
		padding: 0 2rem;
	}

	/* 로고 */
	#m_logo {
		position: relative;
		display: flex;
		align-items: center;
		width: clamp(14rem,16vw,17rem);
		max-width: calc(100% - 7rem);
	}

	#m_logo a {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* 모바일 메뉴버튼 */
	#m_navBtn {
		position: absolute;
		top: 35px;
		right: 2rem;
		transform: translateY(-50%);
		z-index: 5;
		width: 30px;
		height: 30px;
		cursor: pointer;
	}

	#m_navBtn span {
		display: block;
		position: relative;
		top: 50%;
		left: 50%;
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background-color: var(--black);
		box-shadow: 0 -9px 0 var(--black), 0 9px 0 var(--black);
		transform: translate(-50%, -50%);
		-webkit-transition: all .1s;
		transition: all .1s;
	}

	#m_navBtn span:before,
	#m_navBtn span:after {
		display: block;
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		width: 30px;
		height: 3px;
		background-color: var(--black);
		opacity: 0;
		transform: translate(-50%, -50%) rotate(45deg);
		-webkit-transition: all .1s;
		transition: all .1s;
	}

	#m_navBtn span:after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#m_navBtn.on {
		position: fixed;
	}

	#m_navBtn.on span {
		background-color: transparent;
		box-shadow: none;
	}

	#m_navBtn.on span:before,
	#m_navBtn.on span:after {
		opacity: 1;
	}

	/* 모바일 메뉴 */
	#navWrap {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 4;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, .7);
	}

	#navWrap .inner {
		display: flex;
		flex-direction: column;
		overflow-y: scroll;
		opacity: 0;
		position: fixed;
		right: -40px;
		top: 0;
		z-index: 6;
		min-width: 30rem;
		width: 75%;
		height: 100%;
		padding: 6rem 0;
		background-color: #fff;
		-webkit-transition: all .1s;
		transition: all .1s;
	}

	#navWrap.on .inner {
		opacity: 1;
		right: 0;
		-webkit-transition: all .4s;
		transition: all .4s;
	}

	#navWrap .inner:before,
	#navWrap .inner:after {
		opacity: 0;
		display: block;
		position: fixed;
		top: 0;
		right: -40px;
		z-index: 1;
		content: "";
		min-width: 30rem;
		width: 70%;
		height: 60px;
		background-color: #fff;
		-webkit-transition: all .1s;
		transition: all .1s;
	}

	#navWrap .inner:after {
		top: auto;
		bottom: 0;
	}

	#navWrap.on .inner:before,
	#navWrap.on .inner:after {
		opacity: 1;
		right: 0;
		-webkit-transition: all .4s;
		transition: all .4s;
	}

	#navWrap .inner .mo_hd_copy {
		position: static;
		order: -1;
		z-index: 2;
		box-sizing: border-box;
		min-width: 0;
		width: 100%;
		padding: 1.5rem 3rem;
		border-bottom: 1px solid var(--primary);
		font-size: 13px;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	#navWrap .inner .mo_hd_copy > span {
		position: absolute;
		left: 3rem;
		bottom: 1.5rem;
		z-index: 3;
	}

	#navWrap .inner .mo_hd_copy .m_lang_box {
		margin-left: auto;
	}

	/* 언어선택 */
	.m_lang_box {
		display: flex;
		gap: 2rem;
	}

	.m_lang_box .select {
		font-weight: 700;
		color: var(--primary);
	}

	/* 대분류 */
	#topmenuM .m_lnb .m_bmenu {
		display: block;
		position: relative;
		width: 100%;
		height: 7rem;
		font-weight: 600;
		font-size: 1.8rem;
		color: var(--primary);
		line-height: 7rem;
		padding: 0 1rem 0 3rem;
		border: none;
		border-bottom: 1px solid #ddd;
		background: none;
	}

	#topmenuM .m_lnb li:has(.m_smenu) .m_bmenu:after {
		float: right;
		content: "\ea4e";
		font-family: 'remixicon';
		font-size: 2rem;
	}

	#topmenuM .m_lnb li:has(.m_smenu) .m_bmenu.on:after {
		content: "\ea78";
	}

	/* 소분류 */
	#topmenuM .m_smenu {
		display: none;
		padding: 2rem 2rem 2rem 3rem;
		border-bottom: 1px solid #ddd;
		background-color: var(--wm10);
	}

	#topmenuM .m_smenu li a {
		font-weight: 500;
		font-size: 1.6rem;
	}
}
/* 햄버거 메뉴 맨밑 하단 텍스트*/
@media only screen and (max-width:600px) {
	#navWrap .inner .mo_hd_copy {width:100%;}
}
@media only screen and (max-width:375px) {
	#navWrap .inner .mo_hd_copy {min-width:0;width:100%;}
}

/* =========================
   컨텐츠 영역
========================= */
/* 컨텐츠 상단 */
#fs_container_wrap {
	overflow: hidden;
}

/* 서브비주얼 */
.fs_sub_visual .svis_box {
	display: flex;
	width: 100%;
	height: 10rem;
	/*background:url("../../images/fs/layout/svis_txtbg.png") no-repeat right bottom / cover;*/
}

.fs_sub_visual .svis_bg {
	height: 35rem;
	/* background: url("../../images/fs/layout/svis_bg01.jpg") no-repeat scroll center 90%/100% 100%; */
	background-size: 100% auto;
	overflow: hidden;
}

@media only screen and (max-width:1203px) {
	.fs_sub_visual,
	.sub_depth_nav {
		border-top: 1px solid #ddd;
	}
}

@media only screen and (max-width:767px) {
	.fs_sub_visual {
		border-bottom: 1px solid #ddd;
	}

	.fs_sub_visual .svis_bg {
		display: block;
		height: 15rem;
		background-size: 100% auto;
	}
}


/* 서브메뉴 */
.sub_depth_nav .location_wrp > .box {width:min(100%,120rem);margin:0 auto;}
.sub_depth_nav .snb_menu {margin-top:2.5rem;}
.snb_menu {margin-top: 5rem;}
.snb_menu > ul.dep1 {display:flex;align-items:center;justify-content:flex-start;flex-wrap:wrap;gap:4rem;}
.snb_menu .dep1 > li:first-child {font-size:1.8rem;}
.snb_menu .dep1 > li {position:relative;font-weight:600;font-size:1.8rem;}
.snb_menu .dep1 > li + li:after {content:'';position:absolute;left:-2rem;top:50%;transform:translateY(-50%);width:4px;height:4px;border-radius:50%;background:var(--wm50);}
.snb_menu .dep1 > li > a {position:relative;display:block;width:100%;}
.snb_menu .dep1 ul.dep2 {position:absolute;left:-20px;top:4rem;width:100%;min-width:19rem;padding:2rem 2.5rem;background: rgba(0, 0, 0, 0.8);border-radius:1.5rem;z-index:3;}
.snb_menu .dep1 > li:last-child a {color:var(--primary);}
.snb_menu .dep1 ul.dep2 > li a {display:block;padding:5px 0;color:#fff;font-weight:500;transition:all .4s;-webkit-transition:all .4s;}
.snb_menu .dep1 ul.dep2 > li a:hover {color:#fff;text-decoration:underline;}

@media only screen and (max-width:1203px){
	.fs_sub_visual .svis_box {height:7rem;}
	.fs_sub_visual .snb_menu {margin-top:2.5rem;}
}

@media only screen and (max-width:767px){
	.fs_sub_visual .svis_box {height:8rem;}
	.fs_sub_visual .snb_menu {margin-top:3rem;}
	.sub_depth_nav {min-height:6rem;padding-bottom:0;}
	.sub_depth_nav .svis_box {align-items:center;box-sizing:border-box;height:6rem;min-height:0;padding:0;}
	.sub_depth_nav .snb_menu {margin-top:2rem;}
}

@media only screen and (max-width:560px){
	.snb_menu > ul.dep1 {display:flex;align-items:center;justify-content:flex-start;flex-wrap:nowrap;gap:3rem;}
	.snb_menu .dep1 > li {display:block;flex:0 0 auto;}
	.snb_menu .dep1 > li:last-child {width:auto;margin-top:0;}
}

/* con_header */
.con_header {margin-top: 15rem;}
.con_header h3 {
	display: block;
	font-size: 6rem;
	font-weight: 800;
	color: var(--white);
	line-height: normal;
}

@media only screen and (max-width:767px) {
	.con_header {margin:5rem 0;}
	.con_header h3 {font-size: 3rem;margin-top: 8rem;text-align: center;}
}

/* 오른쪽영역 */
.fs_content {overflow: hidden;width: auto;}

/* 실컨텐츠영역 */
.con_body {padding: 10rem 0;}
@media only screen and (max-width:767px) {
	.con_body {padding: 5rem 0;}
}

/* =========================
   푸터영역
========================= */
#fs_footer {
	width: 100%;
	padding: 6rem 10rem 3rem;
	color: #222;
	border-top: 0px solid #ddd;
	background: rgba(0, 0, 0, 0.1);
}

#fs_footer .foot_logo {
	width: clamp(14rem, 16vw, 17rem);
	margin-bottom: 0rem;
	/*filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(356deg) brightness(101%) contrast(102%);*/
}

#fs_footer .info_wrap {
	display: block;
	justify-content: space-between;
	align-items: flex-end;
}

#fs_footer .info_wrap .left {
	display: flex;
	flex-direction: column;
}

#fs_footer .info_wrap .foot_menu {
	justify-content: flex-end;
	display: flex;
	gap: 3.5rem;
	margin-bottom: 2rem;
}

#fs_footer .info_wrap .foot_menu a {
	font-size: 1.6rem;
	font-weight: 600;
	color: rgba(0, 0, 0, .8);
	transition: all .3s ease;
}

#fs_footer .info_wrap .foot_menu a:is(:hover, :focus, :active) {
	text-decoration: underline;
	color: #222;
}

/* 푸터정보 */
#fs_footer .info_wrap .info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 4rem;
	row-gap: 0.8rem;
	font-size: 1.5rem;
	line-height: 1.7;
	color: rgba(0, 0, 0, .6);
}

#fs_footer .info_wrap .info li.address {
	flex-grow: 1;
	width: 100%;
	font-weight: 500;
	color: rgba(0, 0, 0, .8);
}

#fs_footer .info_wrap .info li span {
	display: inline-block;
	width: 11rem;
	color: var(--primary);
	letter-spacing: 0.02em;
}

#fs_footer .copy {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 3rem;
	border-top: 1px solid rgba(0, 0, 0, .2);
	padding-top: 3rem;
	font-weight: 600;
	font-size: 1.4rem;
	opacity: .8;
}

/* 맨위로 */
#fs_footer .toTop {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7rem;
	height: 7rem;
	border-radius: 1rem;
	color: #fff;
	text-align: center;
	background: var(--primary);
}

#fs_footer .toTop svg {
	width: 2.5rem;
}

#fs_footer .toTop:is(:hover, :focus, :active) {
	background: var(--bm80);
}

/* 반응형 */
@media only screen and (max-width:1399px) {
	#fs_footer {
		padding: 6rem 2rem 3rem;
	}
}

@media only screen and (max-width:1023px) {
	#fs_footer .foot_logo {
		margin-bottom: 4.5rem;
	}

	#fs_footer .info_wrap .foot_menu {
		gap: 2.5rem;
		margin-bottom: 1.5rem;
	}

	#fs_footer .info_wrap .foot_menu a {
		font-size: 1.5rem;
	}
}

@media only screen and (max-width:767px) {
	#fs_footer {
		padding: 5rem 2rem 2rem;
	}

	#fs_footer .foot_logo {
		margin-bottom: 3.5rem;
	}

	#fs_footer .info_wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 3.5rem;
	}

	#fs_footer .info_wrap .foot_menu {
		flex-wrap: wrap;
		gap: 1.2rem 2rem;
		margin-bottom: 2.5rem;
	}

	#fs_footer .info_wrap .info {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
	}

	#fs_footer .info_wrap .info li span {
		display: block;
		margin-bottom: 0.2rem;
	}

	#fs_footer .info_wrap .info li.address {
		margin-bottom: 0.5rem;
	}

	#fs_footer .info_wrap .right {
		width: 100%;
		display: flex;
		justify-content: flex-end;
		position: fixed;
		z-index: 10;
		bottom: 2rem;
		right: 2rem;
	}

	#fs_footer .copy {
		margin-top: 4rem;
	}
}

@media only screen and (max-width:480px) {
	#fs_footer .info_wrap .foot_menu {
		gap: 1rem 1.8rem;justify-content: flex-start;
	}

	#fs_footer .copy {
		gap: 2rem;
		font-size: 1.3rem;
	}

	#fs_footer .toTop {
		width: 6rem;
		height: 6rem;
	}
}



