@charset "utf-8";

#wrap {
	position: relative;
}


.inner {
	position: relative;
	max-width:1440px;
	padding:0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: fixed;
    z-index: 13;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}
#header .inner {
	max-width: 1760px;
}
#header .flex {
	align-items: center;
	height: 106px;
}
#header h1.logo {
	flex: 1;
	font-size: 40px;
	font-weight: 800;
}
#header h1.logo a {
	position: relative;
	display: inline-block;
	padding-left: 95px;
	font-family: 'LeferiPoint';
	font-weight: 700;
	color: #2B2B2B;
	word-break: keep-all;
}
#header h1.logo img {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 83px;
}
#header .gnb {
    text-align: right;
    font-size: 0;
}
#header .gnb .category > li {
	display: inline-block;
	vertical-align: middle;
	margin-left: 53px;
}
#header .gnb .category > li.lang .sub_category ul {
	padding: 0;
	background: transparent;
	border-radius: 20px;
}
#header .gnb .category > li.lang:hover .sub_category ul {
	transform: translateY(50px);
}
#header .gnb .category > li > a {
	position: relative;
	display: block;
	color: #151515;
	font-size: 20px;
	font-weight: 500;
	height: 30px;
	line-height: 30px;
}
#header .gnb .category > li > a:hover {
	color: #4AA1AF;
}
#header .gnb .category > li.active > a {
	color: #4AA1AF;
}
#header .gnb .category > li.active > a:after {
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: -5px;
	left: 0;
	background: #4AA1AF;
	border-radius: 50px;
}
#header .gnb .category > li.lang {
	margin-left: 100px;
}
#header .gnb .category > li.lang a {
	font-size: 16px;
}
#header .gnb .sub_category ul {
    position: absolute;
    top: 0;
    transform: translateY(60px);
    transition: all .4s ease-in-out;
    background: #fff;
    color: #000;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    text-align: left;
    padding: 15px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 35%);
}
#header .gnb .sub_category ul li {
	padding: 7px 0;
	line-height: 1.3;
}
#header .gnb .sub_category ul li a {
	display: block;
	font-size: 17px;
	font-weight: 500;
}
#header .gnb .category > li:hover .sub_category ul {
	transform: translateY(80px);
	z-index: 2;
	opacity: 1;
	visibility: visible;
	transition: all .2s ease-in-out;
}
#header .gnb .category > li:last-child .sub_category ul {
	width: 95px;
    right: 0;
}
#header .m_lang {
	display: none;
	position: absolute;
	top: 25px;
	right: 65px;
}
#header .m_lang a {
    background: linear-gradient(350.04deg, #0A13D1 -17.25%, #BA25D7 123.1%);
    border-radius: 20px;
    color: #fff;
    width: 70px;
    height: 30px;
    line-height: 34px;
    text-align: center;
    display: block;
}
#header .menu {
	display: none;
	position: absolute;
	top: 18px;
    right: 20px;
	z-index: 1;
}
#header .menu a {
    display: block;
    width: 45px;
    height: 45px;
	background: url("../images/ico_menu.svg")no-repeat 50% 50% / 30px;
}




.side-wrap {
	width: 240px;
	height: 100%;
	position: fixed; 
	right: -100%;
	z-index: 16;
	background: #fff;
	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 .scrollFunc {
	padding: 0 20px;
	box-sizing: border-box;
}
.side-wrap .side_close {
	float: right;
	display: block;
	width: 25px;
	height: 25px;
	background: url("../images/ico-close-o.svg")no-repeat 50% 50% / 20px;
	margin-top: 10px;
}
.side-wrap .depth li a,
.side-wrap .depth li button {
	display: block;
	width: 100%;
    padding: 12px 0 12px 10px;
    text-align: left;
    font-size: 18px;
	box-sizing: border-box;
}
.side-wrap .depth li button {
	background: url("../images/ico-down.svg")no-repeat 100% 50% / 18px;
}
.side-wrap .depth01 {
	position: relative; 
}
.side-wrap .depth01.active > button {
	background: #4AA1AF;
	color: #fff;
}
.side-wrap .depth01.active .depth02 {
	max-height: 500px;  
	margin-bottom: -1px;
}
.side-wrap .depth01 > a {
	color:#1c1c1c; 
	font-size:16px; 
	position: relative;
}
.side-wrap .depth02 { 
	max-height: 0; 
	overflow: hidden; 
	-webkit-transition: max-height .3s; 
	-moz-transition: max-height .3s; 
	transition: max-height .3s;
}
.side-wrap .depth01.active .depth02 .hidden {
	position: absolute;
    top: -1px;
    width: 100%;
    z-index: 2;
}
.side-wrap .depth01.active .depth02 .hidden a {
	font-size: 0;
	height: 24px;
}
.side-wrap .depth02 > li > a:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 5px;
	height: 5px;
	background: #4AA1AF;
	margin: 0 5px 0 7px;
}
.black-bg {
	position: fixed;
	width:100%;
	height: 100%;
	left:0;
	top:0;
	z-index: 14;
	background: rgba(0,0,0,0.5);
	display: none;
}



#container {
	width: 100%;
	padding-top: 106px;
}




.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 23;
}
.modal .modal-cont {
    width: 90%;
    max-width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
	z-index: 24;
	background: #fff;
}
.modal .modal-cont .scroll {
	background: #fff;
	max-height: 95vh;
    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;
}
.modal .modal-cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 20px; 
	right: 20px;
	z-index: 1;
	transform: rotate(0deg);
	transition: all .5s ease-in-out;
}
.modal .close:hover {
	transform: rotate(180deg);
}
.modal .close img {
	vertical-align: middle;
}

.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	margin-top: 120px;
	background: #241F1F;
	padding: 80px 0;
	color: #fff;
}
#footer .logo {
	margin-right: 30px;
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	font-family: 'LeferiPoint';
}
#footer .logo img {
	vertical-align: middle;
	margin-right: 10px;
}
#footer .info {
	flex: 1;
	margin-right: 30px;
}
#footer .info .top {
	margin-bottom: 20px;
}
#footer .info .top a {
	color: #fff;
	font-size: 20px;
	margin-right: 20px;
}
#footer .info .addr {
	margin-bottom: 20px;
	font-size: 0;
	color: rgba(255, 255, 255, 0.7);
}
#footer .info .addr span {
	position: relative;
	display: inline-block;
	margin-right: 20px;
	padding-right: 20px;
	font-size: 16px;
}
#footer .info .addr span:after {
	content: '';
	display: block;
	width: 1px;
	height: 10px;
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	top: 4px;
	right: 0;
}
#footer .info .addr span:last-child {
	margin-right: 0;
	padding-right: 0;
}
#footer .info .addr span:last-child:after {
	display: none;
}
#footer .info .icon {
	margin-bottom: 20px;
}
#footer .info .icon span {
	margin-right: 20px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	padding-left: 30px;
}
#footer .info .icon span a {
	color: rgba(255, 255, 255, 0.7);
}
#footer .info .icon span.tel {
	background: url("../images/ico-phone.svg")no-repeat 0 50%;
}
#footer .info .icon span.fax {
	background: url("../images/ico-fax.svg")no-repeat 0 50%;
}
#footer .info .icon span.adr {
	background: url("../images/ico-addr.svg")no-repeat 0 50%;
}
#footer .info .icon span.mail {
	background: url("../images/ico-mail.svg")no-repeat 0 50%;
}
#footer .info .copy {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.3);
}
#footer .sns a {
	margin-right: 20px;
}
#footer .sns a:last-child {
	margin-right: 0;
}



.top_btn {
	position: fixed;
	bottom: 40px;
	right: 20px;
	z-index: 2;
	background: #fff;
	border-radius: 50%;
}
.top_btn a {
	display: block;
	width: 54px;
	height: 54px;
	background: url("../images/top_btn.svg")no-repeat 50% 50% / 100%;
}


.m_title {
	display: none;
	padding: 20px 0;
	text-align: center;
}
.m_title h3 {
	font-size: 24px;
	color: #4AA1AF;
}

.title_menu {
	margin-bottom: 80px;
	background: #F7F7F7;
	border-radius: 100px;
	padding: 25px 0;
	text-align: center;
	box-sizing: border-box;
	margin-top: 50px;
}
.title_menu .scroll {
	overflow-y: auto;
    white-space: nowrap;
	padding: 0 20px;
}
.title_menu a {
	display: inline-block;
	font-size: 24px;
	background: #FFFFFF;
	border: 1px solid #4AA1AF;
	border-radius: 100px;
	padding: 16px 31px 12px;
	box-sizing: border-box;
	margin: 0 15px;
}
.title_menu a.active {
	background: #4AA1AF;
	color: #fff;
	font-weight: bold;
}

.title_slide {
	margin-top: 50px;
	margin-bottom: 80px;
	background: #F7F7F7;
	border-radius: 100px;
	text-align: center;
	box-sizing: border-box;
}
.title_slide .swiper-container {
	padding: 40px 0 40px 20px;
}
.title_slide .swiper-slide {
	width: auto;
}
.title_slide .swiper-slide a {
	font-size: 24px;
	background: #FFFFFF;
	border: 2px solid #026767;
	border-radius: 100px;
	padding: 16px 31px 12px;
	box-sizing: border-box;
	margin: 0 15px;
}
.title_slide .swiper-slide a.active {
	background: #4AA1AF;
	border: 2px solid #4AA1AF;
	color: #fff;
	font-weight: bold;
}


.title_area {
	text-align: center;
	margin-bottom: 80px;
}
.title_area h2 {
	position: relative;
	display: inline-block;
    font-size: 32px;
    color: #4AA1AF;
    border: 1px solid #4AA1AF;
    border-radius: 10px;
	padding: 16px 50px 12px;
    box-sizing: border-box;
	overflow:hidden;
}
.title_area h2:hover {
	background: #4AA1AF;
	transition: all 400ms ease-in-out;
}
.title_area h2:before {
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:0;
	right: 0;
	bottom:0;
	background: #4AA1AF;
	transform: scaleX(0);
	border-radius: 10px;
	transform-origin: 0 50%;
	transition-property: transform;
	transition-timing-function: ease-out;
	transition-duration: 0.3s;
}
.title_area h2:hover:before {
	transform: scaleX(1);
}
.title_area h2 span {
	position:relative;
	display:block;
	z-index:1;
}
.title_area h2:hover span {
	color: #fff;
}


.page_navi {
	margin-top: 50px;
}
.page_navi ol {
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}
.page_navi ol li {
	margin: 0 7px;
}
.page_navi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 32px;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
}
.page_navi ol li.on a {
	background: linear-gradient(0deg, #4AA1AF, #4AA1AF), #FFFFFF;
	color: #fff;
	border-radius: 4px;
}
.page_navi .first a {
	background: url("../images/navi-first.svg")no-repeat 50% 50%;
}
.page_navi .prev a {
	background: url("../images/navi-prev.svg")no-repeat 50% 50%;
}
.page_navi .next a {
	background: url("../images/navi-next.svg")no-repeat 50% 50%;
}
.page_navi .last  a {
	background: url("../images/navi-last.svg")no-repeat 50% 50%;
}









@media screen and (max-width: 1600px) {
	#header h1.logo {
		font-size: 35px;
	}
	#header h1.logo a {
		padding-left: 75px;
	}
	#header h1.logo img {
		width: 62px;
	}
}
@media screen and (max-width: 1400px) {
	#footer .site_info .related .flex a {
		font-size: 20px;
	}
}
@media screen and (max-width: 1280px) {
	#header h1.logo {
		font-size: 25px;
	}
	#header h1.logo a {
		padding-left: 60px;
	}
	#header h1.logo img {
		width: 52px;
	}
	#header .gnb .category > li {
		margin-left: 35px;
	}
	#header .gnb .category > li > a {
		font-size: 18px;
	}
	#header .gnb .category > li.lang {
		margin-left: 45px;
	}
	#header .gnb .category > li.lang a {
		font-size: 16px;
	}
	
	
	#footer {
		margin-top: 80px;
	}
	#footer .logo {
		margin-right: 20px;
		font-size: 25px;
	}
	#footer .logo img {
		width: 50px;
	}
	#footer .info {
		margin-right: 20px;
	}
	#footer .info .top {
		margin-bottom: 10px;
	}
	#footer .info .top a {
		font-size: 16px;
		margin-right: 10px;
	}
	#footer .info .addr {
		margin-bottom: 10px;
	}
	#footer .info .addr span {
		margin-right: 10px;
		padding-right: 10px;
		font-size: 14px;
	}
	#footer .info .icon {
		margin-bottom: 10px;
	}
	#footer .info .icon span {
		margin-right: 15px;
		font-size: 14px;
		padding-left: 20px;
		background-size: 15px!important;
		margin-bottom: 5px;
	}
	#footer .info .copy {
		font-size: 12px;
	}
	#footer .sns a {
		margin-right: 10px;
	}
	#footer .sns a img {
		width: 40px;
	}
}
@media screen and (max-width: 1024px) {
	#header .flex {
		height: 80px;
	}
	#header h1.logo {
		font-size: 24px;
	}
	#header h1.logo a {
		padding-right: 45px;
	}
	#header .gnb .category {
		display: none;
	}
	#header .menu {
		display: block;
	}
	
	
	#container {
		padding-top: 80px;
	}
	
	
	#footer {
		margin-top: 40px;
		padding: 50px 0;
	}
	#footer .info {
		flex: none;
		width: 100%;
		margin-top: 20px;
	}
	#footer .sns {
		position: absolute;
		top: 0;
		right: 20px;
	}
	
	
	.m_title {
		display: block;
	}
	
	.title_menu {
		padding: 16px 0px;
		border-radius: 30px;
		margin-bottom: 40px;
		margin-top: 0;
	}
	.title_menu a {
		margin: 0 5px;
		font-size: 14px;
		padding: 10px 20px;
	}
	
	.title_slide {
		border-radius: 30px;
		margin-bottom: 40px;
	}
	.title_slide .swiper-container {
		padding: 20px 10px;
	}
	.title_slide .swiper-slide a {
		margin: 0 5px;
		font-size: 14px;
		padding: 10px 20px 6px;
	}
	
	
	.title_area {
		margin-bottom: 40px;
	}
	.title_area h2 {
		font-size: 20px;
		padding: 11px 19px 8px;
	}
	
	
	.top_btn a {
		width: 40px;
		height: 40px;
	}
}
@media screen and (max-width: 768px) {
	#header h1.logo {
		font-size: 20px;
	}
	#header h1.logo a {
		padding-left: 50px;
	}
	#header h1.logo img {
		width: 40px;
	}
	

	#footer .info .top a {
		font-size: 14px;
	}
	#footer .info .addr span {
		font-size: 13px;
	}
	#footer .sns {
		top: 5px;
	}
	#footer .sns a {
		margin-right: 5px;
	}
	#footer .sns a img {
		width: 30px;
	}


	.page_navi {
		margin-top: 30px;
	}
	.page_navi ol li {
		margin: 0;
	}
	.page_navi ol li a {
		font-size: 12px;
		width: 24px;
		height: 24px;
		line-height: 26px;
	}
}
@media screen and (max-width: 480px) {
	
}
@media screen and (max-width: 380px) {
	#header h1.logo {
		font-size: 16px;
	}
	
	
	.page_navi ol li a {
		font-size: 12px;
		width: 18px;
		height: 18px;
		line-height: 21px;
		background-size: 12px!important;
	}
}