@charset "UTF-8";
:root {
    --color-light-gray: #F4F3EF; 	/* ベージュ背景色 bgbge */
    --color-brown: #5D4C2E; 		/* 濃いブラウン fcbr */
    --color-orange: #E87F00; 		/* オレンジ fcog */
    --color-green: #779851; 		/* 濃い緑 bggn */
    --color-light-green: #85B74C; 	/* 薄い緑 bglgn */
}

.famous {
    color: var(--color-brown);
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    margin-top: 60px ;
}

.famous_ttl,
.famous_degree{
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.01em;
}

.famous_name{
    font-size: 2.5rem;
    letter-spacing: 0.1em;
}

.famous_degree{
    padding-left: 20px;
}

.profile-more{
    margin-top: 60px;
}

.profile-more_content {
    display: flex;
    gap: 80px;
    margin: 0 auto;
    width: 80%;
    max-width: 1200px;
    /* justify-content: space-between; */
}

.profile-column {
    flex-basis: 50%;
    width: 560px;
}

.profile-column__ttl {
    background-color: var(--color-brown);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    margin-top: 0;
    margin-bottom: 25px;
    border-radius: 5px;
}
.history-list {
    list-style: none;
    padding: 0;
}
.history-list li {

    /* 20251208 kawai !追記箇所! */
    /* 解説：
     flex だと ● もテキストと同じ「並びの要素」として扱われるため、折り返した時に ● の下に文字が来てしまうので廃止。
     position: relativeでliタグごと、テキスト全体を右にずらし、● のスペースを確保。*/
    position: relative;
    padding-left: 1.0em; /* ●ぶんの余白をあける（ここ重要） */
    /* display: flex; */

    margin-bottom: 20px;
}
.history-list li p::before{
    content:  "●";
    color: var(--color-orange);

    /* 20251208 kawai !追記箇所! */
    /* 解説：
     position: absolute;で絶対位置を指定できる。
     left: 0; で li の左端に ● を固定配置。*/
    position: absolute;
    left: 0;

}
.history-list p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.6rem;
}

.public_item .public-item__ttl {
    width: 100%;
    margin-top: 0;
    margin-bottom: 15px;
}

.public-item__details {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.public-item__txt {
    flex-grow: 1;
}

.public-item__txt p {
    margin-top: 0;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.public-item__img {
    width: 190px;
    min-width: 150px;
    flex-shrink: 0;
    line-height: 0;
}
.public-item__img img {
    height: auto;
    display: block;
}

/* responsive-------------------------------------------------------------------*/

@media screen and (max-width: 767px) {

    .profile-more{
        margin-top: 20px;
    }

    .profile-more .container{
        padding: 40px 0;
    }


    .famous{

        /* 20251208 kawai !追記箇所! */
        /* 解説：
        max-width: 767pxの時だけ、意図的にwidth: 90%;としているために、鈴木 真理の左に空白が空いてしまう。
        width: 90%;を消しても、他に影響なさそうなので、廃止
        （当初は左に空白を空ける想定だった？？）
     */
        padding-top: 23px; /* 院長先生の名前の上に余白をつける（タイトル-本文の間隔と同じ分だけ余白をつける */
        /* width: 90%; */

        margin: 0 auto;
    }

    .profile-more_content {
        flex-direction: column;
        align-items: center;
        width: 85%;
        max-width: 600px;
        gap: 20px;
    }

    .history-list p {
        padding-left: 4px;
    }

    .public-item__details{
        flex-direction: column;
        gap: 10px;
    }

    .public-item__img {
        width: 100%; 
        max-width: 180px;
        margin: 0 auto
    }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    
    .profile-more .container{
        padding: 40px 0;
    }

    .profile-more_content {
        width: 85%;
        flex-direction: column;
        margin: 0 auto;
        gap: 34px;
    }

    .profile-column {
        flex-basis: 0;
        width: 90%;
    }

    .history-list p {
        padding-left: 4px;
    }

    .public-item__details{
        flex-direction: column;

    }

    .public-item__img {
        width: 100%; 
        max-width: 200px;
        margin: 0px auto 0
    }

    .pc.__md{
        display: none !important;
    }
    .sp.__md {
		display: block !important;
    }

}

@media screen and (max-width: 600px) {

    .profile-column {
        width: 90%;
    }

}