
/* =========================================
   ニュース詳細ページ用 CSS (No P-tag Ver.)
   ========================================= */

.news-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
    line-height: 1.8;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* 記事タイトル *//* =========================================
   ニュース詳細ページ用 CSS (Medical Chic & Plan Layout)
   ========================================= */

.news-detail {max-width: 900px;margin: 0 auto;padding: 40px 20px;color: #333;line-height: 1.8; font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* 記事タイトル */
.news-detail h1 {font-size: 26px;font-weight: normal;border-bottom: 1px solid #ccc;padding-bottom: 15px;margin-bottom: 10px;color: #222;
}

/* 日付 */
.news-detail .date {
    text-align: right;
    color: #888;
    font-size: 14px;
    margin-bottom: 50px;
    display: block;
}

/* -----------------------------------------
   要約ボックス
   ----------------------------------------- */
.summary-box {
    margin-bottom: 60px;
}

.summary-title {
    font-size: 22px;
    font-weight: bold;
    color: #0f2350; /* 深いネイビー */
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #0f2350;
    line-height: 1.4;
}

.lead-text {
    margin-bottom: 30px;
    font-weight: bold;
}

/* 3点のポイントリスト */
.summary-points {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.point-item {
    margin-bottom: 25px;
}
.point-item:last-child {
    margin-bottom: 0;
}

.point-head {
    font-weight: bold;
    font-size: 18px;
    color: #0f2350;
    margin-bottom: 8px;
}

.point-quote {
    font-style: italic;
    color: #555;
    background-color: #fff;
    padding: 15px;
    border-left: 3px solid #ccc;
    font-size: 15px;
}

/* 引用元（追加修正分） */
.point-source {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    word-break: break-all; /* 長いURLの折り返し対応 */
}
.point-source a {
    color: #666;
    text-decoration: underline;
}

/* 外部リンクエリア */
.external-link-area {
    margin-top: 30px;
    font-size: 14px;
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 4px;
}

.link-note {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.text-link {
    color: #0056b3;
    text-decoration: underline;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
}

.text-link:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* -----------------------------------------
   クリニック案内エリア（2カラム申込レイアウト）
   ----------------------------------------- */
.medical-info-box {
    border: 1px solid #0f2350;
    background-color: #fff;
    padding: 0;
    margin-top: 60px;
}

/* タイトル帯 */
.medical-title {
    background-color: #0f2350;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.05em;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

/* 本文エリア */
.medical-body {
    padding: 40px;
    text-align: center;
}

.medical-body .text-body {
    text-align: left;
    margin-bottom: 30px;
    font-size: 15px;
}

/* プランコンテナ（2カラム） */
.plan-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.plan-box {
    flex: 1; /* 等幅で並べる */
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 4px;
    background-color: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

/* 強調したいプラン（臨床研究） */
.plan-box.highlight {
    background-color: #fffaf5; /* 薄いオレンジ背景 */
    border-color: #eecda3;
}

.plan-desc {
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 4.5em; /* 高さ合わせ */
    line-height: 1.6;
}

.plan-price {
    font-size: 24px;
    font-weight: bold;
    color: #0f2350;
    margin-bottom: 20px;
    text-align: center;
}

.plan-price .tax {
    font-size: 12px;
    color: #333;
    font-weight: normal;
}

.special-price {
    color: #d35400; /* 特別価格は目立つ色で */
}

/* 申込ボタン */
.plan-btn {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #0f2350; /* メインカラー */
    font-size: 15px;
    font-weight: bold;
    transition: opacity 0.3s;
    border-radius: 4px;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.plan-btn.btn-highlight {
    background-color: #d35400; /* 強調カラー */
}

.plan-btn:hover {
    opacity: 0.8;
}

.plan-btn::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin-left: 10px;
    margin-bottom: 2px;
}

/* 下部のその他リンク */
.other-links {
    text-align: center;
    margin-top: 20px;
}
.other-links a {
    color: #666;
    text-decoration: underline;
    font-size: 14px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .news-detail {
        padding: 20px 15px;
    }
    
    .medical-body {
        padding: 25px 15px;
    }

    .plan-container {
        flex-direction: column; /* スマホでは縦並び */
    }
    
    .plan-desc {
        min-height: auto;
    }
    
    .text-body {
        margin-left: 0;
    }
}   
.news-detail h1 {
    font-size: 26px;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 10px;
    color: #222;
}

/* 日付 */
.news-detail .date {
    text-align: right;
    color: #888;
    font-size: 14px;
    margin-bottom: 50px;
    display: block; /* divなので念のため */
}

/* -----------------------------------------
   要約ボックス
   ----------------------------------------- */
.summary-box {
    margin-bottom: 60px;
}

.summary-title {
    font-size: 22px;
    font-weight: bold;
    color: #0f2350; /* 深いネイビー */
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #0f2350;
    line-height: 1.4;
}

/* リード文 */
.lead-text {
    margin-bottom: 40px;
    font-weight: bold;
}

.sub-section {
    margin-bottom: 35px;
}

.sub-title {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

/* 本文テキスト用クラス */
.text-body {
    margin-bottom: 15px;
    margin-left: 38px;
}

/* 定義リスト（ポイント解説） */
.point-list dt {
    font-weight: bold;
    color: #0f2350;
    margin-top: 15px;
    margin-bottom: 5px;
    margin-left: 40px;
        
}

.point-list dd {
    margin-left: 0;
    margin-bottom: 15px;
    padding-left: 1em;
     margin-left: 45px;

}

/* 外部リンクエリア */
.external-link-area {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 4px;
    margin-top: 40px;
}

.link-note {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.text-link {
    color: #0056b3;
    text-decoration: underline;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
}

.text-link:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* -----------------------------------------
   クリニック案内エリア（シックな医療機関風）
   ----------------------------------------- */
.medical-info-box {
    border: 1px solid #0f2350;
    background-color: #fff;
    padding: 0;
    margin-top: 60px;
}

/* タイトル帯 */
.medical-title {
    background-color: #0f2350;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.05em;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

/* 本文エリア */
.medical-body {
    padding: 40px;
    text-align: center;
}

.medical-body .text-body {
    text-align: left;
    margin-bottom: 30px;
    font-size: 15px;
}

/* リンクボタンエリア */
.medical-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* シックなボタンデザイン */
.medical-btn {
    display: block;
    width: 320px;
    padding: 18px 0;
    text-align: center;
    text-decoration: none;
    color: #0f2350;
    border: 1px solid #0f2350;
    background-color: #fff;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    letter-spacing: 0.05em;
}

.medical-btn:hover {
    background-color: #0f2350;
    color: #fff;
}

.medical-btn::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
    margin-left: 10px;
    margin-bottom: 2px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .news-detail {
        padding: 20px 15px;
    }
    
    .medical-body {
        padding: 25px 15px;
    }
    
    .medical-links {
        flex-direction: column;
    }
    
    .medical-btn {
        width: 100%;
    }
    .text-body {
    margin-bottom: 5px;
    margin-left: 38px;
}
}   