/* 全体のスタイル */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    text-align: center;
  }
  
  /* カウントコンテナのスタイル */
  #count-container {
    width: 400px;
    margin:  auto;
    padding: 10px;
    margin-top: 10px;
    background-color: #e6f7ff;
    font-size: 20px;
    border: 1px solid #cce7ff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* ゲームコンテナ */
  #game-container {
    position: relative;
    margin: 20px auto;
    width: 400px;
    height: 400px;
    border: 1px solid #ccc;
    background-color: #ffffff;
  }
  
  /* ボタンコンテナ */
  #button-container {
    text-align: center;
    margin-top: 10px;
  }
  
  /* リセットボタン */
  #reset-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #reset-button:hover {
    background-color: #45a049;
  }
  
  /* 点滅アニメーション */
  @keyframes flash {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  /* フェードアウトアニメーション */
  @keyframes fade-out {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
  /* フェードアウト用クラス */
  .fade-out {
    animation: fade-out 1s forwards;
  }
  