/* ダウンロード一覧 */
.doc_contents {
  margin: 24px 0 80px;
  padding: 0 16px;
}

.doc_section {
  margin-top: 28px;
}

.doc_category {
  text-align: left;
  margin: 24px 0 12px;
  padding: 10px 12px;
  border-left: 6px solid #FF7418;
  background: #FFF7ED;
}

.doc_category .category {
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

.doc_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .doc_list {
    grid-template-columns: 1fr 1fr;
  }
}

.doc_item {
  border-radius: 12px;
}

/* リンク行 */
.doc_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 15px;
  color: #333;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  text-decoration: none;
}

.doc_link:hover,
.doc_link:focus {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  border-color: #D1D5DB;
}

/* テキスト部分だけに下線 */
.doc_text {
  flex: 1;
}

.doc_link:hover .doc_text {
  text-decoration: underline;
}

/* 右端のDLアイコン（下線は付けない） */
.doc_link::after {
  content: "";
  display: inline-block;
  width: 16px; /* アイコンサイズ */
  height: 16px;
  margin-left: 8px;
  background-image: url("../../important-notice/img/download-icon.png"); /* アップした画像のパスに変更 */
  background-size: contain;  /* アイコンが収まるように */
  background-repeat: no-repeat;
  vertical-align: middle;
  text-decoration: none; /* 念のため */
}

