@charset "UTF-8";

/* テーブル全体のスタイル */
.contents table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 16px;
  color: #1c1c1c;
}

/* ヘッダーセル (th) */
.contents table th {
  background-color: #f5f5f5;
  border: 1px solid #d6d6d6;
  padding: 12px;
  text-align: left;
  font-weight: bold;
  vertical-align: middle;
}

/* データセル (td) */
.contents table td {
  border: 1px solid #d6d6d6;
  padding: 12px;
  vertical-align: top;
  line-height: 1.6;
}

/* モバイル対応: 画面幅が狭い場合 */
@media(max-width: 899px) {
  .contents table {
    font-size: 14px;
  }
  
  .contents table th,
  .contents table td {
    padding: 8px;
  }
}

/* 出典元のテキストスタイル */
.source {
  font-size: 12px;
  text-align: right;
  color: #595959;
  margin-top: -16px;
  margin-bottom: 24px;
}