/*
  会社概要ページ(company.html)固有のスタイル。destyle→common→style の後に読み込む。
  ACCESS地図プレースホルダー(.map-placeholder)は style.css の汎用パーツをそのまま使用している。
*/

/* 会社情報テーブル:行が詰まった印象を解消するため、上下paddingとline-heightを広げる */
.info-table th,
.info-table td {
  padding: 16px 0;
  line-height: 1.8;
}

/*
  h2見出しにmargin-bottomが未設定だったため、直後の要素(.card, .map-embed)と
  詰まって見えていた。他ページでカードグリッド(.card-grid)に付与している
  margin-top: 32px と同じ余白量に揃える。
*/
h2 {
  margin-bottom: 32px;
}
