https://i.imgur.com/qDesAxt.png
参加条件とかで最初からソートして欲しいな
もしくは、地域を北から順にとか

// 以下、コンソール用の雑なプログラム
function sortArena(n) {
 const tbody = document.querySelector('tbody');
 const rowsArray = Array.from(tbody.rows);
 const direction = 1;
 const order = [
  '日本 東京 北海 東北 北信 関東 東海 近畿 中国 四国 九州',
  '日本北海東京 九州関東 東北東海 近畿中国 北信四国',
 ];
 const f = (a) => order[n].indexOf(a.querySelector('td').innerText.slice(0, 2));
 rowsArray.sort((a, b) => (f(a) - f(b)) * direction);
 rowsArray.forEach(a => tbody.appendChild(a));
}
(() => {
 ths = document.querySelectorAll('thead th');
 ths[0].setAttribute('onclick', 'sortArena(0)');
 ths[1].setAttribute('onclick', 'sortArena(1)');
 document.querySelectorAll('form').forEach(a => {a.target = '_blank';});
})();