#staff01 {
  background: url(../../img/skill/bg01.jpg) top center no-repeat;
  background-size: 200%;
  background-color: #fefefe;
  padding-top: 100px;
  padding-bottom: 80px;
}
#staff01 .inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 600px) {
  #staff01 {
    padding-top: 240px;
    background-size: 100% auto;
  }
}
.staff-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.staff-item {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.staff-item:hover {
  transform: translateY(-5px);
}
.staff-item .staff-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid var(--primary-color-light);
}
.staff-item .staff-img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.staff-item .staff-img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-item .staff-info {
  text-align: center;
  width: 100%;
}
.staff-item .staff-info .initial {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color-dark);
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
}
.staff-item .staff-info .message {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  text-align: left;
  width: 100%;
  background-color: var(--secondary-color-light);
  padding: 15px;
  border-radius: 10px;
  position: relative;
}
.staff-item .staff-info .message::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--secondary-color-light);
}

@media screen and (max-width: 599px) {
  #staff01 {
    padding-top: 60px;
  }
  .staff-list {
    gap: 30px;
  }
}
