img.ui-datepicker-trigger {
    cursor: pointer;
    margin-left: 7px!important;
    vertical-align: middle;
}

/* 年プルダウンの変更 */
select.ui-datepicker-year {
    color: black;
    font-weight: normal;
    height: 2em!important;       /* 高さ調整 */
    margin-right: 5px!important; /* 「年」との余白設定 */
    width: 80px!important;       /* 幅調整 */
}

/* 月プルダウンの変更 */
select.ui-datepicker-month{
    color: black;
    font-weight: normal;
    height: 2em!important;       /* 高さ調整 */
    margin-left: 5px!important;  /* 「年」との余白設定 */
    width: 70px!important;       /* 幅調整 */
}

/* 日曜日のカラー設定 */
td.ui-datepicker-week-end:last-child a.ui-state-default {
    background-color: #eaeaff;   /* 背景色を設定 */
    color: #00f!important;       /* 文字色を設定 */
}

/* 土曜日のカラー設定 */
td.ui-datepicker-week-end a.ui-state-default {
    background-color: #ffecec;   /* 背景色を設定 */
    color: #f00!important;       /* 文字色を設定 */
}

/* ホバー時の動作 */
td.ui-datepicker-week-end a.ui-state-hover {
    opacity: 0.8;
}