/* 太字にしたいとき */
.bold {
  font-weight: bold;
}

/* フォントサイズを大きく */
.large {
  font-size: 1.5rem;
}

/* アンダーライン */
.underline {
  text-decoration: underline;
}

/* イタリック */
.italic {
  font-style: italic;
}

/* 色を強調 */
.highlight {
  color: #d9534f;
}

/* 背景色で強調 */
.bg-highlight {
  background-color: yellow;
  padding: 0.2em;
}
