/* =========================================
サテライトオフィス詳細 共通スコープ
========================================= */
.sdt {
  padding-bottom: 9rem;
}

.sdt .div_tag,
.sdt .note {
  max-width: var(--sdt-width, 92rem);
  margin-inline: auto;
  padding-inline: var(--sdt-pad, 2rem);
}

/* =========================================
ヒーローエリア
h2 + ロゴ画像
========================================= */
.sdt .heading h2 {
  font-size: clamp(1.8rem, 1.65rem + 0.4vw, 2rem);
  font-weight: 700;
  line-height: 1.47;
  margin: 6rem 0 5rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;

  /* CMS既定打ち消し */
  background: transparent;
  color: inherit;
  border: 0;
  padding: 0;
}

.sdt .image {
  text-align: center;
  margin-bottom: 6rem;
}

.sdt .image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* =========================================
企業情報テーブル
========================================= */
.sdt .sdt-info {
  padding-block: 0 6rem;
}

.sdt .sdt-info .table table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px dotted #000;
}

.sdt .sdt-info .table caption {
  display: none;
}

.sdt .sdt-info .table tr {
  border-bottom: 1px dotted #000;
}

.sdt .sdt-info .table th,
.sdt .sdt-info .table td {
  padding-block: 2rem;
  font-size: clamp(1.6rem, 1.45rem + 0.4vw, 1.8rem);
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: top;
}

.sdt .sdt-info .table th {
  width: 16.8rem;
  padding-right: 1rem;
  text-align: left;
  font-weight: 700;
}

.sdt .sdt-info .table td {
  font-weight: 500;
}

.sdt .sdt-info .table a {
  text-decoration: underline;
  word-break: break-all;
}

.sdt .sdt-info .table a:hover {
  text-decoration: none;
}

/* 外部リンク用のCMSアイコンが並ぶ場合 */
.sdt .sdt-info .table td img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4rem;
}

/* =========================================
記事エリア
========================================= */
/* h3 = 大見出し（企業紹介、今後の事業展開など） */
.sdt .heading h3 {
  font-size: clamp(2rem, 1.33rem + 1.33vw, 3.2rem);
  font-weight: 700;
  color: #29abe2;
  padding-left: 1.6rem;
  border-left: 1rem solid #29abe2;
  line-height: 1.4;
  margin: 5.6rem 0 2rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  background: transparent;
}

/* h4 = 小見出し（開設の経緯 など） */
.sdt .heading h4 {
  font-size: clamp(1.7rem, 1.55rem + 0.4vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  padding-block: 1.4rem;
  margin: 3.6rem 0 1.2rem;
  border-bottom: 1px solid #000;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
}

/* 本文 */
.sdt .sentence p {
  font-size: clamp(1.4rem, 1.27rem + 0.27vw, 1.6rem);
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 0 2.4rem;
}

/* 連続する本文の最後だけ余白調整 */
.sdt .sentence:last-child p:last-child {
  margin-bottom: 0;
}

/* =========================================
SP
========================================= */
@media (max-width: 767px) {
  .sdt {
    padding-bottom: 6rem;
  }

  .sdt .heading h2 {
    margin: 4rem 0 3.2rem;
  }

  .sdt .image {
    margin-bottom: 3rem;
  }

  .sdt .sdt-info {
    padding-bottom: 3rem;
  }

  .sdt .sdt-info .table th {
    width: 12rem;
  }

  .sdt .sdt-info .table td,
  .sdt .sdt-info .table th,
  .sdt .sentence p {
    font-size: 1.4rem;
  }

  .sdt .heading h3 {
    margin-top: 3rem;
  }

  .sdt .heading h4 {
    padding-block: 1rem;
  }
}