/* =============================================================================
   List（リストコンポーネント）
   Figma: node-id=130:11227
   - デフォルト : 丸ドット＋テキスト
   - バリアント2: 丸ドット＋テキスト＋PDF アイコン
   ============================================================================= */

/* リストコンテナ */
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--margin-8);
}

/* =============================================================================
   リスト項目
   ============================================================================= */

/* 項目行: 丸ドット + テキスト（+ PDF アイコン）を横並び */
.list-item {
  display: flex;
  align-items: center;
  gap: var(--margin-16);
}

/* 丸ドット（8px × 8px 塗り潰し円） */
.list-item__bullet {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
}

/* テキスト */
.list-item__text {
  font-size: var(--font-size-18);
  font-weight: normal;
  color: var(--color-black);
}

/* =============================================================================
   バリアント2（PDF アイコン付き）
   ============================================================================= */

/* PDF リンクラッパー */
.list-item__link {
  display: flex;
  align-items: center;
  gap: var(--margin-16);
  text-decoration: none;
  color: inherit;
}

.list-item__link:hover .list-item__text {
  text-decoration: underline;
}

/* PDF アイコン */
.list-item__icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
