/* 教員一覧表のスタイル */
.staff-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.staff-table thead {
    background: #2c5530;
    color: white;
}

.staff-table th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    border: 1px solid #ddd;
}

.staff-table td {
    padding: 15px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.staff-table .field-name {
    background: #e8f5e9;
    font-weight: bold;
    color: #2c5530;
    width: 25%;
    white-space: nowrap;
    vertical-align: middle;
}

.staff-table .staff-names {
    line-height: 2;
}

.staff-table .staff-names a {
    display: inline-block;
    background: #4a9d5f;
    color: white;
    padding: 5px 15px;
    margin: 3px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s;
}

.staff-table .staff-names a:hover {
    background: #3d8850;
}

/* レスポンシブデザイン（スマートフォン対応） */
@media (max-width: 768px) {
    .staff-table, 
    .staff-table thead, 
    .staff-table tbody, 
    .staff-table th, 
    .staff-table td, 
    .staff-table tr {
        display: block;
    }
    
    .staff-table thead tr {
        display: none;
    }
    
    .staff-table tr {
        margin-bottom: 15px;
        border: 2px solid #4a9d5f;
    }
    
    .staff-table td {
        text-align: left;
        padding: 10px;
        border: none;
    }
    
    .staff-table .field-name {
        width: 100%;
        font-size: 1.1em;
        padding: 12px;
    }
    
    .staff-table .staff-names a {
        font-size: 0.9em;
        padding: 4px 10px;
    }
}
