@charset "UTF-8";

@media (min-width: 1350px) {
  .container {
    max-width: 1290px;
  }
}

/* datepicker用 */
/* 日曜日のカラー設定 */
td.ui-datepicker-week-end:first-child a.ui-state-default{
  background-color: #ffecec;   /* 背景色を設定 */
  color: #f00!important;       /* 文字色を設定 */
}
/* 土曜日のカラー設定 */
td.ui-datepicker-week-end:last-child a.ui-state-default{
  background-color: #eaeaff;   /* 背景色を設定 */
  color: #00f!important;       /* 文字色を設定 */
}
/* ホバー時の動作 */
td.ui-datepicker-week-end a.ui-state-hover{
  opacity: 0.8;
}
/* 当日を示す色はそのまま */
td.ui-datepicker-week-end a.ui-state-highlight{
  background-color: #fffa90!important;
}

/* datetimepiker用 */
/* 日曜日のカラー設定 */
.datepicker-days th.dow:first-child,
.datepicker-days td:first-child {
  background-color: #ffecec;
  color: #f00!important;
}

/* 土曜日のカラー設定 */
.datepicker-days th.dow:last-child,
.datepicker-days td:last-child {
  background-color: #eaeaff;
  color: #00f!important;
}

/* CKEDITOR 高さ */
.ck-editor__editable {
  min-height: 500px!important;
}

