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;
}

.small-text {
    font-size: 0.8rem; /* フォントサイズを小さく設定 */
}

.table-sm td, .table-sm th {
    padding: 0.25rem; /* セルの高さをできる限り小さくする */
}
.container {
    max-width: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

@media (min-width: 992px) { /* lgサイズ以上 */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (min-width: 1200px) { /* xlサイズ以上 */
    .container {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}