/* このスタイルシートには、各ページ共有のスタイルをまとめてあります。 */

/*全体*/
body {
margin: 0 auto;
padding: 0;
}

/*（tag）見出し　書体、大きさ、*/
h1 {
font-family: sans-serif;
font-size: large;
}
h2 {
font-family: sans-serif;
font-size: medium;
}
h3 {
font-family: sans-serif;
font-size: small;
}
h4 {
font-family: sans-serif;
font-size: small;
}

/*（class）リスト　書体、大きさ、*/
.listsmall {
font-family: sans-serif;
font-size: small;
}
.listmedium {
font-family: sans-serif;
font-size: medium;
}
.listlarge {
font-family: sans-serif;
font-size: large;
}

/*（class）整列　左揃え、右揃え、中央揃え、*/
.alignleft {
text-align: left;
}
.alignright {
text-align: right;
}
.aligncenter {
text-align: center;
}

/*（class）フロート　左寄せ、右寄せ、*/
.floatleft {
float: left;
}
.floatright {
float: right;
}

/*（class）フロート解除　左寄せ解除、右寄せ解除、寄せ解除、*/
.clearleft {
clear: left;
}
.clearright {
clear: right;
}
.clearboth {
clear: both;
}

/*（class）文字サイズ　大、中、小、*/
.fontlarger {
font-size: larger;
line-height: 1.3em;
}
.fontsmaller {
font-size: smaller;
line-height: 1.3em;
}

/*（id）ブロック　背景、*/
#one, #two, #three, #four {
margin: 0;
padding: 0;
background-color: #ffffff;
background-image: url(../image/outerwrap.png);
background-repeat: repeat-y;
background-position: center;
}
#zero {
background-color: #ffffff;
}

/*（class）ブロック　横幅、外余白、内余白、*/
.top {
width: 800px;
margin: 0 auto;
padding: 0;
background-color: #ffffff;
}
.middle {
width: 800px;
margin: 0 auto;
padding: 0;
background-color: #ffffff;
}
.bottom {
width: 800px;
margin: 0 auto;
padding: 0;
background-color: #003399;
}
.out {
width: 800px;
height: 25px;
margin: 0 auto;
padding: 10px 0 10px 0;
text-align: right;
background-color: #ffffff;
}

/*（id）●コピーライト */
#copyright {
background-color: #ffffff;
margin: 0px auto;
padding: 0;
}
#copyright p{
font-family: sans-serif;
font-size: small;
line-height: 1.3em;
text-align: right;
margin: 0;
padding: 0.25em 20px 0.25em 20px;
color: #ffffff;
/*background-color: #003399;*/
background-color: #006600;
}

/*（id）●最終更新日付 */
#lastupdate {
font-family: sans-serif;
font-size: small;
margin: 0;
padding: 0 20px;
color: #ffffff;  /* color: #666666; */
background-color: #ffffff;
}
