@charset "UTF-8";
.bold {
  font-weight: bold;
}

.checkmark-text {
  font-size: 17px;
  font-weight: bold;
  position: relative;
  padding-left: 1.5em;
}
.checkmark-text::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2c2c2c;
}

.strike {
  text-decoration: line-through;
  color: #888; /* 薄いグレーで古い情報感を出す */
}