﻿@charset "UTF-8";

/* 未訪問のリンク */
a:link {
  color: blue;
}
    
/* 訪問済みのリンク */
a:visited {
  color: blue;
}
    
/* マウスオーバーしたときのリンク */
a:hover {
  color: red;
  text-decoration: underline;
}
    
/* クリックした瞬間のリンク */
a:active {
   color: blue;
}

/* サイト全体のフォント指定 */
body {
font-family: "MS Pゴシック" ;
}

.table_layout{
  table-layout: auto;
  width: 500px;
}

.font1 {
    font-size: 30px; 
}

.font2 {
    font-size: 20px; 
}


.table1 td{
    background: maroon;
    width: 500px;
    color: #FFFFFF;
}

.table2{
  width: 20px;
  color: #dc143c;
  vertical-align: top;
}

.table3{
  width: 460px;
}

body {
  background-color: #c8b8a8;
}

hr {
 height: 5px;
}


