/* 空席照会カレンダー */
.cal-condition .main-ticket{
	margin: 5px auto;
	padding: 0 0 25px;
	border-top: none;
	border-bottom: #ACC0DA 1px dotted;
}

.section-cal-area{
	margin: -25px auto 5px;
	width: 94%;
	text-align: center;
	background: none;
	border: none;
}

.section-cal-area span{
	display: inline-block;
	padding: 3px 10px;
	color: #FFF;
	font-size: 14px;
	background: #004195;
	border-radius: 20px;
}

/* datepicker.jsインライン表示 */
.cal_form{
	display: block;
	margin: 0 auto;
	padding: 0;
	width: 94%;
}

.date-area{
	display: table;
	margin: 0 auto 1em;
	width: 100%;
	overflow: hidden;
}

.date-area div{
	display: table-cell;
}

.on-date,
.off-date,
.error-date{
	margin: 0;
	padding: 5px 0;
	width: 40%;
	font-size: 12px;
	text-align: center;
	border-radius: 4px;
}

.on-date{
	color: #0F7F10;
	background: #D9F2C0;
	border: 1px solid #008000;
}

.off-date{
	color: #0F7F10;
	background: #FFF;
	border: 1px solid #0F7F10;
}

.error-date{
	color: #B81E33;
	background: #FFF;
	border: 1px solid #B81E33;
}

.round-date{
	width: 12%;
	text-align: center;
	vertical-align: middle;
}

.date-form{
	width: 100px;
	padding: 5px;
	color: #0F7F10;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	background: none;
}

.error-date .date-form{
	color: #B81E33;
}

/* カレンダー自体のデザイン */
/** 20160704追加ここから **/
.select-month{
	overflow: hidden;
	text-align: center;
	font-weight: bold;
	margin-bottom: 1em;
}
a.m-last,
a.m-next{
	display: block;
	color: #4487D6;
}
a.m-last{
	float: left;
}
a.m-next{
	float: right;
}
.cal-main{
	overflow-y: scroll;
	height: 300px;
}
.cal-main ul{
	list-style: none;
	padding: 0;
	margin-top: 0;
}
.cal-main li{
	border-bottom: solid 1px #BCBCBC;
	position: relative;
}
.date-select span{
	display: inline-block;
	padding: 0 2em 0 1em;
	color: #4A4A4A;
}
input[type=radio] {
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none !important;
	display: none;
}
.cal-main input[type=radio] + label {
  position: relative;
  display: inline-block;
	padding: 0.5em 0;
	width: 100%;
	color: #4487D6;
  cursor: pointer;
}
.cal-main input[type=radio]:checked + label {
	color: #0F7F10;
	font-weight: bold;
  background: #DAF1C2;
	box-shadow:0px 0px 0px 3px #008000 inset;
	-moz-box-shadow:0px 0px 0px 3px #008000 inset;
	-webkit-box-shadow:0px 0px 0px 3px #008000 inset;
}
.cal-main input[type=radio]:checked + label span {
	color: #0F7F10 !important;
}
/* セレクト時の三角 */
.date-select-arrow,
.date-select-arrow2,
.date-select-arrow-error,
.date-select-arrow-error2{
	display: block;
	position: absolute;
	left: 50%;
	z-index: 20;
}
.date-select-arrow{
	bottom: -15px;
	border: 8px solid transparent;
	border-top: 8px solid #008000;
}
.date-select-arrow2{
	top: -15px;
	border: 8px solid transparent;
	border-bottom: 8px solid #008000;
}
.date-select-arrow-error{
	bottom: -15px;
	border: 8px solid transparent;
	border-top: 8px solid #BC2B3F;
}
.date-select-arrow-error2{
	top: -15px;
	border: 8px solid transparent;
	border-bottom: 8px solid #BC2B3F;
}
/* 日曜日 */
.sunday span{
  color: #B81E33;
}
/* 土曜日 */
.saturday span{
  color: #2F59EC;
}
/* 過去の選択できない日 */
.past-day,
.past-day span{
	color: #9B9B9B !important;
}
/* 復路出発日 */
.off-day{
	color: #0F7F10 !important;
	font-weight: bold;
	background: #FFF;
	box-shadow:0px 0px 0px 3px #008000 inset;
	-moz-box-shadow:0px 0px 0px 3px #008000 inset;
	-webkit-box-shadow:0px 0px 0px 3px #008000 inset;
}
.off-day span{
	color: #0F7F10 !important;
}
/* 選択可能日 */
.availability{
	background: #F8FDF3;
}
/* 選択エラー */
.error-day{
	color: #BC2B3F !important;
	font-weight: bold;
	background: #FFF;
	box-shadow:0px 0px 0px 3px #BC2B3F inset;
	-moz-box-shadow:0px 0px 0px 3px #BC2B3F inset;
	-webkit-box-shadow:0px 0px 0px 3px #BC2B3F inset;
}
.error-day span{
	color: #BC2B3F !important;
}/** ここまで **/
