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

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

.l-header {
  width: 100%;
  padding: 1.5vw 3vw;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  color: #2A3719;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 500;
  background-color: #DAD5D1;
  transition: 0.16s 0s;
  z-index: 99;
}
@media screen and (max-width: 1200px) {
  .l-header {
    padding-left: 15px;
    grid-template-columns: 227px auto;
  }
}
@media screen and (max-width: 576px) {
  .l-header {
    padding: 16px;
    grid-template-columns: 140px 170px;
    justify-content: space-between;
    background-color: transparent;
    position: absolute;
  }
}
.l-header__logo {
  display: block;
}
.l-header__logo .head-logo {
  width: 180px;
  height: 88px;
  background-image: url(../images/common/nearequal_logo.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 576px) {
  .l-header__logo .head-logo {
    width: 142px;
    height: 68px;
    background-image: url(../images/common/nearequal_logo_sp.png);
  }
}
.l-header__logo .head-logo span {
  display: none;
}
.l-header__logo-image {
  width: 100%;
  height: auto;
}
.l-header__center {
  justify-self: right;
  font-size: 1.4rem;
  padding-right: 60px;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 1400px) {
  .l-header__center {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .l-header__center {
    height: 100%;
    aspect-ratio: 1/1;
    order: 3;
    padding-right: 0;
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-item {
  padding: 0 0.8em;
  position: relative;
  text-align: center;
}
.l-header__nav-item:first-child:before {
  display: none;
}
.l-header__nav-item:last-child {
  padding-right: 0;
}
.l-header__nav-url {
  color: #2A3719;
  text-decoration: none;
  font-size: 1.2rem;
}
.l-header__nav-url span {
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 1.6px;
  text-transform: capitalize;
  display: block;
}
.l-header__nav-url:after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #2A3719;
  transition: 0.32s 0s;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.l-header__nav-url:hover {
  color: #2A3719;
  text-decoration: none;
}
.l-header__nav-url:hover:after {
  width: calc(100% - 16px);
}
.l-header__right img:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .l-header__right {
    order: 2;
  }
}
.l-header__reserve {
  display: block;
  text-align: center;
  text-decoration: none;
  transition: 0.32s 0s;
  position: relative;
  overflow: hidden;
}
.l-header__reserve:hover {
  text-decoration: none;
}

.restaurant_booking {
  position: fixed;
  width: 200px;
  height: 200px;
  bottom: 0;
  right: 0;
  z-index: 98;
}
.restaurant_booking a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-top-left-radius: 250px;
  border-left: 2px #ffffff solid;
  border-top: 2px #ffffff solid;
  background-color: #551F17;
}
.restaurant_booking a .icon {
  width: 50px;
  height: 50px;
  left: 88px;
  top: 65px;
  border-radius: 100px;
  background-color: #A4BBD0;
  position: absolute;
}
.restaurant_booking a .icon img {
  margin: 10px auto 0 14px;
  width: 20px;
}
.restaurant_booking a:hover {
  background-color: #A4BBD0;
  transition: 1s;
}
.restaurant_booking a:hover .icon {
  background-color: #551F17;
}
.restaurant_booking .txt {
  width: 180px;
  left: 23px;
  top: 129px;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  color: #ffffff;
}
.restaurant_booking .txt .eng {
  text-align: center;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1px;
}
.restaurant_booking .txt .jp {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
@media screen and (max-width: 1200px) {
  .restaurant_booking {
    display: none;
  }
}

.spnav {
  display: none;
}
@media screen and (max-width: 1200px) {
  .spnav {
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 70px;
    align-items: center;
    color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.1;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 500;
    transition: 0.16s 0s;
  }
}
.spnav__hamb-button {
  display: none;
}
@media screen and (max-width: 1200px) {
  .spnav__hamb-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1B0D06;
  }
}
.spnav__center .reserve-button {
  display: none;
  /*width: 100%;
  height: 100%;
  padding: 20px;
  background: $orange_c;
  border-top-left-radius: 30px;
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
  .icon {
    max-width:38px;
  }
  .text {
    width:calc(100% - 40px);
    align-self: stretch;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: $white;
    font-size: 16px;
    font-weight: 500;
    span {
      display:block;
      font-size: 12px;
      font-family: $font-family-english;
      font-weight: 600;
      text-transform: capitalize;
      line-height: 12px;
      letter-spacing: 0.7px;
      word-wrap: break-word;
    }
  }*/
}

.c-button-hamb {
  width: 70px;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.32s 0s;
  padding: 0;
  background-color: transparent;
}
.c-button-hamb:hover, .c-button-hamb.is-active {
  background-color: #1B0D06;
}
.c-button-hamb__line {
  position: absolute;
  width: calc(100% - 40px);
  height: 1px;
  background-color: #ffffff;
  transform-origin: center center;
  transition: 0.32s 0s;
}
.c-button-hamb__line:nth-of-type(1) {
  top: calc(50% - 10px);
}
@media screen and (max-width: 992px) {
  .c-button-hamb__line:nth-of-type(1) {
    top: calc(50% - 8px);
  }
}
.c-button-hamb__line:nth-of-type(3) {
  bottom: calc(50% - 10px);
}
@media screen and (max-width: 992px) {
  .c-button-hamb__line:nth-of-type(3) {
    bottom: calc(50% - 8px);
  }
}
.c-button-hamb.is-active .c-button-hamb__line:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
}
.c-button-hamb.is-active .c-button-hamb__line:nth-of-type(2) {
  opacity: 0;
}
.c-button-hamb.is-active .c-button-hamb__line:nth-of-type(3) {
  bottom: 50%;
  transform: rotate(45deg);
}

.p-hamb {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #111111;
  z-index: 490;
  /*clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);*/
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  overflow-y: auto;
  transition: 0.32s 0s;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-hamb {
    align-items: flex-end;
  }
}
.p-hamb.is-active {
  /*clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);*/
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.p-hamb__inner {
  padding: 60px 30px 80px;
  border-radius: 40px 0 0 0;
  box-shadow: 0 0 40px 0 #1B0D06;
  flex-direction: column;
  width: 80%;
  max-width: 550px;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 0 auto;
  background-color: #ffffff;
}
.p-hamb__nav {
  list-style: none;
  margin: 0;
  font-size: 1.8rem;
  padding: 0;
}
.p-hamb__nav-item {
  padding: 10px;
  text-align: center;
}
.p-hamb__nav-item:last-child {
  margin-bottom: 30px;
}
.p-hamb__nav-url {
  color: #2A3719;
  text-decoration: none;
  font-size: 14px;
}
.p-hamb__nav-url span {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 2.2px;
  text-transform: capitalize;
  display: block;
}
.p-hamb__nav-url:hover {
  color: rgba(0, 0, 20, 0.7);
  text-decoration: none;
}
.p-hamb__subnav {
  padding: 60px 0 60px 60px;
}
@media screen and (max-width: 768px) {
  .p-hamb__subnav {
    padding: 20px 0 60px 0;
  }
}
.p-hamb__subnav-inner {
  list-style: none;
  font-size: 1.6rem;
  padding-left: 0;
  margin: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-hamb__subnav-inner {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}
.p-hamb__subnav-item {
  margin-bottom: 16px;
}
.p-hamb__subnav-item:last-child {
  margin-bottom: 0;
}
.p-hamb__subnav-url {
  color: #ffffff;
  display: block;
  text-decoration: none;
}
.p-hamb__subnav-url:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.p-hamb__aside {
  padding-left: 0;
  text-align: center;
}

.l-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #DAD5D1;
  z-index: 2;
}
.l-footer a {
  display: block;
}
.l-footer img {
  max-width: 100%;
}
.l-footer__reserve {
  width: 96%;
  max-width: calc(100% - 100px);
  padding: 5vw 7vw;
  background-color: #551F17;
  overflow: hidden;
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-end;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .l-footer__reserve {
    max-width: calc(100% - 20px);
    padding: 40px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-footer__reserve .reserve {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 54px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-footer__reserve .reserve {
    gap: 32px;
  }
}
.l-footer__reserve .reserve .bou {
  width: 260px;
  height: 1px;
  background: #ffffff;
}
.l-footer__reserve .reserve .text {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  text-decoration: none;
}
.l-footer__reserve .reserve .text span {
  display: block;
  font-size: 48px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .l-footer__reserve .reserve .text span {
    font-size: 38px;
  }
}
.l-footer__reserve .book-btn {
  width: 390px;
  padding: 24px 40px;
  background-color: #A4BBD0;
  justify-content: space-between;
  align-items: center;
  display: flex;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-footer__reserve .book-btn {
    width: 100%;
  }
}
.l-footer__reserve .book-btn .icon {
  width: 16px;
}
.l-footer__reserve .book-btn .text {
  width: calc(100% - 16px);
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
.l-footer__reserve:hover {
  background-color: #A4BBD0;
}
.l-footer__reserve:hover .book-btn {
  background-color: #551F17;
}
.l-footer__inner {
  width: 100%;
  background-color: #DAD5D1;
  display: grid;
  grid-template-columns: 1fr 62px;
  align-items: center;
  padding: 3.1vw;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    grid-template-columns: 1fr 42px;
    padding: 30px 20px 80px;
  }
}
.l-footer__inner .logo {
  display: grid;
  grid-template-columns: 180px 0.9fr;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-footer__inner .logo {
    grid-template-columns: 1fr;
    padding-right: 15px;
  }
}
.l-footer__inner .logo .img {
  max-width: 180px;
}
.l-footer__inner .logo .copy {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__inner .logo .copy {
    text-align: left;
  }
}
.l-footer__inner .gotop {
  width: 32px;
}
.l-footer__inner p {
  color: #2A3719;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
/*# sourceMappingURL=header.css.map */