/* ==========================================================================
   Page About - 会社紹介ページ
   ========================================================================== */

/* セクション共通 */
.page-about__section {
  border-bottom: 1px solid #E3E3E3;
}

.page-about__section--last {
  border-bottom: none;
}

/* 2カラムレイアウト: 左ラベル + 右コンテンツ */
.page-about__row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
  display: flex;
  gap: 60px;
}

.page-about__label {
  width: 200px;
  min-width: 200px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #313131;
  line-height: 1.5;
}

.page-about__content {
  flex: 1;
  min-width: 0;
}

/* 企業理念セクション */
.page-about__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 33px;
  font-weight: 700;
  color: #313131;
  line-height: 1.5;
  margin: 0 0 32px 0;
}

.page-about__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #313131;
  line-height: 2.0;
  margin: 0 0 16px 0;
}

.page-about__text:last-of-type {
  margin-bottom: 40px;
}



/* 会社概要テーブル */
.page-about__table {
  width: 100%;
  border-collapse: collapse;
}

.page-about__table th,
.page-about__table td {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #313131;
  line-height: 1.8;
  padding: 16px 0;
  border-bottom: 1px solid #E3E3E3;
  text-align: left;
  vertical-align: top;
}

.page-about__table th {
  width: 282px;
  font-weight: 700;
}

.page-about__table td {
  font-weight: 400;
}

.page-about__table tr:last-child th,
.page-about__table tr:last-child td {
  border-bottom: none;
}

/* 代表紹介セクション */
.page-about__ceo {
  display: flex;
  gap: 40px;
}

.page-about__ceo-photo {
  width: 334px;
  min-width: 334px;
  height: 277px;
  overflow: hidden;
  border-radius: 4px;
}

.page-about__ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about__ceo-info {
  flex: 1;
  min-width: 0;
}

.page-about__ceo-name-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.page-about__ceo-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #313131;
}

.page-about__ceo-role {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #313131;
}

.page-about__ceo-sns {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.page-about__ceo-sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.page-about__ceo-sns-link:hover {
  opacity: 0.7;
}

.page-about__ceo-bio {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #313131;
  line-height: 1.8;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .page-about__row {
    padding: 60px 40px;
    flex-direction: column;
    gap: 24px;
  }

  .page-about__label {
    width: auto;
    min-width: auto;
  }

  .page-about__heading {
    font-size: 26px;
  }

  .page-about__table th {
    width: 140px;
  }

  .page-about__ceo {
    flex-direction: column;
  }

  .page-about__ceo-photo {
    width: 100%;
    min-width: auto;
    max-width: 100%;
    height: auto;
    aspect-ratio: 334 / 277;
  }
}

@media (max-width: 600px) {
  .page-about__row {
    padding: 40px 20px;
  }

  .page-about__heading {
    font-size: 22px;
  }

  .page-about__text {
    font-size: 13px;
  }
}

/* sp-br: モバイルのみ表示する改行 */
.sp-br {
  display: none;
}
@media (max-width: 600px) {
  .sp-br {
    display: block;
  }
}
