/* =============================================================
   components/header.css
   固定ヘッダー（Figma 実測値）
   ============================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--screen-max);   /* 480px */
  height: var(--header-h);        /* 60px */
  background: var(--color-bg-warm);  /* #FFFBF1 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: var(--z-header);       /* 100 */
}

/* ヘッダーロゴ（logo.png 1枚） */
.header-logo {
  display: flex;
  align-items: center;
  padding-left: var(--content-pad);  /* 20px */
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}

.header-logo img {
  height: 50px;
  width: auto;
  max-height: 50px;
  max-width: 300px;
  display: block;
  object-fit: contain;
}

/* ハンバーガーボタン: right 15px、タップ領域 44×44px */
.site-header__menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* ハンバーガーアイコン（3本線 24×24px相当） */
.site-header__hamburger {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.site-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  border-radius: 1px;
}
