/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
}

/* ヘッダー */
header {
  background-color: #333;
  color: white;
  padding: 1rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
}

/* ハンバーガーのスタイル */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
}

/* メニュー */
.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s;
}

.menu li a:hover {
  background: #555;
  border-radius: 4px;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 60px;
    left: 0;
    background: #333;
    width: 100%;
    flex-direction: column;
    display: none;
  }

  .menu li {
    border-bottom: 1px solid #444;
  }

  .menu-toggle:checked + .hamburger + .menu {
    display: flex;
  }
}
