/*カレンダー更新プログラム（サイドカラム）フォーマット*/
#calendar {
	width: 100%;
	padding: 10px 9px;
	margin: 0 0 10px;
	border: 1px solid #ccc;
	position: relative;
	box-sizing:border-box;
}
#calendar #cal_title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}
#calendar #month {
	font-size: 11px;
	font-weight: bold;
	text-align: right;
	position: absolute;
	top: 12px;
	right: 10px;
	z-index: 999;
}
#calendar #month strong {
	font-size: 16px;
}
#calendar table {
	width: 100%;
	border-collapse: collapse;
}
#calendar table th, #calendar table td {
	font-size: 12px;
	text-align: center;
	padding: 10px 0;
}
#calendar table th {
	background: #acc9de;
	font-weight: bold;
}
#calendar table td.holiday {
	font-weight: bold;
	background: url(images/holiday.png) no-repeat center center;
}
#calendar table td.half {
	font-weight: bold;
	background: url(images/half.png) no-repeat center center;
}
#calendar table td.monday {
	color: #fff;
	font-weight: bold;
	background: url(images/monday.png) no-repeat center center;
}
ul.page_ctl {
	text-align: center;
	padding: 8px 10px;
	margin: 0 0 10px;
}
ul.page_ctl li {
	font-size: 12px;
	color: #389e7c;
}
ul.page_ctl li a {
	text-decoration: underline;
}
ul.page_ctl li a:hover {
	color: #999;
}
ul.page_ctl .ctl_left {
	float: left;
}
ul.page_ctl .ctl_right {
	float: right;
}
#tx_holiday {
	float: left;
	margin-right: 20px;
	padding: 0 0 0 15px;
	background: url(images/holiday_s.png) no-repeat left center;
}
#tx_half {
	float: left;
	padding: 0 0 0 15px;
	background: url(images/half_s.png) no-repeat left center;
}
#tx_monday {
	clear: both;
	padding: 0 0 0 15px;
	background: url(images/monday_s.png) no-repeat left center;
}
@media print, screen and (min-width:768px) {
#calendar {
	width: 60%;
	margin: 0 auto 10px;
}
}
@media print, screen and (min-width:992px) {
#calendar {
	width: 100%;
	margin: 0 0 10px;
}
}