/* ==========================================
   1. 基本設定（医師紹介のCSSを完全継承）
   ========================================== */
.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* フォント指定：医師紹介と完全同期 */
.sub-mv__title, .privacy-heading, .privacy-sub-lead {
    font-family: "Noto Serif JP", serif;
}

/* ★ここを「Serif（明朝）」に書き換えます */
.privacy-text, .breadcrumb {
    font-family: "Noto Serif JP", serif;
}

/* --- メインビジュアル：中央寄せ・高さを完全一致 --- */
.sub-mv {
    width: 100%;
    height: 180px; /* スマホ時の高さ */
    background: url('https://hata-shika.com/wp-content/uploads/2026/05/bg.png') no-repeat center center / cover;
    background-color: #556b2f;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* ★中央寄せを確定 */
    text-align: center;      /* ★テキスト中央寄せを確定 */
}
.sub-mv::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.sub-mv__title {
    position: relative;
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.4;
    z-index: 1;
}

/* --- パンくず：余白 padding: 10px 0 を厳守 --- */
.breadcrumb { 
    padding: 10px 0; /* */
    font-size: 0.75rem; 
}
.breadcrumb ol { 
    display: flex; 
    flex-wrap: wrap; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}
.breadcrumb li + li::before { 
    content: ">"; 
    margin: 0 8px; 
    color: #ccc; 
}
.breadcrumb a { 
    color: #556b2f; 
    text-decoration: none; 
}

/* --- コンテンツエリアの余白 --- */
.privacy-section { 
    padding: 30px 10px 50px; /* .doctor-intro の余白を継承 */
}

/* --- h2（privacy-heading）：医師紹介の .common-title デザインを完全適用 --- */
.privacy-heading {
    background-color: #556b2f; /* */
    color: #fff;               /* */
    text-align: center;        /* */
    padding: 12px 10px;        /* */
    font-size: 1.3rem;         /* */
    margin-bottom: 25px;       /* */
}

/* 本文エリア */
.privacy-text {
    max-width: 1000px; /* 読みやすさのため医師紹介のバランスに調整 */
    margin: 0 auto;
}
.privacy-text p {
    line-height: 1.8;      /* */
    font-size: 0.95rem;    /* */
    margin-bottom: 1.2em;  /* */
    color: #333;
}

/* --- h3相当（privacy-sub-lead）：指示通りの下線デザイン --- */
.privacy-sub-lead {
    font-size: 1.2rem;
    color: #556b2f;
    margin: 40px 0 15px;
    border-bottom: 1px solid #dcdcdc; /* 医師紹介の .doctor-profile__name を参考 */
    padding-bottom: 10px;
    font-weight: bold;
}

/* リスト形式 */
.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.privacy-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ==========================================
   2. PC版設定（769px以上で上書き）
   ========================================== */
@media (min-width: 769px) {
    .sub-mv { height: 300px; } /* */
    .sub-mv__title { font-size: 2.2rem; }
    
    .privacy-section { 
        padding: 60px 0 80px; /* .doctor-intro のPC版余白 */
    }
    
    .privacy-heading { 
        font-size: 1.8rem;     /* */
        padding: 15px;         /* */
        margin-bottom: 50px;   /* */
    }
}