/* =========================================================
   about-shiojima — 講師プロフィール（塩島 武徳）
   scoped with .fps so its component names can't collide with
   other page-specific systems (.fpe / .fpt pattern)

   Publications / Track Record are kept text-first, close to the
   original page — no cards, chips or table styling.
   ========================================================= */

/* ---- profile: small portrait left / bio right ---- */
.fps .fp-prof {
  padding: clamp(72px, 10vw, 130px) 0;
}
.fps .fp-prof-grid {
  display: grid;
  grid-template-columns: minmax(0, 200px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.fps .fp-prof-media .ss-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--fp-panel);
  border: 1px solid var(--fp-line);
  border-radius: 4px;
}
.fps .fp-prof-caption {
  margin-top: 14px;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--fp-ink);
}
.fps .fp-prof-caption span {
  display: block;
  margin-top: 5px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fp-ink2);
}
.fps .fp-prof-h2 {
  margin-top: 20px;
  text-wrap: balance;
}
.fps .fp-prof-bio {
  margin-top: 32px;
}
.fps .fp-prof-bio p {
  margin-top: 1.3em;
  max-width: 42em;
  font-size: 15px;
  line-height: 2;
  color: #2c2c2c;
}
.fps .fp-prof-bio p:first-child {
  margin-top: 0;
}
.fps .fp-prof-bio strong {
  font-weight: 700;
  color: var(--fp-ink);
}

/* ---- publications: plain dash list (same rhythm as 教材内容 elsewhere) ---- */
.fps .fp-prof-text p {
  max-width: 46em;
  font-size: 15px;
  line-height: 2;
  color: #2c2c2c;
}
.fps .fp-prof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 46em;
}
.fps .fp-prof-list li {
  position: relative;
  margin-top: 0.7em;
  padding-left: 1.3em;
  font-size: 15px;
  line-height: 2;
  color: #2c2c2c;
}
.fps .fp-prof-list li:first-child {
  margin-top: 0;
}
.fps .fp-prof-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fp-ink2);
}

/* ---- lecture track record: label + names as text ---- */
.fps .fp-prof-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--fp-ink2);
}
.fps .fp-rec {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}
.fps .fp-rec-label {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fp-ink);
}
.fps .fp-rec-body {
  margin-top: 10px;
  max-width: 46em;
  font-size: 15px;
  line-height: 2;
  color: #2c2c2c;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 860px) {
  .fps .fp-prof-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fps .fp-prof-media .ss-img {
    max-width: 160px;
  }
}
