/* 全体ベース設定 */
body.page-id-XXX {
  background: #f6fff8;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.8;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* メイン枠中央寄せと装飾 */
.l-mainContent {
  display: flex;
  justify-content: center;
}

.l-mainContent__inner {
  max-width: 800px;
  width: 100%;
  background: #fff;
  padding: 3rem 2rem;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #dcedc8;
}

/* 見出し */
.c-pageTitle {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #2e7d32;
  border-bottom: 3px solid #81c784;
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* 表全体スタイル */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.wp-block-table th,
.wp-block-table td {
  border: 1px solid #c8e6c9;
  padding: 1rem;
  vertical-align: top;
}

.wp-block-table tr:nth-child(even) {
  background-color: #f6fff8;
}

/* 左列（項目名）を強調 */
.wp-block-table td:first-child {
  font-weight: bold;
  background: #e8f5e9;
  color: #2e7d32;
  width: 40%;
  white-space: nowrap;
}

/* リンクや強調 */
.post_content a {
  color: #2e7d32;
  text-decoration: underline;
}

.post_content strong {
  color: #2e7d32;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  .l-mainContent__inner {
    padding: 2rem 1rem;
  }

  .wp-block-table td,
  .wp-block-table th {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .c-pageTitle {
    font-size: 1.6rem;
  }
}
