/* ヘッダー本体 */
.site-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

/* ナビコンテナ */
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* 常に左寄せ */
  gap: 0.75rem;
  width: 100%;
}

/* ロゴ */
.site-header .logo {
  height: 48px;
  width: auto;
}

/* サイト名 */
.site-header .site-name {
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
}