/* ===================================================
   Doctor Page - Simple Professional (Kodama Ver.)
   Background: All White
   =================================================== */

/* セクション全体の背景を白に固定 */
.doctor-profile-section {
    padding: 40px 0 80px;
    background: #FFFFFF !important;
}

/* コンテナ自体の余白設定（スマホ時） */
.doctor-profile-section .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* メインレイアウト */
.doctor-main-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.doctor-visual {
    width: 100%;
    max-width: 420px;
}

.doctor-photo {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* 名前・紹介文 */
.doctor-details {
    width: 100%;
}

.doctor-name-group {
    text-align: center;
    margin-bottom: 25px;
}

.doctor-name-ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.doctor-name-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #49bfd8;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* 紹介文ボックスの背景も白に変更 */
.doctor-intro-box {
    text-align: left;
    background: #FFFFFF; 
    padding: 25px;
    border: 1px solid #EEEEEE; /* 薄いグレーの枠線で境界を明示 */
    border-left: 3px solid #49bfd8;
    border-radius: 0 4px 4px 0;
    margin-bottom: 35px;
}

.intro-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    line-height: 2.1;
    color: #444;
    margin-bottom: 1.5em;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* CTAボタン */
.doctor-action-area {
    display: flex;
    justify-content: center;
}

.doctor-cta-btn {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    padding: 20px;
    background: #49bfd8;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.3s;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-align: center;
}

.doctor-cta-btn:hover {
    background: #3aa9c0;
    transform: translateY(-2px);
}

/* 区切り線 */
.section-divider {
    border: none;
    border-top: 1px solid #EEEEEE;
    margin: 50px 0;
}

/* 経歴表示（背景は白） */
.doctor-info-single {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
}

.info-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.info-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #49bfd8;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.timeline-item dt {
    min-width: 85px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #49bfd8;
    flex-shrink: 0;
}

.timeline-item dd {
    margin-left: 0;
    color: #444;
    font-family: 'Shippori Mincho', serif;
}

.site-footer {
    background: white !important;
}

/* ===================================================
   PC版調整（960px以上）
   =================================================== */
@media screen and (min-width: 960px) {
    .doctor-profile-section .container {
        padding-left: 7%;
        padding-right: 7%;
    }

    .doctor-main-flex {
        flex-direction: row;
        gap: 80px;
        align-items: flex-start;
    }

    .doctor-name-group {
        text-align: left;
    }

    .doctor-name-ja {
        font-size: 32px;
    }

    .doctor-intro-box {
        padding: 40px;
    }

    .intro-text {
        font-size: 16px;
    }

    .doctor-action-area {
        justify-content: flex-start;
    }

    .timeline-item {
        font-size: 16px;
        padding-left: 10%; 
    }

    .timeline-item dt {
        min-width: 140px;
    }
}