#header-pc {
  background: var(--accent-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.5rem calc(40/1280 * 100%);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

#header-pc.is-visible {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  #header-pc {
      background: none;
      padding: 0;
  }
}

.logo {
  width: 4rem;
  line-height: 0;
}

.logo a {
  display: inline-block;
  line-height: 0;
}

.logo a img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .logo {
      display: none;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

.header-nav-item {
  padding: 0 1rem;
  position: relative;
}

.header-nav-item_link {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: relative;
}

.header-nav-item_link:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0.2rem;
  left: 0;
  bottom: -0.5rem;
  background: #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media screen and (min-width: 769px) {
  .header-nav-item_link:hover:after {
      -webkit-transform-origin: left top;
      transform-origin: left top;
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
  }
}

@media screen and (min-width: 769px) {
  .header-nav-item:hover .menu-sub {
      opacity: 1;
      visibility: visible;
      top: 100%;
  }
}

@media screen and (max-width: 768px) {
  .menu {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      width: 100%;
      margin: 0 auto;
  }
  .header-nav-item {
      padding: 0;
  }
  .header-nav-item+.header-nav-item {
      margin-top: 2rem;
  }
  .header-nav-item_link {
      font-size: 1.5rem;
      display: inline-block;
      padding: 0 0 0 1.5rem;
      letter-spacing: 0.125em;
      color: var(--accent-color);
      position: relative;
  }
  .header-nav-item_link:before {
      position: absolute;
      content: '';
      width: 0.8rem;
      height: 0.1rem;
      left: 0;
      bottom: 0.3rem;
      background: var(--accent-color);
  }
  .header-nav-item.ico {
      position: relative;
  }
  .header-nav-item.ico:before {
      position: absolute;
      content: '';
      width: 60%;
      height: 9rem;
      right: 0;
      top: 0;
      z-index: 2;
  }
  .header-nav-item.ico .header-nav-item_link .txt {
      display: inline-block;
      position: relative;
  }
  .header-nav-item.ico .header-nav-item_link .txt:after {
      position: absolute;
      content: '';
      width: 0;
      height: 0;
      top: 50%;
      margin-top: -0.5rem;
      right: -4rem;
      border-left: 1rem solid transparent;
      border-right: 1rem solid transparent;
      border-top: 1.6rem solid #fff;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
  }
  .header-nav-item.ico .header-nav-item_link .txt._active:after {
      -webkit-transform: rotateX(180deg);
      transform: rotateX(180deg);
  }
  .header-nav-item.menu-en {
      margin: 2rem 0 3rem;
  }
  .header-nav-item.menu-en .header-nav-item_link {
      width: 10rem;
      height: 2.4rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
      font-size: 1.3rem;
      padding: 0;
      border: 1px solid var(--accent-color);
  }
  .header-nav-item.menu-en .header-nav-item_link:before {
      background: none;
      width: 0;
      height: 0;
  }
}

.menu-sub {
  position: absolute;
  left: -3rem;
  top: 120%;
  background: var(--accent-color);
  width: 12rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.menu-sub li {
  display: block;
}

.menu-sub li+li {
  margin-top: 1rem;
}

.menu-sub li a {
  display: inline-block;
  color: #fff;
  position: relative;
}

.menu-sub li a:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0.2rem;
  left: 0;
  bottom: -0.5rem;
  background: #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media screen and (min-width: 769px) {
  .menu-sub li a:hover:after {
      -webkit-transform-origin: left top;
      transform-origin: left top;
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
  }
}

@media screen and (max-width: 768px) {
  .menu-sub {
      display: none;
  }
}

.g-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .g-nav {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100lvh;
      overflow-y: auto;
      background: #EDDDDE;
      z-index: 9;
      padding: 8rem 2.5rem 3rem;
      opacity: 0;
      visibility: hidden;
      -webkit-transform: scale(1.05);
      transform: scale(1.05);
      -webkit-transition: all .4s ease;
      transition: all .4s ease;
  }
  .g-nav.open {
      opacity: 1;
      visibility: visible;
      -webkit-transform: scale(1);
      transform: scale(1);
  }

}

.g-nav.open .mv-logo {
  display: none !important;
}

@media screen and (min-width: 769px) {
  .header-information {
      display: none;
  }
}

@media screen and (max-width: 768px) {
  .header-information {
      width: 100%;
  }
  .header-information .header-sns {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-column-gap: 15px;
      -moz-column-gap: 15px;
      column-gap: 15px;
      margin-bottom: 3rem;
  }
  .header-information .header-sns li {
      width: 3.2rem;
  }
  .header-information .header-sns li a {
      display: block;
  }
  .header-information .header-btn li+li {
    margin-top: 1.5rem;
  }
  .header-information .header-btn li a {
      width: 100%;
      height: 4.6rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
      background: var(--accent-color);
      color: #fff;
      letter-spacing: 0.06em;
  }
  .header-information .header-sch {
      color: var(--accent-color);
      letter-spacing: 0.06em;
      margin-top: 1.5rem;
      text-align: center;
  }
}

.reservation-btn {
  width: 29.6rem;
  height: 7.2rem;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--accent-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 8;
}

@media screen and (max-width: 768px) {
  .reservation-btn {
      width: 100%;
      height: 5.8rem;
      font-size: 1.5rem;
      letter-spacing: 0.15em;
  }
}

@media screen and (max-width: 768px) {
  .home #header-pc .nav-icon ul li {
      background: #fff;
  }
  .home #header-pc .nav-icon.open ul li {
      background: var(--accent-color);
  }
  .home #header-pc.is_active .nav-icon ul li {
      background: var(--accent-color);
  }
}

@media (min-width: 1025px) and (max-width: 1366px) {
  #header-pc {
      padding: 1.5rem 2rem;
  }
  .header-nav-item {
      padding: 0 0.2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #header-pc {
      padding: 1.5rem 0.2rem 1.5rem 0.5rem;
  }
  .menu {
      -webkit-column-gap: 1rem;
      -moz-column-gap: 1rem;
      column-gap: 1rem;
  }
  .header-nav-item {
      padding: 0;
  }
  .header-nav-item_link {
      font-size: 1.2rem;
      padding: 0;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  #header-pc {
      text-align: center;
  }
  .logo {
      display: none;
  }
  .g-nav {
      width: 100%;
  }
  .menu {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%;
      -webkit-column-gap: 0.7rem;
      -moz-column-gap: 0.7rem;
      column-gap: 0.7rem;
  }
}


#hambuger {
  width: 2.6rem;
  height: 1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 12;
  cursor: pointer;
  position: fixed;
  text-align: center;
  right: 2.5rem;
  top: 3rem;
}

#hambuger span {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Helvetica", sans-serif;
  color: #6E6E6E;
  margin-top: 0.5rem;
}

.nav-icon ul {
  position: relative;
  width: 100%;
  height: 100%;
}

.nav-icon ul li {
  list-style: none;
  position: absolute;
  background: var(--accent-color);
  width: 100%;
  height: 0.1rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-icon ul li:nth-of-type(1) {
  top: 0%;
}

.nav-icon ul li:nth-of-type(2) {
  top: 48%;
}

.nav-icon ul li:nth-of-type(3) {
  top: 98%;
}

.nav-icon ul li span {
  display: inline-block;
}

.nav-icon.open ul {
  opacity: 1;
  visibility: visible;
}

.nav-icon.open ul li:nth-of-type(1) {
  width: 100%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-icon.open ul li:nth-of-type(3) {
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-icon.open ul li:nth-of-type(2) {
  opacity: 0;
}

@media screen and (min-width: 769px) {
  #hambuger {
      display: none;
  }
}

