/* Company Section */
.company {
  padding: 40px;
  background-color: var(--color-background);
}

.company-inner {
  max-width: 840px;
  margin: 0 auto;
}

.company-head {
  text-align: center;
  margin-bottom: 60px;
}

.company-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.company-heading {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.company-content {
  display: grid;
  grid-template-columns: 140px 1fr;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--color-border);
}

.company-content dt,
.company-content dd {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.company-content dt {
  padding-right: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.company-content dd {
  color: var(--color-muted);
}

.company-history li {
  display: flex;
  gap: 16px;
}

.company-history li:not(:last-child) {
  margin-bottom: 8px;
}

.company-history-year {
  flex-shrink: 0;
  width: 70px;
  color: var(--color-accent);
  font-weight: 500;
}

.company-business li {
  padding-left: 1em;
  text-indent: -1em;
}

.company-business li::before {
  content: "・";
}

.company-business li:not(:last-child) {
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .company {
    padding: 80px 20px;
  }

  .company-head {
    margin-bottom: 40px;
  }

  .company-content {
    grid-template-columns: 1fr;
  }

  .company-content dt {
    padding-bottom: 8px;
    border-bottom: none;
  }

  .company-content dd {
    padding-top: 0;
  }
}
