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