/*カレンダー用テーブル
---------------------------------------------------------------------------*/
/*テーブル全体の設定*/
.cal {
	border: 1px solid #94aab6;	/*枠線の幅、線種、色*/
	background: #FFF;			/*テーブル内の背景色*/
	font-size: 11px;			/*文字サイズ*/
	margin-right: auto;
	margin-left: auto;
}
.cal td, .cal th{
	border: 0;	/*枠線の幅、線種、色*/
	line-height: 1;				/*行間*/
	text-align: center;			/*文字をセンタリング*/
	padding: 5px;				/*ボックス内の余白*/
	background: #ebebeb;	/*背景色*/
}
/*テーブル内のth(曜日)設定*/
.cal th{
	background: #FFF;	/*背景色*/
}
/*休日の設定*/
.cal .off {
	background: #94aab6;	/*背景色*/

}
/*日曜日の設定*/

.holiday{
	font-size: 120%;
    padding: 0px 5px;
    color: #94aab6;
    background: #94aab6;
}

.cap{
	font-size: 80%;
	padding: 5px 20px;
}
