

   /* ── チーム全体写真 ── */
   .team-section {
    background: var(--white);
    padding: 72px 0;
   }
   .team-photo-wrap {
    position: relative;
    border-radius: calc(var(--radius) * 1.5);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(87, 186, 231, 0.18);
    margin-bottom: 48px;
   }
   .team-photo-wrap img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
   }
   .team-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
     to top,
     rgba(0, 111, 181, 0.75) 0%,
     transparent 100%
    );
    padding: 36px 40px 32px;
    color: #fff;
   }
   .team-photo-overlay h2 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    margin-bottom: 6px;
   }
   .team-photo-overlay p {
    font-size: 15px;
    opacity: 0.9;
   }

   /* チームメッセージ */
   .team-message {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
   }
   .team-msg-card {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition:
     transform 0.2s,
     box-shadow 0.2s;
   }
   .team-msg-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
   }
   .team-msg-icon {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
   }
   .team-msg-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
   }
   .team-msg-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
   }

   /* ── 院長紹介 ── */
   .director-section {
    background: var(--primary-light);
    padding: 80px 0;
   }
   .director-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
   }
   .director-photo {
    position: relative;
   }
   .director-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    display: block;
    box-shadow: var(--shadow);
   }
   .director-photo::before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 3px dashed var(--primary);
    border-radius: calc(var(--radius)+10px);
    pointer-events: none;
    opacity: 0.4;
   }
   .director-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(87, 186, 231, 0.4);
   }
   .director-body {
    padding-top: 8px;
   }
   .director-body .sec-badge {
    margin-bottom: 12px;
   }
   .director-body h2 {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.3;
   }
   .director-body .director-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
   }
   .director-body p {
    font-size: 15px;
    line-height: 2.1;
    color: var(--text-light);
    margin-bottom: 16px;
   }
   .director-profile {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
   }
   .prof-item {
    font-size: 14px;
    line-height: 1.8;
   }
   .prof-item .prof-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 2px;
   }

   /* ── スタッフカード ── */
   .staff-section {
    background: var(--white);
    padding: 80px 0;
   }
   .staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
   }
   .staff-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.22s;
    text-align: center;
   }
   .staff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
   }
   .staff-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
   }
   .staff-role-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
   }
   .staff-card-body {
    padding: 22px 20px 24px;
   }
   .staff-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
   }
   .staff-name-kana {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
   }
   .staff-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary-dark);
    margin-bottom: 12px;
   }
   .staff-msg {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    border-top: 1.5px dashed var(--border);
    padding-top: 14px;
    margin-top: 4px;
   }

   /* ── 求人バナー ── */
   .recruit-banner {
    background: linear-gradient(
     135deg,
     var(--primary) 0%,
     var(--primary-dark) 100%
    );
    padding: 52px 0;
    text-align: center;
    color: #fff;
   }
   .recruit-banner h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 10px;
   }
   .recruit-banner p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.8;
   }
   .btn-recruit {
    display: inline-block;
    background: #fff;
    color: var(--primary-dark);
    padding: 14px 36px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
   }
   .btn-recruit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
   }

   /* ── CTA ── */
   .staff-cta {
    background: var(--primary-light);
    padding: 64px 0;
    text-align: center;
   }
   .staff-cta h2 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
   }
   .staff-cta p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 28px;
   }
   .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
   }
   .btn-cta-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
   }
   .btn-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
   }
   .btn-cta-outline {
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--primary);
    transition: all 0.2s;
   }
   .btn-cta-outline:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
   }

   /* ── responsive ── */
   @media (max-width: 900px) {
    .director-grid {
     grid-template-columns: 1fr;
    }
    .director-photo img {
     aspect-ratio: 16/9;
     object-position: center 20%;
    }
    .staff-grid {
     grid-template-columns: repeat(2, 1fr);
    }
    .team-message {
     grid-template-columns: 1fr;
    }
   }
   @media (max-width: 540px) {
    .staff-grid {
     grid-template-columns: 1fr;
    }
    .director-profile {
     grid-template-columns: 1fr;
    }
   }
