@charset "utf-8";

.swiper-wrapper {
  height: auto;
}

#wrap{width: 100%; max-width:1920px; margin: 0 auto; overflow: auto;}

#wrap,
footer {
  min-width: 1100px;
}

#header {
  position:fixed;
  top:0;
  left:0;
  right: 0;
  width:100%;
  max-width:1920px;
  min-width: 1050px;
  margin: 0 auto;
  z-index:31;
}
#header.fixed_top {
  top:-64px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

#header {
  background-color: #fff;
}
.header_top,
nav {
	position: relative;
    width: 1050px;
    margin: 0 auto;
}
.header_top {
  position:relative;
  height:60px;
  background:#fff;
}
.header_top h1 {
  float:left;
  position: relative;
  top: 13px;
  margin-left:16px;
}
.header_top h1 img {
  width: 82px;
}
.lang {
  float: left;
  position: relative;
  z-index: 2;
  margin: 14px 0 0 12px;
  cursor: pointer;
}
.lang > em {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 36px;
  line-height: 34px;
  border-radius: 8px;
  border: solid 1px #f6d6f3;
  background-color: #fff8fe;
  background-image: url("/common/img/ico_global.png");
  background-size: 16px auto;
  background-position: 12PX 50%;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  text-align: left;
  color: #e876dd;
  padding-left: 36px;
}
.lang.branch > em {
    background-image: none;
    padding-left: 12px;
}
.lang.on > em {
  border-radius: 8px 8px 0 0;
}
.lang > em::after {
  content: '';
  width: 8px;
  height: 4px;
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -1px;  
  background-image: url("/common/img/ico_arrow_down.png");
  background-size: 8px auto;
  background-position: 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.lang.on > em::after {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.lang > ul {
  display: none;
  position: absolute;
  top: 36px;
  width: 160px;
  margin: 0;
  border-radius: 0 0 8px 8px;
  border: solid 1px #f6d6f3;
  border-top: 0;
  background-color: rgba(255,255,255,0.8);
}
.lang > ul li {
  height: 44px;
}
.lang > ul li:hover a {
  color: #e876dd;
}
.lang > ul li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: normal;
  text-align: center;
  color: #757d86;
}
.lang > ul li.active a {
  color: #e876dd;
}

nav {
  height: 56px;
}
nav .swiper-container {
  width: 895px;
}
nav .swiper-container .swiper-wrapper {
  align-items: center
}
nav .swiper-slide.home {
    display: none;
}
nav .swiper-slide {
  width: auto;
  height: inherit;
  margin: 0 50px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  cursor: pointer;
}
nav .swiper-slide.locations {
    line-height: 56px;
	cursor: pointer;
}
nav .swiper-slide:first-child {
  margin-left: 16px;
}
nav .swiper-slide a {
  display: block;
  position: relative;
  line-height: 56px;
}
nav .swiper-slide.active a {
  color: #e876dd;
  font-weight: bold;
}
nav .swiper-slide.active a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #e876dd;
}

.allMenu {
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    background: url("/common/img/ico_allMenu.png");
    background-size: 20px auto;
    background-position: 50%;
    background-repeat: no-repeat;
    font-size: 0;
    color: transparent;
	z-index: 1;
	cursor: pointer;
}
#gnb .allMenuClose {
    position: absolute;
    top: 0;
    right: 0;
    width: 92px;
    height: 92px;
    background: url("/common/img/ico_allMenu_close.png");
    background-size: 22px auto;
    background-position: 50%;
    background-repeat: no-repeat;
    font-size: 0;
    color: transparent;
	z-index: 1;
	cursor: pointer;
}
#gnb {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	bottom: 0;
    margin: 0 auto;
    background: rgba(0,0,0,0.7);
    z-index: 2;
	overflow: hidden;
}
#gnb .gnbInner {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    height: auto;
	max-height: 650px;
    background: #fff;
    z-index: 2;
    transform: translate(-50%, -50%);
	overflow: hidden;
}
#gnb .top {
    height: 85px;
    line-height: 85px;
    background: #fff;
    font-size: 29px;
    font-weight: bold;
    text-align: center;
    color: #2a2a2a;
    position: fixed;
    top: 0;
    z-index: 1;
    background: #fff;
    width: 100%;
}
#gnb .gnb_menu {
    display: flex;
    flex-flow: row wrap;
    height: 550px;
    overflow: hidden;
    overflow-y: auto;
    margin-top: 90px;
    padding: 0 30px;
    box-sizing: border-box;
}
#gnb .gnb_menu > li {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
#gnb .gnb_menu > li > a {
    display: inline-table;
    width: 100%;
    vertical-align: top;
    height: 50px;
    position: relative;
    padding-left: 15px;
    font-size: 17px;
    font-weight: 600;
    color: #2a2a2a;
    background: #fff;
}
#gnb .gnb_menu > li > a span {
    display: table-cell;
/*    vertical-align: middle;*/
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
	line-height: 1.3;
}
#gnb .sub {
    padding: 0px 0 20px;
}

#gnb .sub li {
    display: inline-table;
    width: 100%;
    vertical-align: top;
    height: 40px;
}
#gnb .sub a {
    display: table-cell;
    vertical-align: middle;
    line-height: 1.3;
    padding-left: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}
#gnb .gnb_menu > li:hover > a,
#gnb .sub a:hover {
	color:#e876dd;
}

/* lnb */
#lnb {position:relative; z-index:8; width:807px; height:60px; margin:135px auto -86px;}
#lnb > ul {display:inline-block; width:100%; border:1px solid #c1c1c1;}
#lnb > ul > li {position:relative; float:left; width:50%;}
#lnb > ul > li.s02 {width:50%; border-left:1px solid #c1c1c1;}
#lnb > ul > li > a {
    position: relative;
    display: inline-table;
    padding-left: 45px;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    height: 58px;
    background: #fff;
    vertical-align: top;
    width: 100%;
}
#lnb > ul > li > a span {
    display: table-cell;
    vertical-align: middle;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
#lnb > ul > li > a:after {position:absolute; top:50%; right:45px; width:13px; height:7px; margin-top:-4px; background:url('/common/img/ico_lnb_arrow.png') no-repeat; background-size:100% auto; content:'';}
#lnb > ul > li.on > a:after {background-image:url('/common/img/ico_lnb_arrow.png');}
#lnb > ul > li.s01 > a {background:#faf9f7;}
#lnb .sub {display:none; position:absolute; top:59px; left:-1px; right:-1px; padding:10px 0; border:1px solid #c1c1c1; border-top:0; background:#fff;}
#lnb .sub li {
    display: inline-table;
    vertical-align: top;
    height: 50px;
    width: 100%;
}
#lnb .sub a {
    display: table-cell;
    position: relative;
    padding-left: 45px;
    font-size: 16px;
    color: #353535;
    line-height: 1.3;
    vertical-align: middle;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#lnb .sub a:hover {color:#333; background:#faf9f7;}
#lnb li.s02 .sub a:hover {background:#faf9f7;}
#lnb .sub a:after {position:absolute; top:50%; right:12px; width:7px; height:11px; margin-top:-3px;}
#lnb li.on .sub {display:block;}

footer {
  width: 100%;
  margin: 0 auto;
}
.mapWrap {
  float: left;
  position: relative;
  width: 640;
  height: 0;
  padding-bottom: 100%;
  padding-bottom: 640px;
}
.mapWrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: calc(100% - 24px);
  z-index: 2;
}
.mapWrap .root_daum_roughmap_landing {
  position: absolute;
  width: 100% !important;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.locationInfo {
  width: 1050px;
  margin: 0 auto 150px;
  padding-top: 40px;
  overflow: hidden;
}
.locationInfo dl {
  position: relative;
  margin-top: 30px;
}
.locationInfo dt {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.6px;
  color: #2a2a2a;
  margin-bottom: 20px;
}
.locationInfo dt b {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding: 0 8px;
  margin-top: 14px;
  border-radius: 4px;
  background-color: #bcbec1;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: -0.3px;
  text-align: center;
  color: #fff;
}
.locationInfo dd {
    margin: 28px 0 0 0;
    padding-bottom: 58px;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.16px;
    line-height: 1.5;
	color: #3a3e45;
}
.locationInfo dd .ver2 {
	display: block !important;
	font-size: 16px;
	color: #757d86;
	margin-top: 15px;
}

.locationInfo dd + dd {
  margin-top: 20px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: -0.3px;
  color: #848484;
  background-image: url("/common/img/ico_file.png");
}
.locationInfo dd span {
  display: block;
}

.locationInfo dd > span:nth-child(1),
.locationInfo dd > span:nth-child(2),
.locationInfo dd > span.ver2 {
    display: inline-block;
}

.locationInfo .hours {
    display: inline-block;
    margin-top: 40px;
    margin-left: 40px;
    max-width: 370px;
}
.locationInfo .hours li {
  display: inline-block;
  height: 96px;
  line-height: 1.3;
  padding: 12px 24px;
  border-radius: 6px;
  border: solid 1px #dadde0;
  background-color: #fff;
  font-size: 14px;
  font-weight: normal;
  color: #3a3e45;
  text-align: center;
  vertical-align: top;
}
.global_eng .locationInfo .hours li,
.global_ru .locationInfo .hours li {
	height: 112px;
}
.locationInfo .hours li:not(:first-child) {
	margin-left: 3px;
}
.locationInfo .hours li img {
    width: 40px;
    display: block;
    margin: 0 auto 8px;
}
.locationInfo .hours dl {
    margin-top: 42px;
}
.locationInfo .hours dt {
    position: relative;
    margin-bottom: 0;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.6px;
    color: #3a3e45;
}
.locationInfo .hours dd {
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  color: #757d86;
  line-height: 1.8;
  margin-top: 15px;
}
.locationInfo dd.table {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  padding-bottom: 0;
  border-bottom: 0;
  background-image: none;
  overflow: hidden;
}
.locationInfo dd.table table {
  float: left;
  width: 50%;
  border-top: 1px solid #848484;
  border-bottom: 1px solid #848484;
}
.locationInfo dd.table tr {
  height: 57px;
  border-bottom: 1px solid #efefef;
}
.locationInfo dd.table tr:last-child {
  border-bottom: 1px solid #848484;
}
.locationInfo dd.table th {
  width: 160px;
  background-color: #f6f7f9;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.35px;
  padding-left: 20px;
}
.locationInfo dd.table th,
.locationInfo dd.table td {
  vertical-align: middle;
}
.locationInfo dd.table td {
  padding-left: 20px;
  font-size: 16px;
  font-weight: normal;
}

.branchInfoBox {
  max-width: 1920px;
  background-color: #f6f7f9;
  margin: 0 auto;
  padding-bottom: 60px;
}
.branchInfoInner {
    position: relative;
    width: 1050px;
    margin: 0 auto;
}
.global_eng .branchInfoInner {
	height: 230px;
}
.branchContact {
    width: 328px;
    position: absolute;
    right: 0;
    top: 30px;
}
.branchContact li {
  position: relative;
  height: 52px;
  line-height: 52px;
  border-radius: 26px;
  background-color: #fff;
  background-image: url("/common/img/ico_call.png");
  background-size: auto 36px;
  background-position: 10px 50%;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.35px;
  color: #4e4e4e;
}
.branchContact li.talk {
  background-image: url("/common/img/ico_talk.png");
}
.branchContact li.talk.global_ru {
  background-image: url("/common/img/eng/ico_whatsApp.png");
}
.branchContact li:not(:first-child) {
  margin-top: 8px;
}
.branchContact li a {
  display: block;
  padding-left: 58px;
}
.branchContact li:not(.tel)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url("/common/img/ico_arrow.png");
  background-size: auto 8px;
  background-position: 50%;
  background-repeat: no-repeat;
}
.branchContact li.tel a ,
.branchInfo li a {
  pointer-events: none;
  cursor: default;
}

.footerMenu {
  max-width: 700px;
  padding-top: 21px;
  padding-bottom: 10px;
}
.footerMenu li,
.footerMenu li a {
  display: inline-block;
}
.footerMenu li {
  padding: 10px 10px 10px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #99a1a8;
  text-transform: uppercase;
  cursor: pointer;
}
.footerMenu li a {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.footerMenu li:last-child {
  padding-right: 0;
}

.branchInfo {
  padding-bottom: 23px;
}
.branchInfo li {
  display: block;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #99a1a8;
}
.branchInfo li:nth-child(1),
.branchInfo li:nth-child(2) {
    display: inline-block;
}
.footerQuick {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    z-index: 30;
}
@media (min-width: 1920px) {
  .footerQuick {
    right: auto;
    left: 50%;
    margin-left: 865px;
  }
}
.footerQuick li {
    display: none;
}
.footerQuick .scrollTop {
  width: 60px;
  height: 60px;
  background-color: rgba(0,0,0,0.2);
  background-image: url("/common/img/ico_scrolltop.png");
  background-size: auto 24px;
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  cursor: pointer;
}
.footerQuick .scrollTop.show {
  visibility: visible;
  opacity: 1;
  z-index: 5;
}
.footerQuick li {
  float: left;
  width: calc(50% - 2px);
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  background-image: linear-gradient(103deg, #e876dd, #ff7053);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  color: #fff;
  text-align: center;
}
.footerQuick li.snsAdvice {
  color: #e876dd;
  border: solid 1px #e876dd;
  background: #fff;
  margin-right: 4px;
}

/* 이용약관, 개인정보취급방침 모달 */
#footer-modal {
  display: none;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 100;
}
#footer-modal .modal-btn {
  position: absolute;
  right: 3px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  background-image: url("/common/img/ico_close_b.png");
  background-size: 20px auto;
  background-position: 50%;
  background-repeat: no-repeat;
  color: transparent;
  font-size: 0;
}
#footer-modal-content {
  position: relative;
  top: 10vh;
  width: 800px;
  height: 80vh;
  background: #fff;
  overflow: hidden;
  margin: 0 auto;
}
#footer-modal .m_header {
  height: 50px;
  line-height: 50px;
  font-family: "Noto Sans KR";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  padding-left: 15px;
}
#footer-modal .m_header h2 {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    display: inline-table;
    width: 100%;
    height: 50px;
    vertical-align: top;
}
#footer-modal .m_con_box {
  font-size: 13px;
  overflow-y: auto;
  height: calc(100vh - 240px);
  line-height: 1.3;
  padding: 15px;
}
#footer-modal .m_con_box p {
  margin-bottom: 7px;
}

#footer-modal-content table {
    width: 100%;
    border: 1px solid #e0e0e0;
    margin: 0 0 12px;
    padding: 0;
    text-align: center;
}
#footer-modal-content th {
    background: #f7f7f7;
    font-weight: 500;
    text-align: center;
}
#footer-modal-content th, 
#footer-modal-content td {
    line-height: 1.3;
    padding: 5px 5px 8px;
    border: 1px solid #e0e0e0;
    margin: 0;
    vertical-align: middle;
}

/* 위챗 팝업 */
.counsultBox {
	display: none;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 30;
}
.counsultBox.on {
	display: block;
}
.counsultBox .qr {
	display: block;
	position: absolute;
	width: calc(100% - 30px);
	max-width: 600px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.channel-modal .close,
.counsultBox .close {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background-image: url(/common/img/ico_close_w.png);
	background-size: 22px auto;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: rgba(0,0,0,0.6);
	border: 0;
	outline: 0;
	color: transparent;
	font-size: 0;
}
.counsultBox .qr .qrImg {
	width: 100%;
}
/*  영어 커스텀 */
.global_eng #gnb .gnbInner {
  max-width: 1280px
}
.global_eng #gnb .sub li {
    height: 20px;
    margin: 10px 0;
}
.global_eng #lnb > ul > li > a {
    padding: 0 62px 0 28px
}
.global_eng #lnb > ul > li > a:after {
    right: 35px;
}

/* 일본어 커스텀 */
.global_jp #gnb .gnbInner {
  max-width: 1280px
}
.global_jp #gnb .gnb_menu > li > a > span,
.global_jp #gnb .sub a,
.global_jp #lnb .sub li,
.global_jp #lnb > ul > li > a span {
    letter-spacing: -0.05em;
}

/* 러시아 커스텀 */
.global_ru #gnb .gnbInner {
  max-width: 1280px
}
.global_ru #gnb .sub li {
    height: 20px;
    margin: 10px 0;
}
.global_ru #lnb > ul > li > a {
    padding: 0 62px 0 28px
}
.global_ru #lnb > ul > li > a:after {
    right: 35px;
}
.global_ru #lnb .sub {
    padding: 10px 10px 10px 0;
}

/* 중국 커스텀 */
.global_ch #gnb .gnbInner {
  max-width: 1280px
}
.global_ch #gnb .sub li {
    height: 20px;
    margin: 10px 0;
}

/*  베트남 커스텀 */
.global_vn #gnb .gnbInner {
  max-width: 1280px
}

/*  태국 커스텀 */
.global_thai #gnb .gnbInner {
  max-width: 1280px
}
.global_thai #gnb .sub li {
    height: 20px;
    margin: 10px 0;
}
.global_thai #lnb > ul > li > a {
    padding: 0 62px 0 28px
}

/*중국어 메신저 채널*/
.channel-modal {
	display: none;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 30;
}
.channel-modal.on {
	display: block;
}
.channel-modal .modal-content {
	display: block;
	position: absolute;
	width: calc(100% - 30px);
	max-width: 1080px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.channel-modal .modal-content img {
	width: 100%;
}
.global-channel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.global-channel li{
	height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.global-channel .img-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
    width: 195px;
    height: 173px;
  border-radius: 50%;
  transform: translateY(-34px);
}