.scrollLock { overflow: hidden; }
/* MENUWRAP */

div#menuWrap {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: -100%;
  z-index: 888;
}

div#menuWrap>div:nth-child(1) {
  width: 80%;
  height: 100vh;
  background-color: var(--primary-color);
  padding: 5vw;
  font-size: 4.2vw;
  float: left;
}

div#menuWrap>div>ul>li {
  border-bottom: 1px solid var(--black);
  padding: 4vw 0;
  overflow: hidden;
}

div#menuWrap>div>ul>li>ul {
  padding: 4vw 0;
}

div#menuWrap>div>ul>li>ul>li {
  padding: 1vw 0;
  font-size: 3.8vw;
}

div#menuWrap>div>ul>li:nth-child(1) span+span {
  float: right;
  font-size: 5vw;
}

div#menuWrap>div>ul>li>a>span {}

div#menuWrap #out {
  width: 20%;
  float: right;
  height: 100vh;
  cursor: pointer;
  backdrop-filter: blur(10px);
}



/* HEADER */

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--black);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 123;
  height: 3.5vw;
  background-color: var(--primary-color);
}

header div#menuLeft {
  display: none;
}

header h1 a {
  display: block;
  height: 100%;
}
header h1 a img {height: 100%;}
header h1 {
  height: 100%;
  float: left;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
}

header ul li {
  float: left;
}

header #menuBar {
  margin: 8vw;
  float: left;
  cursor: pointer;
}

header #menuBar div {
  height: 0.5vw;
  width: 6vw;
  background-color: var(--black);
}

header #menuBar div:nth-child(1),
header #menuBar div:nth-child(2) {
  margin-bottom: 1.4vw;
}

header div#menuRight {
  float: right;
  display: block;
  padding: 1.2vw 3vw;
  font-size: 1.3vw;
}




/* FOOTER */

footer * {
  color: white;
  font-family: 'Pretendard';
  font-weight: 200;
}

footer {
  overflow: hidden;
  background-color: var(--black);
  color: var(--white);
}

footer a {
  color: var(--white);
  font-family: 'Pretendard';
}

footer #footerMenu {
  padding: 5vw 5vw 10vw;
  overflow: hidden;
}

footer #footerMenu>ul {
  display: flex;
  justify-content: space-between;
}

footer #footerMenu>ul>li {
  font-size: 3vw;
  padding: 1.5vw;
  margin-bottom: 1vw;
  font-weight: 600;
}

footer #footerMenu ul li ul {
  padding: .5vw 0 0;
}

footer #footerMenu ul li ul li {
  padding: .5vw 0 0;
}

footer #footerMenu ul li ul li a {
  font-size: 2.5vw;
}

footer #footerMenu ul li ul {
  display: flex;
  flex-direction: column;
}

footer #footerLink {
  padding: 0 5vw;
  font-size: 2vw;
  overflow: hidden;
}

footer #footerLink ul li {
  float: left;
  margin-right: 2vw;
}
footer .servicePopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
  width: 100vw;
  height: 100vh;
  padding: 5vw 20vw;
  z-index: 999;
}
footer .servicePopup p {
  padding: 5%;
  color: #222;
  overflow-y: scroll;
  background-color: #fff;
  width: 100%;
  height: 100%;
  line-height: 1.5;
}
footer #footerTxt {
  padding: 2vw 5vw 0;
  display: flex;
  flex-direction: column-reverse;
}

footer #footerTxt .footerMent {
  font-size: 2.6vw;
  padding: 5vw 0 0;
  color: var(--white);
}

footer #footerTxt .footerCopy {
  font-size: 2vw;
  color: var(--white);
  font-family: 'Pretendard';
}

footer h6 {
  padding: 2vw;
}
footer h6 img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}


@media all and (min-width: 768px) {

  /* MENUWRAP */

  div#menuWrap>div:nth-child(1) {
      font-size: 3vw;
  }

  div#menuWrap>div>ul>li {
      padding: 3vw 0;
  }

  div#menuWrap>div>ul>li>ul {
      padding: 2vw 0 0;
  }

  div#menuWrap>div>ul>li>ul>li {
      padding: 1vw 0;
      font-size: 2.5vw;
  }


  /* HEADER */

  header #menuBar {
      margin: 6vw;
  }

  header #cart a {
      font-size: 3vw ;
  }

  /* FOOTER */
  footer #footerMenu>ul>li {
      font-size: 2.3vw;
  }

  footer #footerMenu ul li ul li a {
      font-size: 2vw;
  }

  footer #footerLink ul li {
      font-size: 1.7vw;
  }

  footer #footerTxt .footerCopy {
      font-size: 1.7vw;
  }
}

@media all and (min-width: 1000px) {
  /* MENUWRAP */

  div#menuWrap {
      display: none;
  }
  /* HEADER */

  header {
      overflow: hidden;
      width: 100%;
  }

  header #menuBar,
  header #cart {
      display: none;
  }

  header div#menuLeft {
      display: block;
      padding: 1.2vw 3vw;
      font-size: 1.3vw;
  }

  header div#menuLeft {
      float: left;
  }



  header ul li {
      float: left;
      padding: 1vw;
  }

  /* FOOTER */
  

  footer {
      overflow: hidden;
      background-color: #222;
      color: white;
  }


  footer #footerMenu {
      padding: 3vw 3vw;
      width: 40%;
      float: left;
  }

  footer #footerMenu>ul {}

  footer #footerMenu>ul>li {
    font-weight: 600;
      font-size: 1.3vw;
      padding: 0;
      margin-bottom: 0;
  }

  footer #footerMenu ul li ul {
      padding: .3vw 0 0;
  }

  footer #footerMenu ul li ul li {
      padding: .2vw 0 0;
  }

  footer #footerMenu ul li ul li a {
      font-size: 1vw;
  }

  footer #footerMenu ul li ul {
      display: flex;
      flex-direction: column;
  }

  footer #footerLink {
      padding: 3vw 3vw;
      font-size: .7vw;
      width: 60%;
      float: right;
  }

  footer #footerLink ul li {
      float: none;
      margin-right: 0;
      text-align: right;
  }

  footer #footerLink a {
      font-size: 1vw;
  }

  footer #footerTxt {
      padding: 2vw 3vw 0;
      display: block;
      overflow: hidden;
      width: 100%;
  }

  footer #footerTxt .footerMent {
      font-size: 1.5vw;
      padding: 0vw;
      float: left;
  }

  footer #footerTxt .footerCopy {
      font-size: 1vw;
      float: right;
      padding: 1vw 0 0;
  }

}

@media all and (min-width: 1440px) {
  /* HEADER */
  header div#menuLeft,
  header div#menuRight {
      font-size: 1vw;
      padding: .2vw 3vw;
  }

  /* FOOTER */
  footer #footerMenu>ul>li {
      font-size: 1.1vw;
  }

  footer #footerMenu ul li ul li a {
      font-size: .8vw
  }

  footer #footerLink {
      padding: 2vw 3vw;
  }

  footer #footerLink a {
      font-size: .8vw;
  }

  footer #footerTxt .footerCopy {
      font-size: .8vw;
  }
  
}


@media screen and (max-width:1440px){
  header {
    height: 5vw;
  }
}

@media screen and (max-width:1000px){
  header {
    height: 15vw;
  }
  header h1 {
    padding: 4vw;
  }
  
  header div#menuRight {
    margin: 6vw;
    padding: 0;
  }
  header div#menuRight a {
    font-size: 3vw;
  }
  footer .servicePopup {
    padding: 30vw 5vw;
  }
}

@media screen and (max-width:768px){

  header div#menuRight {
    margin: 8vw;
  }

  footer #footerLink a {
    font-size: 2.5vw ;
  }

}