@charset "UTF-8";

/* --- 記事エリア全体の基本設定 --- */
.contents {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1c1c1c;
  line-height: 1.6;
}

/* --- すべての<table>に自動で枠線をつける設定 --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 16px;
  border: 1px solid #d6d6d6; /* 外枠をグレーで表示 */
}

table th {
  background-color: #f5f5f5; /* ヘッダーの背景色 */
  border: 1px solid #d6d6d6; /* セル間の枠線 */
  padding: 12px;
  text-align: left;
  font-weight: bold;
}

table td {
  border: 1px solid #d6d6d6; /* セル間の枠線 */
  padding: 12px;
  vertical-align: top;
}

/* --- 見出しと画像の設定--- */
.column-heading2 {
  font-size: 24px;
  font-weight: bold;
  margin: 40px 0 20px;
  color: #1c1c1c;
}

.contents h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 32px 0 16px;
  color: #1c1c1c;
}

.column-eye-catch img {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.contents p {
  margin-bottom: 1.6em;
}

/* --- モバイル対応 (899px以下) --- */
@media(max-width: 899px) {
  table {
    font-size: 14px;
  }
  table th,
  table td {
    padding: 8px;
  }
  .column-heading2 {
    font-size: 20px;
  }
}