@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1560px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}
img {
	transform: scale(1);
	transition: all .8s;
}
img:hover {
	transform: scale(1.1);
}

#header {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	z-index: 33;
	background: var(--white);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	transition:all .3s;
}
#header .inner {
	height: 90px;
}
#header h1 img {
	height: 40px;
}
#header h1 img:hover {
	transform: scale(1);
}
#header .gnb {
	flex: 1;
	justify-content: center;
}
#header .gnb > ul {
	gap: 50px;
}
#header .gnb > ul > li {
	position: relative;
	background: url("../images/arrow-down.svg") no-repeat 100% 50%;
    padding-right: 22px;
}
#header .gnb > ul > li.no_child {
	padding-right: 0!important;
	background: none!important;
}
#header .gnb > ul > li > a {
	font-size: 20px;
	line-height: 1;
}
#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: bold;
}
#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 .h_call a {
	display: block;
	height: 54px;
	line-height: 58px;
	background: var(--key-color);
	color: var(--white);
	border-radius: 10px;
	font-size: 24px;
	padding: 0 30px;
	text-align: center;
	box-sizing: border-box;
}
#header .menu {
	display: none;
    position: absolute;
    top: 20px;
    right: 20px;
}
#header .menu a {
	position: relative;
	display: block;
	width: 26px;
	height: 26px;
}
#header .menu a span {
	position: absolute;
	left: 4px;
	display: block;
	width: 18px;
	height: 2px;
	background: var(--key-color);
}
#header .menu a span:nth-child(1) {
	top: 6px;
}
#header .menu a span:nth-child(2) {
	top: 12px;
}
#header .menu a span:nth-child(3) {
	top: 18px;
}





.side-wrap {
	width: 100%;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 35;
	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 .top {
	position: relative;
	padding: 11px 20px;
}
.side-wrap .top h1 img {
	height: 40px;
	vertical-align: 0px;
}
.side-wrap .top .side-close {
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	width: 25px;
	height: 25px;
}
.side-wrap .top .side-close span {
	position: absolute;
    top: 11px;
    left: 2px;
    display: block;
    width: 22px;
    height: 2px;
	background: var(--key-color);
}
.side-wrap .top .side-close span:nth-child(1) {
	transform: rotate(45deg);
}
.side-wrap .top .side-close span:nth-child(2) {
	transform: rotate(-45deg);
}
.side-wrap .h_call {
	padding: 0 20px;
	box-sizing: border-box;
}
.side-wrap .h_call a {
    display: block;
    width: 100%;
    height: 46px;
	line-height: 47px;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
}
.side-wrap .depth {
    padding: 20px;
    overflow-y: auto;
    height: calc(100vh - 162px);
}
.side-wrap .depth01 button {
	display: block;
	width: 100%;
	text-transform: uppercase;
	font-size: 18px;
	text-align: left;
	padding: 15px 0;
	background: url("../images/arrow-down.svg")no-repeat 100% 50%;
}
.side-wrap .depth01.no_child button {
	background: none!important;
}
.side-wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	transition: all .3s;
}
.side-wrap .active .depth02 {
	max-height: 500px;
	padding-left: 20px;
}
.side-wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 16px;
	padding: 5px 0;
}




#container {
	width: 100%;
	padding-top: 90px;
}



#footer {
	position: relative;
	padding: 100px 0;
	background: #151515;
	font-family: "SUIT";
}
#footer .inner {
	gap: 100px;
}
#footer .inquiry {
	flex: 1;
	width: 100%;
	padding: 40px;
	border-radius: 10px;
	background: rgba(244, 246, 248, 0.96);
	box-sizing: border-box;
}
#footer .inquiry .title {
	font-family: 'GmarketSans',sans-serif;
}
#footer .inquiry .form {
	gap: 16px;
}
#footer .inquiry .box {
	gap: 16px 20px;
}
#footer .inquiry .box .item {
	width: calc(33.333% - 14px);
}
#footer .inquiry .box .item.w100 {
	width: 100%;
}
#footer .inquiry .box .item input {
	width: 100%;
	height: 60px;
	padding: 0 20px;
	border-radius: 10px;
	font-size: 20px;
	box-sizing: border-box;
}
#footer .inquiry .box .item textarea {
	width: 100%;
	height: 222px;
	resize: none;
	border: 0;
	padding: 16px 20px;
	border-radius: 10px;
	font-size: 20px;
	box-sizing: border-box;
}
#footer .inquiry .agree {
	gap: 10px;
}
#footer .inquiry .agree .check {
	position: relative;
	gap: 10px;
}
#footer .inquiry .agree .check input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
#footer .inquiry .agree .check input + label {
	position: relative;
	font-size: 16px;
	padding: 4px 0 4px 36px;
	box-sizing: border-box;
}
#footer .inquiry .agree .check input + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 26px;
	height: 26px;
	border: 0.5px solid rgba(35, 35, 35, 0.5);
	background: var(--white);
}
#footer .inquiry .agree .check input:checked + label:before {
	border: 0.5px solid var(--key-color);
	background: var(--key-color) url("../images/ic_check.svg")no-repeat 50% 50%;
}
#footer .inquiry .agree .check button {
	font-size: 16px;
	text-decoration: underline;
}
#footer .inquiry .agree > button {
	height: 52px;
	border-radius: 5px;
	font-size: 16px;
	letter-spacing: 0.32px;
	padding: 0 30px;
}
#footer .txt {
	width: 360px;
	gap: 50px;
	color: var(--white);
}
#footer .txt .box {
	gap: 20px;
}
#footer .txt .box h2 {
	font-size: 36px;
	font-weight: 800;
}
#footer .txt .box .info {
	gap: 20px;
}
#footer .txt .box .info > div {
	padding-left: 30px;
	font-size: 20px;
	background-repeat: no-repeat;
	background-position: 0 50%;
	box-sizing: border-box;
}
#footer .txt .box .info > div a {
	color: var(--white);
}
#footer .txt .box .info > div.tel {
	background-image: url("../images/ic_call.svg");
}
#footer .txt .box .info > div.mail {
	background-image: url("../images/ic_mail.svg");
}
#footer .txt .box .info > div.addr {
	background-image: url("../images/ic_addr.svg");
}
#footer .txt .box .adr {
	gap: 10px;
}
#footer .txt .sns {
	gap: 20px;
}
#footer .txt .util {
	gap: 20px;
}
#footer .txt .util a {
	color: var(--white);
	line-height: 1.4;
}
#footer .txt .copy {
	color: rgba(255, 255, 255, 0.40);
	font-weight: 500;
	line-height: 1.5;
}




.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.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: 38;
	background: #fff;
	border-radius: 10px;
	font-family: 'SUIT';
}
.modal .modal_cont .scroll {
	position: relative;
	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;
	padding: 40px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}


.agree_modal .cont {
	white-space: pre-line;
	font-size: 20px;
	line-height: 1.4;
}
.agree_modal .btn_area {
	justify-content: end;
	margin-top: 20px;
}
.agree_modal .btn_area button {
	height: 52px;
	font-size: 16px;
	letter-spacing: 0.32px;
	border-radius: 5px;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
	padding: 0 30px;
	box-sizing: border-box;
}


.not_scroll {
	overflow: hidden;
}




.title {
	position: relative;
}
.title p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	text-transform: capitalize;
}
.title h3 {
	font-size: 40px;
	line-height: 1.4;
	word-break: keep-all;
}



.tab {
	gap: 20px;
}
.tab > * {
	height: 76px;
	line-height: 76px;
	text-align: center;
	padding: 0 30px;
	font-size: 36px;
	border-radius: 10px;
	background: var(--gray);
	box-sizing: border-box;
}
.tab > *.active {
	background: var(--key-color);
	color: var(--white);
	font-weight: bold;
}



.top_btn {
	position: fixed;
	bottom: 70px;
	right: 50px;
	z-index: 32;
	transition: all 1s;
}
.top_btn > a {
	display: block;
	width: 50px;
	height: 50px;
	background: #fff url("../images/top_sc.svg")no-repeat 50% 50%;
	border-radius: 50%;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	margin: 0 auto;
}
.top_btn > div a {
	position: relative;
    width: 80px;
	height: 80px;
	justify-content: center;
    border-radius: 50%;
	font-size: 16px;
	font-weight: 700;
    text-align: center;
	font-family: 'SUIT';
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.30);
    box-sizing: border-box;
	color: var(--white);
	margin-bottom: 20px;
}
.top_btn > div a span {
	position: absolute;
	top: 0;
	right: 0;
	background: #EF0000;
	color: var(--white);
	display:block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	border-radius: 50%;
	font-size: 12px;
}
.top_btn > div.kakao a {
	background: #FAE300;
	color: #391B1B;
}
.top_btn > div.qna a {
	background: var(--key-color);
}
.top_btn > div.contact a {
	background: var(--black);
}
.top_btn > div a p {
	font-weight: 700;
	margin-top: 5px;
}


.pagenavi {
	margin-top: 50px;
}
.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 10px;
}
.pagenavi ol li img {
	vertical-align: middle;
}
.pagenavi ol li img:hover {
	transform: scale(1);
}
.pagenavi ol li a {
	display: block;
	width: 26px;
	height: 26px;
	line-height: 26px;
	font-size: 16px;
	color: #A6ACB2;
	font-family: "SUIT";
}
.pagenavi ol li.this a {
	color: var(--key-color);
	font-weight: 800;
}


.sec {
	padding: 120px 0;
}


.sub_bg {
	height: 790px;
	overflow: hidden;
	box-sizing: border-box;
}
.sub_bg .tit h2 {
	font-size: 96px;
	line-height: 1.2;
}
.sub_bg .tit div {
	font-size: 48px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 10px;
}
.sub_bg .thumb {
	flex: 1;
	max-width: 1050px;
}
.sub_bg .thumb img {
	max-width: 100%;
}



#util_pop .modal_cont {
	max-width: 433px;
}
#util_pop .form {
	text-align: center;
	gap: 16px;
}
#util_pop .form p {
	font-size: 20px;
	font-family: 'GmarketSans',sans-serif;
	line-height: 1.4;
}
#util_pop .form .input_line input {
	width: 100%;
	height: 60px;
	border-radius: 10px;
	background: var(--base);
	padding: 0 20px;
	text-align: center;
	font-size: 20px;
	box-sizing: border-box;
}
#util_pop .btn_area {
	margin-top: 10px;
	gap: 10px;
}
#util_pop .btn_area button {
	width: 90px;
	height: 52px;
	border-radius: 5px;
	font-size: 16px;
}
#util_pop .btn_area button[type=submit] {
	flex: 1;
}


@media screen and (max-width: 1560px) {
	#header .gnb > ul {
		gap: 35px;
	}
	#header .gnb > ul > li > a {
		font-size: 18px;
	}
	#header .h_call a {
		font-size: 20px;
	}


	#footer .inner {
		gap: 50px;
	}

	.sec {
		padding: 80px 0;
	}


	.sub_bg {
		height: auto;
	}
	.sub_bg .tit h2 {
		font-size: 60px;
	}
	.sub_bg .tit div {
		font-size: 30px;
	}


	.tab > * {
		height: 70px;
		line-height: 72px;
		padding: 0 30px;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: 70px;
	}
	#header .gnb,
	#header .h_call {
		display: none;
	}
	#header .menu {
		display: block;
	}


	#container {
		padding-top: 70px;
	}


	#footer {
		padding: 50px 0;
	}
	#footer .inquiry {
		padding: 30px;
	}
	#footer .inquiry .box .item input {
		height: 50px;
		padding: 0 15px;
		font-size: 18px;
	}
	#footer .inquiry .box .item textarea {
		padding: 15px;
		font-size: 18px;
	}
	#footer .txt {
		width: 100%;
		gap: 30px;
	}
	#footer .txt .box h2 {
		font-size: 30px;
	}
	#footer .txt .box .info > div {
		font-size: 18px;
	}


	.top_btn {
		right: 15px;
	}
	.top_btn > div a {
		width: 50px;
		height: 50px;
		font-size: 10px;
		margin-bottom: 10px;
	}
	.top_btn > div a img {
		width: 20px;
	}
	.top_btn > div a span {
        width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 10px;
    }
	.top_btn > a {
		width: 35px;
		height: 35px;
		background-size: 100%;
	}


	.title p {
		font-size: 18px;
	}
	.title h3 {
		font-size: 32px;
	}

	.sub_bg .tit h2 {
        font-size: 42px;
    }
	.sub_bg .tit div {
		font-size: 20px;
	}


	.tab > * {
		height: 60px;
		line-height: 62px;
		padding: 0 25px;
		font-size: 20px;
	}

	.agree_modal .cont {
		font-size: 16px;
	}

	#util_pop .form p {
		font-size: 16px;
	}
	#util_pop .form .input_line input {
		height: 48px;
		font-size: 16px;
	}
	#util_pop .btn_area button {
		height: 44px;
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	#footer .inquiry {
        padding: 20px;
    }
	#footer .inquiry .box .item {
		width: 100%;
	}
	#footer .inquiry .box .item input,
	#footer .inquiry .box .item textarea {
        font-size: 16px;
    }
	#footer .inquiry .agree .check input + label {
		font-size: 14px;
		padding: 2px 0 2px 30px;
	}
	#footer .inquiry .agree .check input + label:before {
		width: 20px;
		height: 20px;
	}
	#footer .inquiry .agree .check button {
		font-size: 14px;
	}
	#footer .inquiry .agree > button {
		height: 46px;
		font-size: 14px;
		padding: 0 20px;
	}
	#footer .txt .box h2 {
        font-size: 24px;
    }
	#footer .txt .box .info > div {
        font-size: 14px;
		background-size: 25px;
    }
	#footer .txt .box .adr {
		font-size: 14px;
	}
	#footer .txt .util {
		gap: 10px;
	}
	#footer .txt .util a {
		font-size: 14px;
	}
	#footer .txt .copy {
		font-size: 14px;
	}


	.sec {
		padding: 40px 0;
	}


	.title p {
        font-size: 16px;
    }
	.title h3 {
        font-size: 26px;
    }
	

	.sub_bg .box {
		gap: 30px;
	}
	.sub_bg .tit {
		width: 100%;
		text-align: center;
	}
	.sub_bg .tit h2 {
        font-size: 30px;
    }
	.sub_bg .tit div {
		font-size: 16px;
	}
	.sub_bg .thumb {
		flex: none;
		width: 100%;
		max-width: 100%;
	}
	
	.modal .modal_cont .scroll {
		padding: 20px;
	}


	.tab {
		gap: 10px;
	}
	.tab > * {
		height: 46px;
		line-height: 50px;
		padding: 0 20px;
		font-size: 16px;
	}
	
	
	.pagenavi {
		margin-top: 30px;
	}
	.pagenavi ol {
		gap: 5px;
	}
}
@media screen and (max-width: 480px) {
	#footer .inquiry .agree > button {
		width: 100%;
	}


	.pagenavi ol li a {
		width: 18px;
		height: 18px;
		line-height: 18px;
		font-size: 14px;
	}
	.pagenavi ol li.first img,
	.pagenavi ol li.last img {
		width: 20px;
		vertical-align: -3px;
	}
	.pagenavi ol li.prev img,
	.pagenavi ol li.next img {
		width: 8px;
		vertical-align: -1px;
	}
}
@media screen and (max-width: 380px) {
	.pagenavi ol {
        gap: 0px;
    }
}