.board {
  position: relative;   /* カードの絶対配置の基準 */
  height: 100vh;
  overflow: hidden;
  touch-action: none;
}
.card {
  position: absolute;
  translate: var(--x) var(--y);  /* 位置はCSS変数で管理 */
  border: solid 1px #000000;
  cursor: pointer;
  text-align: center;
  padding: 20px 80px;
  background-color: #ffffff;
}
dialog {
  border: 1px solid #333;      /* カードと同じ見た目に */
  border-radius: 8px;
  padding: 24px 32px;
  max-width: 320px;
  text-align: center;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);   /* 後ろを暗く */
}

.lines {
  position: absolute;
  inset: 0;
  pointer-events: none;  /* 線がドラッグを邪魔しないように */
}
.popup-text {
    font-size: 30px;
}
.popup-title {
    font-size: 18px;
}
.star {
  position: absolute;
  translate: var(--x) var(--y);
  font-size: 24px;
  color: #88e1ff;
  pointer-events: none;   /* クリックの邪魔をしない */
  user-select: none;
}
