/* ========================================================= */
/* --- Doctor Page Styles (医師紹介ページ) --- */
/* ========================================================= */

/* 見出し：左側に太いラインを入れて強調 */
.bio-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 25px;
    margin-top: 0;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.bio-title::before {
    content: "";
    width: 6px;
    height: 1.2em;
    background: var(--color-primary);
    /* メインカラーの縦線 */
    margin-right: 12px;
    border-radius: 3px;
}

/* リスト：タイムライン（経歴）風のデザイン */
.bio-list {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.bio-list li {
    list-style: none;
    padding: 0 0 15px 20px;
    border-left: 2px solid #eef0f2;
    /* 縦のライン */
    position: relative;
    color: #444;
}

/* タイムラインの点 */
.bio-list li::after {
    content: "";
    position: absolute;
    left: -7px;
    /* ラインの上に配置 */
    top: 6px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
}

.bio-list li:last-child {
    border-left: 2px solid transparent;
    /* 最後の線は消す */
    padding-bottom: 0;
}

/* 資格セクション（2つ目のカラム）はドット形式にする */
.bio-column-content:last-child .bio-list li {
    border-left: none;
    padding-left: 1.5em;
}

.bio-column-content:last-child .bio-list li::after {
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
}


.doctor-breadcrumbs {
    background: var(--color-light-purple);
    padding: 10px 0;
}

.doctor-breadcrumbs .container {
    font-size: 0.9rem;
    text-align: center;
}

.doctor-profile-area {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.doctor-image-col {
    flex: 1;
    min-width: 300px;
}

.doctor-image {
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.doctor-name-caption {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}

.doctor-info-col {
    flex: 1.5;
    min-width: 300px;
}

.doctor-slogan {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.bio-column-content {
    flex: 1;
    margin-bottom: 0;
    padding: 10px 10px 10px;
}

.bio-list {
    background: var(--color-pale);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 20px;
    border-radius: 15px;
    margin: 0;
}


/* PC表示：横並び調整 */
@media (min-width: 768px) {
    .bio-wrapper {
        display: flex;
        gap: 50px;
    }

    .bio-column-content {
        flex: 1;
        margin-bottom: 0;
    }
}