/* ヒーロー（小サイズ） */
.hero.small {
  padding: 60px 20px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://source.unsplash.com/1600x900/?team,people') center/cover no-repeat;
}

/* メンバー紹介 */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.member-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.member-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.member-card h3 {
  margin: 10px 0 5px;
}

.member-card p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 10px;
}

.socials a {
  display: inline-block;
  margin: 0 6px;
  font-size: 0.9em;
  color: #00a86b;
  text-decoration: none;
  transition: color 0.3s;
}

.socials a:hover {
  color: #007a50;
}

    .cta {
      text-align: center;
      margin-top: 2rem;
    }
    .cta a {
      background: #0070f3;
      color: white;
      padding: 1rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2rem;
    }
    .cta a:hover {
      background: #0059c1;
    }
