/* =============================================
   SP base（〜767px）
   ============================================= */

.about-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16vh 6vw 6vh;
}

.about-hero h1 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 6vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--warm-black);
}

.about-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 6vw 14vh;
}

/* 会社概要テーブル */
.about-section {
  margin-bottom: 56px;
}

.about-section-label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-gray);
}

.about-table {
  width: 100%;
  border-collapse: collapse;
}

.about-table tr {
  border-bottom: 1px solid var(--light-gray);
}

.about-table th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: left;
  padding: 14px 0;
  width: 36%;
  vertical-align: top;
}

.about-table td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-black);
  letter-spacing: 0.02em;
  line-height: 1.9;
  padding: 14px 0;
}

/* 代表プロフィール */
.about-profile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-profile-img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--light-gray);
}

.about-profile-img.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.about-profile-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--warm-black);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.about-profile-name {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--warm-black);
  margin-bottom: 4px;
}

.about-profile-role {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 20px;
}

.about-profile-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--warm-black);
  letter-spacing: 0.02em;
}

/* =============================================
   PC / Tablet: min-width: 1024px 以上
   ============================================= */
@media (min-width: 1024px) {
  .about-hero {
    min-height: 50vh;
    padding: 20vh 6vw 8vh;
  }

  .about-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
  }

  .about-body {
    max-width: 960px;
    padding: 0 6vw 20vh;
  }

  .about-section {
    margin-bottom: 72px;
  }

  .about-table th {
    font-size: 13px;
  }

  .about-table td {
    font-size: 14px;
  }

  .about-profile {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }

  .about-profile-img {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: 3/4;
    object-position: center center;
  }

  .about-profile-name {
    font-size: 20px;
  }

  .about-profile-text {
    font-size: 14px;
  }
}
