/* ハンバーガーボタン */
.hamburger {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 50px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* 三本線 */
.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 6px 0;
}
