@charset "UTF-8";

/*カレンダー部分*/


div.cal {
	float: left;
	margin-left: 20px;/*左端からの余白*/

}
div.cal * {
	text-align: center;
	font-size: 9pt;/*文字の大きさ*/
	background-color: #efc1c4;/*背景色*/
}

/*表（カレンダー）全体の設定*/
div.cal table {
	border: solid 1px #ff0037;
	width: 140px;
}
/*月表示部分*/
div.cal caption {
	border: solid 1px #ff0037;
	border-bottom: none;
	color: #ff0037;
	background-color: #f28cbb;
}
/*日にち表示部分*/
div.cal td.today {
	background-color: #ff657a;
}
