/* ==========================================
   共通ページ（会社概要・利用規約・プライバシーポリシー）
========================================== */

body {
  background-color: #ffffff;
}

/* 固定ヘッダー分の余白 */
.page-main {
  padding-top: 120px;
  padding-bottom: 140px;
  min-height: calc(100vh - 300px);
}

/* 会社概要のみ少し狭く */
.company-main {
  padding-top: 100px;
}

/* コンテンツ幅 */
.page-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 40px 0;
}

/* ページタイトル */




/* セクション */
.page-section {
  margin-bottom: 60px;
}

/* セクション見出し */
.page-section-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0d8d8;
  color: #1a0f0f;
}

/* 本文 */
.page-text {
  font-size: 0.92rem;
  color: #4a3e3e;
  line-height: 1.95;
  margin: 0;
}

page-text-mg
{
  margin: 0;
  margin-top: 20px;
   font-size: 0.92rem;
  color: #4a3e3e;
  line-height: 1.95;



}
.page-text + .page-text {
  margin-top: 18px;
}


page-text-mgb{

font-weight:700; 
margin-bottom:12px;


}

/* 番号付きリスト */
.page-ol {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  counter-reset: page-counter;
}

.page-ol li {
  position: relative;
  padding-left: 1.8em;
  font-size: 0.92rem;
  color: #4a3e3e;
  line-height: 1.95;
  counter-increment: page-counter;
}

.page-ol li::before {
  content: counter(page-counter) ".";
  position: absolute;
  left: 0;
}

/* ==========================================
   会社概要テーブル
========================================== */

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid #e8e0e0;
}

.company-table tr:first-child {
  border-top: 1px solid #e8e0e0;
}

.company-table th,
.company-table td {
  padding: 22px 16px;
  text-align: left;
  vertical-align: top;
  font-family: var(--font-serif);
  font-weight: 400;
}

.company-table th {
  width: 160px;
  min-width: 140px;
  font-size: 0.9rem;
  color: #1a0f0f;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.company-table td {
  font-size: 0.9rem;
  color: #4a3e3e;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.company-table td a {
  color: #4a3e3e;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.company-table td a:hover {
  color: #1a0f0f;
}