/* About ページ (pages/abput.html) 専用スタイル */

.content-section--about {
  padding: 2.5rem 0 4rem;
  background: linear-gradient(180deg, #e8954a 0%, #f0c96a 38%, #f5e8a8 100%);
}

.content-section--about .content-section__inner {
  box-sizing: border-box;
  max-width: 900px;
  margin: 0 auto;
  padding-left: clamp(1.5rem, 6vw, 3.5rem);
  padding-right: clamp(1.5rem, 6vw, 3.5rem);
}

/* プロフィールカード */
.profile-card {
  margin-bottom: 2rem;
  padding: 1.75rem 2rem 2rem;
  background: #fdf8e8;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.profile-card__header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d4c4a0;
}

.profile-card__name-en {
  margin: 0 0 0.375rem;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #e07a30;
}

.profile-card__name-ja {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #222;
}

.profile-card__name-ja strong {
  font-weight: 700;
}

.profile-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: start;
}

.profile-card__text {
  min-width: 0;
}

.profile-card__text p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #333;
  text-align: justify;
}

.profile-card__photo {
  flex-shrink: 0;
  margin: 0;
}

.profile-card__photo img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}

/* お知らせ */
.about-notice {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: #fdf8e8;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.about-notice__label {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.75rem;
  background: #e8954a;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 2px;
}

.about-notice__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #333;
}

/* 定款・住所など */
.about-info {
  padding: 1.5rem;
  background: rgba(253, 248, 232, 0.92);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-info .simple-table {
  margin-bottom: 1.25rem;
}

.about-info .simple-table:last-child {
  margin-bottom: 0;
}

.about-info .simple-table th {
  background: #f0e6c8;
  color: #5a4a30;
}

.about-info .simple-table td {
  background: #fffef8;
}

@media (max-width: 768px) {
  .content-section--about {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .profile-card {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .profile-card__body {
    grid-template-columns: 1fr;
  }

  .profile-card__photo {
    justify-self: center;
  }

  .profile-card__photo img {
    width: 180px;
  }

  .profile-card__text p {
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.85;
  }

  .about-notice {
    padding: 1rem 1.125rem;
  }

  .about-notice__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }

  .about-info {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .profile-card__name-en {
    font-size: 1.5rem;
  }

  .profile-card__name-ja {
    font-size: 0.8125rem;
  }
}
