/* =============================================
   会社概要ページ専用スタイル
============================================= */

/* リード文セクション上部余白 */
.about-section--bleed-right {
  padding-top: calc(var(--section-py) + 48px);
}

/* 会社概要独自の横の余白 */
.about-section--bleed-right {
  .about__text {
    padding-left: 100px;
  }
}
.container {
  padding: 0 100px;
}

/* =============================================
   会社概要テーブル
============================================= */
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.company-table th,
.company-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  text-align: left;
  line-height: 1.9;
}

.company-table th {
  width: 200px;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
}

.company-table a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* =============================================
   沿革
============================================= */
.history-list {
  border-top: 1px solid var(--color-border);
}

.history-list__item {
  display: flex;
  gap: 0px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--color-border);
}

.history-list__item dt {
  font-size: 0.875rem;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
  width: 200px;
  padding-top: 2px;
}

.history-list__item dd {
  font-size: 0.875rem;
  line-height: 1.9;
}
/* =============================================
   レスポンシブ
   タブレット: 800px - 1279px
   スマホ:     〜799px
============================================= */
@media (min-width: 800px) and (max-width: 1279px) {
  .about-section--bleed-right {
    .about__text {
      padding-left: 32px;
    }
  }
  .container {
    padding: 0 32px;
  }
}

/* =============================================
   レスポンシブ
   スマホ: 〜799px
============================================= */
@media (max-width: 799px) {
  .company-table th,
  .company-table td {
    padding: 10px 0px;
  }
  .company-table th,
  .history-list__item dt {
    width: 110px;
  }
  .history-list__item {
    gap: 0px;
    padding: 20px 0px;
  }
  .container {
    padding: 0 20px;
  }
}
