#button_container {
  position: fixed;
  top: 25px;
  right: 20px;
  height: 60px;
  width: 60px;
  z-index: 400;
  cursor: pointer;
  -webkit-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#button_container.show {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
#button_container.whited #toggle span {
  background: #fff;
}
#button_container.blacked #toggle span {
  background-color: #000;
}

#toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  height: 14px;
  z-index: 300;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
#toggle:hover {
  opacity: 0.7;
}
#toggle.active span {
  background-color: #000 !important;
}
#toggle span {
  background: #aaa;
  border: none;
  height: 1px;
  width: 40px;
  position: absolute;
  top: 0px;
  right: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}
#toggle span:nth-of-type(2) {
  top: 8px;
}
#toggle span:nth-of-type(3) {
  top: 16px;
  width: 20px;
}

#toggle.active .top {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
      -ms-transform: translateY(8px) translateX(0) rotate(45deg);
          transform: translateY(8px) translateX(0) rotate(45deg);
}

#toggle.active .middle {
  opacity: 0;
}

#toggle.active .bottom {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
      -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
          transform: translateY(-8px) translateX(0) rotate(-45deg);
  width: 40px;
}

#overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 39;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: rgba(0, 0, 0, 0.7);
}
#overlay.open {
  visibility: visible;
  opacity: 1;
}
#overlay.open #overlayBox {
  opacity: 1;
}
#overlay #overlayBox {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 74%;
  background-color: #F7F1E5;
  background-image: url("../images/common/bg_menu.png");
  background-size: 130px auto;
  background-repeat: repeat;
  background-position: center center;
}
#overlay #menuBox {
  width: calc(100% - 18vw);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-block;
}
#overlay #menuBox .navListBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#overlay #menuBox .navListBox .each {
  margin-right: 9vw;
}
#overlay #menuBox .navListBox .each .navList li {
  margin-bottom: 30px;
}
#overlay #menuBox .navListBox .each .navList li a p {
  font-size: 28px;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  color: #4D4D4D;
  line-height: 1;
}
#overlay #menuBox .navListBox .each .navList li a span {
  font-size: 12px;
}
#overlay .logo {
  margin-left: 20px;
  margin-top: 30px;
  z-index: 2;
  width: 45%;
  text-align: center;
}

.menuMap {
  position: absolute;
  right: calc(52vw - 220px);
  bottom: 5.4vw;
  z-index: 2;
}
.menuMap a {
  background-color: #B7A171;
  width: 220px;
  padding: 11px 0;
  max-width: 100%;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menuMap a span {
  font-size: 21px;
  color: #fff !important;
  font-family: "adobe-garamond-pro", serif;
  background-image: url("../images/location/ico_map.png");
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 30px;
  display: inline-block;
}
.menuMap a:hover {
  opacity: 0.6;
}

.menuBtnList {
  position: absolute;
  right: 5.4vw;
  bottom: 5.4vw;
  z-index: 2;
}
.menuBtnList li {
  margin-top: 25px;
}
.menuBtnList li a {
  display: inline-block;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff;
  border-radius: 50px;
  color: #B7A171;
  padding: 10px 40px;
  font-size: 24px;
  font-weight: 500;
}
.menuBtnList li a span {
  background-size: 32px auto;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 40px;
  display: inline-block;
}
.menuBtnList li a:hover {
  opacity: 0.6;
}
.menuBtnList li.doc a span {
  background-image: url("../images/common/menu_doc.png");
}
.menuBtnList li.reserve a span {
  background-image: url("../images/common/menu_calendar.png");
}
.menuBtnList li.home a span {
  background-image: url("../images/common/menu_home.png");
  background-size: 31px auto;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  header.open {
    opacity: 0;
  }
  #overlay #overlayBox {
    width: 100vw;
  }
  #overlay .menuMap {
    width: calc(100% - 18vw);
    left: 0;
    right: 0;
    bottom: 150px;
    left: 9vw;
    right: 9vw;
    text-align: center;
  }
  #overlay #menuBox {
    top: 100px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  #overlay #menuBox .navListBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
  #overlay #menuBox .navListBox .each {
    margin-right: 0;
  }
  #overlay #menuBox .navListBox .each .navList li {
    line-height: 1;
  }
  #overlay #menuBox .navListBox .each .navList li a p {
    font-size: 20px;
  }
  #overlay #menuBox .navListBox .each .navList li a span {
    font-size: 12px;
  }
  #overlay #menuBox .navListBox .each1 {
    width: 100%;
  }
  #overlay #menuBox .navListBox .each2,
  #overlay #menuBox .navListBox .each3 {
    width: 50%;
  }
  #overlay #menuBox .navListBox .each3 {
    padding-left: 30px;
  }
  .menuBtnList {
    position: absolute;
    right: initial;
    bottom: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .menuBtnList li {
    width: 50%;
    text-align: center;
  }
  .menuBtnList li.doc a:before {
    background-image: url("../images/common/menu_doc.png");
  }
  .menuBtnList li.reserve a:before {
    background-image: url("../images/common/menu_calendar.png");
  }
  .menuBtnList li.home a:before {
    background-image: url("../images/common/menu_home.png");
  }
  .menuBtnList li a {
    padding: 0;
    background-color: transparent;
    font-size: 18px;
    position: relative;
  }
  .menuBtnList li a:before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background-size: 32px auto;
    background-repeat: no-repeat;
    background-position: center top 13px;
  }
  .menuBtnList li a span {
    background-image: none !important;
    padding-left: 0;
    padding-top: 65px;
  }
}