***************************************************************/

/* 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;      /* トラック部分 */
}

/* ボディ */
body{
  margin: 0px;          /* 余白無し */
  /* サイト内の文字の設定 */
  text-align: left;     /* 文字を左に設定 */
  line-height: 1.6;     /* 文字間隔 */
  font-size: 11px;      /* 文字サイズ */
  /* 画面全体のフォント指定 */
  font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Osaka,sans-serif; 

  color: #555555;       /* 文字色 */
  /* 背景の設定 */
  background: url(http://blog-imgs-46.fc2.com/k/i/r/kirisuzu1102/back_4.gif) fixed #ffffff;
}

/* リンク文字 */
a {
  text-decoration: none; /* 下線無し */
  color: #191970;        /* 文字色 */
}

/* カーソルを置いたときのリンク文字 */
a:hover {
  text-decoration: none; /* 下線 */
}

/* イメージにリンクを貼ったときの設定 */
a img {
  border : none;         /* 線無し */
}

/* 入力エリア、リスト、ボタンの設定 */
input,textarea,select,button,submit {
  color:            #555555; /* 文字色 */
  font-size:           13px; /* 文字サイズ */
  background:       #ffffff; /* 背景色 */
  border: 1px solid #7f9db9; /* 線の色 */
}

/* テーブルセル全般の文字設定 */
th,td {
  vertical-align: top;    /* 上寄せ */
}

/* 絵文字 */
img.emoji {
  vertical-align: middle; /* 上寄せ */
  border: 0;              /* 線無し */
}


/*レイアウト設定----------------------------------------------*/

/* 外枠 */
#container {
  position:relative;
  width: 710px;          /* 外枠の幅 */
  margin:0 auto;         /* 中央に設定 */
  /* 背景の設定 */
  background:  #ffffff;
}

/* ヘッダー部分 */
#header {  
  width : 710px;         /* ヘッダー部分の幅 */
  height: 250px;         /* 高さを設定します */
  background: url(http://blog-imgs-46.fc2.com/k/i/r/kirisuzu1102/noredot-f06.gif) top repeat-x #ffffff;
}

/* 右メニューにしたい場合はメニュー部分（#menu）のleftをrightに、記事部分（#main）のrightをleftする */

/* メニュー部分 */
#menu {
  float : right;
  /* 背景の設定 */
  background: url() #ffffff;
}

/* 記事部分 */
#main {
  float : left;
  /* 背景の設定 */
  background: url() no-repeat #ffffff;
}


/* フッター部分 */
#footer {
  width :      710px;    /* フッター部分の幅 */
  clear :       both;    /* 回り込み解除 */
  margin-top:   40px;    /* 上との間隔を開けています */
  text-align: center;    /* 文字を中央に設定 */

  /* 背景の設定 */
  background: url() #ffffff;
}


/*タイトル設定------------------------------------------------*/

/* ブログタイトル */
.blog_title {
  color: #006400;
  text-shadow: 5px 5px 5px #aaaaaa;
  margin-top:  70px;     /* 上にに間隔を取る */
  margin-left: 40px;     /* 左にに間隔を取る */
  font-size:   24px;     /* 文字サイズ */
  font-weight: bold;     /* 太字 */
}

/* ブログタイトルリンク */
.blog_title a {
  text-decoration: none; /* 下線無し */
  color: #006400;        /* 文字色 */
}

/* サブタイトル */
.sub_title {
  margin-left: 42px;     /* 左にくっつき過ぎないように間隔を取っています */
  font-size:   15px;     /* 文字サイズ */
  color:     #55555;     /* 文字色 */
}


/*メニュー部分設定--------------------------------------------*/

/* メニュー囲み */
.menu_block {
  width :       180px;   /* メニューの枠の幅 */
  margin-right:  30px;   /* 右に間隔を取る */
  margin-bottom: 15px;   /* 下に間隔を取る */
  margin-top:    12px;   /* 上に間隔を取る */
}

/* メニュータイトル */
.menu_title {
  padding-left: 10px;    /* アイコンを入れるので左に間隔を取っています */
  font-size:    13px;    /* 文字の大きさ */
  text-shadow: 4px 4px 4px #aaaaaa;
  font-weight:  bold;    /* 太字 */
  margin-bottom: 7px;    /* 下に間隔を取る */
  /* アイコン画像 */
  background: url(http://blog-imgs-46.fc2.com/k/i/r/kirisuzu1102/kdbw1.gif) #94DB00;
}

/* メニューリスト親要素 */
ul {
  margin:  0;            /* デフォルトでは間隔が広いので */
  padding: 0;            /* デフォルトでは間隔が広いので */
}

/* メニューリスト子要素 */
li {
  margin:          0;    /* 間隔設定 */
  padding-left: 17px;    /* 左に間隔を取る */
  list-style:   none;    /* デフォルト｢・｣非表示 */
  /* アイコン画像 */
  background: url(http://blog-imgs-46.fc2.com/k/i/r/kirisuzu1102/point.gif) no-repeat 0.5em 0.4em;
}




/*記事部分等設定----------------------------------------------*/


/* 記事部分等囲み */
.main_block {
  width :       470px;   /* 記事部分の枠の幅 */
  margin-top:     5px;   /* 上に間隔を取る */
  margin-left:   15px;   /* 左に間隔を取る */
  margin-right:  15px;   /* 右に間隔を取る */
  margin-bottom: 15px;   /* 下に間隔を取る */
}

/* 記事部分等タイトル */
.main_title {
  padding-left:  10px;   /* アイコンを入れるので左に間隔を取っています */
  margin-top:    10px;   /* 上に間隔を取る */
  margin-left:   15px;   /* 左に間隔を取る */
  margin-right:  15px;   /* 右に間隔を取る */
  margin-bottom:  5px;   /* 下に間隔を取る */
  font-size:     16px;   /* 文字の大きさ */
  text-shadow: 4px 4px 4px #aaaaaa;
  font-weight:   bold;   /* 太字 */
  border-top : 1px solid #ffffff;
  /* 背景の設定 */
  background: url(http://blog-imgs-46.fc2.com/k/i/r/kirisuzu1102/kdbw1.gif) #94DB00;
}
/* 記事部分等タイトル */
.main_title1 {
  padding-left:  10px;   /* アイコンを入れるので左に間隔を取っています */
  margin-top:    10px;   /* 上に間隔を取る */
  margin-left:   15px;   /* 左に間隔を取る */
  margin-right:  15px;   /* 右に間隔を取る */
  margin-bottom: 15px;   /* 下に間隔を取る */
  font-size:     16px;   /* 文字の大きさ */
  text-shadow: 4px 4px 4px #aaaaaa;
  font-weight:   bold;   /* 太字 */
  border-top : 1px solid #ffffff;
  /* 背景の設定 */
  background: url(http://blog-imgs-46.fc2.com/k/i/r/kirisuzu1102/kdbw1.gif) #94DB00;
}
/* リンク文字 */
.main_title a {
  text-decoration: none; /* 下線無し */
}

/* 記事部分等本文囲み */
.main_body {
  margin-left:   20px; /* 左に間隔を取る */
  margin-right:  15px; /* 右に間隔を取る */
  margin-bottom: 15px; /* 下に間隔を取る */
  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: 150px;
}

/* ヘッダー（年、月） */
.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;
}
