@charset "utf-8";

/* ==================================================
	H E A D E R
================================================== */
/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1500;
}


/* Header bar */
.header-bar {
	position: relative;
	border-bottom: 1px solid rgba(219, 219, 219, 0.2);
	background: rgb(255, 255, 255);
    /*backdrop-filter: blur(5px);*/
}

.mheader .header-bar {
	background-color: rgba(0, 0, 0, 0);
}

.header-bar:hover {
	color: rgb(0, 0, 0);
}

.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: 100%;
	width: 100%;
	box-shadow: 3px 3px 13px rgba(0, 0, 0, 0.15);

}

.header-bar-wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	height: 90px;

}

.branding {
	min-width: 350px;
	max-width: 300px;
	padding-left: 35px;
	z-index: 99;
}

.branding>a,
.branding>a>.logo {
	display: block;
	width: 100%;
}

.mheader .branding .logo.logo-floating {
	display: none;
}

.mheader .header.floating .branding .logo.logo-floating,
.mheader .header-bar.hover .branding .logo.logo-floating,
.mheader .header-bar.full-open .branding .logo.logo-floating {
	display: block;
}

.mheader .header.floating .branding .logo-default,
.mheader .header-bar.hover .branding .logo-default,
.mheader .header-bar.full-open .branding .logo-default {
	display: none !important;
}

.branding .logo-default {
	display: none !important;
}

.mheader .branding .logo-default {
	display: block !important;
}

/*.mheader .header.floating .branding .logo-default,
.mheader .header-bar.hover .branding .logo-default,
.mheader .header-bar.full-open .branding .logo-default {
	display: block !important;
}*/

.home .header-bar {
	border-bottom-width: 1px;
	background-color: rgba(0, 0, 0, .12);
}

/* Main Navi */
.main-navigation {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin-left: -350px;
	padding-right: 35px;
}

.main-nav {
	display: flex;
	justify-content: center;
	max-width: 1000px;
	width: 100%;
	height: 100%;
}

.main-nav>li {
	position: relative;
	width: 20%;
	height: 100%;
}

.main-nav>li>a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-width: 170px;
	height: 100%;
	padding: 0;
	font-size: 2.2rem;
	font-weight: 600;
	/*color: #000000;*/
}

.main-nav>li::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(189, 189, 189, 0.49);
    transform: translate(50%, -50%);
}

.main-nav>li:last-child::after {
	content: none;
}


.mheader .main-nav>li>a {
	color: #ffffff;
}

.mheader .util a {
	color: #ffffff;
}

.util a {
	color: #ffffff;
}

.main-nav>li>.sub-nav {
	position: absolute;
	top: 90px;
	left: 0;
	right: 0;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	padding: 20px 25px;
	text-align: center;
	transition: visibility .25s, opacity .25s, height .25s, background-color .25s;
	border-left: 1px solid #dbdbdb;
}

.main-nav>li:nth-child(5)>.sub-nav {
	border-right: 1px solid #dbdbdb;
}

.main-nav .sub-nav li>a {
	position: relative;
	display: block;
	opacity: 1;
	padding: 8px 0;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.3;
	color: #444;
	transition: color .25s;
	word-break: keep-all;
}

.main-nav .sub-nav li>a:hover {
	color: #E0005D;
}

.main-nav .sub-nav .sub-nav {
	padding-left: 8px;
}

.main-nav .sub-nav .sub-nav li>a {
	padding: 1px 0;
	font-size: 1.5rem;
	font-weight: 400;
	color: #787878;
}

.main-nav .sub-nav .sub-nav li>a:hover {
	color: #E0005D;
}

.main-nav .sub-nav .sub-nav li:last-child {
	margin-bottom: 10px;
}

.main-nav .child_button {
	display: none;
}

.main-nav .main_hide {
	display: none;
}

/* Hover */
.main-nav>li>a:hover {
	color: #E0005D !important;
	border-bottom:4px solid #E0005D;
}

/* Active */
.main-nav>li.act>a {
	color: #E0005D !important;;

}

.main-nav .sub-nav li.act>a {
	color: #E0005D;
	word-break: keep-all;
}
/* Quick Menu */
.util {
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	font-size: 1.5rem;
}

.mheader .util a:first-child {
	color:#fff;
}

.util a:first-child {
	color: #626262;
}

.util a:first-child:hover {
	color: #626262;
}

.util a {
	color:  #626262;
}

.util a:hover {
	color: #626262;
}

.split {
	font-style: normal;
	margin: 0 .5em
}

.split:empty {
	display: inline-block;
	margin: 0 0.8em 0;
	height: 1.5rem;
	border-left: 1px solid rgba(189, 189, 189, 1);
	vertical-align: middle
}

.lang {
	position: relative;
	padding-left: 37px;
	font-weight: 400;
}

.lang:before {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	top: -2px;
	left: 13px;
	background: url('../images/gnb/lang.png') no-repeat;
}

.header-quick {
	display: flex;
	align-items: center;
}

/*.header-quick .quick-act {
	position: relative;
	margin-right: 14px;
	line-height: 1;
}*/

.split {
	font-style: normal;
	margin: 0 .5em
}

.split:empty {
	display: inline-block;
	margin: 0 0.8em 0;
	height: 1.5rem;
	border-left: 1px solid rgba(189, 189, 189, 1);
	vertical-align: middle
}

a.bth-contact {
	display: inline-block;
	width: 100px;
	height: 20px;
	line-height: 20px;
}

.btn-all-menu {
	display: flex;
	align-items: center;
	position: relative;
	width: 30px;
	height: 21px;
	border: 0;
	outline: none;
	background-color: transparent;
}

.btn-all-menu>.lines {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: #000000;
}

.btn-all-menu>.lines::after,
.btn-all-menu>.lines::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #000000;
}

.btn-all-menu>.lines::before {
	top: 0;
}

.btn-all-menu>.lines::after {
	bottom: 0;
}

.mheader .btn-all-menu>.lines::after,.mheader .btn-all-menu>.lines, 
.mheader .btn-all-menu>.lines::before {
	background-color: #ffffff;
}

/* 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-color: #fff;
}

.header.floating .header-bar .logo-floating,
.header-bar.hover .logo-floating,
.header-bar.full-open .logo-floating {
	display: block;
}

.header.floating .header-bar .logo-default,
.header-bar.hover .logo-default,
.header-bar.full-open .logo-default {
	display: none;
}

.header.floating .header-bar .main-nav>li>a,
.header.floating .util a,
.header-bar.hover .main-nav>li>a,
.header-bar.full-open .main-nav>li>a,
.header.floating .mheader .util a {
	color: #333;
}

.header.floating .btn-select-language,
.header-bar.hover .btn-select-language,
.header-bar.full-open .btn-select-language,
.header.floating .mheader .util a  {
	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 {
	background-color: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, .2);
	color: rgb(0, 0, 0);
}

.header-bar.full-open:hover {
	color: rgb(0, 0, 0);
}

.header-bar.full-open .main-nav>li>.sub-nav {
	visibility: visible;
	opacity: 1;
	height: 320px;
}

.header-bar.full-open .megamenu-bg {
	height: 320px;
	border-top: 1px solid #ddd;
	background-color: #F4F7FC;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}
.header.floating .header-bar .main-nav>li>a,
.header-bar.hover .main-nav>li>a,
.header-bar.full-open .main-nav>li>a,.header-bar.full-open .util a {
	color: #333;
}

/* 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: 1200px;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	background-color: #fff;
	border-radius: 10px;
	transform: translate(-50%, -50%);
	transition: transform .5s, opacity .25s, visibility .25s;
	z-index: 1550;
	display:none;
}

.full-nav.open {
	visibility: visible;
	opacity: 1;
}

.full-nav .hd {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 80px;
	background-color: #E0005D;
}

.full-nav .hd .close-full-nav {
	position: absolute;
	top: 50%;
	right: 30px;
	font-size: 2.4rem;
	color: #fff;
	border: 0;
	background-color: transparent;
	transform: translateY(-50%);
}

.full-nav .nav-all {
	padding: 50px 60px 60px;
}

.full-nav .mo-quick {
	display: none;
}

.full-navi {
	display: flex;
	justify-content: space-between;
}

.full-navi>li {
	position: relative;
	width: 100%;
	padding: 0 15px;
	text-align: center
}

.full-navi>li>a {
	display: block;
	position: relative;
	padding-bottom: 14px;
	font-size: 2rem;
	font-weight: 700;
	color: #222;
	border-bottom: 1px solid #ddd;
}

.full-navi>li.act>a,
.full-navi>li>a:hover {
	color: #E0005D;
}

.full-navi .sub-nav {
	padding-top: 15px;
}

.full-navi .sub-nav a {
	display: block;
	padding: 5px 5px;
	font-size: 1.6rem;
	color: #999;
}

.full-navi .sub-nav li.act a,
.full-navi .sub-nav li a:hover {
	color: #E0005D;
}

.full-navi .child_button {
	display: none;
	top: 20px;
	right: 30px;
	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;
	border-radius: 30px;
}

.full-nav .mo-quick button {
	color: #222;
	text-align: center;
}

.full-nav .mo-quick button:hover {
	color: #cf2a28
}

.header-quick .quick-language {
	margin-right: 10px;
}

.header-quick .quick-nav {
	display: none;
}

/* 사이트맵 */
.quick-sitemap {
	margin-left: 18px;
}

.quick-sitemap .line {
	display: block;
	width: 22px;
	height: 2px;
	background-color: #000;
	margin: 6px auto;
}

.quick-sitemap .line2 {
	width: 16px;
	margin-left: 0;
}

/* ==================================================
	스크롤 내렸을때 변화
================================================== */
#header.active {
	background: rgb(255, 255, 255);
}

.mwarp #header.active {
	border-bottom: 0;
	background: rgb(255, 255, 255);
}



/* 모바일CSS */
@media screen and (max-width:1700px) {

	/* Main Navi */
	.main-nav {
		max-width: 800px;
	}

	.main-nav>li>a {
		min-width: 124px;
	}

	.main-navigation {
		margin-left: -250px;
	}
}

@media screen and (max-width:1500px) {
	/* Header bar */
	.branding {
		min-width: 300px;
		max-width: 300px;
	}

	/*.util_none {
		display: none !important;
	}*/
}

@media screen and (max-width:1400px) {
	/* Header bar */
	.header-bar-wrap {
		width: 96%;
		margin: 0 auto;
	}

	.branding {
		min-width: 250px;
		max-width: 250px;
		padding-left: 0;
	}

	/* Main Navi */
	.main-nav {
		max-width: 800px;
	}

	.main-nav>li>a {
		min-width: 100px;
		font-size: 2.1rem;
	}

	.main-nav .sub-nav li>a {
		font-size: 1.7rem;
	}

	.main-navigation {
		margin-left: -150px;
	}

	/* Quick Menu */
	.quick-contact {
		width: 100%;
	}

	.full-nav .bth-contact {
		display: block;
		color: #000 !important;
		/*width: 160px;
		height: 30px;
		line-height: 30px;*/
	}

	.quick-nav {
		position: relative;
		top: -21px;
		padding-left: 20px;
	}

	.header-quick .quick-sitemap {
		margin-right: 0;
	}

	/* 사이트맵 */
	.quick-sitemap {
		margin-right: 0 !important;
	}
}

@media screen and (max-width:1280px) {
	/* Main Navi */
	/*.main-navigation {
		padding: 0 0 0 45px;
	}*/

	.main-nav {
		max-width: 600px;
	}

	.main-nav>li>a {
		font-size: 1.9rem;
	}

	.main-nav .sub-nav li>a {
		font-size: 1.6rem;
	}

	/* Quick Menu */
	/*.header-quick {
		min-width: 155px;
		max-width: 155px;
	}*/

	.quick-contact {
		display: none;
	}

	.bth-contact {
		width: 150px;
	}

	.language-switcher .btn-select-language {
		font-size: 1.4rem;
	}

	/* Full(Mobile) Nav */
	.full-nav {
		left: 4%;
		width: 92%;
		transform: translate(0, -50%);
	}

	.full-nav .nav-all {
		padding: 40px 45px 55px;
	}
}

@media screen and (max-width:1200px) {

	/* Header bar */
	.header-bar-wrap {
		width: 94%;
	}
}

@media screen and (max-width:1100px) {

	/* Header bar */
	.header-bar-wrap {
		height: 78px;
	}

	.branding {
		min-width: 200px;
		max-width: 200px;
	}

	/* Main Navi */
	.util {
		display: none;
	}

	.main-navigation {
		display: none;
	}

	/* Quick Menu */
	.lang {
		padding-left: 30px;
	}

	.lang:before {
		top: 2px;
		left: 5px;
	}

	.header-quick {
		padding-top: 0;
	}

	.quick-nav {
		top: 0;
		padding: 0;
	}

	.header-quick .quick-nav {
		display: block;
	}

	/* Full(Mobile) Nav */
	.full-nav-mask{
		display:block;
	}
	.full-nav {
		top: 0;
		bottom: 0;
		left: auto;
		right: 0;
		width: 480px;
		border-radius: 0;
		transform: translate(100%, 0);
		display:block;
	}

	.full-nav.open {
		transform: translate(0, 0);
	}

	.full-nav .hd {
		justify-content: flex-start;
		height: 79px;
		padding-left: 35px;
		border-bottom: 1px solid #e9e9e9;
		background-color: #fff;
	}

	.full-nav .hd .close-full-nav {
		top: 0;
		right: 0;
		width: 78px;
		height: 100%;
		font-size: 2.8rem;
		color: #fff;
		background-color: #E0005D;
		transform: translateY(0);
	}

	.full-nav .nav-all {
		height: calc(100vh - 120px);
		overflow-y: auto;
		padding: 0;
		margin-top: 40px;
	}

	.full-nav .nav-all::-webkit-scrollbar {
		width: 6px;
		height: 6px
	}

	.full-nav .nav-all::-webkit-scrollbar-thumb {
		background-color: rgba(255, 150, 0, .45);
		border-radius: 3px;
	}

	.full-nav .nav-all::-webkit-scrollbar-track {
		background-color: rgba(255, 150, 0, .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: 2.4rem;
		text-align: left;
		border-bottom: 0;
	}

	.full-navi .sub-nav {
		display: none;
		padding: 20px 0;
		background-color: #f5f5f5;
	}

	.full-navi .sub-nav a {
		font-size: 1.8rem;
		line-height: 1.5;
		text-align: left;
		padding: 5px 35px 5px 45px;
	}

	.full-navi .child_button {
		display: inline-block;
		position: absolute;
	}

	.language-switcher {
		margin-left: 0;
	}

	.language-switcher .btn-select-language {
		width: 60px;
		/*padding-left: 0;*/
	}

	.full-family {
		display: block;
	}

	.full-nav .ft {
		display: none;
	}
}

@media screen and (max-width:640px) {

	/* Header bar */
	.header-bar-wrap {
		height: 68px;
	}

	/* Full(Mobile) Nav */
	.full-nav {
		width: 80%;
		min-width: none
	}

	.full-nav .hd {
		height: 69px;
	}

	.full-nav .hd .close-full-nav {
		width: 69px;
	}

	.full-nav .nav-all {
		height: calc(100vh - 175px);
	}
}

@media screen and (max-width:480px) {

	/* 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: 28px;
	}

	.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);
		margin-top: 30px;
	}

	.full-navi>li>a {
		padding: 9px 28px;
		font-size: 2rem;
	}

	.full-navi .sub-nav {
		padding: 16px 0;
	}

	.full-navi .sub-nav a {
		padding: 4px 30px 4px 40px;
		font-size: 1.6rem;
	}

	.full-navi .child_button {
		right: 20px;
	}

	.full-navi .child_button::before {
		font-size: 2rem;
	}
}

/* ==================================================
	Sub Bread Menu
================================================== */
.nav-sub-bread {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.nav-sub-bread>.inner {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 100%;
	width: 1230px;
	padding: 0;
	background-color: #ffffff;
	border-radius: 15px 0 0 0;
	transition: width .25s, box-shadow .25s;
}

.sub_bread_menu {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	max-width: 1230px;
	height: 70px;
	margin: 0 auto;
	border-bottom: 1px solid #d6d6d6;
	/*box-shadow: 3px 3px 13px rgba(0, 0, 0, 0.275);*/
}

.sub_bread_menu:after {
	content: "";
	display: block;
	clear: both;
}

.sub_bread_menu>li {
	display: flex;
	align-items: center;
	position: relative;
	min-width: 0;
	height: 100%;
}

.sub_bread_menu>li::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 69px;
}

.sub_bread_menu>li.depth2 {
	background: #ffffff;
}

.sub_bread_menu>li.depth2:not(.firstHome)>a {
	color: #000000;
	line-height: 1.2;
}


.sub_bread_menu>li.firstHome {
	flex: 0 0 70px;
	justify-content: center;
	background: #E0005D;
	border-radius: 10px 0 0 0;
}

.sub_bread_menu>li.firstHome>a {
	display: block;
	position: relative;
	font-size: 2.4rem;
	color: #ffffff;
}

.sub_bread_menu>li:not(.firstHome) {
	flex: 0 0 300px;
	justify-content: left;
}

.sub_bread_menu>li:not(.firstHome)>a {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 1.9rem;
	font-weight: 500;
	color: #000000;
	padding: 0 30px;
	border-right: 1px solid #d6d6d6;
}

.sub_bread_menu>li:not(.firstHome)>a::after {
	content: "\e935";
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	font-family: xeicon !important;
	font-size: 12px;
	display: inline-block;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.sub_bread_menu .menu-name {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.sub_bread_menu>li>ul {
	position: absolute;
	width: 100%;
	top: 100%;
	background: #545454;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
	transition: opacity 0.25s, visibility 0.25s;
	opacity: 0;
	visibility: hidden;
	z-index: 30
}

.sub_bread_menu>li.open>ul {
	opacity: 1;
	visibility: visible
}

.sub_bread_menu>li>ul>li>a {
	display: block;
	font-size: 1.8rem;
	text-align: left;
	color: #222;
	padding: 15px 20px;
    line-height: 1.2;
	background-color: #fff;
	transition: background-color 0.25s, color .25s, border .25s;
	border-bottom: 1px solid #eee;
}

.sub_bread_menu>li>ul>li:last-child>a {
	border-bottom: 0;
}

.sub_bread_menu>li>ul>li>a:hover,
.sub_bread_menu>li>ul>li.act>a {
	background: #E0005D;
	color: #fff;
	border-color: #E0005D;
}

/* .sub_bread_menu > li:nth-child(4){display:none;} */
/*.nav-sub-bread.floating {
	position: fixed;
	top: 90px;
	bottom: auto;
	left: auto;
	margin-top: 0;
	z-index: 14;
	/*z-index: 1499;*/
}

/*.nav-sub-bread.floating .inner {
	box-shadow: 3px 3px 13px rgb(0 0 0 / 28%);
	background: #ffffff;
	border-radius: 0;
}

.nav-sub-bread.floating .sub_bread_menu {
	box-shadow: none;
	border-bottom: 0;
}

.nav-sub-bread.floating .sub_bread_menu>li.firstHome>a {
	color: #ffffff;
}

.nav-sub-bread.floating .sub_bread_menu>li:not(.firstHome)>a {
	color: #000000;
}

.nav-sub-bread.floating.topbar-toggle {
	top: 132px;
}/*

/* 모바일CSS */
@media screen and (max-width:1400px) {
	.nav-sub-bread>.inner {
		border-radius: 0;
	}

	.sub_bread_menu>li.firstHome {
		border-radius: 0;
	}
}

@media screen and (max-width:1100px) {
	.nav-sub-bread.floating {
		top: 78px;
	}
}

@media screen and (max-width:970px) {
	.sub_bread_menu>li:nth-child(4) {
		display: none;
	}
}

@media screen and (max-width:640px) {
	.sub_bread_menu {
		height: 60px;
	}

	.sub_bread_menu>li.firstHome {
		flex: 0 0 60px;
	}

	.sub_bread_menu>li:not(.firstHome) {
		flex: 0 0 calc(50% - 30px);
		width: 50%
	}

	.sub_bread_menu>li:not(.firstHome)>a {
		font-size: 1.5rem;
		padding: 0 15px;
	}

	.sub_bread_menu>li:after {
		height: 60px;
	}

	.sub_bread_menu>li:last-child::after {
		display: none;
	}

	.nav-sub-bread.floating {
		top: 68px;
	}

	.sub_tit {
		font-size: 2.5rem;
	}
}

@media screen and (max-width:480px) {
	.nav-sub-bread>.inner {
		padding: 0;
	}

	.sub_tit {
		font-size: 2rem;
	}

	.sub_bread_menu {
		height: 50px;
	}

	.sub_bread_menu>li.firstHome {
		flex: 0 0 50px;
	}

	.sub_bread_menu>li:not(.firstHome) {
		flex: 0 0 calc(50% - 25px);
	}

	.sub_bread_menu>li.firstHome>a {
		font-size: 2rem;
	}

	.sub_bread_menu>li.depth2:not(.firstHome)>a {
		font-size: 1.17rem;
		word-break: keep-all;
	}

	.sub_bread_menu>li:not(.firstHome)>a {
		font-size: 1.5rem;
		padding: 0 15px;
	}

	.sub_bread_menu>li:not(.firstHome)>a::after {
		font-size: 1rem;
		right: 15px;
	}

	.sub_bread_menu>li:after {
		height: 50px;
	}

	.sub_bread_menu>li>ul>li>a {
		font-size: 1.35rem;
		padding: 5px 20px;
	}

	.sub_bread_menu .menu-name {
		white-space: break-spaces;
	}
}

/* ==================================================
	컨텐츠 서브메뉴
================================================== */
.cnb2 {
	width: 100%;
	max-width: 1400px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
	margin-bottom: 40px;
}

.cnb2 ul {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	width: 100%;
}

.cnb2 ul.col2 li {
	width: 50%;
}

.cnb2 ul.col3 li {
	width: 33.33%;
}

.cnb2 ul.col4 li {
	width: 25%;
}

.cnb2 ul.col5 li {
	width: 20%;
}

.cnb2 ul li {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	margin-left: -1px;
	background: #F4F7FC;
	margin: 3px 3px;
	text-decoration: none;
	font-size: 2rem;
	font-weight: 500;
	font-style: normal;
	border-radius: 50px;
}

.cnb2 ul li:first-child {}

.cnb2 ul li.on {
	background: #E0005D;
}

.cnb2 ul li a {
	display: inline-block;
	width: 100%;
	padding: 15px 0;
	color: #7c7c7c;
}

.cnb2 ul li.on a {
	color: #fff;
}

/* 모바일CSS */
@media screen and (max-width:1200px) {
	.cnb2 ul li a {
		font-size: 1.8rem;
	}
}

@media screen and (max-width:1023px) {
	.cnb2 {
		margin-top: 40px;
		margin-bottom: 30px;
		margin-right: auto;
		margin-left: auto;
	}

	.cnb2 ul li {
		font-size: 1.7rem;
		letter-spacing: -0.05px;
	}

	.cnb2_four {
		font-size: 0;
	}

	.cnb2_four .cnb2 ul li {
		display: inline-block;
		width: 50%;
		padding: 10px 0;
		font-size: 1.8rem;
	}

	.cnb2_four .cnb2 ul.col4 li:nth-child(2n+1) {
		clear: both;
	}
}

@media screen and (max-width:1000px) {
	.cnb2 ul {
		grid-template-columns: repeat(3,1fr);
	}

	.cnb2 ul li a {
		font-size: 1.65rem;
	}
}

@media screen and (max-width:640px) {
	.cnb2 ul li {
		font-size: 1.5rem;
		letter-spacing: -0.5px;
	}

	.cnb2 ul {
		grid-template-columns: repeat(2,1fr);
	}
}

@media screen and (max-width:450px) {
	.cnb2 ul {
		grid-template-columns: repeat(1,1fr);
	}

	.cnb2 ul li {
		font-size: 1.5rem;
	}
}

