@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width:1440px;	
	padding:0 20px;
	box-sizing: border-box;
	margin:0 auto;
}


#header {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	z-index: 33;
	background: #FFFFFF;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	transition:all .3s;
}
#header .inner {
	height: 66px;
	align-items: center;
}
#header h1 img {
	height: 26px;
	vertical-align: 0px;
}
#header .gnb {
	flex: 1;
}
#header .gnb ul {
	justify-content: center;
}
#header .gnb ul li {
	margin: 0 20px;
}
#header .gnb ul li a {
	position: relative;
	display:block;
	font-size: 18px;
	font-family: 'Cafe24SsurroundAir';
	transition: all .3s;
}
#header .gnb ul li a:hover {
	color: #1254FF;
}
#header .gnb ul li.active a {
	font-family: 'Cafe24Ssurround';
	transform: rotate(0.03deg);
}
#header .gnb ul li.active a:before {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	display: block;
	width: 100%;
	height: 6px;
	background: #D9D9D9;
	border-radius: 50px;
	z-index: -1;
}
#header .store {
	width: 215px;
	height: 66px;
	line-height: 66px;
	background: #F5F5F5 url("../images/smart_store.svg")no-repeat 30px 50%;
	padding: 0 15px 0 70px;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Cafe24SsurroundAir';
	box-sizing: border-box;
}
#header .menu {
	display: none;
    position: absolute;
    top: 20px;
    right: 20px;
}
#header .menu a {
	display: block;
	width: 29px;
	height: 26px;
	background: url("../images/ico-menu.svg")no-repeat 50% 50% / 100%;
}





.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: 15px 20px;
}
.side-wrap .top h1 img {
	height: 26px;
	vertical-align: 0px;
}
.side-wrap .top .side-close {
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	width: 25px;
	height: 25px;
	background: url("../images/ico-close.svg")no-repeat 50% 50%;
}
.side-wrap .smart_store {
	background: #F5F5F5;
}
.side-wrap .smart_store a {
	display: block;
	padding: 20px 30px 20px 65px;
	background: url("../images/smart_store.svg")no-repeat 30px 50%;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Cafe24SsurroundAir';
	box-sizing: border-box;
}
.side-wrap .depth {
	padding: 0 20px;
}
.side-wrap .depth li a {
	display: block;
    text-align: left;
    font-size: 18px;
    font-weight: 300;
	margin: 40px 0;
}
.side-wrap .contact h3.tit {
	margin-bottom: 20px;
}
.side-wrap .contact .flex > div p {
    padding: 10px 0 10px 35px;
    background-size: 25px!important;
    background-position: 0 50%!important;
    font-size: 16px;
}




#container {
	width: 100%;
	padding-top: 66px;
}



h3.tit {
	position: relative;
	text-transform: uppercase;
	color: #1254FF;
	font-family: 'Cafe24Ssurround';
	font-size: 40px;
	margin-bottom: 40px;
}
h3.tit span {
	font-family: 'Cafe24SsurroundAir';
}
h3.tit em {
	display: inline-block;
	margin-left: 15px;
	color: #261C15;
	font-size: 18px;
	font-weight: 300;
	font-family: 'SUIT', sans-serif;
}

.sub_bg {
	position: relative;
	display: table;
	width: 100%;
	height: 360px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
.sub_bg h2 {
	display: table-cell;
	vertical-align: middle;
	font-size: 48px;
	color: #fff;
	font-family: 'Cafe24Ssurround';
	text-align: center;
}






.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: 765px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
	z-index: 38;
	background: #fff;
	border-radius: 5px;
}
.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: 30px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 50px; 
	right: 50px;
	z-index: 1;
	width: 24px;
	height: 24px;
	background: url("../images/ico-close-white.svg")no-repeat 50% 50% / 100%;
}
.modal h3 {
	background: #1E1E1E;
	border-radius: 5px;
	color: #fff;
	font-family: 'yg-jalnan';
	font-size: 24px;
	padding: 12px 50px 12px 20px;
	margin-bottom: 30px;
}
.modal .btn_blue {
	display: block;
	margin: 30px auto 0;
}


#service01 .step > div {
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
	font-size: 20px;
	letter-spacing: -0.5px;
}
#service01 .step > div span {
	position: absolute;
	top: -2px;
	left: 0;
	font-size: 24px;
	font-weight: 700;
	font-family: 'yg-jalnan';
}
#service01 .step > div ul {
	padding-top: 5px;
	line-height: 1.3;
}
#service01 .step > div ul li {
	padding: 5px 0;
}


#service02 .mt60 {
	margin-top: 60px;
}
#service02 .gray_bg {
	background: #F5F5F5;
	border-radius: 10px;
	padding: 20px 30px;
	font-size: 24px;
	font-weight: 700;
	color: #000;
	letter-spacing: -0.5px;
	margin-bottom: 20px;
}
#service02 ul li {
	position: relative;
	font-size: 20px;
	letter-spacing: -0.5px;
	padding: 10px 0 10px 40px;
	line-height: 1.3;
}
#service02 ul.circle li:before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #1254FF;
	position: absolute;
	top: 18px;
    left: 22px;
}
#service02 ul.number li span {
	display: block;
	font-size: 20px;
	color: #1254FF;
	font-weight: 700;
	position: absolute;
	top: 7px;
    left: 17px;
	font-family: 'yg-jalnan';
}


#service03 .list .item {
	background: #F5F5F5;
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 20px;
}
#service03 .list .item .ques {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	padding: 3px 0 3px 30px;
}
#service03 .list .item .ques:before {
	content: 'Q';
	color: #1254FF;
	font-size: 24px;
	font-weight: 700;
	font-family: 'yg-jalnan';
	position: absolute;
	top: 0;
	left: 0;
}
#service03 .list .item .answer {
	background: #FFFFFF;
	border-radius: 5px;
	padding: 20px 20px 20px 30px;
	color: #1e1e1e;
	letter-spacing: -0.7px;
	margin-top: 10px;
}


#service04 .txt {
	font-size: 20px;
	letter-spacing: -0.5px;
}
#service04 .flex > div {
	width: 33.333%;
}
#service04 .flex > div img {
	width: 100%;
}
#service04 .flex > div p {
	margin-top: 16px;
	text-align: center;
	line-height: 1.6;
}

.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: #241F1F;
	color: #fff;
	margin-top: 120px;
	padding-top: 80px;
}
#footer .logo {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 30px;
}
#footer .addr {
	margin-bottom: 20px;
}
#footer .addr span {
	position: relative;
	padding-right: 20px;
	margin-right: 20px;
}
#footer .addr span:after {
	content: '';
	display: block;
	width: 1px;
	height: 10px;
	background: #fff;
	position: absolute;
	top: 5px;
	right: 0;
}
#footer .addr span:last-child {
	margin-right: 0;
	padding-right: 0;
}
#footer .addr span:last-child:after {
	display: none;
}
#footer .info span {
	margin-right: 20px;
	padding-left: 28px;
}
#footer .info span.tel {
	background: url("../images/ft_tel.svg")no-repeat 0 50%;
}
#footer .info span.adr {
	background: url("../images/ft_addr.svg")no-repeat 0 50%;
}
#footer .info span.mail {
	background: url("../images/ft_mail.svg")no-repeat 0 50%;
}
#footer .bottom {
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(255,255,255,0.5);
	margin-top: 30px;
	padding: 30px 0;
	font-size: 14px;
}
#footer .bottom .util a {
	color: #fff;
	margin-left: 20px;
}
#footer .bottom .util a:first-child {
	margin-left: 0;
}


.top_btn {
	position: fixed;
	bottom: 70px;
	right: 50px;
	z-index: 32;
}
.top_btn > a {
	display: block;
	width: 50px;
	height: 50px;
	background: #1E1E1E 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 {
    display: block;
    width: 80px;
    border-radius: 50%;
    padding: 17px 0;
	font-size: 16px;
	font-weight: 700;
    text-align: center;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 30%);
    box-sizing: border-box;
	margin-bottom: 20px;
}
.top_btn > div:nth-child(1) a {
	background: #1254FF;
	color: #fff;
}
.top_btn > div:nth-child(2) a {
	background: #FAE300;
	color: #391B1B;
}
.top_btn > div:nth-child(3) a {
	background: #40B045;
	color: #fff;
}
.top_btn > div a p {
	font-weight: 700;
	margin-top: 5px;
}



.contact {
	padding: 120px 0 0;
}
.contact .flex > div {
	position: relative;
	flex: 1;
	margin-right: 20px;
	border-radius: 10px;
}
.contact .flex > div:last-child {
	margin-right: 0;
}
.contact .flex > div a {
	position: relative;
	display: block;
	padding: 40px;
	color: #fff;
}
.contact .flex > div p {
	font-size: 20px;
	font-weight: 700;
	padding-top: 75px;
}
.contact .flex > div p span {
	font-weight: 400;
}
.contact .flex > div .qr {
	position: absolute;
	top: 40px;
	right: 40px;
}
.contact .flex > div.tel {
	background-color: #1254FF;
}
.contact .flex > div.tel p {
	background: url("../images/ico-tel.svg")no-repeat 0 10px / 50px;
}
.contact .flex > div.kakao {
	background-color: #FAE300;
}
.contact .flex > div.kakao a {
	color: #261C15;
}
.contact .flex > div.kakao p {
	background: url("../images/ico-kakao.svg")no-repeat 0 10px / 50px;
}
.contact .flex > div.store {
	background-color: #40B045;
}
.contact .flex > div.store p {
	background: url("../images/ico-store.svg")no-repeat 0 10px / 50px;
}



.service {
	padding: 120px 0;
}
.service .flex button {
	flex: 1;
	text-align: left;
	background: #F7F7F7;
	border-radius: 10px;
	margin-right: 20px;
	padding: 35px 40px;
	font-size: 20px;
	font-weight: 500;
	transition: all .5s;
}
.service .flex button:last-child {
	margin-right: 0;
}
.service .flex button .icon {
	width: 54px;
	height: 54px;
	margin-bottom: 20px;
	transition: all .3s;
}
.service .flex button.bt1 .icon {
	background: url("../images/main_icon01.svg")no-repeat 50% 50% / 42px;
}
.service .flex button.bt2 .icon {
	background: url("../images/main_icon02.svg")no-repeat 50% 50% / 42px;
}
.service .flex button.bt3 .icon {
	background: url("../images/main_icon03.svg")no-repeat 50% 50% / 42px;
}
.service .flex button.bt4 .icon {
	background: url("../images/main_icon04.svg")no-repeat 50% 50% / 42px;
}
.service .flex button:hover {
	color: #1254FF;
	font-weight: 700;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.service .flex button.bt1:hover .icon {
	background: url("../images/main_icon01_on.svg")no-repeat 50% 50% / 100%;
}
.service .flex button.bt2:hover .icon {
	background: url("../images/main_icon02_on.svg")no-repeat 50% 50% / 100%;
}
.service .flex button.bt3:hover .icon {
	background: url("../images/main_icon03_on.svg")no-repeat 50% 50% / 100%;
}
.service .flex button.bt4:hover .icon {
	background: url("../images/main_icon04_on.svg")no-repeat 50% 50% / 100%;
}


.pagenavi {
	margin-top: 40px;
}
.pagenavi ol {
	font-size: 0;
	text-align: center;
}
.pagenavi ol li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 7.5px;
}
.pagenavi ol li.first,
.pagenavi ol li.prev,
.pagenavi ol li.next,
.pagenavi ol li.last {
	margin: 0;
}
.pagenavi ol li img {
	vertical-align: middle;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
}
.pagenavi ol li a.this {
	background: #1E1E1E;
	color: #fff;
}





@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1280px) {
	.contact .flex > div a {
		padding: 25px;
	}
	.contact .flex > div p {
		background-size: 35px!important;
		padding-top: 60px;
	}
	.contact .flex > div .qr {
		top: 30px;
		right: 25px;
	}
	.contact .flex > div .qr img {
		width: 75px;
	}
	
	
	.service .flex button {
		padding: 25px;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: 70px;
	}
	#header .gnb,
	#header .store {
		display: none;
	}
	#header .menu {
		display: block;
	}
	
	#container {
		padding-top: 70px;
	}
	
	
	h3.tit {
		font-size: 35px;
		margin-bottom: 30px;
	}
	
	
	.top_btn {
		right: 20px;
	}
	.top_btn > div a {
		width: 50px;
		font-size: 10px;
		padding: 6px 0;
	}
	.top_btn > div a img {
		width: 20px;
	}
	
	.contact .flex > div {
		flex: none;
		width: 100%;
		margin: 0 0 20px;
	}
	
	.sub_bg {
		height: 240px;
	}
	.sub_bg h2 {
		font-size: 35px;
	}
	
	
	.service .flex button {
		font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
	h3.tit {
		font-size: 24px;
		margin-bottom: 40px;
	}
	
	
	
	#footer {
		margin-top: 60px;
		padding-top: 40px;
	}
	#footer .logo {
		font-size: 20px;
		margin-bottom: 20px;
	}
	#footer .addr {
		margin-bottom: 10px;
	}
	#footer .addr span {
		padding-right: 10px;
		margin-right: 10px;
		font-size: 14px;
	}
	#footer .addr span:after {
		top: 4px;
	}
	#footer .info span {
		font-size: 14px;
		margin-right: 10px;
		background-size: 15px!important;
		padding-left: 22px;
		margin-bottom: 5px;
	}
	#footer .bottom {
		margin-top: 15px;
		padding: 20px 0;
		font-size: 12px;
	}
	#footer .bottom .copy {
		order: 1;
	}
	#footer .bottom .util {
		order: 0;
		width: 100%;
		margin-bottom: 5px;
	}
	#footer .bottom .util a {
		margin-left: 10px;
	}
	
	
	.modal .modal_cont .scroll {
		padding: 20px;
	}
	.modal .close {
		top: 40px;
		right: 33px;
		width: 20px;
		height: 20px;
	}
	.modal h3 {
		font-size: 18px;
		padding: 15px 45px 15px 15px;
	}
	#service01 .step > div {
		margin-bottom: 10px;
		font-size: 16px;
	}
	#service01 .step > div span {
		font-size: 18px;
	}
	#service02 .gray_bg {
		padding: 15px 20px;
		font-size: 18px;
		margin-bottom: 10px;
	}
	#service02 ul li {
		font-size: 16px;
		padding: 5px 0 5px 25px;
		line-height: 1.3;
	}
	#service02 ul.circle li:before {
		width: 4px;
		height: 4px;
		top: 13px;
		left: 12px;
	}
	#service02 .mt60 {
		margin-top: 30px;
	}
	#service02 ul.number li span {
		font-size: 16px;
		top: 7px;
		left: 5px;
	}
	#service03 .list .item .ques {
		font-size: 16px;
		padding: 3px 0 3px 25px
	}
	#service03 .list .item .ques:before {
		font-size: 18px;
	}
	#service03 .list .item .answer {
		padding: 15px 15px 15px 25px;
	}
	#service04 .txt {
		font-size: 16px;
	}
	#service04 .flex > div {
		width: 100%;
		margin-bottom: 20px;
	}
	
	
	.contact {
		padding: 60px 0 0;
	}
	.contact h3.tit em {
		display: none;
	}
	.contact .flex > div a {
		padding: 0px 40px;
	}
	.contact .flex > div .qr {
		display: none;
	}
	.contact .flex > div p {
		padding: 10px 0 10px 35px;
		background-size: 25px!important;
		background-position: 0 50%!important;
		font-size: 16px;
	}
	
	
	.sub_bg {
		height: 120px;
	}
	.sub_bg h2 {
		font-size: 20px;
	}
	
	.service {
		padding: 60px 0;
	}
	.service .scroll {
		overflow-x: auto;
		margin: 0 -20px;
	}
	.service .flex {
		min-width: 712px;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.service .flex button {
		font-size: 14px;
		padding: 24px;
	}
	
	
	.pagenavi {
		margin-top: 20px;
	}
	.pagenavi ol li {
		margin: 0 1px;
	}
	.pagenavi ol li a {
		width: 22px;
		height: 22px;
		line-height: 20px;
		font-size: 13px;
	}
	.pagenavi ol li img {
		height: 10px;
	}
}
@media screen and (max-width: 380px) {
}