@charset "utf-8";

* {
	box-sizing:border-box;
	line-height:1;
	letter-spacing:-0.02em;
}
img {vertical-align:bottom;}
.hide {display:none;}
.show {display:block;}
.flex {display:flex;}
.center {text-align:center;}
.tit_center {
	font-size:40px;
	font-weight:100;
	color:#464646;
	text-align:center;
}
.tit_center strong {font-weight:600;}
.lottemarthappy {
	font-weight:400;
	font-family: 'LotteMartHappy', sans-serif;
}

/******************************************************* PC // *******************************************************************************/
body {min-width:1200px;}
html,body {height:100%;}
#wrapper {
	padding-bottom:172px;
    position: relative;
	min-height:100%;
	background:#f8f8f8
}
.content {
	max-width:1200px;
	margin:0 auto;
}


/* header */
header {
    width: 100%;
	background:#fff;
}
header .logo {
	z-index:1000;
}
header .logo a {display:block;}
#headerInner {
	max-width:1200px;
	margin:0 auto;
	align-items:center;
	justify-content:space-between;
	height:79px;
}
header .logo a img {
	min-width: 200px;
}
#headerInner .login_bt {
	align-items:center;
	margin-right:40px;
}
#headerInner .login_bt li:first-child {margin-right:14px;}
#headerInner .login_bt li a {
	display:block;
	font-size:18px;
	font-weight:400;
	color:#181818;
	height:46px;
	background:#efefef;
	padding:0 22px;
	line-height:46px;
	text-align:center;
	border-radius:30px;
	-webkit-border-radius:30px;
	-moz-border-radius:30px;
	-ms-border-radius:30px;
	-o-border-radius:30px;
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
	-ms-transition:all .3s;
	-o-transition:all .3s;
}
#headerInner .login_bt li a:hover {background:#ddd;}

/* gnb */
#gnb_zone {
	width:100%;
	border-top:2px solid #efefef;
	border-bottom:2px solid #efefef;
	position:relative;
	height:62px;
}
.gnb { 
	max-width:1200px;
	margin:0 auto;
	align-items:center;
	justify-content:center;
	height:58px;
	gap:80px;
}
.gnb li {
	height:100%;
}
.gnb li a {
	font-size:20px;
	font-weight:500;
	color:#181818;
	display:block;
	height:100%;
	line-height:58px;
	position:relative;
}
.gnb li a.active:after {
	content:'';
	position:absolute;
	bottom:0;
	left:50%;
	transform:translate(-50%,0);
	width:148px;
	height:3px;
	background:#fbd91e;
}
ul.gnb li.active .depth2 {display:block;}
.gnb .depth2 {
	overflow:hidden;
	display: none;
	width:100%;
	height:40px;
	background:#f1f1f1;
	position:absolute;
	left:50%;
	top:58px;
	transform:translate(-50%,0);
	border-top:2px solid #e7e7e7;
	border-bottom:2px solid #e7e7e7;
}
.gnb .depth2 ul {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:60px;
}
.gnb .depth2 ul li a {
	line-height:40px;
	font-size:16px;
}

/* mobile */
header .hamburger {
    display: none;
    position: absolute;
    border-radius: 2px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    z-index: 100;
}
header .hamburger .hamburger__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 3rem;
    cursor: pointer;
}
header .hamburger .hamburger__btn .hamburger__bar {
    display: block;
    width: 100%;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    height: 0.3rem;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}
header .hamburger .hamburger__btn span + span {
    margin-top: 0.7rem;
}
header .hamburger .hamburger__btn.active span:nth-child(1) {
    -webkit-animation: ease 0.7s top forwards;
    animation: ease 0.7s top forwards;
}
header .hamburger .hamburger__btn.inactive span:nth-child(1) {
    -webkit-animation: ease 0.7s top-2 forwards;
    animation: ease 0.7s top-2 forwards;
}
header .hamburger .hamburger__btn.active span:nth-child(2) {
    -webkit-animation: ease 0.7s scaled forwards;
    animation: ease 0.7s scaled forwards;
}
header .hamburger .hamburger__btn.inactive span:nth-child(2) {
    -webkit-animation: ease 0.7s scaled-2 forwards;
    animation: ease 0.7s scaled-2 forwards;
}
header .hamburger .hamburger__btn.active span:nth-child(3) {
    -webkit-animation: ease 0.7s bottom forwards;
    animation: ease 0.7s bottom forwards;
}
header .hamburger .hamburger__btn.inactive span:nth-child(3) {
    -webkit-animation: ease 0.7s bottom-2 forwards;
    animation: ease 0.7s bottom-2 forwards;
}
header .nav {
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: #1a90cd;
    position: fixed;
    top: 0;
    right: -100%;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transition-timing-function: cubic-bezier(10, 2, 3, 1);
    transition-timing-function: cubic-bezier(10, 2, 3, 1);
    overflow-y: auto;
	/*display:none;*/
}
header .nav.on {
    right: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transition-timing-function: cubic-bezier(10, 2, 3, 1);
    transition-timing-function: cubic-bezier(10, 2, 3, 1);
}
header .nav .nav__depth1 > li {
    width: 100%;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	border-radius:12px;
	background:#fff;
	margin:0 0 10px;
	box-shadow:-3px -1px 20px rgba(0, 0, 0, 0.03), 9px 5px 10px rgba(0, 0, 0, 0.03);
}
header .nav .nav__depth1 > li:last-of-type {margin:0;}

header .nav .nav__depth1 > li.open span > a > img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
header .nav .nav__depth1 > li span {
    width: 100%;
    display: inline-block;
    padding: 0 4.8vw;
	
}
header .nav .nav__depth1 > li span > a {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: var(--font-xlarge);
	font-weight: var(--weight-regular);
	width: 100%;
	padding: 3.6vw 0;
	color:#181818;
	font-size:4.2vw;
}
header .nav .nav__depth1 > li span > a img {
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
header .nav .nav__depth2 {
    background: #fff;
    width: 100%;
    left: 0;
    display: none;
    padding: 2.4vw;
	position:relative;
	border-top:1px solid #e6e6e6;
	border-radius:0 0 10px 10px;
}
header .nav .nav__depth2 ul {
	background:#f7f7f7;
	border-radius:5px;
	padding:4vw 5vw;
}
header .nav .nav__depth2 li {
    text-align:left;
}
header .nav .nav__depth2 li a {
	display:block;
	font-size:3.8vw;
	line-height:2;
	color:#333;
}

@-webkit-keyframes top {
    0% {
        top: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        top: 2vw;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        top: 2vw;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@keyframes top {
    0% {
        top: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        top: 2vw;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        top: 4vw;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}
@-webkit-keyframes top-2 {
    0% {
        top: 2vw;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    50% {
        top: 2vw;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes top-2 {
    0% {
        top: 2vw;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    50% {
        top: 2vw;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@-webkit-keyframes bottom {
    0% {
        bottom: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        bottom: 2vw;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        bottom: 2vw;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
}
@keyframes bottom {
    0% {
        bottom: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        bottom: 2vw;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        bottom: 2vw;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
}
@-webkit-keyframes bottom-2 {
    0% {
        bottom: 2vw;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    50% {
        bottom: 2vw;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        bottom: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}
@keyframes bottom-2 {
    0% {
        bottom: 2vw;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    50% {
        bottom: 2vw;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        bottom: 0;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}
@-webkit-keyframes scaled {
    50% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}
@keyframes scaled {
    50% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}
@-webkit-keyframes scaled-2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes scaled-2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

header .right {
	display:flex;
	align-items:center;
}

/* sitemap */
.sitemap_btn {
	z-index:900;
	cursor:pointer;
}
.siteMap{display: none;}
.siteMap.on{
	display: block;
	z-index:999;
	position:fixed;
	width:100vw;
	height:315px;
	background-color: #fff;
	left:50%;
	top:0;
	transform:translate(-50%, 0);
}
.sitemap_inner {
	max-width:1200px;
	margin:0 auto;
}
.site_top {
	position:relative;
	height:82px;
}
.site_top:after {
	content:'';
	position:absolute;
	left:50%;
	bottom:0;
	width:100vw;
	height:2px;
	background:#ededed;
	transform:translate(-50%, 0);
}
.site_top .close_btn {
	position:absolute;
	top:26px;
	right:0;
	cursor:pointer;
}
.siteAll {
	padding:34px 0 0;
}
.siteAll > ul {
	display:flex;
	align-items:flex-start;
	justify-content:center;
}
.siteAll > ul > li:nth-child(2) {margin-left:110px;}
.siteAll > ul > li:nth-child(3) {margin-left:100px;}
.siteAll > ul > li:nth-child(4) {margin-left:100px;}
.siteAll > ul > li {}
.siteAll > ul > li > a {
	font-size:18px;
	font-weight:500;
	color:#181818;
}
.siteAll .depth {padding:18px 0 0;}
.siteAll .depth li {
	line-height:30px;
}
.siteAll .depth li a {
	display:inline-block;
	font-size:16px;
	font-weight:400;
	color:#818181;
	transition:all .3s;
}
.siteAll .depth li a:hover {color:#444;}

/* footer */
#footer {
	background:#1a1b19;
	padding:55px 0;
	text-align:left;
	font-size:14px;
	font-weight:400;
	color:#efefef;
	position:absolute;
	width:100%;
	left:0;
	bottom:0;
}
#footer #content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display:flex;
	justify-content: space-between;
}
#footer ul {
	display:flex;
	gap:10px;
	margin:0 0 10px;
	flex-direction: column;
}
#footer .copy {
	display:block;
}
#footer #content > a.tel {
	max-width:269px;
	width:100%;
	height:50px;
	font-size:25px;
	font-weight:700;
	position:relative;
	background-color: rgba(255,255,255,0.1);
	padding:0 0 0 58px;
	border-radius:25px;
	line-height:50px;
	display:block;
	color:#fff;
}
#footer #content > a.tel:after {
	content:'';
	position:absolute;
	left:25px;
	top:50%;
	transform:translate(0,-50%);
	width:24px;
	height:24px;
	background-image:url('../images/sub/tel_orange.png');
	background-repeat:no-repeat;
	background-position:0 0;
}

.scroll-top {
  width: 80px;
  height: 80px;
  line-height: 8.5rem;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f07a12;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.scroll-top[style*='display:block']{
    display: flex !important;
}
.scroll-top:focus, .scroll-top:hover {
  border-radius: 1rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.scroll-top .top {
  font-size: 3rem;
}
.scroll-top .top span {
  font-size: 0;
}

/******************************************************* MOBILE // *******************************************************************************/
@media screen and (max-width: 768px) {
	body {min-width:320px;}
	header {
		width:100%;
		position:fixed;
		height:20vw;
		top:0;
		left:0;
		z-index:900;
		background:#fff;
	}
	header .logo {
		max-width:30vw;
	}
	header .logo a img {
		min-width: 36vw;
	}
	#headerInner {
		height:11vw;
		padding:0 4vw;
		position:relative;
	}
	#headerInner .login_bt {
		margin-right:8.8vw;
	}
	#headerInner .login_bt li:first-child {
		margin-right:2.4vw;
	}
	#headerInner .login_bt li a {
		font-size:3.2vw;
		height:7vw;
		padding:0 3.2vw;
		line-height:7vw;
	}
	#gnb_zone {
		height:9vw;
		border-top:1px solid #efefef;
		border-bottom:1px solid #efefef;
	}
	.gnb {
		height:8.5vw;
		gap:8vw;
		justify-content:flex-start;
		padding-left:4vw;
	}
	.gnb li a {
		font-size:3.4vw;
		line-height:8.5vw;
	}
	.gnb li a.active:after, .gnb li a:hover:after {
		width:100%;
		bottom:1px;

	}
	.gnb .depth2 {
		height:9vw;
		top:8.2vw;
		border-top:1px solid #e7e7e7;
		border-bottom:1px solid #e7e7e7;
	}
	.gnb .depth2 ul {
		gap:5vw;
		/*padding-left:4vw;*/
	}
	.gnb .depth2 ul li a {
		line-height:9vw;
		font-size:3vw;
	}
	.gnb .depth2 ul li a:hover:after {display:none;}
	header .hamburger {
		display:block;
		width:5.2vw;
		height:5.2vw;
		z-index:101;
		right:4vw;
	}
	header .hamburger .hamburger__btn {
		width:5.2vw;
	}
	header .hamburger .hamburger__btn.active {
		margin-top:-1vw;
	}
	header .hamburger .hamburger__btn.active .hamburger__bar {
		background:#333 !important;
	}
	
	header .hamburger .hamburger__btn .hamburger__bar {
		background:#333;
	}
	header .hamburger .hamburger__btn .hamburger__bar {
		height:0.5vw;
	}
	header .hamburger .hamburger__btn span + span {
		margin-top:1vw;
	}
	header .hamburger .hamburger__btn.active span + span {
		margin-top:2.5vw;
	}
	
	header .nav {
		/*top:11vw;*/
		top:0;
		background:#f8f8f8;
		text-align:center;
		z-index:100;
	}
	header .nv_height {
		height:11vw;
		background:#fff;
	}
	header .nav .nav__depth1 {
		padding: 8vw 3.6vw;
	}
	.all_login ul {
		background:#fbefd8;
		border-bottom:1px solid #ddd;
		border-top:1px solid #ddd;
	}
	.all_login li {
		width:50%;
		position:relative;
	}
	.all_login li a {
		display:block;
		font-size:3.6vw;
		height:10vw;
		line-height:10vw;
		text-align:center;
		color:#181818;
		font-weight:500;
	}
	.all_login li:first-child:after {
		content:'';
		position:absolute;
		right:0;
		top:50%;
		transform:translate(0,-50%);
		width:1px;
		height:4vw;
		background:#ddd;
	}
	.sitemap_btn {display:none;}
	.sitemap_btn img {
		max-width:5.2vw;
	}
	#wrapper {
		padding-bottom:55vw;
	}
	.content {
		padding:0 4vw;
	}
	.scroll-top {display:none !important;}

	/* footer */
	#footer {
		padding:10vw 4vw 8vw;
		font-size:3.4vw;
		line-height:1.5;
	}
	#footer ul {
		flex-wrap:wrap;
		gap:2vw;
		margin:0 0 5vw;
	}
	#footer ul li {
		line-height: 1.3;
	}
	#footer #content {
		flex-direction: column;
	}
	#footer #content > div {
		margin-bottom: 5vw;
	}
	#footer #content > a.tel {
		max-width: unset;
	    width: auto;
	    height: unset;
	    font-size: 6vw;
	    background-color: rgba(255,255,255,0.1);
	    padding: 2.4vw 2.4vw 2.4vw 14vw;
	    border-radius: 25px;
	    line-height: unset; 
	    display: inline-block;
	}
	#footer #content > a.tel:after {
		left: 4vw;
		width: 5vw;
		height: 5vw;
		background-size: 5vw;
	}
}

@media screen and (max-width: 500px) {
	
}