@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1570px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}


#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 33;
	background: var(--white);
	transition: background .2s;
	box-sizing: border-box;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
#header.fixed {
	background: var(--white)!important;
	box-shadow: 0 0 10px rgba(0,0,0,0.3)!important;
}
#header .inner {
	max-width: 1720px;
	height: 100px;
	gap: 20px;
}
#header .logo img {
	height: 36px;
}
#header .gnb{
	flex: 1;
	gap: 20px;
	padding: 0 30px;
	box-sizing: border-box;
}
#header .gnb > li {
	position: relative;
}
#header .gnb > li > a {
	color: var(--black);
	text-transform: uppercase;
	font-weight: 500;
	border-bottom: 2px solid transparent;
	transition: all .3s;
	padding: 3px 15px;
	box-sizing: border-box;
}
#header .gnb > li.active > a {
	color: var(--key-color);
	border-bottom: 2px solid var(--key-color);
}
#header .gnb > li > a:hover {
	color: var(--key-color);
	border-bottom: 2px solid var(--key-color);
}
#header .gnb > li .sub_category {
	display: none;
	position: absolute;
	width: 100%;
	padding-top: 45px;
}
#header .gnb > li:hover .sub_category {
	display: block;
}
#header .gnb > li .sub_category ul {
	border-radius: 5px;
	background: var(--white);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
	padding: 15px;
	gap: 10px;
	box-sizing: border-box;
}
#header .gnb > li.h1 .sub_category ul {
	width: 105px;
}
#header .gnb > li.h3 .sub_category ul {
	width: 173px;
}
#header .gnb > li.h4 .sub_category ul {
	width: 100px;
}
#header .gnb > li.h6 .sub_category ul {
	width: 150px;
}
#header .gnb > li .sub_category ul li a {
	font-size: 16px;
	color: var(--black);
	text-transform: uppercase;
}
#header .top_view {
	width: 300px;
}
#header .top_view .view_btn {
	display: none;
	width: 20px;
	height: 20px;
	background: url("../images/ic_search.svg")no-repeat 50% 50% / 100%;
}
#header .top_view .box > .flex {
	width: 100%;
	border-radius: 10px;
	border: 1px solid #AAA;
	background: var(--white) url("../images/ic_search.svg")no-repeat 12px 50% / 22px;
	padding: 0 12px;
	box-sizing: border-box;
}
#header .top_view .box input {
    width: 100%;
    height: 50px;
    font-size: 16px;
    background: transparent;
    padding-left: 32px;
    box-sizing: border-box;
}
#header .lang {
	position: relative;
	width: 50px;
	text-align: center;
}
#header .lang button {
	display: block;
	width: 50px;
	height: 50px;
	background: var(--white) url("../images/ic_global.svg")no-repeat 50% 50%;
	border-radius: 10px;
	border: 1px solid #AAA;
	box-sizing: border-box;
}
#header .lang > div {
	display: none;
	position: absolute;
	width: 93px;
	padding-top: 25px;
	margin-left: -20px;
}
#header .lang:hover > div {
	display: block;
}
#header .lang > div ul {
	position: relative;
	background: var(--white);
	width: 100%;
	padding: 15px 0;
	border-radius: 5px;
	gap: 10px;
	text-align: center;
	box-sizing: border-box;
}
#header .lang > div ul:before {
	content: '';
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 0;
	height: 0;
	border-bottom: 8px solid var(--white);
    border-top: 12px solid transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
#header .lang > div ul li a {
	font-size: 14px;
	color: var(--black);
	text-transform: uppercase;
}


#header .menu {
	display: none;
    position: absolute;
    top: 18px;
    right: 10px;
}
#header .menu a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}
#header.on .menu a {
	background: var(--key-color);
	border-radius: 5px;
}
#header .menu a span {
	position: absolute;
	left: 10px;
	display: block;
	width: 20px;
	height: 2px;
	background: var(--key-color);
	transition: all .3s;
}
#header .menu a span:nth-child(1) {
	top: 13px;
}
#header .menu a span:nth-child(2) {
	top: 19px;
}
#header .menu a span:nth-child(3) {
	top: 25px;
}
#header.on .menu a span:nth-child(1) {
	top: 20px;
	transform: rotate(45deg);
}
#header.on .menu a span:nth-child(2) {
	display: none;
}
#header.on .menu a span:nth-child(3) {
	top: 20px;
	transform: rotate(-45deg);
}



.side_wrap {
	width: 250px;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 35;
	background: var(--white);
	overflow-y: auto;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
	transition: all .2s;
}
.side_wrap.on {
	right: 0;
}
.side_wrap .top {
	padding: 10px 15px 20px;
}
.side_wrap .top .lang {
	position: relative;
	text-align: center;
}
.side_wrap .top .lang ul {
	position: relative;
	gap: 10px;
	box-sizing: border-box;
}
.side_wrap .top .lang ul li a {
    display: block;
    width: 55px;
    height: 32px;
    line-height: 31px;
    border-radius: 10px;
    border: 0.5px solid #AAA;
    background: var(--white);
    color: #AAA;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Pretendard', "Noto Sans SC", sans-serif;
    box-sizing: border-box;
}
.side_wrap .top .lang ul li.active a {
	border: 0.5px solid #000;
	background: #000;
	color: var(--white);
}
.side_wrap .top .side_close {
    position: absolute;
	top: 8px;
	right: 0;
    width: 40px;
    height: 40px;
    background: url("../images/ico-close.svg")no-repeat 50% 50% / 20px;
    z-index: 1;
}
.side_wrap.on .top .side_close {
	display: block;
}
.side_wrap .depth {
    padding: 15px 0 30px;
}
.side_wrap .depth01 {
	position: relative;
	border-bottom: 1px solid #e9e9e9;
}
.side_wrap .depth01 a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	font-size: 16px;
	padding: 15px 20px;
	box-sizing: border-box;
}
.side_wrap .depth01.active > a {
	background: var(--key-color);
	color: var(--white);
}
.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: all .3s;
}
.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}
.side_wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 20px;
	box-sizing: border-box;
}
.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}
.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}


#container {
    width: 100%;
    padding-top: 150px;
    min-height: calc(100vh - 206px);
    box-sizing: border-box;
}


.sub_tit {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	color: var(--white);
	font-size: 40px;
	padding: 205px 0 40px;
	box-sizing: border-box;
}







.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.modal .modal_cont {
    width: 95%;
    max-width: 1320px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 38;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}
.modal .modal_cont .scroll {
	position: relative;
	background: var(--white);
	max-height: calc(95vh - 75px);
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 0 35px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close_bar {
	position: relative;
	padding: 20px;
	text-align: center;
	background: #292929;
	color: var(--white);
	font-size: 25px;
	font-weight: 600;
	box-sizing: border-box;
}
.modal .close {
	position: absolute;
	top: 25px;
	right: 20px;
	width: 24px;
	height: 24px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50% / 20px;
	box-sizing: border-box;
}



.not_scroll {
	overflow: hidden;
}

.sub_tab {
	margin-bottom: 50px;
}
.sub_tab .flex {
	justify-content: center;
	gap: 20px;
}
.sub_tab .flex a {
	width: 180px;
	height: 56px;
	line-height: 56px;
	color: #aaa;
	font-weight: 500;
	border-radius: 30px;
	border: 1px solid #AAA;
	text-align: center;
	box-sizing: border-box;
}
.sub_tab .flex a.active {
	background: var(--black);
	border: 1px solid var(--black);
	color: var(--white);
}


.pagenavi {
	margin-top: 20px;
	padding-top: 20px;
}
.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 20px;
}
.pagenavi ol li img {
	vertical-align: middle;
	margin-top: -2px;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 32px;
	font-size: 16px;
	background: #fff;
	color: #7c7c7c;
}
.pagenavi ol li.this a {
	background: var(--black);
	color: var(--white);
	border-radius: 50%;
}



#footer {
	background: #292929;
	padding: 70px 0;
	margin-top: 50px;
	text-align: center;
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
}


#fix {
	position: fixed;
	bottom: 60px;
	right: 50px;
	width: 110px;
}
#fix a {
	display: block;
	border: 2px solid #FEE712;
	border-radius: 20px;
	background: var(--white);
	text-align: center;
	overflow: hidden;
	box-sizing: border-box;
}
#fix a .icon {
	background: #FEE712;
	padding: 10px;
}
#fix a p {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	padding: 10px 5px;
	box-sizing: border-box;
}







@media screen and (max-width: 1720px) {
	#fix {
		right: 20px;
	}
}
@media screen and (max-width: 1440px) {
	#header .inner {
		gap: 10px;
	}
	#header .gnb {
		padding: 0;
		gap: 5px;
	}
	#header .gnb ul {
		gap: 45px;
	}
	#header .gnb > li > a {
		padding: 3px 10px;
	}
	#header .top_view {
		width: 225px;
	}
	#header .lang ul li a {
		width: 50px;
		font-size: 14px;
	}
}
@media screen and (min-width: 1025px) {
	#header .top_view .box {
		display: block!important;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: 75px;
		padding-right: 52px;
		gap: 12px;
	}
	#header .logo {
		flex: 1;
	}
	#header .gnb {
		display: none;
	}
	#header .top_view {
		width: auto;
	}
	#header .top_view .view_btn {
		display: block;
	}
	#header .top_view .box {
		display: none;
		position: fixed;
		top: 76px;
		left: 0;
		width: 100%;
		padding: 10px;
		background: var(--white);
		box-sizing: border-box;
		z-index: 1;
	}
	#header .lang {
		display: none;
	}
	#header .menu {
		display: block;
	}
	
	
	#container {
		padding-top: 115px;
	}

	#footer {
		padding: 35px 10px;
		margin-top: 30px;
	}

	.modal .close_bar {
		font-size: 18px;
	}
	.modal .close {
		top: 20px;
	}
	.modal .modal_cont .scroll {
		padding: 0 20px;
	}
	

	.sub_tab {
		overflow: auto hidden;
	}
	.sub_tab .flex {
		gap: 10px;
		min-width: max-content;
	}
	.sub_tab .flex a {
		width: auto;
    	padding: 0 16px;
		height: 46px;
		line-height: 46px;
		font-size: 14px;
	}

	.sub_tit {
		font-size: 30px;
		padding: 150px 0 40px;
	}

	#fix {
		width: 55px;
		bottom: 30px;
	}
	#fix a .icon img {
		width: 100%;
	}
	#fix a p {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.sub_tit {
		font-size: 20px;
		padding: 80px 0 20px;
	}

	.pagenavi ol {
		gap: 10px;
	}
}
@media screen and (max-width: 480px) {
	#header .top_area .right .lang {
		width: 55px;
		height: 30px;
		padding: 4px 7px;
		background-position: calc(100% - 5px) 50%;
	}
	#header .top_area .right .lang .result {
		height: 20px;
		font-size: 0;
	}
	#header .top_area .right .lang ul {
		top: 35px;
	}
	#header .top_area .right .lang ul li {
		padding: 4px 0;
	}
	#header .top_area .right .lang ul li a {
		height: 20px;
		font-size: 0;
		background-position: 50% 50%!important;
	}

	.pagenavi ol {
		gap: 3px;
	}
	.pagenavi ol li a {
		width: 25px;
		height: 25px;
		line-height: 27px;
		font-size: 14px;
	}
	.pagenavi ol li img {
		width: 55%;
	}
}
@media screen and (max-width: 380px) {
}