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

/* プロジェクト例のカード内にあるdesc（説明文）を非表示にする */
.p-common-service-contents-project-subflow-text {
  display: none !important;
}

/* -----------------------------------------
 * マウス操作やページジャンプ時の
 * ブラウザ自動フォーカス枠を一括で非表示にする
 * ----------------------------------------- */
: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;
  }
}

/* -----------------------------------------
 * 【追加】PC・SPのタイトル表示出し分け
 * ----------------------------------------- */
/* デフォルト（スマホ・タブレット縦など） */
.u-show-pc {
  display: none !important;
}
.u-show-sp {
  display: inline !important;
}

/* PCサイズ以上（768px以上） */
@media screen and (min-width: 768px) {
  .u-show-pc {
    display: inline !important;
  }
  .u-show-sp {
    display: none !important;
  }
}

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