html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

#overlay {
  z-index: 1002;
  position: fixed;
  top: 60px;
  left: 0;
  display: none;
  box-sizing: border-box;
  width: 100%;
  padding: 16px 16px 0;
  background-color: #fff;
  overflow-y: scroll;
}
@media only screen and (max-width: 769px) {
  #overlay {
    height: 100vh;
  }
}

.overlay_ttl {
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}

.icn-hamburger {
  z-index: 1003;
  position: fixed;
  right: 4px;
  top: 10px;
  display: none;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media only screen and (max-width: 769px) {
  .icn-hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.icn-hamburger span {
  position: absolute;
  left: 0;
  display: block;
  height: 1px;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.icn-hamburger .bar-top {
  width: 15px;
  transform: translateY(-5px);
  background-color: #000;
}
.icn-hamburger .bar-middle {
  width: 15px;
  background-color: #000;
}
.icn-hamburger .bar-bottom {
  width: 15px;
  transform: translateY(5px);
  background-color: #000;
}
.icn-hamburger div {
  position: relative;
  width: 15px;
  height: 10px;
  margin-top: 8px;
}

.icn-hamburger.is-open .bar-top {
  transform: rotate(-45deg) translateY(0px);
  width: 15px;
}
.icn-hamburger.is-open .bar-middle {
  background: rgba(255, 255, 255, 0);
}
.icn-hamburger.is-open .bar-bottom {
  transform: rotate(45deg) translateY(0px);
  width: 15px;
}

.hamburger_content {
  padding: 0 20px;
}
@media only screen and (max-width: 769px) {
  .hamburger_content {
    padding: 0 8px;
  }
}
.hamburger_content .closeBtn {
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .hamburger_content .closeBtn {
    margin-top: 30px;
  }
}
.hamburger_content .closeBtn span {
  display: inline-block;
  padding: 7px 26px;
  border-radius: 50px;
  background-color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.hamburger_content .closeBtn span:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hamburger_snsList {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 30px;
}
.hamburger_snsList li .fa-instagram {
  font-size: 4.5rem;
}
.hamburger_snsList li .fa-facebook {
  font-size: 4rem;
}
.hamburger_snsList li + li {
  margin-left: 20px;
}/*# sourceMappingURL=hamburgerMenu.css.map */