/* =========================================
    11. Instructor (運営メンバー - 最終版)
========================================= */
.instructor {
    padding: 80px 20px;
    background-color: var(--bg-surface, #f9f9f9);
}

.instructor-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    /* 小さいスマホ（325px等）でもはみ出さない魔法のコード */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.instructor-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center; /* カード全体は中央揃え */
    border: 1px solid #f0f0f0;
}

/* --- 画像・役職・名前（中央揃えエリア） --- */
.instructor-img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.15); /* オレンジの影でリッチに */
    margin-bottom: 25px;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    width: 100%;
    text-align: center; /* 名前と役職はド真ん中にキープ */
}

.instructor-role {
    color: var(--primary-orange);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.instructor-name {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

/* --- 実績の箇条書き（箱は中央、文字は左揃えエリア） --- */
.instructor-desc {
    list-style: none; /* デフォルトの黒丸を消す */
    padding: 0;
    display: block; 
    width: 90%; /* カード横幅の90%を使い、2人の箱のサイズを揃える */
    margin: 0 auto; /* 箱自体をカードの中央に配置 */
    text-align: left; /* 中の文字はしっかり左揃え！ */
}

.instructor-desc li {
    position: relative;
    padding-left: 1.5em; /* オレンジドットのスペースを確保 */
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* 「■」の代わりの光るオレンジ丸 */
.instructor-desc li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; /* 文字の高さに合わせて微調整 */
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 122, 0, 0.6);
}