@charset "utf-8";
/* CSS Document */

/* 面接予約希望来社日時用休日カレンダー */
.wrapper form input {
  display: inline-block;
  border-radius: 10px; 
  font-size: 1.8rem;
  text-align: center;
  cursor: pointer;
  padding: 1em 3em;
  background: #3282c4;
  color: #fff;
  line-height: 1em;
  transition: .3s;
  border: 2px solid #3282c4;
}

.wrapper form input:hover {
  color: #3282c4;
  background: #fff;
}

.calender-container {
    position: relative;
}

.calender-container .holiday-check-btn {
    position: absolute;
    right: 10px;
    top: 10px;
}

.calendar_tab {
    width: 100%;
    margin: 5em 0 3em;
}

.calendar_tab th {
    text-align: center;
    font-size: 1.6rem;
    padding: 1.4em 0;
}

.calendar_tab .tit {
    font-size: 2rem;
    padding: 0.5em;
    background: #eee;
}

.calendar_tab td {
    font-size: 1.8rem;
    border: 1px #eee solid;
    padding: 1em 0;
    cursor: pointer;
}

@media screen and (max-width:480px) {
    .calendar_tab td {
        padding: 0.5em 0;
    }
}

.calendar_tab th.saturday,
.calendar_tab td.saturday {
    color: #115bc6;
}

.calendar_tab td.saturday {
    background: #dbe9fc;
}

.calendar_tab th.sunday,
.calendar_tab td.sunday {
    color: #e53427;
}

.calendar_tab td.sunday {
    background: #fbd8d6;
}

.calendar_tab td input[type=checkbox] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #3282c4;
    background: #d4eafc;
    color: #3282c4; 
}

/* お問い合わせフォーム */
#ui-datepicker-div {
    width: 370px;
}

@media screen and (max-width:480px) {
    #ui-datepicker-div {
        width: 95%;
        left: 9px !important;
    }
}

.ui-widget-header {
    background: #3282C4;
    border: none;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 7px;
}

.ui-widget-header .ui-icon {
    background-image: url(https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_ffffff_256x240.png);
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
}

.ui-datepicker-title {
    font-size: 1.8rem;
    color: #fff;
}

.ui-datepicker-calendar thead tr th {
    background: #d4eafc;
    border-right: 1px #fff solid;
}

.ui-datepicker-calendar thead tr th:last-child {
    border-right: none;
}

.ui-datepicker-calendar tbody tr td .ui-state-default {
    font-size: 1.4rem;
    padding: 0.65em 0;
    text-align: center;
    border-radius: 5px;
}