/* グローバルのフォント */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* パスワード入力フォームの目のアイコン非表示（Edge対策） */
input[type='password']::-ms-reveal {
  display: none;
}

/* 入力フォームのオートコンプリート時の背景色・文字色を変えないようにする（Chrome対策） */
input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s, color 600000s 0s !important;
}

/* パンくずリストのアイコンの向き設定（Safari対策） */
.breadCrumbIcon:-webkit {
  transform: rotate(-90deg);
}

/* ファイル選択ボタンのlabel */
label.fileSelectLabel:hover {
  cursor: pointer;
}

/* AspectRatio object-fit: contain; */
.imageFitContain {
  object-fit: contain !important;
}

/* DateTimePickerのz-index */
.react-datepicker-popper {
  z-index: 10 !important;
}