body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f9f9f9;
    color: #222;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

h2,h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 1em;
    color: #003366;
}

.container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 2px solid #0033661a;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
    border: 1px solid #aaa;
    font-size: 16px;
}

thead .top-header {
    background-color: #d0f0df;
    color: #003366;
    text-align: center;
    font-weight: bold;
    padding: 14px;
    font-size: 1.05em;
}

th, td {
    padding: 12px 16px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

th {
    background-color: #e5f5e0; 
    color: #000;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9fcf7;
}

/* ホバー効果は不要なので削除 */

a {
    color: #003366;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
        max-width: 95%;
    }

    table, th, td {
        font-size: 14px;
    }
}

.footer-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

.hospital-name {
    font-size: 18px; /* 任意のサイズ */
    font-weight: bold; /* 太字にもできる */
}


