.site-header {
  width: 100%;
  height: 60px; /* 高さはお好みで */
  background: #0a0a0a;     /* ダークカラー背景 */
  color: #fff;
  display: flex;        /* 横並び */
  align-items: center;  /* 上下中央 */
  justify-content: space-between; /* 左右端に配置 */
  padding: 0 40px;      /* 左右余白 */
  box-sizing: border-box;
  position: fixed;      /* 常に画面上部に固定したい場合 */
  top: 0; left: 0; z-index: 10;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 24px;
  font-size: 16px;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #61dafb; /* ホバー時に色を変える例 */
}

.site-Under_header {
  position: relative;
  width: 100%;
  height: 60px; /* 高さはお好みで */
  background: #0a0a0a;     /* ダークカラー背景 */
  position: fixed;
  bottom: 0;
}