/* 土曜日のカラー設定 */
.ui-datepicker-calendar tr td.ui-datepicker-week-end a{
  /*background: none;       // 背景画像を利用しているのでリセット*/
  background: #ccf; /* 背景色を設定 */
  color: #00f;            /* 文字色を設定 */
}
/* 日曜日のカラー設定 */
.ui-datepicker-calendar tr td:last-child a{
  /*background: none;       // 背景画像を利用しているのでリセット*/
  background: #fcc; /* 背景色を設定 */
  color: #f00;            /* 文字色を設定 */
}
td.ui-datepicker-selected a.ui-state-default{
  background: #88aa66 !important;
  color: #ffffff !important;
}

.ui-datepicker table {
  width: 100%;
  table-layout: fixed;
}

