@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1480px;	
	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);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
	transition: background .2s;
	box-sizing: border-box;
}
#header .inner {
	max-width: 1720px;
	height: 104px;
	gap: 20px;
}
#header .left {
	gap: 60px;
}
#header .logo img {
	height: 60px;
	vertical-align: middle;
}
#header .gnb {
	flex: 1;
	gap: 20px;
	box-sizing: border-box;
}
#header .gnb > li {
	position: relative;
}
#header .gnb > li > a {
	color: var(--black);
	text-transform: uppercase;
	font-weight: 500;
	padding: 0px 15px;
	font-size: 20px;
	box-sizing: border-box;
}
#header .gnb > li.active > a {
	color: var(--key-color);
}
#header .gnb > li > a:hover {
	color: var(--key-color);
}
#header .fix {
	gap: 10px;
}
#header .fix > a {
	height: 64px;
	line-height: 64px;
	padding: 0 24px;
	border-radius: 15px;
	font-size: 20px;
	font-weight: 700;
	box-sizing: border-box;
}
#header .fix > a i {
	font-style: italic;
}
#header .fix > a.btn_color p {
	animation: opacity 1.2s linear infinite;
}
@keyframes opacity {
    0%{opacity:0;}
	50%{opacity:1;}
	100%{opacity:0;}
}
#header .fix > a.btn_point {
	gap: 10px;
}
#header .fix > a.btn_point:before {
	content: '';
	width: 24px;
	height: 24px;
	background: url("../images/ic_tel.svg")no-repeat 50% 50% / 100%;
}
#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;
	justify-content: end;
}
.side_wrap .top .side_close {
    width: 30px;
    height: 30px;
    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: 0 0 30px;
}
.side_wrap .depth01 {
	position: relative;
	border-bottom: 1px solid #e9e9e9;
}
.side_wrap .depth01:last-child {
	border-bottom: 0;
}
.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: var(--white);
	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: 104px;
}


h3.tit {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--key-color);
	text-transform: uppercase;
}




.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: 1520px;
    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 - 70px);
    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: 20px 35px 50px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close_bar {
	padding: 20px;
	text-align: right;
	box-sizing: border-box;
}
.modal .close {
	width: 40px;
	height: 40px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 20px;
	box-sizing: border-box;
}
.modal h3 {
	font-size: 30px;
	text-align: center;
}
.modal .bar {
    gap: 10px;
    padding: 30px 30px 20px;
    box-sizing: border-box;
}
.modal .btn_area {
	justify-content: center;
	margin-top: 50px;
}
.modal .btn_area button {
	width: 180px;
	height: 56px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 700;
}


.agree_pop .modal_cont {
	max-width: 768px;
}
.agree_pop .conts {
	white-space: pre-line;
	line-height: 1.8;
}


.not_scroll {
	overflow: hidden;
}


.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: var(--white);
	color: #7c7c7c;
}
.pagenavi ol li.this a {
	border-radius: 3px;
	background: var(--key-color);
	color: var(--white);
}



#footer {
	position: relative;
	background: #241F1F;
	padding: 80px 0;
	color: var(--white);
	font-family: 'Pretendard';
}
#footer .logo {
	width: 100%;
	color: var(--white);
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 50px;
}
#footer .logo img {
	width: 65px;
	vertical-align: middle;
	margin-right: 10px;
}
#footer .info {
	flex: 1;
	margin-right: 30px;
}
#footer .info .top {
	margin-bottom: 20px;
}
#footer .info .top a {
	color: var(--white);
	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 a {
	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.7);
}
#footer .sns {
	gap: 20px;
}


.footer_bn {
	margin-top: 200px;
	gap: 50px;
	background: url("../images/footer_bn.png")no-repeat 50% 50% / cover;
	padding: 120px 20px;
	color: var(--white);
	box-sizing: border-box;
}
.footer_bn h4 {
	font-size: 36px;
	line-height: 1.4;
}
.footer_bn .btn_group {
	justify-content: center;
	gap: 20px;
}
.footer_bn .btn_group a {
	width: 235px;
	height: 64px;
	line-height: 64px;
	background: var(--white);
	color: var(--key-color);
	border-radius: 15px;
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
}
.footer_bn .btn_group a img {
	vertical-align: -2px;
	margin-left: 10px;
}


#quick {
	position: fixed;
	bottom: 25px;
	right: 50px;
	gap: 20px;
	z-index: 15;
}
#quick > div {
	gap: 10px;
	align-items: end;
}
#quick > div > a {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--point) url("../images/arrow-up.svg")no-repeat 50% 50%;
}
#quick > div > a.down {
	transform: rotate(180deg);
}










@media screen and (max-width: 1480px) {
}
@media screen and (max-width: 1280px) {
	#header .left {
		gap: 30px;
	}
	#header .fix > a {
		height: 54px;
		line-height: 54px;
	}


	#quick {
		right: 10px;
		gap: 15px;
	}
	#quick > div > a {
		width: 35px;
		height: 35px;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: 75px;
		justify-content: space-between;
		padding-right: 52px;
	}
	#header .logo img {
		height: 45px;
	}
	#header .gnb {
		display: none;
	}
	#header .fix {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: var(--white);
		padding: 10px 15px;
		box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 0.2);
		box-sizing: border-box;
		z-index: 35;
	}
	#header .fix > a {
		flex: 1;
		height: 42px;
		line-height: 42px;
		font-size: 16px;
		text-align: center;
		justify-content: center;
		border-radius: 10px;
		padding: 0 5px;
	}
	#header .fix > a span {
		display: none;
	}
	#header .fix > a.btn_point:before {
		width: 18px;
		height: 18px;
	}
	#header .menu {
		display: block;
	}
	
	
	#container {
		padding-top: 76px;
	}

	#footer .logo {
		margin-right: 20px;
		font-size: 24px;
		margin-bottom: 10px;
	}
	#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 {
		gap: 10px;
	}


	.footer_bn {
		padding: 60px 20px;
		gap: 25px;
		margin-top: 100px;
	}
	.footer_bn h4 {
    	font-size: 24px;
	}
	.footer_bn .btn_group {
		gap: 10px;
	}
	.footer_bn .btn_group a {
		width: 195px;
		height: 48px;
		line-height: 48px;
		border-radius: 10px;
		font-size: 16px;
	}


	#quick {
		bottom: 80px;
	}


	.modal h3 {
		font-size: 20px;
		padding-bottom: 25px;
	}
	.modal .form {
		gap: 15px;
	}
	.modal .form .item > p {
		width: 55px;
		font-size: 16px;
	}
	.modal .form .item > div input {
		height: 42px;
		font-size: 16px;
		padding: 0 15px;
	}
	.modal .btn_area {
		margin-top: 30px;
	}

	h3.tit {
		font-size: 36px;
	}
}
@media screen and (max-width: 768px) {
	#footer {
		padding: 50px 0;
	}
	#footer .info {
		flex: none;
		width: 100%;
		margin-top: 20px;
	}
	#footer .sns {
		position: absolute;
		top: 0;
		right: 20px;
	}


	.modal .form .grid2 {
		gap: 15px;
	}
	.modal .form .grid2 > div {
		flex: none;
		width: 100%;
	}

	h3.tit {
		font-size: 28px;
	}

	.pagenavi ol {
		gap: 10px;
	}
}
@media screen and (max-width: 480px) {
	.footer_bn .btn_group a {
		width: 100%;
	}
	.footer_bn .btn_group a img {
    	vertical-align: -3px;
	}

	
	.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) {
}