/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: relative;
  z-index: 1000;
}


/* =========================================================
   PC HEADER
========================================================= */

.desktop-header {
  position: fixed;

  top: 0;
  left: 0;

  z-index: 1002;

  display: flex;
  align-items: stretch;

  height: 132px;
}


/* =========================================================
   PC LOGO
========================================================= */

.desktop-header__logo-link {
  width: 198px;
  height: 132px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px 28px;

  background: #f2ecd9;

  transition:
    background 0.3s ease,
    opacity 0.3s ease;
}

.desktop-header__logo-link:hover {
  background: #ebe3cb;
}


.desktop-header__logo {
  display: block;

  width: 100%;
  max-width: 145px;
  height: auto;
}


/* =========================================================
   PC お品書き NAV
========================================================= */

.desktop-header__nav {
  position: relative;

  height: 132px;

  padding:
    13px
    30px
    13px
    26px;

  background: rgba(60, 57, 43, 0.30);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}


/* 少し和紙・お品書き感を出す */

.desktop-header__nav::after {
  content: "";

  position: absolute;

  left: 14px;
  right: 14px;
  bottom: -5px;

  height: 1px;

  background: rgba(60, 57, 43, 0.2);
}


.desktop-header__list {
  position: relative;
  z-index: 1;

  list-style: none;

  margin: 0;
  padding: 0;

  height: 100%;

  display: flex;
  flex-direction: row;
  align-items: flex-start;

  gap: 24px;
}


.desktop-header__list li {
  height: 100%;
}


.desktop-header__list a {
  position: relative;

  display: block;

  writing-mode: vertical-rl;
  text-orientation: upright;

  height: 100%;

  padding-top: 2px;

  color: #29271f;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 18px;
  font-weight: 600;

  line-height: 1.6;

  letter-spacing: 0.12em;

  transition:
    color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}


.desktop-header__list a:hover {
  color: #8c7b3b;
  transform: translateY(4px);
}


/* 小さな丸をアクセントとして出す */

.desktop-header__list a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 1px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: currentColor;

  opacity: 0;

  transform:
    translateX(-50%)
    scale(0);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}


.desktop-header__list a:hover::after {
  opacity: 0.7;

  transform:
    translateX(-50%)
    scale(1);
}


/* =========================================================
   SP SCROLL BRAND
========================================================= */

.site-header__brand {
  display: none;
}


/* =========================================================
   MENU BUTTON
========================================================= */

/* PCでは非表示 */

.site-menu-button {
  display: none;
}


/* =========================================================
   BOOKING BUTTON
========================================================= */

.site-booking-button {
  position: fixed;

  right: 0;
  top: 50%;

  z-index: 1001;

  width: 112px;
  height: 268px;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 22px;

  background: var(--color-gold);
  color: var(--color-white);

  border-radius: 999px 0 0 999px;

  transition:
    width 0.35s ease,
    background 0.35s ease;
}


.site-booking-button:hover {
  width: 128px;
}


.site-booking-button__ja {
  writing-mode: vertical-rl;

  font-size: 21px;
  font-weight: 600;

  letter-spacing: 0.18em;
}


.site-booking-button__arrow {
  font-family: var(--font-en);

  font-size: 20px;
  font-weight: 600;
}


/* =========================================================
   GLOBAL MENU
========================================================= */

/*
 PCでは使用しない
 SPのときのみ全画面表示
*/

.global-menu {
  display: none;
}



/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1100px) {

  .desktop-header {
    height: 115px;
  }


  .desktop-header__logo-link {
    width: 165px;
    height: 115px;

    padding: 18px 23px;
  }


  .desktop-header__logo {
    max-width: 125px;
  }


  .desktop-header__nav {
    height: 115px;

    padding:
      12px
      22px;
  }


  .desktop-header__list {
    gap: 17px;
  }


  .desktop-header__list a {
    font-size: 16px;
  }

}


/* =========================================================
   SP
========================================================= */

@media (max-width: 767px) {
  .desktop-header {
    display: none;
  }


  /* =======================================================
     HEADER LOGO
  ======================================================= */

  .site-header__brand {
    position: fixed;

    top: 20px;
    left: 20px;

    z-index: 1002;

    display: block;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0.4s ease;
  }

  .site-header__brand.is-visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .site-header__brand-link {
    display: block;
  }

  .site-header__logo {
    display: block;

    width: 88px;
    height: auto;
  }


  /* =======================================================
     MENU BUTTON
  ======================================================= */

  .site-menu-button {
    position: fixed;

    top: 22px;
    right: 0;

    z-index: 1005;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 78px;
    height: 54px;

    padding: 0;

    border: 0;

    background: rgba(60, 57, 43, 0.9);
    color: #fff;

    cursor: pointer;

    transition:
      background 0.3s ease,
      color 0.3s ease;
  }

  .site-menu-button__text {
    font-family: var(--font-en);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.12em;
  }

  .site-menu-button__icon {
    display: none;
  }

  .site-menu-button.is-open {
    background: transparent;
  }

  .site-menu-button.is-open .site-menu-button__text::before {
    content: "CLOSE";

    font-size: 11px;
  }

  .site-menu-button.is-open .site-menu-button__text {
    font-size: 0;
  }


  /* =======================================================
     BOOKING
  ======================================================= */

  .site-booking-button {
    width: 70px;
    height: 208px;

    border-radius: 999px 0 0 999px;
  }

  .site-booking-button:hover {
    width: 70px;
  }

  .site-booking-button__ja {
    font-size: 15px;
    font-weight: 600;

    letter-spacing: 0.15em;
  }

  .site-booking-button__arrow {
    font-size: 16px;
  }

  body.is-menu-open .site-booking-button {
    opacity: 0;
    visibility: hidden;

    pointer-events: none;
  }

  body.is-menu-open .site-header__brand {
    opacity: 0;
    visibility: hidden;
  }


  .global-menu {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: block;

    width: 100%;
    height: 100dvh;

    /*
     少し透ける古民家系の茶色
    */
    background:
      rgba(72, 57, 39, 0.88);

    color: #fff;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
  }


  .global-menu.is-open {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
  }


  /* =======================================================
     SCROLL WRAPPER
  ======================================================= */
.global-menu__scroll {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100dvh;

  overflow-x: hidden !important;
  overflow-y: auto !important;

  -webkit-overflow-scrolling: touch;

  overscroll-behavior-y: contain;

  touch-action: pan-y;

  box-sizing: border-box;
}

  .global-menu__scroll::-webkit-scrollbar {
    display: none;
  }


  /* =======================================================
     INNER
  ======================================================= */

.global-menu__inner {
  position: relative;

  width: 100%;

  height: auto !important;
  min-height: 0 !important;

  display: block;

  overflow: visible !important;

  padding:
    90px
    28px
    100px;

  box-sizing: border-box;
}

  /* =======================================================
     CLOSE
  ======================================================= */

  .global-menu__close {
    position: fixed;

    top: 18px;
    right: 18px;

    z-index: 2100;

    width: 52px;
    height: 52px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.45);

    border-radius: 50%;

    background: rgba(55, 42, 28, 0.75);

    cursor: pointer;
  }


  .global-menu__close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 21px;
    height: 1px;

    background: #fff;
  }


  .global-menu__close span:first-child {
    transform:
      translate(-50%, -50%)
      rotate(45deg);
  }


  .global-menu__close span:last-child {
    transform:
      translate(-50%, -50%)
      rotate(-45deg);
  }


  /* MENUボタンは開いたら消す */

  body.is-menu-open .site-menu-button {
    opacity: 0;
    visibility: hidden;

    pointer-events: none;
  }


  /* =======================================================
     LOGO
  ======================================================= */

  .global-menu__logo-wrap {
    width: 100%;

    margin:
      0
      auto
      34px;

    text-align: center;
  }


  .global-menu__logo {
    display: block;

    width: 145px;
    height: 145px;

    object-fit: contain;

    margin: 0 auto;
  }


  /* =======================================================
     NAV
  ======================================================= */

  .global-menu__nav {
    width: min(100%, 320px);

    margin: 0 auto;
  }


  .global-menu__list {
    list-style: none;

    margin: 0;
    padding: 0;

    display: block;
  }


  .global-menu__list li {
    width: 100%;

    margin-bottom: 8px;
  }


  .global-menu__list a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 62px;

    padding: 10px;

    color: #fff;

    text-align: center;

    font-family:
      "Noto Serif JP",
      "Yu Mincho",
      "YuMincho",
      "Hiragino Mincho ProN",
      serif;

    font-size: 18px;
    font-weight: 500;

    letter-spacing: 0.15em;
  }


  /* =======================================================
     CONTACT
  ======================================================= */

  .global-menu__contact {
    margin-top: 18px;
  }


  .global-menu__contact a {
    min-height: 58px;

    border: 1px solid rgba(255,255,255,0.8);

    background:
      rgba(255,255,255,0.035);
  }


  /* =======================================================
     COPYRIGHT
  ======================================================= */

  .global-menu__copyright {
    margin:
      48px
      0
      0;

    padding-bottom: 40px;

    color:
      rgba(255,255,255,0.58);

    font-family: var(--font-en);

    font-size: 9px;

    letter-spacing: 0.16em;

    text-align: center;
  }



}
.site-booking-button.is-footer {
  background: #fff;
  color: #c5a94b;
  border: 2px solid #fff;
}

.site-booking-button.is-footer:hover {
  background: #f7f2e5;
  color: #b3973d;
}





@media (max-width: 767px) {

    .site-header__brand {
        display: none;
    }


    .site-header__brand.is-visible {
        opacity: 1;
        visibility: visible;
        transform: none;
    }


    .site-header__brand-link {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 110px;
        height: 72px;

        padding: 10px 14px;
    }


    .site-header__logo {
        display: block;

        width: 100%;
        max-width: 88px;

        height: auto;
    }
  .global-menu {
    position: fixed;
    inset: 0;

    z-index: 2000;

    display: block;

    width: 100%;
    height: 100dvh;

    /* 茶色の半透明レイヤー ＋ 背景画像 */
    background:
      linear-gradient(
        rgba(72, 57, 39, 0.35),
        rgba(72, 57, 39, 0.35)
      ),
      url("https://wagato-kawaguchiko.com/wp-content/uploads/2026/09/oe0-1.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
      opacity .35s ease,
      visibility .35s ease;
  }
}

/* =========================================================
   PC NAV TEXTURE
========================================================= */

.desktop-header__nav {
    position: relative;

    height: 132px;

    padding:
        13px
        30px
        13px
        26px;

    background: rgba(60, 57, 43, 0.30);

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    overflow: hidden;
}


/* 柄画像 */
.desktop-header__nav::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        url("https://wagato-kawaguchiko.com/wp-content/uploads/2026/09/oe0-1.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* 画像だけ薄くする */
    opacity: 0.9;

    pointer-events: none;

    z-index: 0;
}


/* メニュー文字を柄より上へ */
.desktop-header__list {
    position: relative;
    z-index: 1;
}
/* =========================================================
   FIXED COUPON
========================================================= */

.site-coupon {
    --coupon-width: 290px;
    --coupon-tab-width: 58px;

    position: fixed;

    left: 0;
    top: 55%;

    z-index: 1003;

    width: var(--coupon-width);

    transform:
        translateX(calc(-1 * var(--coupon-width)))
        translateY(-50%);

    transition:
        transform .55s cubic-bezier(.22, 1, .36, 1);
}


/* OPEN */

.site-coupon.is-open {
    transform:
        translateX(0)
        translateY(-50%);
}


/* =========================================================
   PANEL
========================================================= */

.site-coupon__panel {
    position: relative;

    width: var(--coupon-width);

    padding: 12px;

    box-sizing: border-box;

    background: #294f56;

    box-shadow:
        8px 10px 30px
        rgba(0, 0, 0, .15);
}


.site-coupon__inner {
    position: relative;

    min-height: 205px;

    padding:
        25px
        24px
        20px;

    box-sizing: border-box;

    border: 3px solid #fff;

    color: #fff;

    text-align: center;
}


/* Official ONLY */

.site-coupon__only {
    margin:
        0
        0
        10px;

    font-family: var(--font-en);

    font-size: 22px;
    font-weight: 300;

    font-style: italic;

    letter-spacing: .04em;

    opacity: .85;
}


/* PRICE */

.site-coupon__price {
    display: flex;

    align-items: baseline;
    justify-content: center;

    gap: 5px;
}


.site-coupon__yen {
    font-family: var(--font-en);

    font-size: 42px;
    font-weight: 700;

    line-height: 1;
}


.site-coupon__price strong {
    font-family: var(--font-en);

    font-size: 50px;
    font-weight: 800;

    line-height: 1;
}


.site-coupon__off {
    margin:
        -2px
        0
        12px;

    padding-right: 5px;

    text-align: right;

    font-family: var(--font-en);

    font-size: 16px;
    font-weight: 700;
}


/* =========================================================
   CODE
========================================================= */

.site-coupon__code {
    width: 100%;

    padding:
        9px
        12px;

    border: 0;

    background: #f3f0e8;

    color: #294f56;

    cursor: pointer;

    font-family: var(--font-en);

    font-size: 13px;

    transition:
        background .25s ease,
        transform .25s ease;
}


.site-coupon__code:hover {
    background: #fff;

    transform: translateY(-2px);
}


.site-coupon__code-label {
    font-weight: 700;
}


.site-coupon__code strong {
    font-weight: 800;

    letter-spacing: .04em;
}


.site-coupon__copy-note {
    margin:
        8px
        0
        0;

    font-size: 10px;

    letter-spacing: .05em;

    opacity: .75;
}


/* copied */

.site-coupon__code.is-copied {
    background: var(--color-gold);

    color: #fff;
}


/* =========================================================
   TAB
========================================================= */

.site-coupon__tab {
    position: absolute;

    top: 50%;
    right: calc(-1 * var(--coupon-tab-width));

    transform: translateY(-50%);

    width: var(--coupon-tab-width);
    height: 155px;

    padding: 0;

    border: 0;

    background: #294f56;

    color: #fff;

    cursor: pointer;

    border-radius:
        0
        22px
        22px
        0;

    box-shadow:
        7px 7px 20px
        rgba(0, 0, 0, .12);

    transition:
        background .25s ease;
}


.site-coupon__tab:hover {
    background: #203f45;
}


.site-coupon__tab span {
    writing-mode: vertical-rl;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: .18em;
}


/* =========================================================
   CLOSE
========================================================= */

.site-coupon__close {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 2;

    width: 30px;
    height: 30px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.site-coupon__close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 17px;
    height: 2px;

    background: #fff;
}


.site-coupon__close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


.site-coupon__close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}
@media (max-width: 767px) {

    .site-coupon {
        --coupon-width: min(270px, calc(100vw - 72px));
        --coupon-tab-width: 48px;

        top: 62%;
    }


    .site-coupon__panel {
        padding: 9px;
    }


    .site-coupon__inner {
        min-height: 180px;

        padding:
            22px
            18px
            17px;

        border-width: 2px;
    }


    .site-coupon__only {
        font-size: 17px;
    }


    .site-coupon__yen {
        font-size: 33px;
    }


    .site-coupon__price strong {
        font-size: 41px;
    }


    .site-coupon__off {
        font-size: 13px;
    }


    .site-coupon__tab {
        height: 125px;

        border-radius:
            0
            17px
            17px
            0;
    }


    .site-coupon__tab span {
        font-size: 13px;

        letter-spacing: .15em;
    }

    body.is-menu-open .site-coupon {
        opacity: 0;
        visibility: hidden;

        pointer-events: none;
    }
    .site-coupon {
        --coupon-width: min(270px, calc(100vw - 72px));
        --coupon-tab-width: 48px;

        top: 150px;

        transform:
            translateX(calc(-1 * var(--coupon-width)));
    }


    .site-coupon.is-open {
        transform:
            translateX(0);
    }
    .site-coupon__tab {
        transition:
            background .4s ease,
            opacity .4s ease;
    }
    .site-coupon.is-soft .site-coupon__tab {
        background: rgba(41, 79, 86, .62);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    .front-hero__logo {
        width: 250px!important;
        max-width: 250px!important;
margin:0 auto!important;
    }
}

/* =========================================================
   PC HEADER - SCALE UP
========================================================= */

@media (min-width: 1101px) {

    .desktop-header {
        height: 154px;
    }


    .desktop-header__logo-link {
        width: 230px;
        height: 154px;

        padding: 22px 30px;

        box-sizing: border-box;
    }


    .desktop-header__logo {
        max-width: 170px;
    }


    .desktop-header__nav {
        height: 154px;

        padding:
            16px
            34px
            16px
            30px;
    }


    .desktop-header__list {
        gap: 27px;
    }


    .desktop-header__list a {
        font-size: 19px;

        line-height: 1.6;

        letter-spacing: .12em;
    }

}

@media (min-width: 2000px) {

    .desktop-header {
        height: 175px;
    }


    .desktop-header__logo-link {
        width: 260px;
        height: 175px;
    }


    .desktop-header__logo {
        max-width: 195px;
    }


    .desktop-header__nav {
        height: 175px;

        padding:
            18px
            40px;
    }


    .desktop-header__list {
        gap: 31px;
    }


    .desktop-header__list a {
        font-size: 21px;
    }

}