@charset "UTF-8";

.sh-rtable {
    position: relative;
    width: 96%;
    max-width: 500px;
    margin: 0 auto 20px;
    border-collapse: collapse;
}
.sh-rtable th,
.sh-rtable td {
    border: 1px solid #333;
    text-align: center;
    vertical-align: middle;
}
.sh-rtable th {
    padding: 12px 5px;
}
.sh-rtable td {
    padding: 0;
}
.sh-rtable tr._sat {
    background-color: #e1edf9;
    color: #4466BB;
}
.sh-rtable tr._sun {
    background-color: #f3e1e7;
    color: #BB5555;
}
.sh-rtable td a,
.sh-rtable td span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
}
.sh-rtable td a {
    color: #4466BB;
    font-family: "M PLUS 1p", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 900;
}
.sh-rtable td a:hover {
    background-color: rgba(0, 0, 204, .1);
}
.sh-rtable td span {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    background-color: #efefef;
}
.sh-rtable tfoot td {
    border: none;
    background: none;
    text-align: center;
}
.sh-rtable tfoot dl {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    padding: 10px;
}
.sh-rtable tfoot dl div {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.sh-rtable tfoot dt {
    font-family: "M PLUS 1p", sans-serif;
    color: #4466BB;
    font-weight: 900;
}
.sh-rtable tfoot dd {
    display: inline-block;
}

.sh-rtable-wrapper {
    max-width: 620px;
    margin-inline: auto;
    position: relative;
}
.sh-rtable-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
    bottom: 50%;
}
.sh-rtable-buttons::before,
.sh-rtable-buttons::after {
    display: none;
}
.sh-rtable-buttons button {
    appearance: none;
    border: none;
    background: none;
    cursor: pointer;
    margin:0;
    padding: 0;
}
.sh-rtable-buttons button:hover {
    opacity: .8;
}
.sh-rtable-buttons button[disabled] {
    pointer-events: none;
    cursor: default;
    filter: grayscale(100%);
    opacity: .2;
}
.sh-rtable-buttons span {
    color: #0000cc;
    font-size: 60px;
}
.sh-rtable tr._next {
    display: none;
}
.sh-rtable-wrapper.__next .sh-rtable tr._prev {
    display: none;
}
.sh-rtable-wrapper.__next .sh-rtable tr._next {
    display: table-row;
}
@media only screen and (max-width: 767px) {
    .sh-rtable-wrapper {
        max-width: 500px;
    }
    .sh-rtable tfoot td {
        padding-top: 50px;
    }
    .sh-rtable-buttons {
        z-index: 2;
        bottom: 45px;
    }
    .sh-rtable-buttons span {
        transform: rotate(90deg);
    }
}