/* company-profile.css — Section shell: .c-company-profile（テーブルは confirm-table.css） */

:root {
  --company-profile-section-padding-bottom-sp: calc(
    var(--space-5xl) + var(--space-sm)
  );
  --company-profile-content-max-width: 800px;
}

.c-company-profile {
  padding-top: var(--space-lg);
  padding-bottom: var(--company-profile-section-padding-bottom-sp);
  background-color: var(--color-white);
}

.c-company-profile__header {
  margin-bottom: var(--space-2xl);
}

.c-company-profile__content {
  width: 100%;
  max-width: var(--company-profile-content-max-width);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .c-company-profile {
    padding-top: var(--space-5xl);
    padding-bottom: var(--space-6xl);
  }
}
