/* simplePagination.css 調整 */
.custom-theme a, .custom-theme span {
    width: 40px;
}
@media screen and (max-width: 600px) {
    .custom-theme a, .custom-theme span {
        width: 35px;
    }
}
@media screen and (max-width: 480px) {
    .custom-theme a, .custom-theme span {
        width: 28px;
    }
}
@media screen and (max-width: 375px) {
    .custom-theme a, .custom-theme span {
        width: 26px;
    }
}
@media screen and (max-width: 330px) {
    .custom-theme a, .custom-theme span {
        width: 22px;
    }
}

.custom-theme .current {
    width: 40px;
}
@media screen and (max-width: 600px) {
    .custom-theme .current {
        width: 35px;
    }
}
@media screen and (max-width: 480px) {
    .custom-theme .current {
        width: 28px;
    }
}
@media screen and (max-width: 375px) {
    .custom-theme .current {
        width: 26px;
    }
}
@media screen and (max-width: 330px) {
    .custom-theme .current {
        width: 22px;
    }
}


/* ▼jQuery UI date picker 調整 */
.ui-state-default, .ui-widget-content .ui-state-default {
    border: none;
    text-align: center;
}
.ui-state-active, .ui-widget-content .ui-state-active {
    background-color: #10b5ff;
    color: #ffffff !important;
}
.ui-widget-header {
    border: unset;
    background-color: unset;
}
.ui-widget.ui-widget-content {
    padding: 4px;
    border: 1px solid #727272;
    box-shadow: 1px 1px 6px 0px #6e6e6e;
}
.ui-widget-content {
    border: none;
}
.ui-datepicker {
    z-index: 1002 !important;   /* ヘッダ(1001)より上 */
}
.ui-datepicker .ui-datepicker-buttonpane {
    margin: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
    display: flex;
    align-items: center;
    margin: 5px 5px 3px;
    padding: 0 10px;
    color: #363636 !important;
    font-size: 14px;
    font-weight: normal;
    box-shadow: 0 0 1px 1px #e1e1e1;
}
.ui-datepicker table {
    margin: 0;
}
.ui-datepicker th {
    background-color: #ede6da;
    border: 1px solid #ffffff;
    padding: 5px 0;
}
.ui-datepicker-calendar thead {
    border-bottom: none;
}
.ui-datepicker-calendar tbody tr {
    border: none !important;
}
.ui-datepicker-calendar tbody tr:nth-child(2n + 1) {
    background-color: unset !important;
}
.ui-datepicker-calendar tbody tr:hover {
    background-color: unset;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    width: 2.8em;
    background-color: #efefef;
}
.ui-datepicker .ui-datepicker-title {
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.ui-datepicker select.ui-datepicker-year {
    width: 77px;
    height: 26px;
    padding: 0 0 0 8px;
    text-overflow: unset;
    margin-right: 4px;
}
