/* スタッフ紹介ページのスタイル */

/* ページヘッダー背景 */
.page-header {
    background-image: linear-gradient(to right, rgba(241, 143, 176, 0.2), rgba(148, 187, 233, 0.2));
    background-size: cover;
    background-position: center;
    position: relative;
}

/* スタッフ紹介セクション */
.staff-section {
    padding: 80px 0;
}

.staff-description {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.staff-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* スタッフリスト */
.staff-list {
    max-width: 1000px;
    margin: 0 auto;
}

.staff-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 80px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.staff-item:last-child {
    margin-bottom: 0;
}

.staff-photo {
    flex: 0 0 250px;
    margin-right: 30px;
    margin-bottom: 20px;
}

.staff-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #f5f5f5;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 14px;
}

.staff-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.staff-info {
    flex: 1;
    min-width: 300px;
}

.staff-position {
    display: inline-block;
    background-color: #f18fb0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.staff-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.staff-qualifications {
    margin-bottom: 20px;
}

.qualification-title {
    font-size: 16px;
    font-weight: 600;
    color: #f18fb0;
    margin-bottom: 10px;
}

.qualification-list {
    list-style: none;
    padding-left: 20px;
}

.qualification-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.qualification-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #f18fb0;
    border-radius: 50%;
}

.staff-message {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* 管理者挨拶 */
.manager-message {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    position: relative;
}

.manager-message::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 40px;
    color: #f18fb0;
    opacity: 0.3;
}

.manager-message::after {
    content: '"';
    position: absolute;
    bottom: 0;
    right: 10px;
    font-size: 40px;
    color: #f18fb0;
    opacity: 0.3;
}

.manager-message p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 1;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .staff-item {
        padding: 20px;
    }
    
    .staff-photo {
        flex: 0 0 200px;
        margin-right: 20px;
    }
    
    .staff-name {
        font-size: 22px;
    }
    
    .qualification-title {
        font-size: 15px;
    }
    
    .qualification-list li {
        font-size: 13px;
    }
    
    .staff-message,
    .manager-message p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .staff-description p {
        font-size: 15px;
    }
    
    .staff-item {
        padding: 15px;
        flex-direction: column;
    }
    
    .staff-photo {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 250px;
    }
    
    .staff-info {
        flex: 0 0 100%;
    }
    
    .staff-name {
        font-size: 20px;
    }
    
    .staff-message,
    .manager-message p {
        font-size: 13px;
    }
}