@charset "UTF-8";

/* ==========================================================================
   LIFE TENNIS - staff.css（スタッフ紹介ページ専用）
   ========================================================================== */

.staff-lead {
  text-align: center;
  font-size: 16px;
  line-height: 2.2;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   代表紹介
   -------------------------------------------------------------------------- */
.rep {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  padding: 48px 52px;
  border-radius: var(--radius-l);
  background: var(--white);
  box-shadow: var(--shadow);
}

.rep__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sky-pale);
}
.rep__media img { width: 100%; height: 100%; object-fit: cover; }

.rep__name {
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.rep__name span {
  font-family: var(--ff-en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--lime-deep);
  text-transform: uppercase;
}

.rep__role {
  margin-top: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-mute);
}

.rep__text {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 2.15;
  color: var(--ink-soft);
}

.rep__profile {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.rep__profile > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.rep__profile dt {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
}
.rep__profile dd { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   スタッフ一覧
   -------------------------------------------------------------------------- */
.members {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.member {
  padding: 32px 28px 34px;
  border-radius: var(--radius-l);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.member__photo {
  width: 132px; height: 132px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sky-pale);
  display: grid;
  place-items: center;
  color: var(--sky);
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__photo svg { width: 58px; height: 58px; }

.member__name {
  font-size: 20px;
  font-weight: 900;
}
.member__role {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-mute);
}
.member__text {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-soft);
  text-align: left;
}

/* 準備中の枠は控えめに見せる */
.member--empty {
  background: repeating-linear-gradient(
    -45deg,
    var(--sky-mist) 0 12px,
    #fff 12px 24px
  );
  box-shadow: none;
  border: 2px dashed var(--sky-pale);
}
.member--empty .member__name {
  font-family: var(--ff-en);
  font-size: 17px;
  letter-spacing: .1em;
  color: var(--ink-mute);
}
.member--empty .member__photo { background: #fff; color: var(--sky-pale); }

/* --------------------------------------------------------------------------
   レスポンシブ
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .rep { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 40px; padding: 40px 34px; }
  .members { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}

@media (max-width: 767px) {
  .staff-lead { text-align: left; font-size: 15px; }
  .rep { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; }
  .rep__media { max-width: 280px; margin-inline: auto; }
  .rep__text { margin-top: 16px; font-size: 15px; }
  .rep__profile > div { grid-template-columns: 1fr; gap: 2px; }
  .members { grid-template-columns: 1fr; gap: 16px; }
  .member { padding: 26px 22px 28px; }
  .member__photo { width: 108px; height: 108px; }
}
