/* ===== リセット ===== */
body {
  margin: 0;
}

/* ===== ヘッダー全体 ===== */
.site-header {
  background-color: #0066cc;
  color: white;

  /* 高さを作っている最大要因なので小さめに */
  padding: 6px 12px;

  /* 中身を横並び */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== タイトル＋ロゴ ===== */
.site-header h1 {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 0;

  /* 文字サイズと行高を抑える */
  font-size: 1.1rem;
  line-height: 1.2;
}

/* ===== ロゴ ===== */
.site-logo {
  height: 60px;     /* ← ロゴの実サイズはここ */
  width: auto;

  /* 余計な高さを作らない */
  padding: 0;
  margin: 0;

  display: block;
}

/* ===== ナビリンク ===== */
.site-header nav a {
  color: white;
  text-decoration: none;
  margin-left: 12px;
  font-size: 0.95rem;
}

.site-header nav a:hover {
  text-decoration: underline;
}
