/* header */
header{
    background-color: #5EC363;
    display: flex !important;
    justify-content: space-between;
    color: #fff;
    padding: 60px;
    font-size: 3.5rem;
}

header a{
    color: #fff;
}

header ul {
    display: inline-flex;
    gap: 25px;
}

header nav li {
    display: inline-block;
    font-size: 3rem;
}


/* --------------------------------
ハンバーガーボタン
-------------------------------- */
/* デスクトップでは非表示 */
.hamburger {
    display: none;
  }
  
  /* 画面幅が786px以下の場合のみ表示 */
  @media screen and (max-width: 786px) {
    .hamburger {
      font-size: 30px;
      background-color: #5DC262;
      border: none;
      cursor: pointer;
      position: fixed;
      top: -13px;
      right: -13px;
      z-index: 1000;
      width: 90px;
      height: 90px;
      border-radius: 80px;
      display: flex !important;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .hamburger span {
      display: block;
      width: 30px;
      height: 3px;
      background-color: #fff;
      margin: 5px 0;
    }
  
    .hamburger p {
      font-size: 1rem;
      color: #fff;
    }
  }
  
  /* ナビゲーションメニュー */
  .nav {
    position: fixed;
    top: 0;
    right: -100%; /* 最初は画面の外に隠す */
    width: 75%;
    height: 100vh;
    background: #5DC262;
    color: #fff;
    transition: right 0.3s ease;
    padding: 50px 20px;
  }
  
  /* メニューが開いたとき */
  .nav.active {
    right: 0;
  }
  
  .nav ul {
    list-style: none;
    padding: 0;
  }
  
  .nav li {
    margin: 20px 0;
  }
  
  .nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
  }