/* カレンダー */

/* 日付部分の文字色 */
.calendar-table-day {
  color: #333;
  background-color: #FFFFFF;
}
/* 土曜日の文字色 */
.calendar-table-day.sat {
  color: #333;
}
/* 日曜日の文字色 */
.calendar-table-day.sun {
  color: #D7330C;
}



/* カレンダーのボーダーとパディングの設定 */
.calendar-table-week > .calendar-table-day{
  border-left: 1px solid #CFC099;
  border-bottom: 1px solid #CFC099;
  padding: 10px 3px;
}
.calendar-table-week > .calendar-table-day:last-child{
  border-right: 1px solid #CFC099;
}



/* 毎週月曜日の背景と文字色 */
.calendar-table-week > .mon{
  color: #FFFFFF;
  background: #FACBE0;
}
/* 第一火曜日の背景と文字色 */
.calendar-table-week > .tue-1{
  color: #FFFFFF;
  background: #FACBE0;
}

/* 曜日表記部分 背景と文字色とパディング */
.calendar-table-week-head > .calendar-table-day{
  border-top: 1px solid #CFC099;
  background: #CFC099;
  padding: 3px;
  color: #333;
}

/* 曜日表記部分 月曜日の背景と文字色 */
.calendar-table-week-head > .mon{
  color: inherit;
}

