@charset "utf-8";

/*曜日名見出し色フォーマットの変更(日曜日)*/
.ui-datepicker-calendar th:nth-child(1){
	color: #D7003A;
}

/*曜日名見出し色フォーマットの変更(土曜日)*/
.ui-datepicker-calendar th:nth-child(7){
	color: #0086FF;
}

/*祝日の配色等フォーマットの変更*/
.is-holiday a.ui-state-default {
	color: #D7003A;
}

/*日曜日の配色等フォーマットの変更*/
.is-sunday a.ui-state-default {
	color: #D7003A;
}

/*土曜日の配色等フォーマットの変更*/
.is-saturday a.ui-state-default {
	color: #0086FF;
}

/*DateTimePicker 祝日の配色等フォーマットの変更*/
.xdsoft_calendar td.jp_holiday {
	color: #D7003A;
}

/*DateTimePicker 日曜日の配色等フォーマットの変更(含む見出し)*/
.xdsoft_calendar th:nth-child(1),
.xdsoft_calendar td.xdsoft_day_of_week0 {
	color: #D7003A;
}

/*DateTimePicker 土曜日の配色等フォーマットの変更(含む見出し)*/
.xdsoft_calendar th:nth-child(7),
.xdsoft_calendar td.xdsoft_day_of_week6 {
	color: #0086FF;
}
