html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* ===== 業務画面用フォーム余白 ===== */

.condition-form .form-label {
    font-size: 1rem;
    margin-bottom: 8px; /* ラベルと入力欄の間 */
}

.condition-form .form-control {
    padding: 10px 14px; /* 入力欄を大きく */
    font-size: 1rem;
}

.condition-form .row {
    margin-bottom: 28px; /* 各項目の縦間隔 */
}

/* ボタンを押しやすく */
.condition-form button {
    padding: 12px;
    font-size: 1.05rem;
}

/* スマホ時はさらに広げる */
@media (max-width: 768px) {
    .condition-form .row {
        margin-bottom: 36px;
    }
}

/* ===== 入力画面の文字を大きくする ===== */

.condition-form label.form-label {
    font-size: 1.5rem !important; /* ラベル文字 */
}

.condition-form input.form-control {
    font-size: 1.5rem; /* 入力文字 */
    padding: 12px 16px; /* 入力欄も少し大きく */
}



