@charset "utf-8";
/* ============================
   DEI ページ専用スタイル（dei.css）
   ============================ */

/* 基本設定 */
#maincontents {
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
  color: #333333;
  line-height: 1.7;
  padding: 0 15px;
  box-sizing: border-box;
  text-align: left; /* ← 全体を左揃えに固定 */
}

/* 見出し（h3, h4） */
#maincontents h3 {
  width: 100%;
  background: #EFEFEF;
  font-size: 120%;
  color: #000000; /* 黒字 */
  padding: 10px;
  margin: 40px 0 20px 0;
  box-sizing: border-box;
  text-align: left !important; /* ← 強制的に左寄せ */
}

#maincontents h4 {
  font-size: 110%;
  line-height: 1.4rem;
  color: #000000; /* 黒字 */
  margin: 25px 0 10px 3px;
  border-left: 5px #ff9500 solid;
  padding-left: 8px;
  text-align: left !important; /* ← 強制的に左寄せ */
}

#maincontents h5 {
  font-size: 100%;   /* h4より少し小さめ */
  line-height: 1.4rem;
  color: #000;        /* 黒文字 */
  text-align: left;   /* 念のため左寄せ */
  margin: 20px 0 8px 10px;
  padding-left: 5px;
}


/* テーブル全体のラッパー */
.table_container {
  position: relative;
  margin-bottom: 60px; /* ← 表と注釈の間に余裕を持たせる */
  text-align: center;
}

/* 表本体 */
.table_dei {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

.table_dei th,
.table_dei td {
  padding: 10px 15px;
  border: 1px solid #CCCCCC;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

.table_dei th {
  background-color: #F5F5F5;
  font-weight: bold;
  color: #222222;
}

/* ☆マークをオレンジに */
.table_dei .star,
.note .star {
  color: #FF9500;
  font-weight: bold;
}

/* 注記 */
.table_container .note {
  position: relative; /* ← 絶対配置をやめて自然な位置に */
  display: block;
  margin-top: 8px; /* ← 表との距離を確保 */
  font-size: 0.9rem;
  color: #555555;
  text-align: right;
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ===== 推進体制セクション用 ===== */
.dei-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.dei-section h3 {
  text-align: left;
  color: #000;
  font-size: 1.3em;
  margin-bottom: 0.3em;
  border: none;
}

/* 見出し下のバー */
.dei-section .bar {
  width: 60px;
  height: 4px;
  background-color: #cecfd0; /* 青系ライン（サイトカラーに合わせて調整可） */
  margin-bottom: 15px;
}

/* h5（メンバー小見出し） */
.dei-section h5 {
  text-align: left;
  color: #000;
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* ワーキング・グループメンバー表 */
.table_member {
  width: 60%;
  margin: 10px auto 25px auto;  /* 中央寄せ、上下の余白 */
  border-collapse: collapse;
  border: none;
  text-align: left; /* 全体左寄せ */
  line-height: 1.4; /* 行間を少し詰める */
}

.table_member td {
  border: none;
  padding: 2px 0; /* 行間の詰め具合をここで微調整 */
  font-size: 0.95rem; /* h4より少し小さい文字 */
  color: #333;
}


.table-caption {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 4px auto; /* 表と同じ中央寄せ＋下に少し余白 */
  text-align: right;       /* 右寄せ */
  font-size: 0.9em;
  color: #555;
}


/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .table_dei {
    width: 100%;
    font-size: 0.85rem;
  }

  .table_dei th,
  .table_dei td {
    padding: 6px 8px;
  }

  .table_container {
    margin-bottom: 50px;
  }

  .table_container .note {
    font-size: 0.85rem;
    margin-top: 5px;
  }
}
