.site-footer {
  background: #0b1a2d;   /* ネイビー背景 */
  color: #fff;
  text-align: center;
  padding: 80px 20px;    /* ← 縦の余白を増やす（上下） */
  width: 100%;           /* ← 横幅いっぱいに広げる */
}

.footer-container {
  max-width: 1200px;     /* ← 中央コンテンツの横幅を制御 */
  margin: 0 auto;
}

.footer-logo img {
  width: 70px;           /* ロゴを大きくしたい場合 */
  margin-bottom: 20px;
}

.footer-copy {
  margin: 20px 0;
  font-size: 14px;
  color: #ccc;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;             /* リンク間のスペース */
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #e74c3c;        /* 赤にホバー */
}