/* メインコンテンツ */
.honbun {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 画像関連 */
.staff-image {
    text-align: center;
    margin-bottom: 20px;
}

.staff-image img {
    max-width: 100%;
    height: auto;
}

.right {
    text-align: right;
}

/* スタッフ一覧 */
.staff-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

.staff-member {
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.staff-member img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.staff-member h3 {
    color: var(--primary-text-color);
    margin: 0 0 10px;
    font-size: 1.2em;
}

/* リンク */
a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* スタッフ紹介 */
.staff-intro-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.staff-intro-image {
    flex: 1 1 300px;
}

.staff-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.staff-intro-text {
    flex: 1 1 300px;
    background: #f8f5ee;
    padding: 20px;
    border-radius: 8px;
}

.staff-intro-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.staff-blog-link {
    display: inline-block;
    padding: 10px 20px;
    background: #acc2a1;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .honbun {
        padding: 15px;
    }
    
    .staff-list {
        grid-template-columns: 1fr;
    }
    
    .staff-intro-container {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .staff-intro-text {
        padding: 15px;
    }
    
    .staff-blog-link {
        width: 100%;
        text-align: center;
    }

    /* パンくずリストのスマホ対応 */
    .breadcrumb {
        width: 100%;
        overflow-x: hidden;
    }

    .breadcrumb ol {
        flex-wrap: wrap;
    }

    .breadcrumb li {
        font-size: 0.9em;
    }

    /* スタッフ紹介セクションのスマホ対応 */
    .staff-intro-description br {
        display: none;
    }
}