/* ===========================
   セラピスト紹介セクション
=========================== */
.therapist {
  background: #ffffff; /* ← 背景色を白に変更 */
  padding: 60px 20px;
}

.therapist-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.therapist-heading-box {
  text-align: center;
  margin-bottom: 40px;
}

.therapist-heading {
  font-size: 1.8rem;
  color: #a45c6d;
  margin-bottom: 10px;
}

.therapist-lead {
  font-size: 1.1rem;
  font-weight: bold;
  color: #444;
}

.therapist-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.therapist-img {
  flex: 1 1 300px;
  text-align: center;
}

.therapist-img img {
  width: 100%;
  max-width: 280px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.therapist-profile {
  flex: 1 1 500px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

.therapist-profile p {
  margin-bottom: 18px;
}

.therapist-quote {
  margin-top: 20px;
  padding: 16px 20px;
  background: #fff8f8;
  border-left: 4px solid #f8b3c1;
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
  border-radius: 6px;
}

/* ===========================
   セラピスト紹介：レスポンシブ対応
=========================== */
@media (max-width: 768px) {
  .therapist-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .therapist-img,
  .therapist-profile {
    flex: 1 1 100%;
  }

  .therapist-img img {
    max-width: 200px;
  }

  .therapist-heading {
    font-size: 1.5rem;
  }

  .therapist-lead {
    font-size: 1rem;
  }

  .therapist-profile {
    font-size: 0.9rem;
  }
}
