
.facilitystandards{
    text-align: center;
}



/* 「詳細はこちらから」 */
.open-modal{
    color: #0077cc;
    cursor: pointer;
    text-decoration: underline;
    font-size: 18px;
}

/* モーダル背景 */
.modal{
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);

    /* 中央配置 */
    justify-content: center;
    align-items: center;
}

/* モーダル背景を固定 */
body.modal-open{
    overflow: hidden;
}

/* モーダル本体 */
.modal-content{
    background: #fff;
    width: 80%;
    max-width: 700px;

    padding: 40px;
    border-radius: 12px;
    position: relative;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    animation: fadeIn 0.3s ease;

    /* モーダル内スクロール */
     width: min(90%, 800px);
     max-height: 80vh;
     overflow-y: auto;
}

/* 閉じるボタン */
.close-btn{
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

/* 箇条書き */
.modal-content ul{
    padding-left: 20px;
    line-height: 2;
}

/* アニメーション */
@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* モバイル表示での余白調整 */
@media screen and (max-width: 768px){

    .modal-content{
        width: 92%;
        padding: 24px;
        max-height: 85vh;
    }

}


/* モーダル内タイトル */
.modal-content h2{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #B3A27E;
}


.modal-content > p{
    text-align: center;
}

/* セクション見出し */
.modal-content h3{
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin-top: 35px;
    margin-bottom: 15px;

    padding-left: 12px;
    border-left: 5px solid #B3A27E;
}

/* 本文 */
.modal-content{
    background:#fff;
    width:min(90%, 900px);
    max-height:80vh;
    overflow-y:auto;
    padding:40px 50px;
}

/* 箇条書き */
.modal-content ul{
    margin: 15px 0 25px;
    padding-left: 25px;
}

.modal-content li{
    line-height: 2;
    margin-bottom: 8px;
    color: #555;
}


@media (max-width:768px){

    .modal-content{
        padding:25px;
    }

    .modal-content h2{
        font-size:22px;
    }

    .modal-content h3{
        font-size:18px;
    }

    .modal-content p,
    .modal-content li{
        font-size:15px;
        line-height:1.9;
    }
}

.clinic-name{
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;

    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #444;
}