body { font-family: sans-serif; padding: 20px;
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('オタク.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.card { background: white; padding: 20px; border-radius: 8px; cursor: pointer; border: 2px solid #ddd; transition: 0.3s; }
.card:hover { border-color: #007bff; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { border: 1px solid #ccc; padding: 12px; text-align: left; }
th { background-color: #f8f9fa; font-weight: bold; }
tr:nth-child(even) { background-color: #f2f2f2; }
.result-area { margin-top: 30px; padding: 20px; background: #fff; border-radius: 8px; display: none; }
/* 最初は隠す */
.hidden { display: none; }

/* 画像をくそでかいサイズに */
#explosionImage {
    width: 90vw;       /* 画面幅の90% */
    height: auto;      /* 比率を維持 */
    display: block;
    margin: 20px auto;
}

#explosionArea {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: red;
}


#runBtn {
  /* 大きくする設定 */
  padding: 20px 40px;      /* 内側の余白を大きくしてボタンを大きくする */
  font-size: 24px;         /* 文字サイズを大きく */
  cursor: pointer;         /* マウスを乗せた時に指アイコンにする */
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  margin: 0 auto;      /* ボタンを左右中央 */
}

/* ホバー時の装飾（任意） */
#runBtn:hover {
  background-color: #0056b3;
}
#explosionImg {
    /* 動きの追従性を高めるため、0.05s に短縮 */
    transition: transform 0.05s linear; 
    position: relative;
    width: 90vw;
    height: auto;
}