/* ===== staffセクション全体 ===== */
.staff {
  background: linear-gradient(
    to top,
    #FFF1E5 0%,
    #FFF1E5 30%,
    rgba(255, 241, 229, 0) 100%
  );
  padding: 60px 0;
}

/* 内側コンテナ */
.staff-inner {
  max-width: 1040px;
  margin: 0 auto;
  box-sizing: border-box;
}
.staff-contents {
  max-width: 755px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.staff-contents.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-card {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: center;
}

/* Staff photo */
.staff-photo img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Staff info */
.staff-info {
  flex: 1;
}

.staff-name {
  font-family: "Yu Mincho", "游明朝", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.78rem;
  color: var(--color-brown, #632600);
  margin: 0 0 8px 0;
}
.staff-cert {
  list-style: none;
  padding: 0;
  margin: 0 0 0 20px;
}

.staff-cert li {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.staff-cert li p {
  font-weight: 400; 
  margin: 4px 0 0 20px;
  font-size: 0.95rem;
}

/* ===== SP調整（768px以下） ===== */
@media (max-width: 768px) {
    .staff {
        padding: 20px 0; 
    }
  .staff-inner {
    max-width: 100%;
    padding: 0 10px;
  }
  .staff-name {
    text-align: center;
  }
    .staff-contents,
  .staff-card {
    flex-direction: column;
  }

  .staff-photo img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }

  .staff-info {
    flex: none;
  }
}
