@charset "UTF-8";
/*====================================================================================
カレンダー
====================================================================================*/
#ui-datepicker-div {
  background-color: #fff;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
}

/*------------------------------------------
ヘッダー
------------------------------------------*/
.ui-datepicker-header {
  padding: 5px 30px;
  position: relative;
}

/* テキスト
------------------------------------------*/
.ui-datepicker-title {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}

/* ボタン
------------------------------------------*/
.ui-datepicker-prev, .ui-datepicker-next {
  position: absolute;
  top: 50%;
  margin-top: -7.5px;
}

.ui-icon {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.ui-icon:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -4px;
}

/* ボタン：戻る
------------------------------------------*/
.ui-datepicker-prev {
  left: 7px;
}

.ui-datepicker-prev .ui-icon:before {
  border-left: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -4px;
}

.ui-datepicker-next {
  right: 7px;
}

.ui-datepicker-next .ui-icon:before {
  border-right: 2px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*------------------------------------------
テーブル
------------------------------------------*/
.ui-datepicker-calendar {
  width: 100%;
}

.ui-datepicker-calendar th, .ui-datepicker-calendar td {
  font-weight: 600;
  line-height: 1em;
  text-align: center;
  padding: 5px 10px;
  border: 1px solid #fff;
}

.ui-datepicker-calendar td a {
  color: #083997;
}

.ui-datepicker-calendar span[title="日曜日"] {
  color: #B50002;
}

.ui-datepicker-calendar span[title="土曜日"] {
  color: #077bce;
}

.ui-datepicker-calendar thead * {
  font-weight: 600;
  background-color: #fff;
}

