@charset "UTF-8";

/* メイン */
body {
  color: #000000;
  background: #ffffff;
}

/* タイトル */
h2 {
  color: #660000;
  font-size: 120%;
  text-align: center; 
  margin-bottom: 2em;
} 

/* レイアウト（テーブルにマージンを設定するとなぜかエラーになるので、divで）*/
.c1 {
  margin: 1em 1em 2em;
}

/* テーブル */
table {
  font-size: 95%;
  border-collaps: collapse;
  border: 2px solid #009999;
}
th,td {
  padding: 5px;
}
th {
  color: #ffffff;
  background-color: #009999;
  border: none;
}
td {
  background-color: #ffffe0;
  border-top: 1px dotted #009999;
  border-left: 1px solid #009999;
  border-right: 1px solid #009999;
}

/* リンク */
a:link {
  color: #336633;
  text-decoration:
  none; font-weight: bold;
}
a:visited {
  color: #A0522D;
  font-weight: bold;
}
a:active {
  color: #003131;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  color: #fa8072;
  text-decoration: underline;
  font-weight: bold;
}

/* コメントの文字サイズ */
span {
  font-size: 85%;
}

/* サブ見出しの設定 */
.c2 {
  color: #003333;
  font-weight: bold;
  background-color: #ccffcc;
  border: none;
}

/* mailtoへのリンクカラー */
  a#c3:link {
  color: #ffff66;
  text-decoration: underline;
}

/* ナヴィゲーション */
#nav1 {
  margin-left: 1em;
  border: none;
}
