/* 全体のリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ヘッダーのスタイル */
  .header {
    position: relative;
    height: 60px;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }
  
  /* Menuトグル全体のコンテナ */
  .menu-container {
    position: relative;
    display: inline-block;
  }
  
  /* Menuトグルのスタイル */
  .menu-toggle {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    padding: 0 20px;
  }
  
  /* ナビゲーションリンクの初期設定 */
  .nav-links {
    list-style: none;
    display: none; /* デフォルトで非表示 */
    position: absolute;
    top: 100%; /* 「Menu」の下に表示 */
    right: 0;
    background: #444;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  .nav-links li {
    margin: 10px 0;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }
  
  /* Menu全体（トグルとリスト）のホバーで表示 */
  .menu-container:hover .nav-links {
    display: block;
  }
  
  /* ヒーローセクション */
  .hero {
    height: 100vh;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 18px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background: #ddd;
  }
  