/* レイアウト */
.header {
  width: 100%;
  background-color: var(--color-black);
  padding: 1.5rem var(--spacing-sides);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  box-sizing: border-box;
  margin-top: 0;
}

/* ロゴ */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo a {
  text-decoration: none;
}

.logo-text {
  font-size: 1.6rem;
  color: var(--color-white);
  font-family: 'Lobster', cursive;
  font-weight: var(--text-bold);
  font-style: italic;
  transform: rotate(-8deg);
}

/* メニュー */
.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu li a {
  font-size: 1rem;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.1s ease;
}
.nav-menu li a:hover {
  border-bottom: 2px solid var(--color-white);
  padding-bottom: 0.5rem;
}

/* トグルメニュー */
.toggle-menu {
  width: 40px;
  height: 40px;
  padding: 10px;
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-menu span {
  width: 24px;
  height: 3px;
  background-color: #222;
  color: #222;
  border-radius: 1px;
  display: block;
  transition: all 0.3s ease;
}
