<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-color: white;
}

.list-title {
    display: flex;
    border: 0;
    justify-content: center;
    background-repeat: no-repeat;
    margin: 50px auto auto auto;
    font-size: 2rem;
    font-weight: 500;
}

.list-wrapper {
    background-color: white;
    width: 1020px;
    border: 0;
    margin: 50px auto;
}

table.list-table {
    width: 1020px;
    margin: 30px auto;
}

table.list-table th {
    white-space: nowrap;
    padding: 10px;
    font-weight: bold;
    vertical-align: middle;
    border: 1px solid #ccc;
    background: #ffe1e5;
    font-size: 1.4rem;
}

table.list-table td {
    font-size: 1.2rem;
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #ccc;
    text-align: center;
}

table.list-table tr:hover {
    background-color: #f3f3f3;
    cursor: pointer;
}

.list-arrow {
    width: 200px;
    margin: auto auto 100px auto;
}

.list-arrow a {
    font-size: 25px;
    color: #252525;
}

.list-arrow a:hover {
    color: #ffc2d1;
}

.list-arrow a:nth-child(1) {
    margin-right: 150px;
}

@media screen and (max-width: 768px) {
    .list-wrapper {
        width: 100%;
    }

    table.list-table {
        width: 90%;
        padding: 10px;
    }

    table.list-table th {
        font-size: 1rem;
    }

    table.list-table td {
        font-size: 0.8rem;
    }
}
</pre></body></html>