@charset "UTF-8";
/* ==========================================
   人を知る ページ固有スタイル
   ========================================== */
/* セクション間の余白 */
.know-people-section {
  margin-bottom: 60px;
}
.know-people-section:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .know-people-section {
    margin-bottom: 40px;
  }
}

/* 社員カード */
.staff-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  padding: 30px;
  gap: 20px;
}
.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.staff-card__number {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #E97F4B;
}
.staff-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 16px;
}
.staff-card__role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #E97F4B;
  border: 1px solid #E97F4B;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.staff-card__role::before {
  content: "✦";
  font-size: 10px;
}
.staff-card__catchcopy {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  margin: 0 0 12px;
}
@media (max-width: 480px) {
  .staff-card__catchcopy {
    font-size: 17px;
  }
}
.staff-card__year {
  font-size: 13px;
  color: #E97F4B;
  margin: 0;
}
.staff-card__photo {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  align-self: center;
}
.staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 480px) {
  .staff-card__photo {
    width: 120px;
    height: 120px;
  }
}
.staff-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ebe3;
  color: #bbb;
  font-size: 13px;
}
@media (max-width: 480px) {
  .staff-card {
    padding: 20px;
    gap: 16px;
  }
}

/*# sourceMappingURL=know-people.css.map */
