.inst-hero {
    text-align: center;
    padding: 56px 24px 36px;
    background: linear-gradient(180deg, #f2f5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 0.5px solid #ddeadd;
}
.inst-hero::before,
.inst-hero::after {
    content: '✿';
    position: absolute;
    font-size: 140px;
    opacity: 0.07;
    color: #4a7a4a;
    top: -10px;
    line-height: 1;
}
.inst-hero::before { left: -20px; }
.inst-hero::after  { right: -20px; }

.inst-title {
    font-size: clamp(32px, 7vw, 52px);
    font-weight: 300;
    letter-spacing: 0.25em;
    color: #3a5c3a;
    margin: 0 0 6px;
    font-family: Georgia, serif;
    line-height: 1;
}
.inst-subtitle {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: #7a9a7a;
    margin: 0 0 16px;
}
.inst-lead {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #666;
    line-height: 2;
}



/* インストラクターカード全体 */
.instructor-list .inner {
    max-width: 900px; /* カードを少し広めに確保 */
    margin: 60px auto;
    padding: 0 20px;
}

.instructor-card {
    display: flex;
    flex-direction: row;
    gap: 50px; /* 写真と文章の間のゆとりを拡大 */
    align-items: center;
    padding: 40px;
    border: 1px solid #ddeadd; /* ヒーローエリアの線と色を統一 */
    border-radius: 16px;
    background: #ffffff;
}

/* 写真を大きく（200px -> 300px） */
.instructor-photo {
    flex: 0 0 300px;
}
.instructor-photo img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px; /* 円形より四角い方がプロフィール情報には適している場合が多い */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* 文章のゆとり */
.instructor-name {
    font-size: 1.8rem;
    color: #3a5c3a;
    margin-bottom: 20px;
}
.instructor-profile {
    font-size: 1rem;
    line-height: 2.4; /* 行間を広げ、読みやすくゆとりを出す */
    color: #555;
    letter-spacing: 0.05em;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .instructor-card {
        flex-direction: column; /* スマホでは縦並び */
        gap: 30px;
        padding: 30px 20px;
    }
    .instructor-photo,
    .instructor-photo img {
        width: 100%; /* スマホでは横幅いっぱいに */
        max-width: 300px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .instructor-name {
        text-align: center;
    }
}