:root {
  --h2: 32px;
  --small: 14px;
  --regular: 16px;
}

* {
  color: #000;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.5px;
}

img {
  width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

section {
  scroll-margin-top: 81px;
}
@media (max-width: 767px) {
  section {
    scroll-margin-top: 60px;
  }
}

.pc__enable {
  display: block;
}
@media (max-width: 1226px) {
  .pc__enable {
    display: none;
  }
}

.sp__enable {
  display: none;
}
@media (max-width: 1226px) {
  .sp__enable {
    display: block;
  }
}

.header {
  width: 100%;
  position: fixed;
  z-index: 9999;
  background: transparent;
  transition: background 0.4s ease;
}
.header__bg {
  background: rgba(255, 255, 255, 0.5);
}
.header__bg .header__logo-white {
  opacity: 0;
}
.header__bg .header__logo-black {
  opacity: 1;
}
.header__bg .header__nav-el a {
  color: #000;
}
.header__bg .header__nav-el a font{
  color: #000;
}
.header__bg .header__modal-deco {
  background: #000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  padding-left: 32px;
}
.header__logo {
  display: inline-block;
  padding: 23px 0;
  position: relative;
}
.header__logo a {
  transition: opacity 0.4s ease;
}
.header__logo a:hover {
  opacity: 0.4;
}
.header__logo picture {
  display: grid;
  max-width: 149px;
  line-height: 0;
}
.header__logo picture img {
  grid-area: 1/1;
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: opacity, transform;
}
.header__logo-white, .header__logo-black {
  display: block;
  transition: opacity 0.4s ease;
}
.header__logo-black {
  position: absolute;
  opacity: 0;
}
.header__menu {
  display: flex;
  align-items: center;
}
.header__nav {
  margin-right: 32px;
}
.header__nav-list {
  display: flex;
  gap: 34px;
}
.header__nav-el a {
  color: #fff;
  font-size: var(--regular);
  font-weight: 500;
  transition: color 0.4s ease, opacity 0.4s ease;
}

.header__nav-el a font{
  color: #fff;
}
.header__nav-el a:hover {
  opacity: 0.4;
}
.header__actions {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.header__actions-reservation,.header__actions-reservation-lan {
  height: inherit;
}
.header__actions-reservation a {
  color: #fff;
  font-size: var(--regular);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 81px;
  background: #77654B;
  transition: background 0.3s ease;
  /* padding-top: 16px; */
  
}
.header__actions__shop__btn__inner{
  color: #fff;
}

.header__actions-reservation a font{
  color: #fff;
}
.header__actions-reservation-lan .lan__btn {
  color: #404040;
  font-size: var(--regular);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: inherit;
  background: #ffffffab;
  transition: background 0.3s ease;
}
.lan__btn::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/menu/buttonIcon.png) no-repeat center / cover;
    transition: transform 0.4s ease;
    
}
/* .is-active.lan__btn::after {
   transform: rotate(180deg);
    
} */

.header__actions-reservation a:hover {
  background: rgba(119, 101, 75, 0.8);
}
.header__modal-contents {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 9998;
  transition: opacity 0.4s, visibility 0.4s ease, translate 0.4s ease;
}
.header__modal-logo {
  margin-bottom: 39px;
}
.header__modal-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.header__modal-el a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.header__modal-el a font{
  color: #fff;
}
.header__modal-el:not(:last-child) {
  margin-bottom: 29px;
}
.header__sns-list {
  display: flex;
  gap: 15px;
}

#google_language_translator {
    display: flex;
    position: fixed;
    top: 0;
    opacity: 0;
    height: 81px;
    left: auto;
    right: 0;
    z-index: 10000;
}
body #google_language_translator select.goog-te-combo {
  width: 120px;
  height: 80px !important;
  margin: 0;
  padding: 6px 0 !important;
 
}

/* #google_language_translator:hover select.goog-te-combo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    
    background-color: red;
} */

.gtranslate_wrapper{
  left: auto;
  right: 0;
  height: 81px;
  position: fixed;
  z-index: 100000;
  top: 0;
  opacity: 0;
width: 120px;
}
.gt_selector{
  height: 100%;
  width: 100%;
}
 
@media (max-width: 767px) {
  .header__inner {
    padding-left: 20px;
  }
  .header__logo {
    padding: 15px 0 10px;
  }
  .header__menu {
    display: none;
  }
  .header__modal {
    width: 60px;
    height: 60px;
    display: grid;
    place-content: center;
  }
  .header__modal-wrap {
    width: 22px;
    height: 14px;
    position: relative;
  }
  .header__modal-deco {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: opacity 0.4s ease, rotate 0.4s ease;
  }
  .header__modal-deco:nth-child(1) {
    top: 0;
  }
  .header__modal-deco:nth-child(2) {
    top: 50%;
    translate: 0 -50%;
  }
  .header__modal-deco:nth-child(3) {
    bottom: 0;
  }
  .header__modal-contents.is-active {
    opacity: 1;
    visibility: visible;
    translate: -100% 0;
  }
  .header__modal.is-active .header__modal-deco:nth-child(1) {
    rotate: 45deg;
  }
  .header__modal.is-active .header__modal-deco:nth-child(2) {
    opacity: 0;
  }
  .header__modal.is-active .header__modal-deco:nth-child(3) {
    rotate: -45deg;
    top: 0;
  }
  .header:has(.header__modal.is-active) {
    background: transparent;
  }
  .header:has(.header__modal.is-active) .header__logo {
    display: none;
  }
  .header:has(.header__modal.is-active) .header__inner {
    justify-content: end;
  }
  .header:has(.header__modal.is-active) .header__modal-deco {
    background: #fff;
  }

  #google_language_translator {
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0;
    opacity: 0;
    height:64px;
    left: 0;
    right: auto;
    z-index: 10000;
    width: 25%;
}
body #google_language_translator select.goog-te-combo {
  width: 100%;
  height: 64px !important;
  margin: 0;
  padding: 6px 0 !important;
 
}
.skiptranslate.goog-te-gadget {
    display: inline !important;
    width: 100%;
}

.gtranslate_wrapper{
  left: 0;
  right: auto;
  height:64px;
  position: fixed;
  z-index: 100000;
  top: auto;
  bottom: 0;
  opacity: 0;
width: 25%;
}
}/*# sourceMappingURL=header.css.map */


/* Vector */



