@charset "Shift_JIS";

/*
[1]リンク指定
[2]レイアウト指定
[3]#header内の各指定
[4]#contents内の各指定
[5]#sidebar内の各指定
[6]#footer内の各指定
*/

/* 一括で全ての要素の余白をゼロに指定 */
*{padding: 0;	margin: 0;}

/*-- 削除不可 --*/
#cds{display: none;}


/* ####################################

                          [1]リンク指定
                          
####################################### */

A:LINK{
color : black;
text-decoration: underline;
}

A:VISITED{
color : black;
text-decoration: underline;
}

A:HOVER{
color : black;
text-decoration: underline;
}


/* ####################################

                      [2]レイアウト指定
                          
####################################### */
/*--全体のフォントサイズなど--*/
body{
font-size: 80%;
text-align: center;
font-family: "MS UI Gothic",sans-serif;
padding: 0;
margin: 0;
}

/*-- 全体を囲んでいます --*/
#wrapper{
text-align: left;
margin: 1em auto 0 auto;
width: 1040px;
}

/*-- ヘッダー部分*/
#header{
margin: 3em auto 0 auto;

height: 200px;
}

/*-- コンテナー部分 --*/
#container{width: 100%;}

/*-- コンテンツ部分 --*/
#contents{
margin: 10px 0px;
width: 1040px;
float: center;
white-space: nowrap;}

/*-- サイドバー部分 --*/
#sidebar{
margin: 5px 10px;
width: 40px;
float: left;
}

/*-- フッター部分 --*/
#footer{
margin: 0px 30px;
clear: both;
width: 100%;
}  


/* ####################################

                   [3]#header内の各指定
                          
####################################### */

/*-- サイトタイトル --*/
h1{
color : purple;
font-size: 300%;
margin: 0px 0px 10px 20px;
}

/*-- その他ヘッダー内の文字 --*/
#header p{
margin: 0px 0px 0px 20px;
font-size: 200%;
}


/* ####################################

                 [4]#contents内の各指定
                          
####################################### */

/*-- 見出し --*/
h2,h3{
font-size: 120%;
margin-bottom: 1.5em;
margin: 5px 0px 5px 5px;
border-left: 10px solid #000000;
text-align: center;
}

h3{margin-top: 2em;}

/*-- 文字 ---*/
#contents p{
line-height: 1.5;
margin-bottom: 1em;
text-align: center;
}

/* ####################################

                  [5]#sidebar内の各指定
                          
####################################### */

/*-- 適当に指定して下さい ---*/
h1{
color : black;
font-size: 230%;
margin: 0px 0px 10px 0px;
}

#sidebar p{
line-height: 1.5;
margin: 0px 0px 0px 0px;
margin-bottom: 1em;
font-size: 150%;
}
#sidebar A:LINK{
color : White;
text-decoration: underline;
}

#sidebar A:VISITED{
color : White;
text-decoration: underline;
}

#sidebar A:HOVER{
color : fuchsia;
text-decoration: underline;
}


/* ####################################

                  [6]#footer内の各指定
                          
####################################### */

/*-- コピーライト --*/
#footer p{text-align: }   