#wrapper {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#wrapper header {
  width: 100%;
  height: 60px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  border-bottom: 1px solid #ddd;
}

#wrapper footer {
  width: 100%;
  background: #000;
  color: #fff;
  z-index: 1000;
  display: inline-block;
  font-size: 14px;
  font-family: "Nanum", sans-serif;
  padding: 30px 15px;
}

#wrapper footer .goTop {
  content: '';
  position: absolute;
  z-index: 1000;
  opacity: 0;
  transition: all .4s;
}

#wrapper footer .goTop.on {
  opacity: 1;
  transition: all .4s;
}

#wrapper footer .goTop a {
  position: fixed;
  bottom: 44px;
  right: 20px;
  width: 46px;
  height: 46px;
}

#wrapper footer ul {
  margin-top: 20px;
  width: 300px;
}

#wrapper footer ul li {
  position: relative;
  display: inline-block;
  margin: 0 12px 6px 0;
  color: #fff;
  font-size: 16px;
}

#wrapper footer ul li:nth-of-type(2n) {
  margin-right: auto;
}

#wrapper footer ul li:nth-of-type(2n):after {
  content: "";
  position: absolute;
  left: -7px;
  top: 3px;
  width: 1px;
  height: 10px;
  background: #fff;
}

#wrapper footer .footerInfo {
  margin-bottom: 20px;
}

#wrapper footer .footerInfo ul li {
  content:none;
}

#wrapper footer ul li:nth-of-type(2n):after{
  content: none;
}

#wrapper footer .footerInfo ul li span {
  font-size: 14px;
}

#wrapper footer .capyright {
  margin: 10px 0;
  font-size: 12px;
  font-weight: bold;
  color: #888;
}

#wrapper.gnbOn header {
  border-bottom-color: #fff;
}

#wrapper.headerFix header {
  top: -60px;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  transition: all 0.2s;
}

header h1 {
  height: 29px;
  margin: 0 auto;
  text-align: center;
}

header #hbg {
  width: 20px;
  height: 14px;
  position: absolute;
  top: 15px;
  right: 13px;
  z-index: 10001;
  padding: 5px;
  box-sizing: content-box;
}

header #hbg .wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 14px;
}

header #hbg .line {
  height: 2px;
  width: 100%;
  background: #E50065;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
}

header #hbg .line:nth-of-type(1) {
  top: 0;
}

header #hbg .line:nth-of-type(2) {
  top: 7px;
}

header #hbg .line:nth-of-type(3) {
  top: 14px;
}

header #hbg.on .line:nth-of-type(1) {
  top: 7px;
  transform: rotate(45deg);
}

header #hbg.on .line:nth-of-type(2) {
  top: 7px;
  opacity: 0;
}

header #hbg.on .line:nth-of-type(3) {
  top: 7px;
  transform: rotate(-45deg);
}

#gnb {
  width: 100%;
  height: calc(100% - 60px);
  background: #fff;
  position: fixed;
  top: 60px;
  left: 100vw;
  z-index: 9999;
  border-top: 1px solid #e8e8e8;
  font-family: 'Nanum', sans-serif;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s;
  overflow-y: auto;
}

#gnb.on {
  left: 0;
}

#gnb .menuArea .menuTypeA {
  padding: 0 20px;
}

#gnb .menuArea .menuTypeA > li {
  border-bottom: 1px solid #ddd;
}

#gnb .menuArea .menuTypeA > li:first-child a.on {
  font-weight: 400;
}

#gnb .menuArea .menuTypeA > li > a {
  color: #000;
  font-size: 20.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

#gnb .menuArea .menuTypeA > li > a .ico.arr_down {
  transition: all 0.3s;
  pointer-events: none;
  margin-right: 2px;
}

#gnb .menuArea .menuTypeA > li > a.on {
  font-weight: 600;
}

#gnb .menuArea .menuTypeA > li > a.on .ico.arr_down {
  transform: rotate(180deg);
}

#gnb .menuArea .menuTypeA > li:last-child {
  border-bottom: none;
}

#gnb .menuArea .menuTypeA .depth2 {
  display: none;
  background: #f5f5f5;
  font-size: 18px;
  margin: 0 -20px;
  padding: 26px 20px;
}

#gnb .menuArea .menuTypeA .depth2 > li {
  margin-top: 10px;
}

#gnb .menuArea .menuTypeA .depth2 > li:first-child {
  margin-top: 0;
}

#gnb .menuArea .menuTypeA .depth2 > li > a {
  color: #000;
  display: block;
  padding: 15px 0;
  position: relative;
}

#gnb .menuArea .menuTypeA .depth2 > li > a .ico.more {
  background-image: url("/m/static/images/common/ico_plus3.png");
  background-size: 30px;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  pointer-events: none;
}

#gnb .menuArea .menuTypeA .depth2 > li > a.on {
  color: #E50065;
  font-weight: 600;
}

#gnb .menuArea .menuTypeA .depth2 > li > a.on .ico.more {
  background-image: url("/m/static/images/common/ico_minus2.png");
}

#gnb .menuArea .menuTypeA .depth2 > li:last-child .depth3 {
  margin-bottom: 0;
}

#gnb .menuArea .menuTypeA .depth3 {
  display: none;
  font-size: 16px;
  margin-bottom: 6px;
  padding-left: 20px;
}

#gnb .menuArea .menuTypeA .depth3 > li {
  position: relative;
  padding-left: 18px;
  color: #666;
}

#gnb .menuArea .menuTypeA .depth3 > li:before {
  content: "-";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: inherit;
}

#gnb .menuArea .menuTypeA .depth3 > li > a {
  color: inherit;
  display: block;
  padding: 16px 0;
}

#gnb .menuArea .menuTypeB li {
  padding: 20px;
}

#gnb .menuArea .menuTypeB li a {
  color: #fff;
  font-size: 18px;
}

#gnb .menuArea .menuTypeB li.bg-red {
  background: #E50065;
}

#gnb .menuArea .menuTypeB li.bg-gray {
  background: #666;
}

#gnb .menuArea .menuTypeB li.bg-black {
  background: #000;
}

#gnb .snsArea {
  padding: 30px 20px;
}

#gnb .snsArea a {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 12px;
}

#gnb .customerArea {
  padding: 18px 20px;
  background: #E50065 url(/m/static/images/main/bg_call2.png) no-repeat 90% 34px/71px;
  color: #fff;
}

#gnb .customerArea strong {
  font-size: 18px;
  color: #fff;
}

#gnb .customerArea ul {
  margin-top: 15px;
}

#gnb .customerArea ul li {
  display: flex;
  margin-bottom: 5px;
}

#gnb .customerArea ul li:last-of-type {
  margin-bottom: 0;
}

#gnb .customerArea ul li span {
  width: 75px;
  font-size: 16px;
}

#gnb .customerArea ul li strong {
  font-size: 16px;
  font-weight: 700;
}

#container {
  flex: 1;
}
