

.hamburger {
  position: absolute;   /* ヘッダーの中で絶対配置 */
  top: 10px;            /* 上からの距離 */
  left: 10px;           /* 左からの距離 */
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;        /* ヘッダー内の要素より前に表示 */
}
