/* games-by-ai 全ゲーム共通の「一覧へ戻る」リンク */

/* プレイ画面と分離された固定位置のピル。常設ヘッダーを持たないゲーム向け。 */
.gba-back-pill {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.8em;
  padding: 0.4em 0.8em;
  border-radius: 999px;
  touch-action: manipulation;
}
.gba-back-pill:hover,
.gba-back-pill:focus {
  background: rgba(0, 0, 0, 0.75);
}

/* タイトル/リザルトのオーバーレイ内に置く控えめなリンク。周囲の文字色を継承。 */
.gba-back-inline {
  display: inline-block;
  color: inherit;
  opacity: 0.75;
  text-decoration: none;
  font-size: 0.85em;
}
.gba-back-inline:hover,
.gba-back-inline:focus {
  opacity: 1;
  text-decoration: underline;
}

/* 2026.07.20(01) */
