table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9em;
    font-family: 'Noto Sans JP', sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

th {
    background-color: #EBF7FD; /* ヘッダーの色 */
    color: #000000; /* 黒い文字色 */
    text-transform: uppercase;
}

td, th {
    padding: 12px 15px;
    text-align: center;
}

tr {
    border-bottom: 1px solid #dddddd;
}

tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

tr:last-of-type {
    border-bottom: 2px solid #EBF7FD; /* ヘッダーと同じ色 */
}

tr:hover {
    background-color: #f1f1f1;
}