/* =========================
   Base
========================= */
:root {
  --suzu-header-text: #2f2a28;
  --suzu-header-border: rgba(47, 42, 40, 0.16);
  --suzu-header-overlay: rgba(20, 18, 16, 0.36);
  --suzu-header-white: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  pointer-events: none;
}

.site-header__inner {
  pointer-events: auto;
  width: min(calc(100% - 40px), 1560px);
  margin: 14px auto 0;
  min-height: 78px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-header__left,
.site-header__right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header__left {
  flex: 1 1 auto;
}

.site-header__right {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 10px;
}

.site-logo {
  min-width: 0;
}

.site-logo a,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--suzu-header-text);
  min-width: 0;
}

.site-logo__image,
.custom-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(280px, 30vw);
  max-height: 72px;
  object-fit: contain;
}

.site-logo__text {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 600;
  white-space: nowrap;
}

/* =========================
   Language
========================= */
.header-language {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-language__image-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
}

.header-language__image-link img {
  display: block;
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header-language__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--suzu-header-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(6px);
  color: var(--suzu-header-text);
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}

.header-language__text a,
.header-language__text span {
  color: inherit;
  text-decoration: none;
}

.header-language__sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* =========================
   Menu Button
========================= */
.header-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  padding: 0;
  backdrop-filter: blur(6px);
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
}

.header-menu-button__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.header-menu-button__point {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 8px);
  width: clamp(26px, 2.2vw, 42px);
  transform: translateX(-50%) translateY(10px) scale(0.82);
  transform-origin: bottom center;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.header-menu-button__point svg {
  display: block;
  width: 100%;
  height: auto;
}

.header-menu-button.is-bounce {
  animation: hamburgerBounce 0.5s ease;
}

.header-menu-button.is-bounce .header-menu-button__point {
  animation: pointPop 0.55s ease forwards;
}

@keyframes hamburgerBounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(0.9);
  }
  55% {
    transform: scale(1.08);
  }
  75% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pointPop {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px) scale(0.8);
  }
  35% {
    opacity: 1;
    transform: translateX(-50%) translateY(-14px) scale(1.08);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px) scale(0.98);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-22px) scale(0.92);
  }
}

.header-menu-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.header-menu-button__icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header-menu-button__lines {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.header-menu-button__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--suzu-header-text);
}

.header-menu-button__lines span:nth-child(1) { top: 0; }
.header-menu-button__lines span:nth-child(2) { top: 7px; }
.header-menu-button__lines span:nth-child(3) { top: 14px; }

/* =========================
   Floating Booking Button
========================= */
.floating-booking-button {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 9996;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 150px;
    padding: 16px 10px;
    border-radius: 999px;
    background: #2f2a28;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.12em;
    font-size: 12px;

    position: fixed;
}

/* 白アウトライン */
.floating-booking-button::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1.5px solid #fff;
    border-radius: 999px;
    pointer-events: none;
}

/* =========================
   Overlay
========================= */
.header-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: var(--suzu-header-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.header-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* =========================
   Drawer
========================= */
.header-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: min(42vw, 720px);
  height: 100vh;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.header-drawer.is-open {
  transform: translateX(0);
}

/* ← オーバーレイは完全に消す */
.header-drawer::before {
  content: none;
}

.header-drawer__dog {
  position: absolute;
  right: -40px;
  bottom: 120px;
  z-index: 1;
  pointer-events: none;
  width: clamp(260px, 30vw, 440px);
  line-height: 0;
  opacity: 0.75;
  mix-blend-mode: multiply;
}

.header-drawer__dog svg {
  display: block;
  width: 100%;
  height: auto;
}

.header-drawer__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 34px 28px;
  box-sizing: border-box;
}

.header-drawer__head,
.header-drawer__body,
.header-drawer__footer {
  position: relative;
  z-index: 3;
}



.header-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.header-drawer__menu-title {
  position: relative;
  z-index: 5;
  flex: 0 1 auto;
  margin-top: 10px;
  max-width: clamp(120px, 18vw, 220px);
  opacity: 1;
  line-height: 0;
}

.header-drawer__menu-title svg {
  display: block;
  width: 100%;
  height: auto;
margin: 10px 15px;
}

.header-drawer__close {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  cursor: pointer;
  padding: 0;
}


.header-drawer__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 1.2px;
  background: rgba(47,42,40,0.85);
  border-radius: 999px;
  transform-origin: center;
}

.header-drawer__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(28deg);
}

.header-drawer__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-28deg);
}

.header-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
margin:50px 15px;
}

.header-drawer__nav {
  margin-bottom: 32px;
  margin-top: 0;
}

.header-drawer__footer {
  flex: 0 0 auto;
  margin: auto 15px;
  padding-top: 50px;
  border-top: 1px solid var(--suzu-header-border);
}

.header-menu-list,
.header-footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}


.header-menu-list li,
.header-footer-menu-list li {
  margin: 0;
  padding: 0;
}

.header-menu-list li {
  position: relative;
  padding-left: clamp(34px, 3vw, 52px);
}

.header-menu-list li + li {
  margin-top: clamp(14px, 1.2vw, 26px);
}

.header-menu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: clamp(16px, 1.4vw, 24px);
  height: clamp(16px, 1.4vw, 24px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.95;
  transform-origin: center;
  animation: pawFloat 2.8s ease-in-out infinite;
}
.header-menu-list li:nth-child(odd)::before {
  background-image: url('/wp-content/themes/suzu/assets/svg/icon01-1.svg');
  animation-delay: 0s;
}

.header-menu-list li:nth-child(even)::before {
  background-image: url('/wp-content/themes/suzu/assets/svg/icon02-2.svg');
  animation-delay: 0.8s;
}
@keyframes pawFloat {
  0% {
    transform: translateY(0) rotate(-6deg) scale(1);
  }
  20% {
    transform: translateY(-4px) rotate(3deg) scale(1.04);
  }
  40% {
    transform: translateY(0) rotate(-2deg) scale(0.98);
  }
  60% {
    transform: translateY(-2px) rotate(4deg) scale(1.02);
  }
  100% {
    transform: translateY(0) rotate(-6deg) scale(1);
  }
}
.header-menu-list a {
  display: inline-block;
  color: var(--suzu-header-text);
  text-decoration: none;
  font-size: clamp(18px, 1.6vw, 28px);

  line-height: 1.5;
  letter-spacing: 0.12em; 
transition: opacity 0.3s ease, transform 0.3s ease;
}
.header-menu-list a:hover {
  opacity: 0.6;
  transform: translateX(4px);
}


.header-drawer__contact-button-wrap {
  margin-bottom: 18px;
}

.header-drawer__contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #2f2a28;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.header-drawer__phone {
  margin-bottom: 16px;
}


.header-drawer__phone a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-drawer__phone-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-drawer__phone-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-drawer__phone-number {
  line-height: 1;
 font-size: 15px;
  letter-spacing: 0.08em;
}

.header-drawer__phone-text-mobile {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.header-drawer__sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.header-drawer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--suzu-header-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--suzu-header-text);
  text-decoration: none;
  font-size: 12px;
}

.header-drawer__sns img {
  display: block;
  max-width: 22px;
  max-height: 22px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header-drawer__footer-text {
  margin-bottom: 16px;
  color: var(--suzu-header-text);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.header-footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.header-footer-menu-list a {
  color: var(--suzu-header-text);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}


.header-drawer__dog svg #d {
  transform-box: fill-box;
  transform-origin: 70% 85%;
  animation: dogEarTwitch 3.6s ease-in-out infinite;
}

@keyframes dogEarTwitch {
  0%,
  82%,
  100% {
    transform: rotate(0deg);
  }
  85% {
    transform: rotate(-7deg);
  }
  88% {
    transform: rotate(4deg);
  }
  91% {
    transform: rotate(-5deg);
  }
  94% {
    transform: rotate(2deg);
  }
}

/* =========================
   State
========================= */
body.is-drawer-open {
  overflow: hidden;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px) {
  .site-header__inner {
    width: calc(100% - 20px);
    max-width: none;
    min-height: 74px;
    padding: 12px 16px;
  }

  .site-logo__image,
  .custom-logo {
    max-width: min(220px, 42vw);
    max-height: 64px;
  }

  .header-drawer {
    width: min(40vw, 300px);
  }
}
@media (min-width: 768px) {
  .header-drawer__dog {
    right: -40px;
    bottom: 140px;
    width: clamp(260px, 30vw, 440px);
  }

  .header-drawer__menu-title {
    margin-top: 65px;
    max-width: clamp(150px, 20vw, 280px);
  }
.floating-booking-button {
    min-height: 200px;
margin-right: 1.2%;}
}

/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
  .site-header {
    left: 0;
    width: 100%;
  }

  .site-header__inner {
    width: calc(100% - 16px);
    max-width: none;
    margin: 10px auto 0;
    min-height: 64px;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 16px;
    overflow: hidden;
  }

  .site-header__left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header__right {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 48%;
    gap: 6px;
  }

  .site-logo {
    width: 100%;
    min-width: 0;
  }

  .site-logo a,
  .custom-logo-link {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
  }

  .site-logo__image,
  .custom-logo {
    display: block;
    width: auto;
    max-width: min(160px, 42vw);
    max-height: 48px;
    height: auto;
    object-fit: contain;
  }

  .site-logo__text {
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .header-language {
    flex: 0 1 auto;
    min-width: 0;
  }

  .header-language__text {
    min-height: 36px;
    max-width: 72px;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
  }

  .header-language__image-link {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .header-language__image-link img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .header-menu-button {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    flex: 0 0 40px;
  }

  .header-menu-button__icon {
    width: 45px;
    height: 45px;
  }

  .header-menu-button__icon img {
    max-width: 100%;
    max-height: 100%;
  }

  .floating-booking-button {
    right: 10px;
    bottom: 14px;
    min-width: 46px;
    min-height: 120px;
    padding: 12px 8px;
    font-size: 10px;
margin-right: 10px
  }

  .header-drawer {
    width: min(88vw, 420px);
    max-width: 50vw;
  }

  .header-drawer__inner {
    padding: 18px 16px 20px;
  }

  .header-drawer__head {
    margin-bottom: 16px;
  }

  .header-drawer__close {
    width: 42px;
    height: 42px;
  }
  .header-drawer__phone a {
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }
.header-drawer {
    width: min(55vw, 420px);
    max-width: none;
  }

  .header-drawer__inner {
    padding: 18px 16px 20px;
  }

  .header-drawer__head {
    margin-bottom: 16px;
    gap: 10px;
  }

  .header-drawer__menu-title {
    max-width: clamp(92px, 30vw, 132px);
    opacity: 1;
margin: 60px 10px 0;
  }

  .header-drawer__close {
    width: 15px;
    height: 15px;
margin:35px;
  }

  .header-drawer__dog {
    right: -16px;
    bottom: 3%;
    width: clamp(150px, 52vw, 240px);
  }

  .header-drawer__nav {
    margin-top: 0;
  }
}

.header-drawer__dog .e {
    fill: #fff;
}