@charset "utf-8";

/* ==================================================
	H E A D E R
================================================== */
/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transition: transform .25s, box-shadow .25s;
	z-index: 1500;
}

/* Header bar */
.header-bar {
	border-bottom: 1px solid rgba(255, 255, 255, .4);
	position: relative;
	/*	border-bottom: 1px solid rgba(255, 255, 255, 0);
	background-color: rgba(0, 0, 0, 0);*/
	/*background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.00) 100%);*/
	transition: background-color .25s ease;
}

.megamenu-bg {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0;
	background-color: rgba(255, 255, 255, .9);
	transition: height .25s ease;
}

.header-bar>.inner {
	max-width: unset;
	padding: 0 40px;
}

.header-bar-wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	height: 10rem;
}

.branding {
	z-index: 20;
}

.branding>a,
.branding>a>.logo {
	display: block;
	width: 100%;
	min-width: 226px;
	/* max-width: 13rem; */
	height: 4rem;
}

.home .header-bar {
	border-bottom-width: 1px;
	background-color: rgba(0, 0, 0, .12);
}

/* Main Navi */
.main-navigation {
	display: flex;
	justify-content: center;
	/*    justify-content: flex-end;*/
	width: 100%;
	height: 100%;
	padding: 0 0 0 6rem;
}

.main-nav {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	max-width: 100rem;
	width: 100%;
	height: 100%;
}

.main-nav>li {
	position: relative;
	width: 20%;
	height: 100%;
}

.main-nav>li>a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	min-width: 13rem;
	height: 100%;
	padding: 0;
	font-size: var(--rem-24);
	font-weight: 600;
	color: var(--color-black);
	transition: background-color .25s, color .25s;
}

.main-nav>li>.sub-nav {
	position: absolute;
	top: 11.0rem;
	left: 0;
	right: 0;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	/* padding: 2rem 0; */
	text-align: left;
	transition: visibility .25s, opacity .25s, height .25s, background-color .25s;

}

.main-nav .sub-nav li>a {
	position: relative;
	display: block;
	opacity: 1;
	padding: 0.4rem 0;
	font-size: var(--rem-18);
	font-weight: 500;
	line-height: 1.5;
	color: #444;
	letter-spacing: -0.25px;
	transition: color .25s;
}

.main-nav .sub-nav li>a:hover {
	color: var(--color-blue);
}

.main-nav .sub-nav .sub-nav {
	display: none;
	padding-left: 0.8rem;
}

.main-nav .sub-nav .sub-nav li>a {
	padding: 0.1rem 0;
	font-size: 1.5rem;
	font-weight: 400;
	color: #787878;
}

.main-nav .sub-nav .sub-nav li>a:hover {
	color: var(--color-green);
}

.main-nav .sub-nav .sub-nav li:last-child {
	margin-bottom: 1rem;
}

.main-nav .child_button {
	display: none;
}

.main-nav .main_hide {
	display: none;
}

/* Hover */
.main-nav>li>a:hover {
	color: var(--color-blue) !important;
}

/* Active */
/*.main-nav>li.act>a {
	color: var(--color-green) !important;
}*/

.main-nav .sub-nav li.act>a {
	color: var(--color-blue);
	text-decoration: underline;
}

/* Quick Menu */
.header-quick {
	display: flex;
}

.header-quick .quick-act {
	float: left;
}

.header-quick .quick-act a {
	font-weight: 300;
	font-size: 1.8rem;
	line-height: 1;
}

.header-quick .quick-act a img {
	margin-left: 5px;
	width: 12px;
}

.quick-sitemap,
.quick-nav {
	display: none;
}


/*a.bth-contact .qchole.qchole-floating {
	display: none;
}

.header.floating a.bth-contact .qchole.qchole-floating,
.header-bar.hover a.bth-contact .qchole.qchole-floating,
.header-bar.full-open a.bth-contact .qchole.qchole-floating {
	display: block;
}

.header.floating a.bth-contact .qchole.qchole-default,
.header-bar.hover a.bth-contact .qchole.qchole-default,
.header-bar.full-open a.bth-contact .qchole.qchole-default {
	display: none;
}

.bth-contact>.icon {
	display: inline-block;
	margin-right: 0.7rem;
	font-size: 1.6rem;
	vertical-align: middle;
}*/

/* .header.floating .language-switcher .btn-select-language>.icon,
.header-bar.hover .language-switcher .btn-select-language>.icon,
.header-bar.full-open .language-switcher .btn-select-language>.icon {
	color: #b4b4b4;
} */

.btn-all-menu {
	display: flex;
	align-items: center;
	position: relative;
	width: 22px;
	height: 16px;
	border: 0;
	outline: none;
	background-color: transparent;
}

.btn-all-menu>.lines {
	display: inline-block;
	width: 100%;
	height: 2px;
	background-color: var(--color-black);
}

.btn-all-menu>.lines::after,
.btn-all-menu>.lines::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--color-black);
}

.btn-all-menu>.lines::before {
	top: 0;
}

.btn-all-menu>.lines::after {
	bottom: 0;
}

/* Header Hover & Floating */
.home .header.floating {
	box-shadow: 0 3px 9px rgba(0, 0, 0, .15);
}

.header.floating .header-bar,
.header-bar.hover,
.header-bar.full-open {
	background-image: none;
	background-color: #fff;
}

.header.floating .header-bar {
	border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.branding .logo.logo-floating {
	display: none;
}

.header.floating .branding .logo.logo-floating,
.header-bar.hover .branding .logo.logo-floating,
.header-bar.full-open .branding .logo.logo-floating {
	display: block;
}

.branding .logo-default {
	display: block !important;
}

.header.floating .branding .logo-default,
.header-bar.hover .branding .logo-default,
.header-bar.full-open .branding .logo-default {
	display: none !important;
}

.header.floating .header-bar .main-nav>li>a,
.header-bar.hover .main-nav>li>a,
.header-bar.full-open .main-nav>li>a {
	color: #333;
}

/*.header.floating .btn-select-language,
.header-bar.hover .btn-select-language,
.header-bar.full-open .btn-select-language {
	color: #000;
}*/

.header.floating .btn-all-menu>.lines,
.header.floating .btn-all-menu>.lines::after,
.header.floating .btn-all-menu>.lines::before,
.header-bar.hover .btn-all-menu>.lines,
.header-bar.hover .btn-all-menu>.lines::after,
.header-bar.hover .btn-all-menu>.lines::before,
.header-bar.full-open .btn-all-menu>.lines,
.header-bar.full-open .btn-all-menu>.lines::after,
.header-bar.full-open .btn-all-menu>.lines::before {
	background-color: #333;
}

.header-bar.full-open .main-nav>li>.sub-nav {
	visibility: visible;
	opacity: 1;
	height: 22rem;
	/* 내려오는 메뉴 높이 */
}

.header-bar.full-open .megamenu-bg {
	height: 23rem;
	/* 내려오는 메뉴 높이 */
	border-top: 1px solid #ddd;
	background-color: #fff;
	box-shadow: 0 0.3rem rgba(0, 0, 0, 0.08);
}


/* 언어 */
.language-switcher {
	position: relative;
}

.language-switcher .btn-select-language {
	display: flex;
	position: relative;
	width: 7rem;
	height: 3.0rem;
	line-height: 3.0rem;
	border-radius: 3rem;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-black);
	text-align: center;
	border: 0;
	outline: none;
}

.language-switcher .btn-select-language i {
	display: block;
	width: 2.4rem;
	height: 2.4rem;
	background: url(../images/gnb/ico-lang.svg);
	background-size: cover;
	margin-top: 2px;
	/* filter: invert(1); */
}

.language-switcher .btn-select-language::after {
	position: absolute;
	content: url(../images/gnb/lang-more-ico.svg);
	right: 0;
	top: -3px;
}

.header.floating .language-switcher .btn-select-language,
.header-bar.hover .language-switcher .btn-select-language,
.header-bar.full-open .language-switcher .btn-select-language {
	color: #000000;

}

.language-switcher>.language-list {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
	margin-top: 5px;
	background-color: #fefefe;
	border: 1px solid #ededed;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
	transition: visibility .25s ease, opacity .25s ease;
	z-index: 11;
}

.language-switcher>.language-list>li {
	text-align: left;
	border-bottom: 1px solid #eee;
}

.language-switcher>.language-list>li:last-child {
	border-bottom: 0;
}

.language-switcher>.language-list>li>a {
	display: block;
	font-size: 1.5rem;
	color: #000000;
	padding: 6px 0;
	text-align: center;
}

.language-switcher>.language-list>li>a:hover {
	background: #00A0E9;
	color: #ffffff;
}

.language-switcher>.language-list>li>a.act {
	background-color: #132C75;
	color: #ffffff;
}

.language-switcher.open>.language-list {
	visibility: visible;
	opacity: 1;
}




/* Full(Mobile) Nav */
.full-nav-mask {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
	transition: opacity .25s, visibility .25s;
	z-index: 1549;
	display: none;
}

.full-nav-mask.open {
	visibility: visible;
	opacity: 1
}

.full-nav {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 120rem;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	background-color: #fff;
	border-radius: 1rem;
	transform: translate(-50%, -50%);
	transition: transform .5s, opacity .25s, visibility .25s;
	z-index: 1550;
	display: none;
}

.full-nav.open {
	visibility: visible;
	opacity: 1;
}

@media all and (max-width:1200px) {

	.full-nav-mask,
	.full-nav {
		display: block;
	}
}

.full-nav .hd {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 10rem;
	background-color: var(--color-green);
}

.full-nav .hd .close-full-nav {
	position: absolute;
	top: 50%;
	right: 3rem;
	font-size: 2.4rem;
	color: #fff;
	border: 0;
	background-color: transparent;
	transform: translateY(-50%);
}

.full-nav .nav-all {
	padding: 5rem 6rem 6rem;
}

.full-navi {
	display: flex;
	justify-content: space-between;
}

.full-navi>li {
	position: relative;
	width: 100%;
	padding: 0 1.5rem;
	text-align: center
}

.full-navi>li>a {
	display: block;
	position: relative;
	padding-bottom: 1.4rem;
	font-size: 2rem;
	font-weight: 700;
	color: #222;
	border-bottom: 1px solid #ddd;
}

.full-navi>li.act>a,
.full-navi>li>a:hover {
	color: var(--color-blue);
}

.full-navi .sub-nav {
	padding-top: 1.5rem;
}

.full-navi .sub-nav a {
	display: block;
	padding: 0.5rem 0.5rem;
	font-size: 1.6rem;
	color: #999;
}

.full-navi .sub-nav li.act a,
.full-navi .sub-nav li a:hover {
	color: var(--color-blue);
}

.full-navi .child_button {
	display: none;
	top: 1.6rem;
	right: 3rem;
	font-family: xeicon !important;
	speak: none;
	font-size: 0;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	border: 0;
	background-color: transparent;
	transition: transform .3s ease
}

.full-navi .child_button::before {
	content: "\e943";
	font-size: 2.4rem;
}

.full-navi li.open>.child_button {
	transform: rotate(180deg);
}

.full-navi .sub-nav .child_button {
	display: none !important;
}

/* mobile */
.full-nav .bth-contact {
	display: none;
}

.header-quick .quick-nav {
	display: none;
}

/* 사이트맵 */
.quick-sitemap {
	margin-right: 3.5rem !important;
}

.quick-sitemap>a {
	margin-right: 0;
}

.quick-sitemap>a .line {
	display: block;
	width: 30px;
	height: 3px;
	background-color: #fff;
	margin-top: 8px;
	margin-bottom: 8px;
}

.quick-sitemap>a .line2 {
	width: 22px;
}

.header.floating .quick-sitemap>a .line,
.header-bar.hover .quick-sitemap>a .line,
.header-bar.full-open .quick-sitemap>a .line {
	background-color: #333;
}

/* 모바일CSS */
@media screen and (max-width:1400px) {

	.main-navigation {
		padding: 0 0 0 3.6rem;
	}

	/* Header bar */
	.main-nav {
		max-width: 90rem;
	}

	.main-nav>li>a {
		min-width: 11rem;
	}

	.main-nav .sub-nav li>a {
		font-size: 1.6rem;
		letter-spacing: -0.3px;
	}

	.language-switcher .btn-select-language {
		width: 6.6rem;
		font-size: 1.4rem;
	}

	.full-nav .bth-contact {
		display: block;
		width: 5rem;
		font-weight: 400;
		color: #000 !important;
		padding-right: 2rem;
		background: url('../images/gnb/lan_puls.png') center right no-repeat;
	}

	.quick-nav {
		position: relative;
		top: -21px;
		padding-left: 20px;
	}

	/* 사이트맵 */
	.quick-sitemap {
		margin-right: 0 !important;
	}
}

@media screen and (max-width:1100px) {

	.header-bar>.inner {
		padding: 0 25px;
	}

	.bth-contact {
		width: 150px;
	}

	.branding>a,
	.branding>a>.logo {
		/*		min-width: 10rem;
		max-width: 10rem;*/
		height: var(--rem-35);
	}

	/* Full(Mobile) Nav */
	.full-nav {
		left: 4%;
		width: 92%;
		transform: translate(0, -50%);
	}

	.full-nav .nav-all {
		padding: 40px 45px 55px;
	}

	.header-bar.full-open .main-nav>li>.sub-nav {
		height: 27rem;
		/* 내려오는 메뉴 높이 */
	}

	.header-bar.full-open .megamenu-bg {
		height: 27rem;
	}


	.header-bar-wrap {
		height: 9rem;
	}

	/* Main Navi */
	.main-navigation {
		display: none;
	}

	/* Quick Menu */
	.quick-sitemap {
		display: none;
	}

	.quick-nav {
		top: 4.5px;
		padding: 0;
	}

	.header-quick {}

	.header-quick .quick-nav {
		display: block;
		height: 16px;
		padding-left: 2rem;
	}


	.header-quick .quick-act a {
		width: 5rem;
		font-size: 1.5rem;
	}

	/* Full(Mobile) Nav */
	.full-nav {
		top: 0;
		bottom: 0;
		left: auto;
		right: 0;
		width: 40rem;
		border-radius: 0;
		transform: translate(100%, 0);
	}

	.full-nav.open {
		transform: translate(0, 0);
	}

	.full-nav .hd {
		justify-content: flex-start;
		height: 9rem;
		padding-left: 35px;
		border-bottom: 1px solid #e9e9e9;
		border-bottom: 0.5px solid var(--color-blue);
		background-color: #fff;
	}

	.full-nav .language-switcher .language_btn {
		color: #000;
	}

	.full-nav .language-switcher::after {
		background-color: rgba(0, 0, 0, 0.4);
	}

	.full-nav .hd .close-full-nav {
		top: 0;
		right: 0;
		width: 9rem;
		height: 100%;
		color: #fff;
		background-color: var(--color-blue);
		transform: translateY(0);
	}

	.full-nav .nav-all {
		height: calc(100vh - 120px);
		overflow-y: auto;
		padding: 0;
		margin-top: 1rem;
	}

	.full-nav .nav-all::-webkit-scrollbar {
		width: 6px;
		height: 6px
	}

	.full-nav .nav-all::-webkit-scrollbar-thumb {
		background-color: rgba(12, 124, 124, .45);
		border-radius: 3px;
	}

	.full-nav .nav-all::-webkit-scrollbar-track {
		background-color: rgba(12, 124, 124, .22);
	}

	.full-nav .mo-quick {
		display: block;
	}

	.full-navi {
		display: block;
	}

	.full-navi>li {
		padding: 4px 0;
	}

	.full-navi>li>a {
		padding: 11px 35px;
		font-size: 1.8rem;
		text-align: left;
		border-bottom: 0;
	}

	.full-navi .sub-nav {
		display: none;
		padding: 1.6rem 0;
		background-color: #f5f5f5;
	}

	.full-navi .sub-nav a {
		font-weight: 500;
		text-align: left;
		padding: 5px 35px 5px 45px;
	}

	.full-navi .child_button {
		display: inline-block;
		position: absolute;
	}
}

@media screen and (max-width:800px) {

	/* Header bar */
	.header-bar>.inner {
		padding: 0 15px;
	}

	.header-bar-wrap {
		height: 8rem;
	}

	.header-quick .quick-act a {
		font-size: 1.4rem;
	}

	.branding>a,
	.branding>a>.logo {
		min-width: 10.5rem;
		max-width: 10.5rem;
	}

	/* Full(Mobile) Nav */
	.full-nav {
		width: 70%;
		min-width: 20rem;
	}

	.full-nav .hd {
		height: 8rem;
	}

	.full-nav .hd .close-full-nav {
		width: 8rem;
	}

	.full-nav .nav-all {
		height: calc(100vh - 175px);
	}
}

@media screen and (max-width:480px) {

	/* Header bar */
	.branding {
		position: relative;
		left: -5px;
	}

	/* Quick Menu */
	/*.btn-all-menu {
		width: 28px;
		height: 19px;
	}

	.btn-all-menu>.lines {
		height: 3px;
	}

	.btn-all-menu>.lines::after,
	.btn-all-menu>.lines::before {
		height: 3px;
	}*/

	/* Full(Mobile) Nav */
	/*.full-nav .bth-contact {
		display: none;
	}*/

	.full-nav .hd {
		padding-left: 20px;
	}

	.language-switcher {
		margin-left: 0;
	}

	.full-nav .ft {
		display: block;
		border-top: 1px solid #ddd;
		padding-top: 16px;
		text-align: center;
	}

	.full-nav .ft .bth-contact {
		display: inline-block;
		border-radius: 0
	}

	.full-nav .nav-all {
		height: calc(100vh - 165px);
	}

	.full-navi>li>a {
		padding: 8px 20px;
		font-size: 17px;
	}

	.full-navi .sub-nav {
		padding: 16px 0;
	}

	.full-navi .sub-nav a {
		padding: 6px 30px 6px 30px;
		font-size: 15px;
	}

	.full-navi .child_button {
		right: 20px;
	}

	.full-navi .child_button::before {
		font-size: 20px;
	}

	.full-family-tt {
		font-size: 17px;
	}

	.full-nav .family-list .item-link {
		padding: 11px 26px;
		font-size: 17px;
	}

	.jp-page .full-nav .family-list .item-link {
		font-size: 16px;
	}

	.full-family .close-full-family {
		width: 68px;
	}
}

/* ==================================================
	스크롤 내렸을때 변화
================================================== */
#header.active {
	background: rgba(0, 0, 0, 1);
}

.mwarp #header.active {
	border-bottom: 0;
	background: rgba(0, 0, 0, 1);
}

/* ==================================================
	Sub Bread Menu
================================================== */
.li2 li {
	width: 50%;
}

.li3 li {
	width: 33.333%;
}

.li4 li {
	width: 25%;
}

.li5 li {
	width: 20%;
}

.li6 li {
	width: 16.666%;
}

.li7 li {
	width: 14.285%;
}

.li8 li {
	width: 12.5%;
}

.li9 li {
	width: 11.111%;
}

.li10 li {
	width: 10%;
}

.lnb {
	position: absolute;
	bottom: 0;
	left: 15%;
	width: 70%;
	height: 70px;
	line-height: 70px;
	color: var(--color-white);
	background-color: rgba(0, 0, 0, 0.5);
}

.lnb>ul {
	/*position: relative;*/
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 25px;
	transition: width .25s, box-shadow .25s;
	border-radius: 20px 20px 0 0;
	/*display: inline-block; */
}

.lnb>ul>li {
	float: left;
	position: relative;
}

.lnb>ul>li a {
	display: block;
	font-weight: 400;
	font-size: 2rem;
	text-align: center;
}

.lnb>ul>li a:hover {
	color: var(--color-skyblue);
	font-weight: 800;
}

.lnb>ul>li.on a {
	color: var(--color-skyblue);
	font-weight: 600;
}

.lnb>ul>li.on a:after {
	content: "";
	display: block;
	margin-top: -2px;
	width: calc(100% - 2px);
	height: 2px;
	background-color: var(--color-skyblue);
}

@media screen and (max-width:1310px) {
	.lnb {
		height: 64px;
		line-height: 64px;
		left: 5%;
		width: 90%;
	}

.lnb>ul>li a {
		font-size: 18px;
	}
}

@media screen and (max-width:1100px) {
	.lnb>ul>li a {
		font-size: 16px;
	}
}

/* ==================================================
	컨텐츠 서브메뉴
================================================== */
.cnb2 {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 6rem;
}

.cnb2 ul {
	display: flex;
	width: 100%;
	gap: 0.3rem;
}

.cnb2 ul.col2 li {
	/*width: 50%;*/
	width: 100%;

}

.cnb2 ul.col3 li {
	width: 100%;
}

.cnb2 ul.col4 li {
	/*width: 25%;*/
	width: 100%;
}

.cnb2 ul.col5 li {
	width: 20%;
}

.cnb2 ul.col6 li {
	width: 16%;
}

.cnb2 ul li {
	/*   position: relative;*/
	display: inline-block;
	text-align: center;
	vertical-align: middle;
}

.cnb2 ul li a {
	display: inline-block;
	width: 100%;
	font-family: 'Pretendard';
	font-weight: var(--font-md);
	font-size: var(--rem-20);
	line-height: 60px;
	color: var(--color-gray6);

	background: var(--color-gray1);
}

.cnb2 ul li.on {
	padding-bottom: 12px;
	/* background: url('../images/icon/tab_polygon.png') center bottom no-repeat; */
}

.cnb2 ul li:hover a,
.cnb2 ul li.on a {
	font-weight: var(--font-bd);
	font-size: var(--rem-24);
	color: var(--color-white);
	background: var(--color-blue);
}

/* 모바일CSS */
@media screen and (max-width:1100px) {
	.cnb2 {
		margin-bottom: 5rem;
	}

	.cnb2 ul {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr)[3];
		grid-template-columns: repeat(3, 1fr);
	}

	.cnb2 ul li a {
		font-size: var(--rem-18);
		line-height: 46px;
		letter-spacing: -0.05px;
	}

	.cnb2 ul.col5 li:nth-child(2n+1) {
		clear: both;
	}

	.cnb2 ul.col5 li {
		width: auto;
	}
}

@media screen and (max-width:800px) {

	.cnb2 ul {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem 1.5rem;
	}



	.cnb2 ul li a {
		font-size: var(--rem-16);
		line-height: 44px;
		letter-spacing: -0.05px;
	}

	.cnb2 ul.col3 li {
		width: 100%;
	}
}

@media screen and (max-width:480px) {

	.cnb2 ul {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
		gap: 1rem;
	}

	.cnb2 ul li a {
		font-size: var(--rem-15);
		line-height: 40px;
		letter-spacing: -0.05px;
	}
}