#yht-site-footer {
  --yht-footer-bg: #F5F7F4;
  --yht-footer-text: #2F3E2E;
  --yht-footer-divider: #D8DED6;
  --yht-footer-button: #678F5E;
  --yht-footer-button-hover: #5E8156;
  --yht-footer-button-text: #FFFFFF;
  --yht-footer-nav-bg: #1B3808;
  --yht-footer-nav-text: #FFFFFF;
  --yht-footer-copy-bg: #DDE7DA;
  --yht-footer-copy-text: #2F3E2E;
  --yht-footer-icon: #000000;
  --yht-footer-logo-width: 210px;
  --yht-footer-mobile-columns: 2;
  --yht-footer-mobile-safe: 88px;
  width: 100%;
  margin: 0;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 0.95rem;
  color: var(--yht-footer-text);
  box-sizing: border-box;
}

#yht-site-footer *,
#yht-site-footer *::before,
#yht-site-footer *::after {
  box-sizing: border-box;
}

#yht-site-footer .yht-site-footer__top {
  background: var(--yht-footer-bg);
  padding: clamp(20px, 3.5vw, 40px) min(4vw, 32px);
}

#yht-site-footer .yht-site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-height: 220px;
  border-top: 1px solid var(--yht-footer-divider);
  border-bottom: 1px solid var(--yht-footer-divider);
}

#yht-site-footer .yht-site-footer__col {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: clamp(16px, 2.5vw, 28px);
}

#yht-site-footer .yht-site-footer__col + .yht-site-footer__col {
  border-left: 1px solid var(--yht-footer-divider);
}

#yht-site-footer .yht-site-footer__box {
  width: min(480px, 92%);
  text-align: left;
}

#yht-site-footer .yht-site-footer__logo {
  display: block;
  width: auto;
  max-width: min(100%, var(--yht-footer-logo-width));
  height: auto;
  margin: 0 0 10px;
}

#yht-site-footer .yht-site-footer__address,
#yht-site-footer .yht-site-footer__about {
  line-height: 1.9;
}

#yht-site-footer .yht-site-footer__address {
  margin: 8px 0 6px;
}

#yht-site-footer .yht-site-footer__tel a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed var(--yht-footer-divider);
}

#yht-site-footer .yht-site-footer__sns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

#yht-site-footer .yht-site-footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--yht-footer-icon);
  text-decoration: none;
}

#yht-site-footer .yht-site-footer__sns svg {
  display: block;
  width: 22px;
  height: 22px;
}

#yht-site-footer .yht-site-footer__sns .yht-site-footer__tabelog-link {
  width: auto;
}

#yht-site-footer .yht-site-footer__tabelog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

#yht-site-footer .yht-site-footer__reserve-wrap {
  display: flex;
  justify-content: center;
}

#yht-site-footer .yht-site-footer__reserve {
  display: inline-block;
  width: min(340px, 100%);
  padding: 16px 20px;
  border-radius: 0;
  background: var(--yht-footer-button);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  color: var(--yht-footer-button-text);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

#yht-site-footer .yht-site-footer__reserve:hover {
  background: var(--yht-footer-button-hover);
}

#yht-site-footer .yht-site-footer__reserve:active {
  transform: translateY(1px);
}

#yht-site-footer .yht-site-footer__nav {
  padding: 10px min(4vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--yht-footer-nav-bg);
}

#yht-site-footer .yht-site-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

#yht-site-footer .yht-site-footer__nav li {
  position: relative;
  min-width: 0;
  padding: 8px 4px;
  text-align: center;
}

#yht-site-footer .yht-site-footer__nav li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
}

#yht-site-footer .yht-site-footer__nav a {
  display: inline-block;
  max-width: 100%;
  color: var(--yht-footer-nav-text);
  font-size: clamp(11px, 1.3vw, 13px);
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}

#yht-site-footer .yht-site-footer__nav a:hover {
  text-decoration: underline;
}

#yht-site-footer .yht-site-footer__copy {
  padding: 10px 8px;
  background: var(--yht-footer-copy-bg);
  color: var(--yht-footer-copy-text);
  font-size: clamp(10px, 1.2vw, 12px);
  line-height: 1.5;
  text-align: center;
}

#yht-site-footer a:focus-visible {
  outline: 3px solid #C4E0D6;
  outline-offset: 3px;
}

body.yht-footer-hide-theme-footer footer#footer,
body.yht-footer-hide-theme-footer #footer.footer {
  display: none !important;
}

@media (max-width: 900px) {
  #yht-site-footer .yht-site-footer__grid {
    grid-template-columns: 1fr;
  }

  #yht-site-footer .yht-site-footer__col + .yht-site-footer__col {
    border-top: 1px solid var(--yht-footer-divider);
    border-left: 0;
  }

  #yht-site-footer .yht-site-footer__col {
    min-height: 0;
    padding: clamp(26px, 7vw, 48px) clamp(24px, 8vw, 60px);
  }

  #yht-site-footer .yht-site-footer__box {
    width: 100%;
  }

  #yht-site-footer .yht-site-footer__reservation .yht-site-footer__box {
    max-width: 680px;
  }

  #yht-site-footer .yht-site-footer__reserve {
    width: min(680px, 100%);
  }
}

@media (max-width: 640px) {
  #yht-site-footer .yht-site-footer__top {
    padding: 18px 14px 26px;
  }

  #yht-site-footer .yht-site-footer__col {
    padding: 28px 24px;
  }

  #yht-site-footer .yht-site-footer__nav {
    padding: 12px 14px 12px calc(14px + var(--yht-footer-mobile-safe));
  }

  #yht-site-footer .yht-site-footer__nav ul {
    grid-template-columns: repeat(var(--yht-footer-mobile-columns), minmax(0, 1fr));
    row-gap: 2px;
  }

  #yht-site-footer .yht-site-footer__nav li + li::before {
    display: none;
  }

  #yht-site-footer .yht-site-footer__nav li {
    padding: 8px 5px;
  }

  #yht-site-footer .yht-site-footer__nav a {
    font-size: 12px;
  }

  #yht-site-footer .yht-site-footer__copy {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #yht-site-footer .yht-site-footer__reserve {
    transition: none;
  }
}
