/* ---------------------------------------------
  Footer (reservation + bottom)
--------------------------------------------- */

.site-footer {
  width: 100%;
}

.footer-reservation {
  padding: 0;
  background: rgba(255, 255, 255, 1);
}

.footer-reservation__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 22, 18, 0.98) 0%,
    rgba(5, 5, 5, 0.98) 100%
  );
  padding: 46px 22px 44px;
  text-align: center;
}

.footer-reservation__label {
  margin: 0;
  color: rgba(184, 160, 126, 0.95);
  font-family: var(--font-family-cormorant);
  font-size: 14px;
}

.footer-reservation__title {
  margin: 18px 0 0;
  color: var(--color-pure-white);
  font-family: var(--font-family-cormorant);
  font-size: var(--font-size-clamp-6);
  font-weight: var(--font-weight-medium);
}

.footer-reservation__note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-align: center;
}

.footer-reservation__note-item {
  text-align: left;
  display: inline-block;
}

.footer-reservation__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.footer-reservation__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
}

.footer-reservation__btn--primary {
  background: rgba(184, 160, 126, 0.95);
  color: var(--color-brown-dark);
  border: 1px solid rgba(184, 160, 126, 0.95);
}

.footer-reservation__btn--outline {
  background: transparent;
  color: rgba(184, 160, 126, 0.95);
  border: 1px solid rgba(184, 160, 126, 0.6);
}

.footer-reservation__btn--outline:hover {
  background: rgba(184, 160, 126, 0.12);
  color: var(--color-beige);
}

.footer-bottom {
  background: linear-gradient(
    180deg,
    rgba(26, 22, 18, 0.98) 0%,
    rgba(5, 5, 5, 0.98) 100%
  );
  padding: 58px 16px 46px;
}

.footer-bottom__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom__brand {
  color: rgba(184, 160, 126, 0.95);
  font-family: var(--font-family-cormorant);
  font-size: 34px;
  text-transform: uppercase;
}

.footer-bottom__nav {
  margin-top: 18px;
}

.footer-bottom__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 22px;
}

.footer-bottom__nav-list > li {
  display: flex;
  align-items: center;
}

.footer-bottom__nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.footer-bottom__nav a:hover {
  color: rgba(184, 160, 126, 0.95);
}

/* 繝倥ャ繝繝ｼ縺ｮ縲後♀蝠上＞蜷医ｏ縺帙阪→蜷檎ｳｻ邨ｱ縺ｮCTA・・footer-bottom__nav a 繧医ｊ隧ｳ邏ｰ蠎ｦ繧剃ｸ翫￡繧具ｼ・*/
.footer-bottom__nav a.footer-bottom__nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(201, 184, 154, 0.95);
  background: rgba(184, 160, 126, 0.95);
  color: var(--color-brown-dark);
  font-size: 13px;
  font-weight: var(--font-weight-semi-bold);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 14px rgba(184, 160, 126, 0.4);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.footer-bottom__nav a.footer-bottom__nav-cta:hover {
  background: rgb(201, 184, 154);
  border-color: rgb(210, 195, 170);
  color: var(--color-black);
  box-shadow: 0 4px 20px rgba(184, 160, 126, 0.55);
  transform: translateY(-1px);
}

.footer-bottom__nav a.footer-bottom__nav-cta:focus-visible {
  outline: 2px solid var(--color-pure-white);
  outline-offset: 3px;
}

.footer-bottom__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.footer-bottom__social-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(184, 160, 126, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(184, 160, 126, 0.9);
  font-family: var(--font-family-cormorant);
  font-size: 13px;
}

.footer-bottom__copyright {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

@media (max-width: 767px) {
  .footer-reservation {
    padding: 0;
  }

  .footer-reservation__inner {
    padding: 34px 16px 32px;
    border-radius: 0;
  }

  .footer-reservation__buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .footer-bottom__brand {
    font-size: 26px;
  }

  .footer-bottom__nav a {
    font-size: 11px;
  }

  .footer-bottom__nav a.footer-bottom__nav-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(184, 160, 126, 0.35);
  }

  .footer-bottom__nav a.footer-bottom__nav-cta:hover {
    transform: none;
  }

  .footer-bottom {
    padding: 46px 16px 36px;
  }
}
