@charset "UTF-8";
/* ハンバーガーメニュー */
/* ============================================ */
.menu_base {
  width: 120px;
  height: 120px;
  background: #fff;
  cursor: pointer;
  position: relative;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
}

.menu_trigger,
.menu_trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu_trigger {
  width: 42px;
  height: 21px;
  background: none;
  border: none;
  position: relative;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.menu_trigger:focus {
  outline: 0;
}
.menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.menu_trigger span:nth-of-type(1) {
  top: 0;
}
.menu_trigger span:nth-of-type(2) {
  top: 10px;
}
.menu_trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu_trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu_trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

.home_btn {
  width: 120px;
  height: 120px;
  background: #53401c;
  position: relative;
  position: fixed;
  top: 0;
  right: 120px;
  z-index: 100;
}

.reserve_btn {
  width: 240px;
  height: 40px;
  background: #b1984d;
  position: relative;
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 100;
}
.reserve_btn a {
  display: block;
  width: 100%;
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  line-height: 40px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.navi_back {
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 94;
}

.navi_base {
  width: 100vw;
  height: 100vh;
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow: auto;
  visibility: hidden;
}

.navi_base.active {
  opacity: 1;
  visibility: visible;
}

.navi {
  padding: 0 40px;
  width: 100%;
  max-width: 980px;
  overflow: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.navi_left {
  width: 300px;
  height: auto;
  font-family: shippori-mincho, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  position: relative;
}
.navi_left span a {
  display: block;
  margin-bottom: 30px;
}
.navi_left span img {
  width: 220px;
}
.navi_left .navi_side {
  padding-left: 30px;
}
.navi_left .navi_side p {
  line-height: 24px;
}

nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.main_navi {
  width: 100%;
  margin-top: 20px;
}
.main_navi li {
  margin: 0 auto;
  padding: 0 0 0 30px;
  font-family: shippori-mincho, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  position: relative;
}
.main_navi li a {
  display: block;
}
.main_navi li:last-child {
  border-bottom: solid 1px #b4b3b3;
}
.main_navi .main_menu {
  line-height: 60px;
  border-top: solid 1px #b4b3b3;
}
.main_navi .main_menu:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #53401c;
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-52%);
          transform: translateY(-52%);
  left: 10px;
}
.main_navi .sub_menu {
  padding-left: 40px;
  line-height: 40px;
}
.main_navi .last {
  padding-bottom: 20px;
}
.main_navi .arrow {
  margin: 0 10px 0 0;
}

@media screen and (max-width: 920px) {
  .menu_base {
    width: 80px;
    height: 80px;
  }

  .home_btn {
    width: 80px;
    height: 80px;
    right: 80px;
  }

  .reserve_btn {
    width: 160px;
    height: 35px;
    top: 80px;
  }
  .reserve_btn a {
    line-height: 35px;
  }

  .menu_trigger {
    width: 34px;
    height: 17px;
  }
  .menu_trigger span:nth-of-type(2) {
    top: 8px;
  }

  .menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
  }

  .menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
            transform: translateY(-8px) rotate(45deg);
  }

  .navi_left {
    width: 260px;
  }
}
@media screen and (max-width: 599px) {
  .menu_base {
    width: 60px;
    height: 60px;
  }

  .home_btn {
    width: 60px;
    height: 60px;
    right: 60px;
  }

  .reserve_btn {
    width: 120px;
    height: 30px;
    top: 60px;
  }
  .reserve_btn a {
    font-size: 12px;
    line-height: 30px;
  }

  .menu_trigger {
    width: 26px;
    height: 13px;
  }
  .menu_trigger span:nth-of-type(2) {
    top: 6px;
  }

  .menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
  }

  .menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
  }

  .navi {
    padding: 0 25px;
  }

  .navi_left span {
    position: relative;
    left: -8px;
  }
  .navi_left span a {
    margin-bottom: 24px;
  }
  .navi_left .navi_side {
    padding-left: 14px;
  }

  .main_navi .main_menu {
    line-height: 56px;
  }
  .main_navi .sub_menu {
    padding-left: 40px;
    line-height: 38px;
  }
  .main_navi .last {
    padding-bottom: 18px;
  }
}
/* ウェディング */
/* ============================================ */
.home_btn {
  right: 0;
}