***************************************************************/

/* html（スクロールバーの色設定が反映されるのはIEのみ） */
html {
  scrollbar-face-color: #ffffff;       /* バーの色 */
  scrollbar-3dlight-color: #ffffff;    /* 左上外側ライン */
  scrollbar-highlight-color: #dcdcdc;  /* 左上内側ライン */
  scrollbar-shadow-color: #ffffff;     /* 右下内側ライン */
  scrollbar-darkshadow-color: #d3d3d3; /* 右下外側ライン */
  scrollbar-arrow-color: #b0c4de;      /* 矢印 */
  scrollbar-track-color: #f5f5f5;      /* トラック部分 */
}

/* Reset
------------------------------------------------- */

html,body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,
blockquote,th,td,p {
  margin: 0;
  padding: 0;
}

/* ボディ */
body {
  /* サイト内の文字の設定 */
  text-align: left;     /* 文字を左に設定 */
  font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Osaka,sans-serif; 
  line-height: 1.6;     /* 文字間隔 */
  font-size: 12px;      /* 文字サイズ */
  color: #cccccc;       /* 文字色 */
  /* 背景の設定 */
  background: url() fixed black;
}

/* リンク文字 */
a {
  text-decoration: none; /* 下線無し */
  color: #00A5C8;        /* 文字色 */
}

/* カーソルを置いたときのリンク文字 */
a:hover {
  text-decoration: none; /* 下線 */
}

/* イメージにリンクを貼ったときの設定 */
a img {
  border : none;         /* 線無し */
}

/* 入力エリア、リスト、ボタンの設定 */
input,textarea,select,button,submit {
  color:            #333333; /* 文字色 */
  font-size:           13px; /* 文字サイズ */
  background:       #ffffff; /* 背景色 */
  border: 1px solid #7f9db9; /* 線の色 */
}

/* テーブルセル全般の文字設定 */
th,td {
  vertical-align: top;    /* 上寄せ */
}

/* 絵文字 */
img.emoji {
  vertical-align: middle; /* 上寄せ */
  border: 0;              /* 線無し */
}

/*タイトル設定------------------------------------------------*/

/* ブログタイトル */
.blog_title {
  color: #dddddd;
  margin-top:  70px;     /* 上にに間隔を取る */
  margin-left: 40px;     /* 左にに間隔を取る */
  font-size:   24px;     /* 文字サイズ */
  font-weight: bold;     /* 太字 */
}

/* ブログタイトルリンク */
.blog_title a {
  text-decoration: none; /* 下線無し */
  color: #dddddd;        /* 文字色 */
}

/* サブタイトル */
.sub_title {
  margin-left: 50px;     /* 左にくっつき過ぎないように間隔を取っています */
  font-size:   15px;     /* 文字サイズ */
  color:     #cccccc;     /* 文字色 */
  font-weight: bold;
}




/*レイアウト設定----------------------------------------------*/

/* 外枠 */
#container {
  position:relative;
  width: 900px;          /* 外枠の幅 */
  margin:0 auto;         /* 中央に設定 */
  /* 背景の設定 */
  background: transparent;
}

/* ヘッダー部分 */
#header {  
  width : 900px;         /* ヘッダー部分の幅 */
  height: 250px;         /* 高さを設定します */
  background: url(http://blog-imgs-46.fc2.com/k/i/r/kirisuzu1102/cf1b.jpg) no-repeat 90% 50% black;
}

#wrap {
  width: 690px;
  float: left;
}
#wrap:after {
  content: "";
  overflow: hidden;
  display: block;
  height: 1px;
  clear: both;
}
/*\*/
* html #wrap {
  overflow: visible;
  height: 1px;
}
/**/

/* 記事部分 */
#main {
  float: right;
  width: 470px !important;
  width /* for IE5.5 */: 500px;
  padding: 0px 0px 5px 0px;
  overflow: hidden;
  margin-left: 12px;
  background: url() transparent;
}

/* メニュー部分 */
#sidemenu1 {
  float: left;
  width: 205px;
  padding-bottom: 20px;
  overflow: hidden;
}

#sidemenu2 {
  float: right;
  width: 205px;
  padding-bottom: 20px;
  overflow: hidden;
}

/* フッター部分 */
#footer {
  width :      900px;    /* フッター部分の幅 */
  clear :       both;    /* 回り込み解除 */
  margin-top:   40px;    /* 上との間隔を開けています */
  text-align: center;    /* 文字を中央に設定 */

  /* 背景の設定 */
  background: url() transparent;
}

/*メニュー部分設定--------------------------------------------*/

/* メニュー囲み */
.menu_block {
  width :       180px;   /* メニューの枠の幅 */
  margin-bottom: 10px;   /* 下に間隔を取る */
  padding-bottom: 15px;
  padding-left:   10px;
  padding-right:  10px;
  border-top:    2px solid #555555;
  border-left:   2px solid #555555;
  border-right:  2px solid #555555;
  border-bottom: 2px solid #555555;
}

/* メニュータイトル */
.menu_title {
  font-size:    13px;    /* 文字の大きさ */
  font-weight:  bold;    /* 太字 */
  padding-left:   5px;
  margin-bottom: 10px;    /* 下に間隔を取る */
  margin-top:    10px;   /* 上に間隔を取る */
  border-bottom: 2px dotted #555555;
  /* アイコン画像 */
  background: url();
}

/* メニューリスト親要素 */
ul {
  margin:  0;            /* デフォルトでは間隔が広いので */
  padding-left:10px;
}

/* メニューリスト子要素 */
li {
  margin:       2px;    /* 間隔設定 */
  padding-left: 0px;    /* 左に間隔を取る */
　list-style-type: circle;
  /* アイコン画像 */
  background: url();
}


/*記事部分等設定----------------------------------------------*/


/* 記事部分等囲み */
.main_block {
  width :       435px;   /* 記事部分の枠の幅 */
  margin-bottom: 15px;   /* 下に間隔を取る */
  padding-bottom:15px;
  padding-left:   10px;
  padding-right:  10px;
  border-top:    2px solid #555555;
  border-left:   2px solid #555555;
  border-right:  2px solid #555555;
  border-bottom: 2px solid #555555;
}

/* 記事部分等タイトル */
.main_title {
  padding-left:  10px;   /* アイコンを入れるので左に間隔を取っています */
  margin-top:    10px;   /* 上に間隔を取る */
  margin-bottom:  5px;   /* 下に間隔を取る */
  font-size:     16px;   /* 文字の大きさ */
  font-weight:   bold;   /* 太字 */
  border-bottom : 2px dotted #555555;
  /* 背景の設定 */
  background: url();
}
/* 記事部分等タイトル */
.main_title1 {
  padding-left:  5px;   /* アイコンを入れるので左に間隔を取っています */
  margin-top:    10px;   /* 上に間隔を取る */
  margin-bottom: 15px;   /* 下に間隔を取る */
  font-size:     16px;   /* 文字の大きさ */
  font-weight:   bold;   /* 太字 */
  border-bottom : 2px dashed #555555;
  /* 背景の設定 */
  background: url();
}
/* リンク文字 */
.main_title a {
  text-decoration: none; /* 下線無し */
}

/* 記事部分等本文囲み */
.main_body {
  margin-left:   10px; /* 左に間隔を取る */
  margin-right:  10px; /* 右に間隔を取る */
  margin-bottom: 25px; /* 下に間隔を取る */
  font-size :    12px; /* 文字の大きさ */
}

/* 日付等のステータス */
.main_state {
  margin-right:  20px; /* 右に間隔を取る */
  text-align:   right; /* 文字右寄せ */
  font-size:     11px; /* 文字の大きさ */
}

/* コメント、トラックバック囲み */
.link_block {
  margin-right:  20px; /* 右に間隔を取る */
  margin-bottom: 15px; /* 下に間隔を取る */
  border-bottom: 3px double #555555; /* 下に点線を描く */
}

/* コメント、トラックバックタイトル */
.link_title {
  font-weight: bold; /* 太字 */
}


/*その他------------------------------------------------------*/


/* ページ移動 */
.page_navi {
  width :470px; /* ページ移動の枠の幅 */
  margin: 15px; /* 上下左右に間隔を取っています */
  text-align: center; /* 文字中央寄せ */
}

/* カレンダー設定 */

/* カレンダー枠テーブル */
table.calender {
  width: 185px;
}

/* ヘッダー（年、月） */
.calender caption {
  font-size: 12px;
  border-bottom: 1px solid #eeeeee; /* 下にラインを書いています */
}

/* 曜日セル */
.calender th {
  font-weight: normal;
  text-align: center;
}

/* 日付セル */
.calender td {
  text-align: center;
}

/* 日曜日の色 */
th#sun {
  color: #ff0000;
}

/* 土曜日の色 */
th#sat {
  color: #0000ff;
}
