/* 講師紹介ページ専用スタイル */

/* 講師紹介セクション */
.instructors {
    background-color: #EDEDEA;
    min-height: 100vh;
}

/* Instructors List */
.instructors-list {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 32px;
}

/* Instructor Card */
.instructor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 24px;
    padding: 0 16px 32px;
    border-bottom: 1px solid #CCCCCC;
}

.instructor-card:last-child {
    border-bottom: none;
}

/* Instructor Image */
.instructor-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Instructor Info */
.instructor-info {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 16px;
}

/* Instructor Header */
.instructor-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    gap: 8px;
}

/* Instructor Role Badge */
.instructor-role {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    background-color: transparent;
    border: 1px solid #B10100;
    border-radius: 0;
    font-family: 'YuGothic', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: #B10100;
}

/* Instructor Name */
.instructor-name {
    font-family: 'YuMincho', serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #222222;
    margin: 0;
    flex: 1;
}

/* Instructor Section */
.instructor-section {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
}

/* Section Title */
.section-title {
    font-family: 'YuMincho', serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: #333;
    margin: 0;
}

/* Section Content (for nested structure) */
.section-content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

/* Section Text */
.section-text {
    font-family: 'YuGothic', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    white-space: pre-line;
}

/* タブレット表示 */
@media (min-width: 768px) {
    .instructors-list {
        gap: 40px;
    }
    
    .instructor-card {
        gap: 28px;
        padding: 0 24px 40px;
    }
    
    .instructor-image {
        height: 240px;
    }
    
    .instructor-info {
        gap: 20px;
    }
    
    .instructor-header {
        gap: 12px;
    }
    
    .instructor-role {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .instructor-name {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .section-text {
        font-size: 18px;
    }
    
    .instructor-section {
        gap: 12px;
    }
}

/* デスクトップ表示 */
@media (min-width: 1024px) {
    .instructors-list {
        gap: 48px;
    }
    
    .instructor-card {
        gap: 32px;
        padding: 0 24px 48px;
    }
    
    .instructor-image {
        height: 280px;
    }
    
    .instructor-name {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-text {
        font-size: 18px;
    }
}

/* アクセシビリティ */
@media (prefers-reduced-motion: reduce) {
    .instructor-card {
        transition: none;
    }
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .instructor-name,
    .section-title,
    .section-text {
        color: #000000;
    }
    
    .instructor-role {
        border: 2px solid #B10100;
    }
}

