/* ==============================
   フッター
============================== */

.site-footer {
  background: #ffffff;
  border-top: 4px solid #000;
  padding: 2.6rem 1.6rem 2rem;
  /* margin-top: 4rem; */
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

/* ----------- 左：ロゴ ----------- */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #000;
}

.footer-logo-image img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2.6px solid #000;
}

.footer-logo-main {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.footer-logo-sub {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

/* ----------- 中央ナビ ----------- */

.footer-global-nav .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.8rem;
}

.footer-nav-list li a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
}

/* ----------- 右：CTA + 住所 ----------- */

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.footer-cta-nav {
  display: flex;
  gap: 0.6rem;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  border: 2px solid #000;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 3px 3px 0 #000;
}

.footer-pill--yellow {
  background: #ffe966;
}

.footer-pill--red {
  background: #ff675b;
  color: #fff;
}

.footer-address p {
  text-align: right;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #333;
}

/* ----------- コピーライト ----------- */

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #666;
}

/* ----------- SP レイアウト ----------- */

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-global-nav .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-right {
    align-items: center;
  }

  .footer-address p {
    text-align: center;
  }
}
