/* ========== Footer ========== */

.site-footer {
  background-color: var(--color-footer-bg, #FFFAFF); /* ghost white */
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-footer-text, #85756E); /* cinereous */
  border-top: 1px solid var(--color-border, #E5E7EB);
}

/* ナビゲーション部 */
.footer-nav {
  margin-bottom: 1rem;
}

/* メニュー（flex表示） */
.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu a {
  color: var(--color-footer-text, #85756E);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--color-accent, #FF9505); /* accent = Princeton orange */
  text-decoration: underline;
}

/* コピーライトなど */
.footer-copy {
  color: var(--color-muted, #999999);
  font-size: 0.75rem;
  margin-top: 1rem;
}
