@charset 'utf-8';

body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

/* 공통 */
.container {
	max-width:1760px;
	margin:0 auto;
}

@media (max-width: 1640px) {
	.container{
		padding-left:20px;
		padding-right:20px;
	}
}

:root{
	--goldColor: #d8a44e;
}

/* header */
#wrap{
	position: relative;
}
#header{
	background-color: transparent;
	width: 100%;
	z-index: 500;
	top: 0;
	left: 0;
	position: absolute;
	/*background: rgba(255, 255, 255, 0.05);*/
    background: rgba(0, 0, 0, 0.2);
}
#header.sub {
	background: #000;
}
.header-wrap{
	display: flex;
    justify-content: space-between;
	align-items: center;
	position: relative;
	height: 75px;
}
.header-wrap .logo .link {
	width: 100%;
	height:100%;
	display: block;
}
.header-wrap .logo svg {
	max-width: 129px;
	width: 100%;
}
@media (max-width:768px){
	.header-wrap .logo svg {
		max-width: 120px;
	}
}
.header-util{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
}
.lang-bx {
  position: relative;
  margin-right: 20px;
}
.lang-bx .icon-lang{
    display: flex;
    align-items: center;
}
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  column-gap: 7px;
  cursor: pointer;
  background: none;
  border: 0;
}
.lang-bx .icon-bottom{
	background:url("/img/common/icon_bottom.png") no-repeat;
	width: 7px;
    height: 4px;
	transition: 0.3s;
}
.lang-bx .icon-bottom.on{
	background:url("/img/common/icon_top.png") no-repeat;
}

.lang-select {
  position: absolute;
  top: 25px;
  text-align: center;
  background: #fff;
  width: -webkit-fill-available;
  z-index: 1;
  display: none;
  background:#000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 10px;
}
.lang-select.active {
  display: flex;
  flex-direction: column;
}
.lang-select .link {
  font-size: 15px;
  color: #fff;
  opacity: 0.2;
  padding-bottom: 5px;
}
.lang-select .link:last-child{
	padding-bottom:0;
}
.lang-select .link:hover {
  opacity: 1;
}
.header-menu-show{
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 100px;
	padding: 13px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.header-menu-show .xi-bars{
	padding-left: 10px;
}
.header-menu-inner{
	display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-menu-hide{
	background: #000;
	border-radius: 100px;
	padding: 13px 30px;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 22px;
	font-family: 'Oswald', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.side-deimmed{
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.65);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.side-deimmed.show{
	opacity: 1;
	z-index: 600;
	visibility:visible;
}
body.overflowHidden {
	overflow: hidden;
}
.header-menu-hide .icon-close{
	display: flex;
	padding-left: 10px;
}

.header-gnb-list li,
.header-gnb-list a {
	transition: all 0.4s;
}
.header-menu-active{
	background: #fff;
	padding: 0 60px;
	z-index: 999;
	height: 100vh;
	position: fixed;
	top: 0;
	right: -100%;
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: hidden;
	transition: all 0.7s ease;
}
.header-menu-active.on{
	right: 0;
}
.header-menu-active .header-gnb-list .header-gnb-item{
	color: #ddd;
	font-size: 48px;
	border-bottom:1px solid #000;
	padding: 50px 0;
	font-weight: 700;
}
.header-menu-active .header-gnb-list .header-gnb-item:hover a{
	color: #111;
}

.header-menu-active .header-gnb-list .header-gnb-item{
	font-family: 'pretendard', sans-serif;
}

.header-menu-active .header-gnb-list .header-gnb-item:last-child a{
	color: #ddd;
}
.header-menu-active .header-gnb-list .header-gnb-item:last-child a:hover{
	color: #111;
}
.header-menu-active .header-gnb-list .header-gnb-item:last-child{
	border-bottom:0;
	padding-bottom: 0;
}
.header-menu-active .header-gnb-list .header-gnb-item > a{
    color: #ddd;
}
.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link{
	font-size: 21px;
	padding-top: 20px;
	font-weight: 600;
	display:flex;
}
.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link .link{
	color: #ddd;
	padding-right: 40px;
	display: block;
}
.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link .link:hover{
	color:#111;
	cursor: pointer;
	font-weight: 600;
}
.header-gnb-list.en{
    text-transform: uppercase;
}

@media (max-width: 1600px){
	.header-menu-active .header-gnb-list .header-gnb-item{
		padding: 45px 0;
		font-size: 45px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link{
		font-size: 19px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link .link{
		padding-right:20px;
	}
}
@media (max-width: 1400px){
	.header-menu-active{
		padding: 0 50px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item{
		padding: 40px 0;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link{
		font-size: 17px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link .link{
		padding-right: 15px;
	}
}
@media (max-width: 1200px){
	.header-menu-hide{
		padding: 10px 20px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item{
		font-size: 40px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link{
		padding-top: 15px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link .link{
		padding-right: 20px;
	}
}
@media (max-width: 1024px){
	.header-menu-active{
		padding: 0 40px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item{
		padding: 30px 0;
		font-size: 35px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link{
		display: flex;
		flex-direction: column;
		row-gap: 10px;
		padding-top: 10px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link .link{
	    font-size: 18px;
	}
	.header-menu-show .xi-bars{
		font-size:20px;
	}
}
@media (max-width: 768px){
	.header-menu-active{
		width: 100%;
		max-width: 300px;
	}
	.header-wrap{
		height: 60px;
	}
	.header-wrap .logo .link img {
		max-width:100px;
	}
	.lang-bx {
	  margin-right: 10px;
	}
	.header-menu-pc{
		display: none;
	}
	.header-menu-show{
		padding: 0;
		background: transparent;
		border: none;
		border-radius: 0;
		height: auto;
		width: auto;
	}
	.header-menu-show .xi-bars{
		padding-left: 0;
		font-size:25px;
	}
	.header-menu-active{
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.header-menu-active .header-gnb-list .header-gnb-item{
		padding: 20px 0;
		font-size: 30px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link .link {
		font-size: 15px;
	}
}
@media (max-width:576px){
	.header-menu-active .header-gnb-list .header-gnb-item{
		font-size: 25px;
	}
	.header-menu-active .header-gnb-list .header-gnb-item .header-gnb-link .link {
    font-size: 14px;
	}
}


/* footer */
.footer-wrap {
	background: #000;
}
.footer-inner {
	display: flex;
	padding-top:100px;
	padding-bottom:30px;
	justify-content: space-between;
}
.footer-link {
	display: flex;
	align-items: flex-end;
}
.footer-term {
	display: flex;
	padding-top: 40px;
	padding-bottom: 10px;
}
.footer-term__item {
	color: #fff;
	font-size: 16px;
	position: relative;
}
.footer-term__item:first-child:before{
	display:none;
}
.footer-term__item:before{
	content: '';
	left: -1px;
	height: 0.8em;
	top: 50%;
	margin-top: -0.4em;
	position: absolute;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-term__item .util {
	font-weight: 600;
	display: inline-block;
	padding-left: 20px;
}

.footer-term__item:first-child .util{
	padding-left:0;
}
.footer-term__item .txt{
	padding: 0 20px;
	font-weight: lighter;
	font-family: 'Pretendard', sans-serif;
}
.footer-logo {
	max-width:129px;
	width:100%;
}
.footer-copy {
	opacity:0.7;
	font-size: 17px;
}
.footer-link .link{
	font-size:16px;
	color: #555;
	margin-right:10px;
	border: 1px solid #191919;
	padding: 20px 45px;
	font-weight: 600;
	background: #090909;
	border-radius: 5px;
	display: flex;
	justify-content: center;
    align-items: center;
}
.footer-link .link:last-child{
	margin-right:0px;
}
.footer-link .link .icon{
	padding-left:10px;
	display:flex;
}

@media (max-width: 1200px){
	.footer-link .link{
		padding: 20px 35px;
		font-size:15px;
	}
}
@media (max-width: 1050px){
	.footer-link .link{
	    padding: 15px 30px;
		font-size:14px;
	}
}
@media (max-width: 1024px){
	.footer-inner{
		flex-direction: column;
		row-gap: 20px;
	}
	.footer-term__item {
		font-size: 14px;
	}
	.footer-term__item .txt {
		padding: 0 15px;
	}
	.footer-copy {
		font-size: 15px;
	}
}
@media (max-width: 768px){
	.footer-logo {
		max-width:120px;
	}
	.footer-term__item:before{
		display: none;
	}
	.footer-term{
		flex-direction: column;
		row-gap: 3px;
	}
	.footer-term__item .util{
		padding-left: 0px;
	}

}
@media (max-width: 576px){
	.footer-inner{
		padding-top: 50px;
	}
	.footer-link .link{
		padding: 13px 25px;
		font-size: 13px;
	}
	.footer-term__item {
		font-size: 13px;
	}
	.footer-term{
		padding-top: 30px;
	}
	.footer-copy {
		font-size: 14px;
	}
}
@media (max-width: 375px){
	.footer-link .link{
		padding: 11px 20px;
		font-size: 12px;
	}
}


/* footer contact */
.footer-contact .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.footer-contact{
	background: url("/img/common/bg_contact.jpg") no-repeat;
	height:375px;
	background-size: cover;
}
.footer-contact .link-area .tit{
	color: #FFF;
	font-size: 84px;
	font-weight: 600;
	padding-bottom:40px;
	display:block;
}
.footer-contact .link{
	color: #FFF;
	font-size: 20px;
	font-weight: 500;
	border-radius: 100px;
	background-color: var(--goldColor);
	padding: 20px 60px;
	display: inline-block;
}
.footer-contact .txt-area{
	color: #CCC;
	font-family: Pretendard;
	font-size: 24px;
	font-weight: 300;
	line-height: 170%; /* 40.8px */
}

@media (max-width: 1400px){
	.footer-contact .link-area .tit{
		font-size: 80px;
	}
	.footer-contact .txt-area{
		font-size: 21px;
	}
	.footer-contact .link{
		padding: 18px 50px;
		font-size: 18px;
	}
}

@media (max-width: 1200px){
	.footer-contact .link-area .tit{
		padding-bottom: 30px;
	}
	.footer-contact .link{
		padding: 17px 40px;
		font-size: 17px;
	}
	.footer-contact .txt-area{
	    font-size: 20px;
	}
	.footer-contact .link-area .tit{
	    font-size: 75px;
	}
}
@media (max-width: 1024px){
	.footer-contact {
		height: 300px;
	}
	.footer-contact .container{
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	.footer-contact .txt-area{
		padding-top:20px;
	}
	.footer-contact .link-area .tit {
		font-size: 65px;

	}
	.footer-contact .link {
		padding: 16px 30px;
		font-size: 16px;
	}
	.footer-contact .txt-area {
		font-size: 17px;
	}
}
@media (max-width: 768px){
	.footer-contact .link-area .tit {
		font-size: 60px;
		padding-bottom: 20px;
	}
	.footer-contact .link {
		padding: 10px 25px;
		font-size: 14px;
	}
	.footer-contact .txt-area {
		font-size: 16px;
		padding-top: 30px;
	}

}
@media (max-width: 576px){
	.footer-contact{
		margin-bottom: -1px;
		height: 270px;
	}
	.footer-contact .link-area .tit {
		font-size: 50px;
	}
	.footer-contact .link {
		padding: 10px 25px;
		font-size: 13px;
	}
	.footer-contact .txt-area {
		font-size: 14px;
	}
	.footer-contact .mo{
		display:none;
	}
}


/* ===================================== 페이징 기본 =========================================== */

:root{
	/* 페이지버튼 */
	--pagingFontStyle: 'Red Hat Display', sans-serif;
	--pagingNumC : #333;
	--pagingArrowC: #666;
	--aSize : 30px;
	--pagingMarTop: 60px;
}

/* privacy */
.privacy { color:#666; width: 100%; overflow: hidden; box-sizing:border-box; font-size:15px;	line-height: 140%; word-break:break-all; font-family: 'pretendard', sans-serif;}
.privacy h2 { font-size:18px; font-weight:bold; color:#000; text-align: left; margin:50px 0 30px; }
.privacy h2:first-child { margin-top: 0; }
.privacy > p { margin:15px 0; }
.privacy > p+dl { margin-top: 30px; }
.privacy > dl { padding-bottom:20px;}
.privacy > dl > dt{ font-size:15px;color:#3680b9;font-weight:700;padding-bottom:5px;}
.privacy > dl > dd{ padding-bottom:10px;text-align:justify; font-size:15px; line-height:140%;}
.privacy > dl > dd ul{ padding:10px; }
.privacy > dl > dd ul li{ line-height:120%; margin-top: 10px; }
.privacy > dl > dd ul li:first-child { margin-top: 0; }
.privacy > dl > dd ul li p { margin:0 10px 5px; line-height: 140%; }
.sTxt h3 { font-size:16px; color: #333; font-weight: 700; margin: 20px 0 10px; }
.sTxt p { margin-top: 10px; }
.sTxt dt { margin-top: 10px; }
.sTxt dd { margin:0 8px; }



/* privacy--2 */
.privacy--2 {
  color: #666;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 160%;
  word-break: break-all;
}
.privacy--2 h3 {
  display:block;
  color: #111;
  font-size: 45px;
  line-height: 120%;
  font-family: 'Nunito Sans';
  font-weight: 700;
  /* font-size: 18px;
  font-weight: bold;
  color: #000; */
  text-align: left;
  margin: 50px 0 30px;
}
.privacy--2 h3:first-child {
  margin-top: 0;
}
.privacy--2 > p {
  margin: 15px 0;
  font-size:18px;
}
.privacy--2 > p + dl {
  margin-top: 30px;
}
.privacy--2 > dl {
  padding-bottom: 20px;
}
.privacy--2 > dl > dt {
  font-size: 20px;
  color:  var(--goldColor);
  font-weight: 700;
  padding-bottom: 5px;
}
.privacy--2 > dl > dd {
  padding-bottom: 10px;
  text-align: justify;
  font-size: 18px;
  line-height: 140%;
}
.privacy--2 > dl > dd ul {
  padding: 10px;
}
.privacy--2 > dl > dd ul li {
  line-height: 120%;
  margin-top: 10px;
}
.privacy--2 > dl > dd ul li:first-child {
  margin-top: 0;
}
.privacy--2 > dl > dd ul li p {
  margin: 0 10px 5px;
  line-height: 140%;
}
.sTxt h3 {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  margin: 20px 0 10px;
}
.sTxt p {
  margin-top: 10px;
}
.sTxt dt {
  margin-top: 10px;
}
.sTxt dd {
  margin: 0 8px;
}
@media (max-width:1200px){
	.privacy--2 h3{
	    font-size: 42px;
	}
	.privacy--2 > p {
		font-size: 17px;
	}
	.privacy--2 > dl > dt {
		font-size: 19px;
	}
	.privacy--2 > dl > dd {
		font-size: 17px;
	}
}
@media (max-width:1024px){
	.privacy--2 h3{
	    font-size: 35px;
	}
	.privacy--2 > p {
		font-size: 16px;
	}
	.privacy--2 > dl > dt {
		font-size: 18px;
	}
	.privacy--2 > dl > dd {
		font-size: 16px;
	}
}
@media (max-width:768px){
	.privacy--2 h3{
	    font-size: 25px;
	}
	.privacy--2 > p {
		font-size: 15px;
	}
	.privacy--2 > dl > dt {
		font-size: 17px;
	}
	.privacy--2 > dl > dd {
		font-size: 15px;
	}
}
@media (max-width:576px){
	.privacy--2 h3{
	    font-size: 22px;
	}
	.privacy--2 > p {
		font-size: 14px;
	}
	.privacy--2 > dl > dt {
		font-size: 16px;
	}
	.privacy--2 > dl > dd {
		font-size: 14px;
	}
}