/* Shared, static social navigation. No third-party embeds or tracking scripts. */
.site-footer .footer-social {
  grid-column: 1 / -1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 32px;
  padding: 24px 0 32px;
  border-bottom: 1px solid #d6d3c8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
}
.site-footer .footer-social-title {
  margin: 0;
  font: 700 18px/1.7 "Zen Kaku Gothic New", sans-serif;
  color: #1b2924;
}
.site-footer .footer-social-note {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #607069;
}
.site-footer .footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  box-sizing: border-box;
  padding: 12px 20px;
  border: 1px solid #2f6f64;
  border-radius: 4px;
  background: transparent;
  color: #2f6f64;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.site-footer .footer-social-link::before,
.site-footer .footer-social-link::after { content: none; }
.site-footer .footer-social-link:hover {
  background: #dde8e1;
  color: #255b53;
}
.site-footer .footer-social-link:focus-visible {
  outline: 3px solid #2f6f64;
  outline-offset: 4px;
}
.site-footer .footer-social-link:active { background: #dde8e1; }
.site-footer .footer-social-icon {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
.site-footer .footer-social-external { font-size: 16px; }
@media (max-width: 600px) {
  .site-footer .footer-social { gap: 16px; }
  .site-footer .footer-social-links { width: 100%; }
  .site-footer .footer-social-link { flex: 1 1 120px; padding: 12px; }
}
