#booking-package .sun {
    
}

#booking-package .mon {
    
}

#booking-package .tue {
    
}

#booking-package .wed {
    
}

#booking-package .thu {
    
}

#booking-package .fri {
    
}

#booking-package .sat {
    
}

#booking-package .nationalHoliday {
    
}

#booking-package_calendarPage .dateField {
    /**
    background-color: #0f9b79;
    color: #fff;
    font-weight: 400;
    **/
}

#booking-package_calendarPage .startDateOfFullRoom {
    /**
    background-image: repeating-linear-gradient(270deg, #ff8989 0px 50%, transparent 0% 100%);
    **/
}

#booking-package_calendarPage .dateOfFullRoom {
    /**
    background: #ff8989;
    **/
}

#booking-package_calendarPage .endDateOfFullRoom {
    /**
    background-image: repeating-linear-gradient(90deg, #ff8989 0px 50%, transparent 0% 100%);
    **/
}

/* カスタム */

/** 
 * カレンダーページ
 */

/* カレンダーの日付スロット */
#booking-package_calendarPage .day_slot {
    border: 1px solid #eee;
    margin: 3px;
    border-radius: 10px;
}

/* カレンダーの選択可能な日 */
#booking-package_calendarPage .available_day {
    border: 1px solid #0385b2 !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}
#booking-package_calendarPage .available_day .symbolPanel {
    transition: color 0.3s ease;
}

/* カレンダーの週ヘッダー */
#booking-package_calendarPage .week_slot {
    border: none;
    font-weight: bold;
}

/* カレンダー全体 */
#booking-package_calendarPage .calendar {
    margin-top: 30px;
}

/* カレンダー全体のヘッダー */
#booking-package_calendarPage .calendarHeader {
    border-bottom: 5px solid #0385b2;
}

#booking-package_calendarPage .available_day:hover {
    color: #fff;
    background-color: #0385b2;
}
#booking-package_calendarPage .available_day:hover .symbolPanel {
    color: #fff !important;
}


/**
 * スケジュールページ
 */

/* 選択不可の日付と時間 */
#booking-package_schedulePage .closed {
    color: #cfcfcf;
    background-color: #f2f2f2;
    border-color: #f2f2f2 !important;
}
#booking-package_schedulePage .topPanel {
    border: none;
    border-bottom: 5px solid #0385b2;
    padding-bottom: 10px;
}
#booking-package_schedulePage div, #booking-package_servicePage div {
    border: none;
}
#booking-package_schedulePage .courseListPanel {
    box-shadow: none;
    margin-top: 40px;
}
#booking-package_schedulePage .selectable_day_slot {
    border: 1px solid #ddd;
    margin: 5px 0;
    border-radius: 0px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
#booking-package_schedulePage .daysListPanel {
    margin-top: 30px;
}
#booking-package_schedulePage .selected_day_slot {
    background-color: #0385b2;
    color: #fff;
    border-color: #0385b2 !important;
}
#booking-package_schedulePage .selectable_time_slot {
    margin: 10px;
    border: 1px solid #0385b2;
    border-radius: 50px;
    width: 95%;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}
#booking-package_schedulePage .bottomPanelForPositionInherit {
    margin-top: 10px;
}
/* ホバー設定 */
#booking-package_schedulePage .selectable_time_slot:not(.closed):hover {
    color: #fff;
    background-color: #0385b2;
}
#booking-package_schedulePage .closed:hover {
	background-color: #f2f2f2;
}
#booking-package_schedulePage .selectable_day_slot:not(.closed):hover {
    background-color: #0385b2;
    color: #fff;
    border-color: #0385b2 !important;
}

/**
 * 情報入力ページ
 */
#booking-package_inputFormPanel .title_in_form {
    border-bottom: 5px solid #0385b2;
}
#booking-package_inputFormPanel .row {
    border: none;
    margin: 5px 0;
}
#booking-package_inputFormPanel .name {
	font-weight: bold;
}
#booking-package_inputFormPanel > div:nth-of-type(2) {
    margin-top: 30px;
}
#booking-package_inputFormPanel input[type=text] {
    background-color: #fff;
}
#booking-package_inputFormPanel input[type=text]:focus {
    border-color: #0385b2;
    outline: none;
}
#booking-package_inputFormPanel input[type=checkbox] {
    accent-color: #0385b2;
}
#booking-package_inputFormPanel .required:after {
	color: #ca1f1f;
}
#booking-package_inputFormPanel .error_empty_value {
	background-color: #fff3f0;
    border-radius: 10px;
}