/* common.css */
/* ベーススタイル */
body {
  margin: 0;
  padding-top: 80px; /* 固定ヘッダー分の余白 */
  background-color: #000;
  color: #FFD700;
  font-family: 'Segoe UI', sans-serif;
}

/* ヘッダー */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #111;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.navbar-brand img {
  height: 40px;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  color: #FFD700;
  font-weight: bold;
}

.navbar-nav .nav-link:hover {
  text-decoration: underline;
}

/* ボタン */
.btn {
  font-weight: bold;
  border-radius: 5px;
}

/* フッター */
.site-footer {
  background-color: #111;
  color: #FFD700;
  padding: 20px 0;
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }
}