
.staff-card {
  display: flex;
  flex-direction: row;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 40px;
}

/* 画像を左にする場合 */
.staff-card.reverse {
  flex-direction: row-reverse;
}

/* 左：情報セクション */
.staff-info-section {
  display: flex;
  flex: 1.5;
  padding: 30px;
  gap: 20px;
  align-items: flex-start;
}

/* プロフィール画像 */
.staff-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* テキスト情報 */
.staff-info {
  flex: 1;
}

.staff-comment{
	font-weight: 700;
	color: #0057b8;
}
.staff-name {
  font-size: 1.8rem;
  margin: 0;
  color: #333;
  font-weight: bold;
}

.staff-role {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.staff-comment {
  margin-bottom: 12px;
}

.staff-buttons {
  margin: 15px 0 10px;
}

.reserve-btn {
  background-color: #ff6600;
  color: white;
  padding: 8px 20px;
  border: none;
  margin-right: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.profile-btn {
  background-color: white;
  color: #ff6600;
  padding: 8px 20px;
  border: 2px solid #ff6600;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

/* 右：背景画像セクション */
.staff-bg-section {
  flex: 1.5;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*filter: grayscale(100%);*/
}

/* オーバーレイ効果 */
.bg-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 30px;
  border-radius: 12px;
  backdrop-filter: blur(3px);
}

.bg-text {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .staff-card,
  .staff-card.reverse {
    flex-direction: column;
  }

  .staff-bg-section {
    order: -1;
    width: 100%;
  }

  .staff-info-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .staff-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .reserve-btn, .profile-btn {
    width: 100%;
  }
}
