.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.header {
  width: 125.7rem;
  height: 7.7rem;
  background-color: rgba(255, 255, 255, 0.88);
  justify-content: center;
  position: fixed;
  left: 50%;
  top: 0rem;
  transform: translateX(-50%);
  z-index: 999;
}


.header_flex {
  display: flex;
  align-items: center;
}

.header_logo {
  width: 24.5rem;
  height: 5.7rem;
}

.header_list {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  gap: 3.6rem;
  margin-left: 5.7rem;
  color: #464646;
  letter-spacing: 0.1em;
}

.header_empty_room {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  width: 18.3rem;
  height: 3.2rem;
  text-align: center;
  line-height: 3.2rem;
  color: #FFFFFF;
  background-color: #462300;
  margin-left: 3.5rem;
  letter-spacing: 0.1em;
  padding: 0 1.1rem;
}

.header_list li a:hover,
.header_list li a:focus {
  color: #C99846;
}

.header-menu-link.active,
.header-menu-link.is-selected {
  color: #C99846;
}

.header-menu-link.active::after,
.header-menu-link.is-selected::after {
  content: "";
  width: 70%;
  height: 0.1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0rem;
  background-color: rgba(50, 50, 50, 0.88) !important;
}

.header_list li {
  position: relative;
  padding-bottom: 0.5rem;
}

.header-menu-link {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.ham_menu{
  display: none;
}


@media screen and (max-width:699.98px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  body{
    padding-top: 7.7rem;
  }

  .header {
    width: 100%;
    height: 7.7rem;
    background-color: rgba(255, 255, 255, 0.88);
    left: 0;
    padding-left: 1rem;
    transform: translateX(0);
    top: 0;
  }

  .header_flex {
    gap: 7.7rem;
  }

  .ham_nav{
    position: relative;
  }

  .hamburger{
    width: 3.7rem;
    height: 3.7rem;
    background: linear-gradient(90deg, #A07837 0% , #3A2C14 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
  }

  .hamburger span{
    width: 1.5rem;
    height: 0.1rem;
    background-color: #FFFFFF;
  }

  .hamburger.open span{
    position: absolute;
  }

  .hamburger.open span:nth-of-type(1){
    transform: rotate(45deg);
  }

  .hamburger.open span:nth-of-type(2){
    display: none;
  }

  .hamburger.open span:nth-of-type(3){
    transform: rotate(-45deg);
  }

  .ham_menu.open{
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
    position: absolute;
    background-color: #323232;
    top: -2rem;
    right: -0.6rem;
    padding: 7.8rem 0 2.8rem 1.8rem;
    width: 22.3rem;
    font-family: "Shippori Mincho";
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
  }

  .ham_menu a.active{
    color: #C99846;
  }

  .ham_menu a:last-child{
    font-size: 1.6rem;
    padding: 0.35rem 1.1rem;
    background-color: #C99846;
    width: fit-content;
    font-family: "Noto Sans JP";
  }
}