/* ========================================
   ファイルリンクスタイル（PDF/Excel/Word）
   ======================================== */

/* 共通スタイル */
.file-link {
  display: inline-flex;
  align-items: center;
  color: #0066cc;
  text-decoration: underline;
  font-size: 18px;
  line-height: 1.5;
}

.file-link:hover {
  text-decoration: none;
}

/* アイコン共通スタイル（Font Awesome使用） */
.file-link::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 18px;
  margin-left: 8px;
  text-decoration: none;
  display: inline-block;
}

/* PDFリンク */
.file-link-pdf::after {
  content: "\f1c1";
  color: #e74c3c;
}

/* Excelリンク */
.file-link-excel::after {
  content: "\f1c3";
  color: #27ae60;
}

/* Wordリンク */
.file-link-word::after {
  content: "\f1c2";
  color: #2980b9;
}

/* ----------------------------------------
   リスト形式で使用する場合
   ---------------------------------------- */
.file-list {
  list-style: none;
  padding: 0 0 0 40px;
  margin: 0;
}

.file-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.8;
}

/* 黒丸ブレット */
.file-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #0066cc;
  border-radius: 50%;
}