@charset "utf-8";
/* CSS Document */
.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* ← fixedに変更で画面右上に常に表示 */
  top: 20px;
  right: 20px;
  z-index: 9999; /* ← 最前面 */
  background-color: #fff;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  outline: none;
}

.hamburger svg {
  width: 25px;
  height: 25px;
}

.hamburger path {
  fill: #000;
}

.nav.nav--mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9998;
  padding: 20px;
  display: none;
}
