/* ==========================================================================
   Business overview — 業務概要
   長文は読み幅を絞り、見出しは罫線で区切る。囲みカードは使わない。
   ========================================================================== */

.page-header {
  max-width: var(--reading-max-width);
  padding-top: var(--space-76);
  padding-bottom: var(--space-32);
  margin-bottom: var(--space-76);
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 5.4vw, var(--text-heading));
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--text);
}

.page-description {
  font-family: var(--font-serif);
  font-size: var(--text-body);
  line-height: var(--leading-jp);
  color: var(--text-muted);
  margin-top: var(--space-24);
}

.philosophy-section {
  margin-bottom: var(--space-100);
}

.philosophy-card {
  width: 100%;
  max-width: var(--reading-max-width);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: var(--radius-flat);
  text-align: left;
}

.section-title {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: var(--space-16);
  margin-bottom: var(--space-48);
  border-bottom: 1px solid var(--border);
}

/* 導入の一文はセリフで大きく。ここが誌面の「リード」になる */
.philosophy-main {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: var(--space-48);
}

.philosophy-details {
  font-family: var(--font-serif);
  font-size: var(--text-body);
  line-height: var(--leading-jp);
  color: var(--text);
  display: flex;
  flex-direction: column;
}

/* 冒頭の一文は誌面のリード。ここだけ大きく、地の文より強く出す */
.philosophy-details > .intro-text {
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 var(--space-48);
  padding-bottom: var(--space-48);
  border-bottom: 1px solid var(--border);
}

.philosophy-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-bottom: var(--space-76);
}

.philosophy-group:last-child {
  margin-bottom: 0;
}

.philosophy-sub-title {
  font-family: var(--font-sans);
  font-size: var(--text-subheading);
  font-weight: 600;
  letter-spacing: var(--tracking-subheading);
  color: var(--text);
  margin-bottom: var(--space-16);
}

.philosophy-details p {
  margin: 0;
  color: var(--text);
}

/* --- ミッション / ビジョン --- */

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-32);
  margin-bottom: var(--space-100);
}

.mission-card,
.vision-card {
  padding: var(--space-32);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-align: left;
}

.mission-card h3,
.vision-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-subheading);
  font-weight: 600;
  letter-spacing: var(--tracking-subheading);
  color: var(--text);
  margin-bottom: var(--space-16);
}

.mission-card p,
.vision-card p {
  font-family: var(--font-serif);
  font-size: var(--text-body-sm);
  line-height: var(--leading-jp);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .page-header {
    padding-top: var(--space-48);
    margin-bottom: var(--space-48);
  }

  .philosophy-group {
    margin-bottom: var(--space-48);
  }
}
