﻿/* --- 2列グリッドカードレイアウト --- */
.section {
  margin-bottom: 40px;
}

.section h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

/* 2列グリッド */
.list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;

  /* 白木ひのきの木目（非常に淡い） */
  background:
    repeating-linear-gradient(
      90deg,
      #fcf7e9 0px,
      #fcf7e9 5px,
      #f7f0dd 5px,
      #f7f0dd 10px
    ),
    linear-gradient(
      180deg,
      #fffdf7,
      #f9f3e3
    );

  border: 1px solid #e8dfc7;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ホバーで浮き上がる */
.item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.item .num {
  font-size: 1.4rem;
  font-weight: bold;
  width: 40px;
  text-align: center;
}

.item .body {
  flex: 1;
}

.item .title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 4px;
}

/* PDFアイコン付きリンク */
.item .link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0;
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

.item .link::before {
  content: "📄"; /* PDFアイコン */
  font-size: 1.1rem;
}

.item .dates {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  gap: 16px;
  margin-top: 4px;
}