/* =============================================================================
   マンション概要ページ（page-about）
   Figma: node-id=60:2053（PC）、node-id=60:2086（SP）
   ============================================================================= */

.page-content--about {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
}

/* マンション概要テーブルラッパー（Figma: w-[1000px]） */
.about-overview-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
}

/* 主要工事履歴テーブルラッパー（Figma: w-full） */
.about-history-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* =============================================================================
   セクション
   ============================================================================= */

.about-section {
  display: flex;
  flex-direction: column;
  gap: var(--margin-24);
}

