/* カレンダー選択背景色 */
.ui-selected-highlight a {
	background: #743620 !important;
	color: white !important;
}
/* 日曜日のカラー設定 */
td.ui-datepicker-week-end:last-child a.ui-state-default {
  background-color: #ffecec;   /* 背景色を設定 */
  color: #f00;       /* 文字色を設定 */
}

/* 土曜日のカラー設定 */
td.ui-datepicker-week-end a.ui-state-default{
  background-color: #eaeaff;   /* 背景色を設定 */
  color: #00f;       /* 文字色を設定 */
}
/* ホバー時の動作 */
td.ui-datepicker-week-end a.ui-state-hover{
  opacity: 0.8;
}

td.ui-datepicker-today a.ui-state-highlight {
	border: 1px solid #dad55e;
	background-color: #fffa90;
}
