/* =============================
   therapist.css　セラピスト紹介ページ専用スタイル
============================= */

/* 本文エリア */
.therapist-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5% 80px;
}

/* プロフィールセクション：写真＋テキスト横並び */
.profile-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(131,204,210,0.25);
}

/* 写真エリア */
.profile-img-wrap {
  position: relative;
}

.profile-img-wrap img:first-child {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.profile-bear {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  opacity: 0.85;
}

/* テキストエリア */
.profile-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--main);
  margin-bottom: 0.6rem;
}

.profile-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

.profile-name-en {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-sub);
  margin-bottom: 2rem;
}

.profile-body {
  font-size: 14px;
  line-height: 2.3;
  color: var(--text-sub);
  margin-bottom: 1.2rem;
}

/* 略歴セクション */
.history-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(131,204,210,0.25);
}

/* CTAセクション */
.cta-section {
  text-align: center;
}

.cta-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 2rem;
}

/* スマホ対応 */
@media (max-width: 640px) {
  .profile-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-img-wrap img:first-child {
    aspect-ratio: 1 / 1;
  }

  .profile-bear {
    width: 70px;
    bottom: -15px;
    left: -10px;
  }
}
