.steel-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  font-size: 0.95em;
  color: #000; /* 全体文字色を黒に */
}

.steel-table th,
.steel-table td {
  border: 1px solid #000; /* 黒罫線に統一 */
  padding: 8px 12px;
  text-align: center;
}

.steel-table thead th {
  background-color: #c9d2e3; /* ヘッダーの薄いブルー背景 */
  font-weight: bold;
}

.steel-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  font-size: 0.95em;
  color: #000;
  table-layout: fixed;  /* ★ 追加ポイント！ */
}



.section-heading {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 1em 0;
}


.note {
  background-color: #c9d2e3;
  padding: 0.3em 0.6em;
  border-radius: 8px;
  font-size: 1.1em; /* ← ここを調整 */
  color: #000;
}


.note-right {
  text-align: right;
  font-size: 1.1em;         /* 前回1.35em → 80%に = 約1.1em */
  margin-top: -1.2em;       /* 表との距離はそのまま */
  margin-right: 0.5em;
  color: #000;              /* 黒ベタに修正 */
}



.note-box {
  background-color: #c9d2e3;
  padding: 0.8em 1.2em;
  border-radius: 10px;
  font-size: 1.5em; /* ← ここを大きくしました */
  color: #000;
  width: fit-content;
  margin: 1.5em auto 0;
  text-align: left;
  line-height: 1.5;
}


ul {
  padding-left: 1.2em;
  margin: 1em 0;
  line-height: 1.6;
}

ul li {
  list-style-type: disc; /* 必要なら 'none' で黒丸を消せる */
}



.heading-block {
  background-color: #13284c; /* お好きな色に変更可能 */
  color: #fff;
  font-size: 1.8em;
  padding: 0.6em 1em;
  border-radius: 0px;
  margin: 1.5em 0;
  text-align: center;
  font-weight: bold;
}




.case-box {
  background-color: #fff;
  padding: 1.5em;
  margin-bottom: 2em;
  color: #000;
}

.case-header-bar {
  background-color: #13284c;
  color: white;
  padding: 0.4em 1.2em;
  font-weight: bold;
  display: inline-block;
  font-size: 1.1em;
  margin-bottom: 0.8em;
}

.case-box p {
  margin: 0.4em 0;
}

.case-others-list {
  margin-top: 0.8em;
  padding-left: 2em;
}

.case-others-list li {
  margin-bottom: 0.6em;
  color: #000;
  font-size: 1.2em;  /* ← 追加！お好みで調整（例：1.2em や 18px など） */
}



.feature-summary {
  background-color: #c9d2e3; /* 薄いネイビーグレー */
  padding: 2.5em 1em;
  text-align: center;
  margin-top: 3em;
}

.feature-summary .main-message {
  font-weight: bold;
  font-size: 2em; /* 前より少し大きく */
  margin-bottom: 1.2em;
  color: #000;
}

.feature-summary .sub-message {
  font-size: 1.1em; /* 少し大きく */
  color: #333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* PCで改行を入れたい場合 */
.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: inline;
  }
}




.steel-profile {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2em;
}

.steel-profile .company-name {
  font-weight: bold;
  margin-bottom: 0.5em;
}

.steel-profile ul {
  padding-left: 2em;
  margin-bottom: 1.5em;
}

.steel-profile li {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 0.5em;
  padding-left: 0.5em;
}

.steel-profile .highlight {
  color: red;
  font-weight: bold;
  margin-top: 1em;
}
