﻿@charset "UTF-8";

/* カレンダーの全体設定 */
body{
font-family: Arial, "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka",sans-serif;
font-weight: normal;
margin: 0px;
padding: 0px;
color: #333333;/* カレンダーの文字色 */
background-color: #eeeeee;/* カレンダーアーカイブの背景色 */
text-align: left;
}

/* カレンダーヘッダ(上部)の設定 */
.calendarhead{
font-weight: normal;
padding: 2px;
text-align: center;
letter-spacing: 0.1em;
border: 1px solid #cccccc;
font-size: 80%;
background-color: #ffffff;
}

/* カレンダーヘッダ(上部)の<<や>>に下線を付けない */
.calendarhead a,
.calendarhead a:link,
.calendarhead a:visited,
.calendarhead a:active,
.calendarhead a:hover{
text-decoration: none;
}

/* カレンダーの日付の設定 */
td, th{
width: 14%;
text-align:center;
font-size: 80%;
}

/* カレンダーの日付のアンカーの設定 */
td a,
td a:link,
td a:visited,
td a:active,
td a:hover{
font-weight: bold;
text-decoration: underline;
}

