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

/* --- テーブル --- */
.company-table-wrap {
  overflow-x: auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

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

.company-table th {
  width: 200px;
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-gray);
  white-space: nowrap;
}

.company-table td {
  color: var(--color-text);
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

/* --- 会社の特徴 --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
}

.about-card__num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* --- アクセス --- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.access-location h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.access-location p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 4px;
}

.access-location__tel a {
  color: var(--color-accent);
  font-weight: 600;
}

.access-location__tel a:hover {
  text-decoration: underline;
}

/* --- レスポンシブ --- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .company-table th {
    width: 120px;
  }

  .company-table th,
  .company-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}
