/* Bootstrap 5にないカスタムユーティリティクラス */

/* フォントウェイト */
.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

/* フォントサイズ */
.font-size-small {
  font-size: 0.875rem !important;
}

.font-size-base {
  font-size: 1rem !important;
}

.font-size-large {
  font-size: 1.125rem !important;
}

.font-size-xl {
  font-size: 1.25rem !important;
}

.font-size-xxl {
  font-size: 1.5rem !important;
}