/* ヘッダー */
.header {
  background: #fefefe url(../images/bg01.jpg) no-repeat center / cover;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 80px;
}

.header--reservation {
  padding: 16px 48px;
  border: 1px solid #4b4b4b;
  position: relative;
  width: auto!important;
}
.header--reservation:after {
  position: absolute;
  content: "";
  right: 10px;
  bottom: -20px;
  width: .5px;
  height: 60px;
  background: #4b4b4b;
  border-radius: 3px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.header--reservation:hover:after {
  right: 10px;
  bottom: -30px;
  height: 80px;
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background: #fefefe url(../images/bg01.jpg) no-repeat center / cover;
  transition: ease .4s;
  box-sizing: border-box;
}

.nav-items {
  padding-top: 180px;
}

/* ナビのリンク */
.nav-items__item a {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin: 0 auto 32px;
  padding: 16px;
  box-sizing: border-box;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
  width: 200px!important;
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #4b4b4b;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 960px) {
  .header__title {
    width: 120px;
  }

  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }

  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }

  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
  }

  .nav-items__item a {
    margin-bottom: 0;
  }

  .hamburger {
    display: none;
  }
  .nav-items__item:last-child a {
    width: 140px!important;
  }
}

