/* =============================================
   footer.css - Teal単色版（CV/可読性最適化）
============================================= */

.footer {
  background: var(--teal);
  color: #ffffff;
  border-top: 2px solid var(--teal-light);
  padding: 1.75rem 1rem 1.25rem;
  margin-top: 3rem;
  text-align: center;
}

/* コンテナ */
.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* グループ（余白中間設計） */
.footer-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.9rem;
  margin-bottom: 0.6rem;
}

/* リンク共通 */
.footer-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
}

/* メイン導線（強調） */
.footer-link.strong {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
}

/* ホバー */
.footer-link:hover {
  color: var(--amber-light);
}

/* コピーライト */
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.8rem;
}

/* ダークモード（変化を最小化） */
[data-theme="dark"] .footer {
  background: #0f766e; /* 少しだけ落とす */
  border-top: 2px solid var(--teal-light);
}
