/*================= font size =================*/
/* xs */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

/* sm */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* lg */
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* xl */
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-3xl	{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
/*=============================================*/


/*================ font weight ================*/
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: bold;
}
/*=============================================*/


/*=================== その他 ===================*/
/* 下線 ノーマル */
.underline {
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

/* 下線 隙間大きめ */
.underline-offset-8 {
  text-decoration-line: underline;
  text-underline-offset: 8px;
}

/* ...で省略 */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*=============================================*/
