@charset "UTF-8";

#menuButton {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 72px;
}

#menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

#menuClose {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
}

.menuClose:hover {
  cursor: pointer;
}

#menuBase, #menuContentContainer {
  position: absolute;
  width: 100%;
  left: 0; top: 0;
}

#menuContentContainer {
  height: 100%;
}

#menuContainerLeft {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  background-color: black;
}

#menuContainerRight {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: black;
  width: 30%;
  opacity: 0.7;
}

#menuContainerLeftEffect {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

#menuLinks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  max-width: 588px;
  margin: 27px auto;
}

#menuLinks li {
  padding: 0 4px;
}

#menuLinks a {
  color: #f2e1cb;
}

#menuLinks a:hover {
  opacity: 0.7;
}

#menuTopLine {
  width: 100%;
  height: 70px;
  border-bottom: 1px white solid;
  position: relative;
}

#menuTopLine .logo {
  width: 120px;
  height: 40px;
  position: absolute;
  left: 10px;
  bottom: 0; top: 0;
  margin: auto;
  font-size: unset;
}

#menu .spView {
  display: none;
  position: absolute;
  left: 1.8vw;
  right: 1.8vw;
  bottom: 3.6vw;
}

#menu .specialPrice,
#menu .forMember {
  width: 100%;
  max-width: 588px;
  margin: auto;
}

#menu .bottomLines {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  height: 6vw;
  max-height: 80px;
}

#menu .bottomLines .line {
  width: 1.25vw;
  height: 100%;
  background-color: white;
}

@media screen and (max-width: 600px) {
  #menu .pcView {
    display: none;
  }
  #menu .spView {
    display: block;
  }
  #menuContainerRight {
    display: none;
  }
  #menuContainerLeft {
    width: 100%;
  }
  #menuLinks {
    font-size: 4.8vw;
  }
  #menuButton {
    width: 48px;
    top: 10px;
    right: 10px;
  }
}

@media screen and (max-height: 650px) {
  #menu .bottomLines {
    display: none;
  }
}