@charset "utf-8";
/* CSS Document */
.sun { color: #f00; } /* 日曜日セル(head,num) */
.sat { color: #00f; } /* 土曜日セル(head,num) */
.red { color: #f00; } /* 祝日セル(text) */

table.calendar {
  margin: 0.5em auto 1em auto;
  border-collapse: collapse;
}

table.calendar td, table.calendar th {
  text-align: center;
  font-weight: normal;
  height: 1.5em;
  border: 1px solid #999;
}

table.calendar th {
  width: 4em; /* thにだけつける, tdにつけるとfont-sizeをもとにするから */
  background: #eee;
}

table.calendar tr.num td {
  text-align: center;
  border-width: 1px 1px 0 1px;
}

table.calendar tr.num td.blank {
  border-width: 1px 1px 1px 1px;
}

table.calendar tr.text td {
  font-size: 0.6em;
  text-align: center;
  border-width: 0 1px 1px 1px;
}

form.calendar { text-align: center; }