/* ================================
   メンバー紹介ページ
   ================================ */
.content-section {
  margin-top: 16px;
}
.section-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
}

/* 2列レイアウト */
.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ← ここを2列固定に */
  gap: 30px 30px;
  justify-items: center;
  margin-bottom: 16px;
}

/* 各メンバーのカード */
.member-card {
  display: flex;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  padding: 10px 15px;
  position: relative;
  box-shadow: 6px 6px 0 #a68a6b;
  border: 2px solid #a68a6b;
  max-width: 550px;
}
/* メンバー画像 */
.member-image {
  flex-shrink: 0;
  margin-right: 20px;
}

.member-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #a68a6b;
}

/* メンバー情報 */
.member-info {
  text-align: left;
}

.member-role {
  font-size: 0.9rem;
  color: #555;
  font-family: "Zen Kaku Gothic New";
}

.member-name {
  font-size: 1.2rem;
  color: #333;
  font-family: "Zen Kaku Gothic New";
}

.member-message {
  font-size: 0.8rem;
  color: #666;
  font-family: "Zen Kaku Gothic New";
  padding-top: 6px;
}

/* ================================
   レスポンシブ（スマホ）
   ================================ */
@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 20px;
  }
  .member-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .member-card {
    border-radius: 40px;
    padding: 25px;
    gap: 16px;
  }

  .member-image {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .member-name {
    font-size: 1.2rem;
  }
}
