@charset "utf-8";

/* カレンダー全体を囲む */
#calendar_wrap{
	text-align: center;
}

#calendar_wrap input{
	-webkit-appearance:none;
}

/* カレンダー1つずつを囲む */
.calendar_block{
	background: #fbf8ec;
	margin-bottom: 0.5rem;
}

/* ブロック間矢印 */
.calendar_arrow:after{
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 50px 0 50px;
	border-color: #ccc transparent transparent transparent;
}

/* カレンダー名 */
.calendar_title{
	font-weight: bold;
	color: #fff;
	padding: 0.2rem 0 0.1rem 0;
}

#calendar_dept .calendar_title{
	background: #0c449b;
}

#calendar_arrv .calendar_title{
	background: #24b2c8;
}

/* カレンダー本体 */
.calendar{
	padding: 0.5rem 1rem;
	text-align: center;
}

.calendar table{
	width: 100%;
	margin: 0.5rem 0;
	line-height: 1.0;
}

.calendar th{
	border: 1px solid #ccc;
	color: #fff;
	padding: 5px 0;
}

#calendar_dept .calendar th{
	background: #0c449b;
}

#calendar_arrv .calendar th{
	background: #24b2c8;
}

.calendar td{
	border: 1px solid #ccc;
	background: #fff;
	padding: 8px 0;
	font-family: 'Lato', sans-serif;
	color: #0c449b;
	text-decoration: underline;
	cursor: pointer;
}

.calendar td:hover{
	background: #e9fcff;
	text-decoration: none;
}

.calendar td.holiday{
	color: #c00;
	background: #fff8f8;
}

.calendar td.holiday:hover{
	background: #fdd;
}

.calendar td.disable {
	color: #999;
	background: #ddd;
	text-decoration: none;
	cursor:default;
}

.calendar td.full{
	color: #999;
	background: #fff;
	background-image: url(../img/cross.png);
    background-repeat: no-repeat;
    background-position: center;
	text-decoration: none;
	cursor:default;
}

.calendar td.selectday{
	background: #f90;
	color: #fff;
	text-decoration: none;
}

/* 選択月 */
.month_title{
	display: inline-block;
	vertical-align: middle;
	font-size: 87.5%;
	padding: 0 1.5rem;
	font-weight: bold;
}

/* 月移動 */
.month_move_bt{
	display: inline-block;
	vertical-align: middle;
	border-radius: 3px;
	background: #efefef;
	border: 1px solid #ccc;
	color: #999;
	line-height: 1.0;
	padding: 5px 14px;
	cursor: pointer;
}

/* 日付確認 */
.calendar_confirm{
	margin-bottom: 1.5rem;
}

.calendar_confirm input{
	color: #000;
	font-size: 100%;
	width: 7em;
	border: none;
	background: #efefef;
}

/* 見積ボタン */
#estimate_bt{
	margin-bottom: 1.5rem;
}

/* 見積結果 */
#result{
	margin-bottom: 1.5rem;
}

#result div{
	background: #ffb;
	padding: 1rem;
	font-size: larger;
	border :4px solid #f00;
}

#result .estimate_price{
	color: #c00;
	font-weight: bold;
	font-size: larger;
}

/* 満車情報 */
.mansya{
	text-align: left;
	color: #f00;
	font-weight: bold;
	font-size: 87.5%;
}

.busy{
	font-size:87.5%;
	margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 980px){
#calendar_wrap{
	overflow: hidden;
}

.calendar_block{
	width: 49%;
	margin-bottom: 1.5rem;
}

#calendar_dept{
	float: left;
}

#calendar_arrv{
	float: right;
}

.calendar_arrow{
	display: none;
}

.calendar{
	padding: 0.5rem;
}

.month_title{
	padding: 0 0.5rem;
}

.calendar_confirm{
	clear: both;
}

.calendar_confirm div{
	display: inline;
}
}

/*eof*/