/* ==========================================================================
   Object / Component / List
   チェックリスト: アイコン 23.9px 角丸 / #8ca0a0 / 文字18px 行送り44px
   ドットリスト  : ドット 14px / #af5c9f / 文字20px 行送り40px
   ========================================================================== */
.c-checklist__item {
  display: flex;
  align-items: center;
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.c-checklist__item::before {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-check);
  border-radius: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5L6.5 12L13 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.c-dotlist__item {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.c-dotlist__item::before {
  content: "";
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-primary);
}
