@charset "utf-8";

/* ===== テーブル崩し専用CSS（index.htmlのみ）20260102 ===== */

@media screen and (max-width:480px){

  /* テーブルを1列縦化（※危険） */
  table, tbody, tr, th, td {
    display: inline;
  }

  /* 検索結果テーブル専用の縦化補助 */
  .kensakukekkabgy {
    display: block;
    padding: 5px;
  }

  /* table 直下 div の並びを強制変更 */
  .container {
    display: flex;
    flex-direction: column;
    width: auto;
  }

}
