/* 全体に関わる設定 */
html,
body {
  font-family: "Noto Sans Mono", "Noto Sans JP", sans-serif !important;
}

.navbar-light .navbar-nav .nav-link {
  color: black;
  font-size: 14px;
  font-weight: bold;
}

/* invalid-feedbackが常に表示されるように修正 */
.invalid-feedback {
  display: block;
}
/* ヘッダ */
.dt-header {
  /* position: fixed; */
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9900;
  background: white;
}

.dt-logo {
  background-color: white;
}

.dt-bg-hss-blue {
  background-color: #4d93d9;
}

.dt-logo-holder {
  border-radius: 0 0 1rem 1rem;
}

.dt-navbar {
  border-radius: 0 0 1rem 0;
}

/* メインエリア */
.dt-main-contents {
  min-height: calc(100vh - 72px - 54px);
}

/* フッタ */
html,
body {
  height: 100%;
}

.dt-footer {
  position: sticky;
  top: 100vh;
  width: 100%;
  text-align: center;
  z-index: 9000;
  background: white;
  opacity: 0.9;
  font-weight: bold;
  font-size: 12px;
}

/* 新しいタブで開くリンクにアイコンを追加 */
a[target="_blank"].btn:after {
  padding-left: 10px;
}

a[target="_blank"]:after {
  font-family: "bootstrap-icons";
  content: "\F1C5";
}
/* 数字入力欄の上下矢印を削除する */
/* Chrome, Safari, Edge, Opera用 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox用 */
input[type="number"] {
  -moz-appearance: textfield;
}
