/* ===== 共通 ===== */
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  background: #fafafa;
  color: #2e3b2e;
}

a {
  color: #0f3d2e;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

img {
  max-width: 100%;
  height: auto;
}

/* ===== 一覧用テーブル（view） ===== */
table.list-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 90%;
}

table.list-table td {
  padding: 8px 6px;
  border-bottom: 1px solid #dddddd;
}

table.list-table tr:nth-child(even) {
  background: #f7faf7;
}

table.list-table tr:hover {
  background: #eef6ee;
}

/* ===== 詳細用テーブル（detail-table） ===== */
table.detail-table {
  width: 100%;
  max-width: 480px;
  border-collapse: separate;   /* ← ここが重要 */
  border-spacing: 0;
  background: #ffffff;
  font-size: 90%;
}

table.detail-table td {
  padding: 6px 8px;
  border: 1px solid #999999;   /* ← 必ず出る */
  background-clip: padding-box;
}

/* 左列（ラベル） */
table.detail-table td:first-child {
  background: #cccccc;
  white-space: nowrap;
}
