/*
 * About Page Specific Styles
 * 会社案内ページ固有のスタイル
 */

/* ==========================================================================
   会社についてセクション (About Us)
   ========================================================================== */
.about-section {
  padding: 80px 0;
  /* 上下のパディング調整 */
  max-width: 1650px;
  margin: 0 auto;
}

/* .section-header, .section-title, .section-subtitle のスタイルは common.css に移動しました */

.about-content {
  display: flex;
  align-items: flex-start;
  /* 上揃え */
  gap: 40px;
  /* 画像とテキストの間隔 */
  margin: 0 auto;
  /* 中央揃え */
  padding: 0 20px;
  /* 左右のパディング */
}

.about-image {
  display: block;
  /* 余計な隙間を防ぐ */
  width: clamp(21.875rem, 14.663rem + 32.05vw, 53.125rem);
  height: auto;
  object-fit: cover;
  /* アスペクト比を保ちつつカバー */
  border-radius: 20px;
  /* Figmaに合わせた角丸 */
}

.company-description {
  flex: 1;
  /* 残りの幅をテキストエリアが取る */
  margin-top: auto;
}

.company-description p {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.786rem + 0.95vw, 1.5rem);
  /* Figmaのサイズ */
  line-height: 1.2;
  /* Figmaの行間 */
  letter-spacing: 0.05em;
  /* Figmaの字間 */
  color: #000000;
  /* Figmaの色 */
  margin: 0;
  /* デフォルトマージンリセット */
}

/* ==========================================================================
   会社概要セクション (Company)
   ========================================================================== */
.company-table-wrapper {
  max-width: 900px;
  /* テーブルの最大幅 (Figma参考、調整可) */
  margin: 0 auto 80px;
  /* 中央揃えと下のマージン */
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  /* ボーダーを重ねる */
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 0.786rem + 0.95vw, 1.5rem);
  /* Figmaフォントサイズ */
  font-weight: 400;
  /* Figmaフォントウェイト */
  color: #333333;
  /* Figmaカラー */
}

.company-table th,
.company-table td {
  text-align: left;
  padding: 24px 0;
  /* 上下のパディング (Figma参考) */
  border-bottom: 1px solid #D9D9D9;
  /* Figmaの線 */
  vertical-align: top;
  /* 上揃え */
  line-height: 1.4;
  /* 行間調整 */
}

.company-table th {
  width: 200px;
  /* ラベルの幅を固定 (調整可) */
  font-weight: 400;
  /* Figmaに合わせて太字にしない */
  padding-right: 40px;
  /* ラベルと値の間のスペース */
}

.company-table td ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-table td ul li {
  margin-bottom: 8px;
  /* リスト項目の間隔 */
}

.access-map {
  text-align: center;
}

/* ==========================================================================
   沿革セクション (History)
   ========================================================================== */
.timeline {
  max-width: 900px;
  /* 沿革セクションの最大幅 (会社概要に合わせる) */
  margin: 0 auto 80px;
  /* 中央揃えと下のマージン */
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  /* 上揃え */
  gap: 32px;
  /* 年代と内容の間隔 */
  padding: 24px 0;
  /* 上下のパディング */
  border-bottom: 1px solid #D9D9D9;
  /* 区切り線 */
}

.timeline-date {
  flex: 0 0 180px;
  /* 年代表示の幅を固定 (調整可) */
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  /* Figmaフォントサイズ */
  font-weight: 400;
  /* Figmaフォントウェイト */
  color: #333333;
  /* Figmaカラー */
  line-height: 1.6;
  /* 行間調整 */
}

.timeline-content {
  flex: 1;
  /* 残りの幅を取る */
}

.timeline-content p {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  /* Figmaフォントサイズ */
  font-weight: 400;
  /* Figmaフォントウェイト */
  color: #333333;
  /* Figmaカラー */
  line-height: 1.6;
  /* 行間調整 */
  margin: 0;
}

/* ==========================================================================
   アクセスセクション (Access)
   ========================================================================== */
/* .access-info, .access-text, .access-map など、必要ならスタイルを追加 */