.suzu-footer {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #393332;
}

.suzu-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  pointer-events: none;
}

.suzu-footer__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 40px 0 28px;
}

.suzu-footer__main {
  display: grid;
  gap: 28px;
}

.suzu-footer__left,
.suzu-footer__right {
  display: grid;
  gap: 18px;
}

.suzu-footer__branding {
  display: flex;
  justify-content: center;
margin: 24px 0 30px;
}

.suzu-footer__logo-link {
  display: inline-flex;
  text-decoration: none;
  justify-content: center;
}
.suzu-footer__logo {
  display: flex;
  justify-content: center;
}

.suzu-footer__logo .custom-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 120px;
}

.suzu-footer__site-title {
  font-size: 28px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #393332;
}

/* CTA */
.suzu-footer__cta-wrap {
  display: grid;
  justify-items: center;
  align-items: end;
  gap: 10px;
}

.suzu-footer__booking {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  padding: 0;
  text-decoration: none;
  color: #393332;
  transition: transform .25s ease;
}

.suzu-footer__booking:hover {
  transform: translateY(-4px);
}

.suzu-footer__booking-icon {
  display: block;
  width: 170px;
  max-width: 100%;
margin-top: 15px;
}

.suzu-footer__booking-icon svg {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .35s cubic-bezier(.22,1,36,1);
  transform-origin: center;
}

.suzu-footer__booking:hover .suzu-footer__booking-icon svg {
  transform: translateY(-2px) scale(1.03);
}

.suzu-footer__booking-point {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 50px;
  height: 50px;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.suzu-footer__booking-point svg {
  display: block;
  width: 100%;
  height: 100%;
}

.suzu-footer__booking:hover .suzu-footer__booking-point,
.suzu-footer__booking:focus-visible .suzu-footer__booking-point {
  opacity: 1;
  transform: translate(-50%, 0);
}

.suzu-footer__dog {
  width: 150px;
  max-width: 52vw;
}

.suzu-footer__dog-svg,
.suzu-footer__dog-svg svg {
  display: block;
  width: 100%;
  height: auto;
}

.suzu-footer__dog-svg {
  animation: suzuDogFloat 3.8s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes suzuDogFloat {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-4px) rotate(-1deg); }
  50%  { transform: translateY(0) rotate(0.8deg); }
  75%  { transform: translateY(-3px) rotate(-0.6deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Cards */
.suzu-footer__nav {
  width: 100%;
}

.suzu-footer__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.suzu-footer__card-item {
  margin: 0;
}

.suzu-footer__card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 1 / 1;
  border: 5px solid #121212;
  border-radius: 18px;
  text-decoration: none;
  color: #393332;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.suzu-footer__card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.95);
}

.suzu-footer__card-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.suzu-footer__card-icon svg,
.suzu-footer__card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.suzu-footer__card-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
font-weight:600;
}
/* Sub buttons */
.suzu-footer__subbuttons {
  display: grid;
  gap: 10px;
}

.suzu-footer__subbutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(57,51,50,0.14);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #393332;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.suzu-footer__subbutton:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 14px 26px rgba(0,0,0,0.10);
}

/* Bottom */
.suzu-footer__bottom {
  margin-top: 24px;
  display: grid;
  gap: 6px;
  justify-items: center;
}

.suzu-footer__meta,
.suzu-footer__copyright {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgba(57,51,50,0.88);
}

.suzu-footer__meta a {
  color: inherit;
  text-decoration: none;
}

/* PC */
@media (min-width: 768px) {
  .suzu-footer__inner {
    padding: 64px 0 30px;
  }
  .suzu-footer__main {
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 1fr);
    align-items: start;
    gap: 34px;
margin-top:65px;
  }

  .suzu-footer__left {
    display: flex;
    justify-content: center;
  }

  .suzu-footer__branding {
    width: 100%;
margin-top: 32px;
  }

  .suzu-footer__logo-link {
    justify-content: center;
  }

  .suzu-footer__logo {
    display: flex;
    justify-content: center;
  }

   .suzu-footer__cta-wrap {
    position: relative;
    width: 320px;
    min-height: 280px;
    justify-items: initial;
    align-items: initial;
    gap: 0;
    margin-left: 48px; /* 左カラム全体を少し右へ */
  }


  .suzu-footer__right {
    align-content: start;
    gap: 16px;
  }


  .suzu-footer__logo .custom-logo {
    max-width: 320px;
    max-height: 180px;
  }


  .suzu-footer__booking {
    position: absolute;
    top: -36px;      /* 左上に配置 */
    left: 0;
    width: 190px;
    z-index: 2;
  }
  .suzu-footer__booking-icon {
    width: 190px;
    margin-top: 0;
  }

  .suzu-footer__booking-point {
    top: -34px;
    left: 38%;
    width: 64px;
    height: 64px;
  }

  .suzu-footer__dog {
    position: absolute;
    right: 18px;   /* 犬を少し右へ */
    bottom: 0;
    width: 180px;
    max-width: 180px;
  }
  .suzu-footer__cards {
    gap: 16px;
  }

  .suzu-footer__card-label {
    font-size: 14px;
  }

  .suzu-footer__subbuttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .suzu-footer__subbutton {
    min-height: 58px;
    font-size: 14px;
margin-top: 30px;
  }

  .suzu-footer__bottom {
    margin-top: 34px;
  }
  .suzu-footer__logo .custom-logo {
    max-width: 260px;
    max-height: 140px;
  }
  .suzu-footer__meta,
  .suzu-footer__copyright {
    font-size: 12px;
  }
}