        /* 必要に応じて .second-content も調整 */
        .news-schedule {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: flex-start;
        }
        
        /* お知らせセクション */
        .news {
            background: #f8f9fa;
        }

        .news-box {
            width: 80%;
            margin: 0 auto; width: 80%;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            border: 2px dashed #4CAF50;
            overflow-y: auto;
            vertical-align: text-top;
        }

        .news-date {
            color: #4CAF50;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .news-item {
            margin-bottom: 10px;
        }

        /* 診療時間セクション */
        .schedule-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .schedule-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .schedule-table th,
        .schedule-table td {
            padding: 4px;
            text-align: center;
            border: 1px solid #e0e0e0;
        }

        .schedule-table th {
            background: #4CAF50;
            color: white;
            font-weight: bold;
        }

        .schedule-table .sat-fowerd {
            color: #93c6eb;
        }
        .schedule-table .sun-fowerd {
            color: #f189ac;
        }

        .schedule-table .sat-background {
            background: #e3f2fd;
        }
        .schedule-table .sun-background {
            background: #fce4ec;
        }

/* レスポンシブ */
@media (max-width: 768px) {

    .news-schedule {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .schedule-table {
        font-size: 14px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 8px;
    }
}        