@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 : yellow;
text-decoration: underline;
}
/* 

a {
  color: White !important;
  text-decoration: none;
}

/* ####################################

                      [2]レイアウト指定
                          
####################################### */
/*--全体のフォントサイズなど--*/
body{
font-size: 80%;
text-align: center;
font-family: "MS UI Gothic",serif;
padding: 0;
margin: 0;
}

/*-- 全体を囲んでいます --*/
#wrapper{
text-align: left;
margin: 1em auto 0 auto;
width: 2040px;
}

/*-- ヘッダー部分*/
#header{
height:100px;
}

/*-- コンテナー部分 --*/
#container{width: 100%;}

/*-- コンテンツ部分 --*/
#contents{
padding: 1200px 0px 0px 0px;
width: 300px;
float: right;
}

/*-- サイドバー部分 --*/
#sidebar{
padding: 220px 50px; 0px 100px;
width: 360px;  
float:left ;
}

/*-- フッター部分 --*/
#footer{
padding: 0px 0px;

clear: both;

width: 100%;
}


/* ####################################

                   [3]#header内の各指定
                          
####################################### */

/*-- サイトタイトル --*/
h1{
color : black;
font-size: 300%;
padding: 0px 0px 10px 20px;
}

/*-- その他ヘッダー内の文字 --*/
#header p{
font-size: 200%;
}


/* ####################################

                 [4]#contents内の各指定
                          
####################################### */

/*-- 見出し --*/
h2,h3{
font-size: 120%;
margin-bottom: 1.5em;
padding: 5px 0 0px 0px;
border-left: 10px solid #000000;
text-align: right;
}

h3{margin-top: 2em;}

/*-- 文字 ---*/
#contents p{
line-height: 1.5;
font-size: 200%;
margin-bottom: 1em;
text-align: center;
}

/* ####################################

                  [5]#sidebar内の各指定
                          
####################################### */

/*-- 適当に指定して下さい ---*/
h1{
color : White;
font-size: 300%;
padding: 200px 0px 0px 0px;
}

#sidebar p{
line-height: 1.5;
padding: 300px 0px 0px 10px;
margin-bottom: 1em;
font-size: 150%;
}


/* ####################################

                  [6]#footer内の各指定
                          
####################################### */
/*-- コピーライト --*/
#footer p{text-align: center;}   
a {
  color: White !important;
  text-decoration: none;

}