/* ================================================================
   MIYAMA LINK — page-about.css
   ================================================================ */

.ceo-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: center;
}
.ceo-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}
.ceo-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.ceo-body .ja-body { margin-top: 1.5rem; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.philosophy-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--primary);
}
.philosophy-card__label { display: block; margin-bottom: 1rem; }
.philosophy-card__title {
  font-family: var(--font-ja);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--primary);
}
.philosophy-values {
  list-style: none;
  padding: 0;
}
.philosophy-values li {
  font-family: var(--font-ja);
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  line-height: 1.6;
}
.philosophy-values li::before { content: '・'; color: var(--accent); }

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.staff-card__photo {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream-dark);
  margin-bottom: 1rem;
}
.staff-card__name {
  font-family: var(--font-ja);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0.25rem;
}
.staff-card__role { display: block; text-align: center; }

.company-table {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
}
.company-table th,
.company-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  font-family: var(--font-ja);
  font-size: 0.9rem;
  text-align: left;
  vertical-align: top;
}
.company-table th {
  width: 160px;
  color: var(--text-light);
  font-weight: 300;
  white-space: nowrap;
}
.company-table td { color: var(--text-mid); }

@media (max-width: 1023px) {
  .ceo-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ceo-photo { max-width: 280px; aspect-ratio: 1; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .company-table th { width: 100px; }
}
