<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS column Document */
   /* table ドラッグ */
.tr.drag {
    background-color: #fffff0;
}
tr.drag-previous {
    background-color: #ffd;
}
body div.tabledrag-changed-warning {
    margin-bottom: 0.5em;
}
/* table ソート */
th.is-active img {
    display: inline;
}
td.is-active {
    background-color: #ddd;
}

tr.selected td {
    background: #ffc;
}
td.checkbox,
th.checkbox {
    text-align: center;
}
[dir = "rtl"] td.checkbox,
[dir = "rtl"] th.checkbox {
    /* This is required to win over specificity of [dir="rtl"] td */
    text-align: center;
}
table.views-table {
    border-collapse: collapse;
    width: 100%;
}
table.views-table ,
table.views-table tr,
table.views-table th,
table.views-table td {
    border: 1px solid #d2d6de;
}

table.views-table th,
table.views-table td {
    padding: 1em 0.5em;
}

table.views-table thead {
    background-color: rgb(233, 236, 239);
}

table.views-table tbody tr:nth-of-type(odd) {
    background-color: #fff;
}
table.views-table tbody tr:nth-of-type(even) {
    background-color: #EAF2F8;
}
table.views-table td .l_link {
    font-size: 1.4rem;
    font-weight: 500;
}
.views-table td a {
    color: #52a0ea;
}
.views-table td a:hover {
    color: orange;
}


/* drag ハンドル */
.touchevents a.tabledrag-handle .handle{
    height: 21px;
    width: 21px;
    padding:0;
    background-position:0 4px;
}

</pre></body></html>