/**
 * 運営会社ページ用スタイル
 * パンくず・PageTitle は common.css で共通管理。
 * 本文レイアウト（.LayoutSection, .PageTable）のみここで定義。
 */
.LayoutSection {
  padding: 12px;
}

.LayoutMain > .LayoutInner.LayoutSection + .LayoutInner.LayoutSection {
  padding-top: 16px;
}

/* 実験用：ページタイトルをプライマリカラーに */
.PageTitle {
  color: var(--primary-color);
}

.PageTable {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-collapse: collapse;
}

.PageTable th,
.PageTable td {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 12px;
  vertical-align: top;
  background-color: var(--white);
}

.PageTable th {
  background-color: var(--bg-soft);
  font-weight: var(--font-weight-bold);
  color: var(--text-main);
  white-space: nowrap;
}

/* 項目名は折り返しなし／内容側のみ折り返し可 */
.PageTable td:first-child {
  white-space: nowrap;
  width: 1%;
}

.PageTable td:last-child {
  width: auto;
  word-break: break-word;
}
