/**
 * File Name: override.css
 * 2026-07-03 | Final checked
 */

/* -----------------------------------------
 * マウス操作やページジャンプ時の
 * ブラウザ自動フォーカス枠を一括で非表示にする
 * ----------------------------------------- */
:focus:not(:focus-visible),
[tabindex="-1"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

br.u-hidden-pc {
  display: block;
}

@media screen and (max-height: 500px) and (orientation: landscape) {
  br.u-hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (min-height: 501px) {
  br.u-hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 1024px) and (min-height: 501px) {
  br.u-hidden-pc {
    display: none;
  }
}

.u-text-justify {
  text-align: justify;
  text-justify: inter-character;
}
