/**
 * ヘッダー / フッターリンク — 参照画像風レイアウト
 */
.site-link-bar {
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  background: #fff;
}
.site-link-bar--footer {
  border-bottom: 0;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 1rem;
}
.site-link-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
.site-link-bar__nav { min-width: 0; flex: 1 1 auto; }
.site-link-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}
.site-link-bar__list a {
  color: var(--color-text, #1e293b);
  text-decoration: none;
  font-weight: 500;
}
.site-link-bar__list a:hover { text-decoration: underline; color: var(--color-primary, #113c91); }
.site-link-bar__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.site-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  color: #fff;
  text-decoration: none;
}
.site-social svg { width: 1.125rem; height: 1.125rem; display: block; }
.site-social--facebook { background: #1877f2; }
.site-social--x { background: #0f1419; }
.site-social--instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.site-social--youtube { background: #ff0000; }
.site-social--line { background: #06c755; }

@media (max-width: 767px) {
  .site-link-bar__inner { justify-content: center; text-align: center; }
  .site-link-bar__list { justify-content: center; }
  .site-link-bar__social { justify-content: center; width: 100%; }
}
