@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1560px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 50px;
	background: var(--white);
	z-index: 5;
	transition: all .3s;
	box-sizing: border-box;
}
#header .logo a {
	display: block;
	width: 150px;
	height: 43px;
	margin-bottom: 0;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 100%;
	background-image: url("../images/logo.svg");
	transition: all .3s;
}
#header .gnb > ul {
	margin-bottom: 0;
	gap: 60px;
}
#header .gnb > ul > li {
	position: relative;
	background: url("../images/arrow-down.svg")no-repeat 100% 50%;
	padding-right: 17px;
}
#header .gnb > ul > li.no_child {
	padding-right: 0!important;
	background: none!important;
}
#header .gnb > ul > li > a {
	font-size: 16px;
	transition: all .3s;
}
#header .gnb > ul > li > div {
	opacity: 0;
	visibility: hidden;
	position: absolute;
    top: 16px;
    left: -25px;
    padding-top: 40px;
	width: 200px;
	transition: all 0.2s ease;
	transform: translate3d(0, -10px, 0);
}
#header .gnb > ul > li.active > a {
	color: var(--key-color);
	font-weight: 700;
}
#header .gnb > ul > li:hover > div {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}
#header .gnb > ul > li > div > ul {
    background: var(--white);
}
#header .gnb > ul > li > div > ul > li > a {
	display: block;
	width: 100%;
	color: var(--black);
	padding: 20px;
	border-bottom: 1px solid #e5e5e5;
	box-sizing: border-box;
}
#header .gnb > ul > li > div > ul > li:last-child > a {
	border-bottom: 0;
}
#header .gnb > ul > li > div > ul > li > a:hover {
	background: var(--key-color);
	color: var(--white);
}
#header .contact_btn a {
	display: block;
	width: 126px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	font-weight: 600;
	border-radius: 5px;
	font-family: "Source Sans 3", sans-serif;
	transition: all .3s;
}
#header .menu {
	display: none;
	position: absolute;
	top: 18px;
	left: 20px;
}
#header .menu a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 22px;
	color: var(--key-color);
	text-align: center;
}
#header.fixed {
	background-color: var(--key-color)!important;
}
#header.fixed .logo a {
	background-image: url("../images/logo_white.svg");
}
#header.fixed .gnb > ul > li {
	background: url("../images/arrow-down-white.svg")no-repeat 100% 50%;
}
#header.fixed .gnb > ul > li > a {
	color: var(--white);
}
#header.fixed .contact_btn a {
	background: var(--white)!important;
	color: var(--key-color)!important;
}
#header.fixed .menu a {
	color: var(--white);
}




.side_wrap {
	width: 280px;
	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 .side_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 18px;
    height: 18px;
	background: url("../images/ic_close.svg")no-repeat 50% 50% / 100%;
    z-index: 1;
}
.side_wrap .depth {
    margin: 55px 0 30px;
	border-top: 1px solid #e9e9e9;
}
.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: 14px;
	padding: 15px 20px;
	box-sizing: border-box;
}
.side_wrap .depth01 > a {
	background: url("../images/arrow-down.svg")no-repeat calc(100% - 10px) 50% / 12px;
}
.side_wrap .depth01.no_child > a {
	background: none!important;
}
.side_wrap .depth01.active > a {
	background: var(--key-color) url("../images/arrow-down-white.svg")no-repeat calc(100% - 10px) 50% / 12px;
	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 {
	padding-top: 92px;
}



.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;
}


.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: var(--gray);
	padding: 60px 0;
}
#footer .inner {
	gap: 50px;
}
#footer .ft_contact {
	gap: 40px;
	align-items: end;
}
#footer .ft_contact .info {
	gap: 20px;
}
#footer .ft_contact .info h3 {
	text-transform: uppercase;
	font-size: 32px;
}
#footer .ft_contact .info .tel a {
	background: url("../images/ic_tel.svg")no-repeat 0 50% / auto 100%;
	font-size: 20px;
	color: var(--black);
	font-weight: 700;
	padding-left: 35px;
}
#footer .ft_contact .info .txt {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	gap: 10px;
}
#footer .ft_contact .info .txt .mail {
	background: url("../images/ic_mail.svg")no-repeat 0 0;
}
#footer .ft_contact .info .txt .mail a {
	font-size: 20px;
	color: var(--black);
	font-weight: 700;
	padding-left: 35px;
}
#footer .ft_contact .box {
	font-size: 24px;
	font-weight: 700;
	gap: 20px;
	line-height: 1.4;
	box-sizing: border-box;
}
#footer .ft_contact .box a {
	display: inline-block;
	font-size: 32px;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: 6px;
	box-sizing: border-box;
}
#footer .ft_contact .box a:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 12px;
	background: url("../images/line-arrow-right-white.svg")no-repeat 50% 50% / 100%;
	margin-left: 10px;
}
#footer .bottom {
	gap: 10px;
}
#footer .bottom .sns {
	gap: 20px;
}
#footer .bottom .sns > a {
	width: 36px;
}
#footer .bottom .sns > a img {
	width: 100%;
}
#footer .bottom .copy {
	color: var(--gray3);
	font-weight: 500;
}




.sub_bg {
	height: 300px;
	text-align: center;
	justify-content: center;
	font-size: 40px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	text-transform: uppercase;
}


.navi {
	background: var(--gray);
}
.navi .inner {
	padding: 0;
}
.navi .swiper-slide {
	flex: 1;
	text-align: center;
	margin-right: 20px;
}
.navi .swiper-slide:last-child {
	margin-right: 0!important;
}
.navi .swiper-slide a {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
	height: 82px;
	font-size: 20px;
	text-transform: capitalize;
	justify-content: center;
}
.navi .swiper-slide.active:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 5px;
	background: var(--key-color);
}
.navi .swiper-slide.active a {
	color: var(--key-color);
	font-weight: 700;
}


.content {
	padding: 120px 0;
}




@media screen and (max-width: 1280px) {
	#header .gnb > ul {
		gap: 40px;
	}
	
	#footer .ft_contact .info h3 {
		font-size: 28px;
	}
	#footer .ft_contact .info .tel a,
	#footer .ft_contact .info .txt .mail a,
	#footer .ft_contact .info .txt {
		font-size: 18px;
	}
	#footer .ft_contact .box {
		font-size: 20px;
	}
	#footer .ft_contact .box a {
		font-size: 18px;
	}
	
	.sub_bg {
		font-size: 28px;
	}
	
	.navi .swiper-slide a {
		font-size: 18px;
	}
}
@media screen and (max-width: 1024px) {
	#header {
		padding: 15px 20px;
		justify-content: center;
	}
	#header .logo a {
		width: 120px;
		height: 37px;
	}
	#header .gnb,
	#header .contact_btn {
		display: none;
	}
	#header .menu {
		display: block;
	}
	
	
	#container {
		padding-top: 68px;
	}
	
	
	#footer {
		padding: 40px 0;
	}
	#footer .ft_contact .info h3 {
        font-size: 24px;
    }
	#footer .ft_contact .info .tel a, 
	#footer .ft_contact .info .txt .mail a,
	#footer .ft_contact .info .txt {
        font-size: 16px;
    }
	#footer .ft_contact .info .tel a, 
	#footer .ft_contact .info .txt .mail a {
		padding-left: 27px;
	}
	#footer .ft_contact .info .txt .mail {
		background-size: 20px;
	}
	#footer .ft_contact .box a {
        font-size: 16px;
    }
	#footer .bottom .sns {
		gap: 10px;
	}
	#footer .bottom .sns > a {
		width: 30px;
	}
	#footer .bottom .copy {
		font-size: 14px;
	}
	
	.sub_bg {
		height: 200px;
        font-size: 20px;
    }
	
	.navi .swiper-slide {
		flex: none;
        width: auto;
        margin-right: 0;
        padding: 0 30px;
    }
	.navi .swiper-slide a {
		font-size: 16px;
		height: 65px;
	}
	.navi .swiper-slide.active:after {
		height: 3px;
	}
	
	.content {
		padding: 70px 0;
	}
	
	
	.modal .close_bar {
		font-size: 18px;
	}
	.modal .close {
		top: 20px;
	}
	.modal .modal_cont .scroll {
		padding: 0 20px;
	}
	
}
@media screen and (max-width: 768px) {
	.navi .swiper-slide a {
		font-size: 14px;
		height: 54px;
	}
	
	.pagenavi ol {
		gap: 10px;
	}
}
@media screen and (max-width: 480px) {
	#footer .ft_contact .box .taR {
		text-align: center!important;
	}
	#footer .ft_contact .box a:after {
		width: 16px;
		height: 12px;
		margin-left: 5px;
	}
	#footer .bottom {
		justify-content: center;
	}
	#footer .bottom .copy {
		width: 100%;
		text-align: center;
	}
	
	.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) {
}