@charset "UTF-8";

/* イベントカレンダー 表示テーブル */
.t-calender {
  width: 100%;
  margin-bottom:5px;
  padding:5px;
}

/* イベント 表示テーブル */
.t-event {
  background-color: #999999;
  width: 100%;
  border: thin solid #003366;
  margin-bottom:15px;
}

/* 日付 */
.td-date {
  font-weight: bold;
  color: #333333;
  background-color: #FFFFFF;
  text-align: center;
  vertical-align: middle;
  width: 30px;
  font-size: 11px;
}

/* イベント名 */
.td-name {
  color: #333333;
  background-color: #FFFFFF;
  vertical-align: top;
  font-size: 12px;
  padding-right: 5px;
  padding-left: 5px;
}

/* 場所 */
.td-place {
  color: #333333;
  background-color: #FFFFFF;
  vertical-align: top;
  width: 80px;
  font-size: 12px;
  padding-right: 5px;
  padding-left: 5px;
}

/* 月 表示テーブル */
.t-header {
  width: 100%;
  margin-top:15px;
  margin-bottom:10px;
  padding:5px;
}

/* 月 (数字) */
.td-month {
  font-family: "Verdana", "Arial", "Helvetica";
  font-size: 30px;
  color: #FF0000;
  text-align: center;
  width: 90px;
  font-weight: bold;
  height: 25px;
  vertical-align: middle;
}

/* 月 (英字) */
.td-month-e {
  font-family: "Georgia", "Times New Roman", "Times";
  font-size: 25px;
  color: #333333;
  font-weight: bold;
  vertical-align: middle;
}

/* 西暦 */
.td-year {
  font-family: "Verdana", "Arial", "Helvetica";
  font-size: 18px;
  color: #333333;
  text-align: right;
  vertical-align: bottom;
  font-weight: bold;
  padding-right: 20px;
}

