@charset "UTF-8";

/* ============================================================
   /staff/ 一覧ページ
   ============================================================ */

.staff-page .staff-role {
  line-height: 2;
}

.staff-page .recruit-staff-list {
  flex-wrap: wrap;
}

.staff-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.staff-card-link:hover {
  opacity: 0.6;
  text-decoration: none;
}

.staff-card-link .staff-photo {
  overflow: hidden;
}

.staff-card-link .staff-photo img {
  transition: transform 0.3s ease;
}

.staff-card-link:hover .staff-photo img {
  transform: scale(1.05);
}

.staff-card-link .staff-photo::before {
  z-index: 1;
}

/* ============================================================
   スタッフ詳細ページ
   ============================================================ */

/* プロフィールセクション（写真 + 名前・役職） */
.staff-detail-profile {
  padding: 60px 0 40px;
}

.staff-detail-profile-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.staff-detail-photo {
  width: 340px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.staff-detail-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.staff-detail-photo--placeholder {
  width: 340px;
  height: 420px;
  background: #e0e0e0;
  border-radius: 8px;
}

.staff-detail-info {
  flex: 1;
  padding-top: 20px;
}

.staff-detail-role {
  font-size: 1.4rem;
  color: #aaa;
  line-height: 2;
  margin-bottom: 8px;
}

.staff-detail-name-ja {
  font-size: 3.2rem;
  font-weight: bold;
  color: #000;
  display: block;
  line-height: 1.3;
}

.staff-detail-name-en {
  font-size: 1.4rem;
  color: #aaa;
  display: block;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* キャッチコピーセクション */
.staff-detail-vision {
  padding: 60px 0 40px;
  border-top: 1px solid #eee;
}

.staff-detail-vision-text {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  line-height: 1.5;
}

/* 本文（経歴・写真など） */
.staff-detail-body {
  padding: 0 0 60px;
}

.staff-detail-body .entry-content {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
}

.staff-detail-body .entry-content p+p {
  margin-top: 0.5em;
}

.staff-detail-body .entry-content h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0.8em 0 0;
}

.staff-detail-body .entry-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0.8em 0 0;
}

.staff-detail-body .entry-content h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.8em 0 0;
}

.staff-detail-body .entry-content h5 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0.8em 0 0;
}

.staff-detail-body .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.staff-detail-body .entry-content .wp-block-columns {
  margin: 1em 0;
}
/* コメントセクション */
.staff-detail-comment {
  padding: 50px 0 80px;
  border-top: 1px solid #eee;
}

.staff-detail-comment-inner {
  border-left: 4px solid #ED86B4;
  padding-left: 24px;
}

.staff-detail-comment-text {
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
}

/* 一覧に戻るリンク */
.staff-detail-back {
  text-align: center;
  padding: 40px 0 80px;
}

.staff-detail-back a {
  font-size: 1.4rem;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #aaa;
  padding-bottom: 2px;
}

.staff-detail-back a:hover {
  color: #000;
  border-color: #000;
}

/* ============================================================
   レスポンシブ
   ============================================================ */

@media screen and (max-width: 900px) {
  .staff-photo img {
    object-position: center;
  }

  .staff-detail-profile-inner {
    flex-direction: column;
    gap: 30px;
  }

  .staff-detail-photo {
    width: 100%;
  }

  .staff-detail-photo--placeholder {
    width: 100%;
    height: 260px;
  }

  .staff-detail-info {
    padding-top: 0;
  }

  .staff-detail-name-ja {
    font-size: 2.4rem;
  }

  .staff-detail-vision-text {
    font-size: 2rem;
  }
}
