@charset "UTF-8";
.about.overview {
  /* 全スタッフ共通グリッド */
}
.about.overview .staff-grid {
  display: grid;
  gap: 40px;
  margin: 0 auto;
}
.about.overview .staff-card {
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.about.overview .staff-cardIn {
  border: 1px #e8dfd5 solid;
  border-radius: 12px;
  padding: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: stretch;
}
.about.overview .staff-photo {
  width: 280px;
}
.about.overview .staff-photo img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.about.overview .staff-content {
  padding: 40px 40px 40px 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about.overview .staff-position {
  display: inline-flex;
  width: auto;
  width: fit-content;
  background-color: #e8dfd5;
  color: #5a4a3a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.about.overview .staff-name {
  font-size: 1.4rem;
  color: #5a4a3a;
  font-weight: 600;
  margin-bottom: 16px;
}
.about.overview .staff-name span {
  font-size: 1rem;
}
.about.overview .staff-catchphrase {
  font-size: 1.4rem;
  color: #dc7120;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 16px;
  line-height: 1.6;
}
.about.overview .staff-comment {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #4a4a4a;
}
