/* ===== nikkei150pj-area 内だけに効かせる（他ページへの影響を抑える） ===== */
.nikkei150pj-area {
  /* 必要ならここに全体の余白などを追加 */
}

/* 段落の基本（既存CSSに影響させたくない場合のみ） */
.nikkei150pj-area p {
  margin: 0 0 1em;
}

/* 出演者ブロック（画像を左、テキストを右へ） */
.nikkei150pj-area .nikkei150pj-person {
  display: block; 
}

.nikkei150pj-area .nikkei150pj-person__img{
  float: none;
  display: block;
  width: 15%;
  min-width: 120px;
  height: auto;
  margin: 0 0 10px 0; /* 下に余白 */
}

.nikkei150pj-area .nikkei150pj-person__text {
  margin: 0 0 12px;  /* 下に12pxの余白（値は好みで） */
}

/* ===== テーブル ===== */
.nikkei150pj-area .nikkei150pj-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* 列幅%指定を効かせる */
}

.nikkei150pj-area .nikkei150pj-table th,
.nikkei150pj-area .nikkei150pj-table td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: top;

  /* 入らない文字は折り返し */
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.nikkei150pj-area .nikkei150pj-table thead th {
  background: #E8E8E8;
  font-weight: bold;
}

/* 列幅: 25%, 35%, 20%, 20% */
.nikkei150pj-area .nikkei150pj-table th:nth-child(1),
.nikkei150pj-area .nikkei150pj-table td:nth-child(1) { width: 25%; }

.nikkei150pj-area .nikkei150pj-table th:nth-child(2),
.nikkei150pj-area .nikkei150pj-table td:nth-child(2) { width: 35%; }

.nikkei150pj-area .nikkei150pj-table th:nth-child(3),
.nikkei150pj-area .nikkei150pj-table td:nth-child(3) { width: 20%; }

.nikkei150pj-area .nikkei150pj-table th:nth-child(4),
.nikkei150pj-area .nikkei150pj-table td:nth-child(4) { width: 20%; }

