@charset "utf-8";
/* CSS Document */

/* footer.css - フッター部分 */
.site-footer {
  background-color: #f5f5f5;
  border-top: 2px solid #ccc;
  margin-top: 40px;
  padding: 30px 20px;
  text-align: center;
  color: #555;
}

/* 中の内容を中央ボックス化 */
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}

/* リンクリスト */
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 15px 0 0 0;
  flex-wrap: wrap;
}

.footer-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.footer-links li a:hover {
  text-decoration: underline;
}
