.p-profile__partner {
  margin-top: 8.25rem;
}

/* 会社情報セクション全体のコンテナ */
.p-profile__company-body {
  position: relative;
  max-width: 700px;
  /* デザインに合わせて調整 */
  margin: 0px auto 0;
  padding: 0 20px;
}

/* テーブルの基本設定 */
.p-profile__company-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
}

/* 各行のスタイル */
.p-profile__company-table tr {
  /* 下線のみで区切る */
}

/* 見出し (TH) のスタイル */
.p-profile__company-table th {
  width: 30%;
  /* 左側の幅 */
  text-align: left;
  padding: 24px 0;
font-size: 0.875rem;
  letter-spacing: 0.05em;
  vertical-align: top;
}

/* 内容 (TD) のスタイル */
.p-profile__company-table td {
  padding: 24px 0 24px 20px;
  line-height: 1.8;
  font-size: 0.875rem;
  vertical-align: top;
}

/* レスポンシブ対応（スマホ表示） */
@media (max-width: 767px) {

  .p-profile__company-table th,
  .p-profile__company-table td {
    display: block;
    /* 縦並びにする */
    width: 100%;
    padding: 10px 0;
  }

  .p-profile__company-table th {
    padding-top: 20px;
    padding-bottom: 0;
    color: #888;
    /* スマホでは見出しを少し薄く */
  }

  .p-profile__company-table td {
    padding-left: 0;
    padding-bottom: 20px;
  }
}

/* 会社情報セクション全体の背景と文字色のリセット */
.p-profile__company-body {
  background-color: #fff !important;
  /* 背景を白に固定 */
  max-width: 700px;
  margin: 40px auto 120px;
  padding: 0;
}

/* テーブルが表示されない問題の解決 */
.p-profile__company-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  display: table !important;
  /* 万が一消えている場合のため */
}

/* 各行の境界線 */
.p-profile__company-table tr {
}

/* 見出し (TH) の文字色を黒に固定 */
.p-profile__company-table th {
  width: 25%;
    position: relative;
    padding: 7px 40px 7px 0;
    margin: 1px 0;
    text-align: left;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #000;
}
.p-profile__company-table th::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #D0D0D0;
}

/* 内容 (TD) の文字色を黒に固定 */
.p-profile__company-table td {
  padding: 7px 0 7px 110px;
  vertical-align: top;
  line-height: 1.8;
  /* 確実に黒色で表示 */
  color: #6f6f6f;
}

/* スマホ表示の調整 */
@media (max-width: 767px) {
  .p-profile__company-body {
    padding: 0 20px;
    margin-bottom: 0;
  }

  .p-profile__company-table th,
  .p-profile__company-table td {
    display: block;
    width: 100%;
  }

  .p-profile__company-table th {
  
    font-weight: bold;
    color: #000000;
  }

    .p-profile__company-table th::after {
      background-color: inherit;
    }

  .p-profile__company-table td {
    padding: 0 0 10px 0;
    box-shadow: inherit;
  }
    .p-profile__partner {
      margin-top: 5.25rem;
    }
}