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;
  }
  
  /* カスタマイズ */
  .form-label {
      /*color:grey;*/
      margin-top: 5px;
      margin-bottom: 0px;
  }
  
  .label-danger {
      color: red;
  }
  
  /* inputタグ用スタイル */
  .sys-input-string,
  .sys-input-mail,
  .sys-input-password,
  .sys-input-password-conf,
  .sys-input-numeric,
  .sys-input-calender {
      background-color: lightyellow;
  }
  
  .sys-input-numeric {
      text-align: right;
  }
  
  /* 参照用画面テーブル ↓↓↓ */
  .sys-ref-table {
      border-color: #28C25F !important;
      /*
  #28C25F
  #E8F8DF
  
      border-color: mediumblue !important;
      */
  }
  
  .sys-ref-td {
      background-color: #E8F8DF !important;
      color: green !important;
      border-bottom: 1px solid #28C25F !important;
      /*
      background-color: mediumblue !important;
      color: white !important;
      border-bottom: 1px solid white !important;
      */
  }
  
  .sys-ref-td-right {
      text-align: right;
  }
  /* 参照用画面テーブル ↑↑↑ */
  
  
  /* 一覧画面用テーブル ↓↓↓ */
  .sys-list-table-headers {
      background-color: powderblue;
      color: cadetblue;
  }
  /* 一覧画面用テーブル ↑↑↑ */
  
  
  
  /* wijmo grid用ボタンスタイル */
  .sys-grid-btn {
      width: 100%;
      padding: 0;
      margin-top: -5px;
      font-size: 14px;
  }
  
  /* スイッチボタンの不具合用（bootstrap4-toggleにてボタンの枠線が常に黒になる不具合を回避） */
  .btn-light {
      --bs-btn-color: auto;
  }
  
  /* Bootstrap Icons（アイコンの左マージン） */
  .bi {
      margin-left: 7px;
  }
  
  /* タイトル */
  .sys-header {
      text-align: center;
      margin-top: 15px;
  }
  
  .sys-header h1 {
      font-size: 20px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #333;
  }
  
  .sys-header p {
      font-size: 16px;
      color: #666;
      margin-top: 5px;
  }
  
  
  /* 折りたたみボタン */
  .toggle-btn {
      background-color: transparent;
      color: #007bff;
      border: none;
      padding: 0;
      font-size: 12px;
      text-decoration: underline;
      cursor: pointer;
  }
  
  .toggle-btn:hover {
      color: #0056b3;
  }
  
  