/*ページ全体*/
body {
	margin: 0;
	padding: 0;
	text-align: center;
	background: #fff;/*■ページ全体の背景色*/
}

/*スクロールバーの色設定*/
html{
	scrollbar-base-color: #fff;
	scrollbar-track-color: #fff;
	scrollbar-face-color: #fff;
	scrollbar-shadow-color: #999;
	scrollbar-darkshadow-color: #fff;
	scrollbar-highlight-color: #999;
	scrollbar-3dlight-color: #fff;
	scrollbar-arrow-color: #3c0;
}

/*コンテンツ全体（ブログ本体）*/
#container {
	margin: 0 auto 0 auto;
	width: 750px;
	color: #000;/*■ブログ全体の文字色*/
	font: 12px Verdana, sans-serif;
	background: #fff;/*■コンテンツ全体の背景色*/
	border-left: 20px solid #30F;/*■コンテンツを囲う左側枠線*/
}

/*コンテンツ全体のリンク設定*/
a {
	color: #30F;/*■文字色*/
	text-decoration: none;
}

a:hover {/*マウスを乗せたときのアクション*/
	color: #f00;/*■文字色*/
}

/*ブログ名*/
h1 {
	margin: 0 0 10px 0;
	padding: 20px 0 0 0;
	text-align: left;
	font: 25px serif;
}

/*ブログ名のリンク設定*/
h1 a {
	color: #000;/*■文字色*/
	font-weight: bolder;
}

h1 a:hover {/*マウスを乗せたときのアクション*/
	color: #f00;/*■文字色*/
}

/*記事日付*/
h2 {
	padding: 0;
	text-align: left;
}

/*記事タイトル*/
h3 {
	padding: 5px 7px 5px 0;
	font: 15px Verdana, sans-serif;
	border-bottom: 2px dotted #FC3;/*■下線*/
}

/*記事タイトルのリンク設定*/
h3 a {
	color: #000;/*■文字色*/
}

h3 a:hover {/*マウスを乗せたときのアクション*/
	color: #f60;/*■文字色*/
}

/*ブログ名(ヘッダー)部分全体*/
#banner {
	margin: 0;
	padding: 0 20px 30px 20px;
	text-align: left;
	background: #fff;/*■背景色*/
}

/*ブログの説明文*/
.description {
	color: #666;/*■文字色*/
	font: 12px/1.5 Verdana, sans-serif;
}

/*個別記事上部に表示されるページナビ部分*/
.navi {
	margin: 10px 0 10px 20px;
	text-align: center;
}

/*記事が表示されるメイン部分*/
#content {
	margin: 10px 0;
	float: left;
	width: 480px;
}

/*記事全体*/
.blog {
	margin: 10px 0 0 25px;
	padding: 0;
	text-align: left;
}

/*日付を除く記事全体*/
.blogbody {
	margin: 0 0 10px 0;
	padding: 0;
}

/*記事日付2*/
.date {
	clear: left;
	margin: 0 0 10px 0;
	color: #000;/*■文字色*/
	font: 12px Verdana, sans-serif;
}

/*記事タイトル*/
.title {
	margin: 0 0 15px 0;
}

/*記事本文*/
.text {
	margin: 0;
	padding: 15px 0 20px 5px;
	font: 12px/1.8em Verdana, sans-serif;
	letter-spacing: 0.1em;
}

/*記事下部の投稿者・時間・コメントなどの部分*/
.posted {
	margin: 0 0 50px 0;
	padding: 25px 0 5px 0;
	text-align: right;
	font: 10px Verdana, sans-serif;
        border-bottom: 1px solid #ccc;/*■下線*/
}

/*右サイドバー全体*/
#links {
	float: left;
	width: 200px;
	margin: 25px 0 0 40px;
	padding: 0 0 10px 0;
	text-align: left;
	font: 12px/1.8em Verdana, sans-serif;
}

/*カレンダー全体*/
#calendar {
	margin: 10px 0 30px 0;
	width: 200px;
	text-align: center;
	font-size: 12px;
}

/*カレンダー表*/
#calendar table {
	width: 100%;
}

/*カレンダーの曜日部分*/
#calendar th {
	padding: 10px 0 0 0;
	color: #666;/*■文字色*/
	font: bold 10px Verdana, sans-serif;
}

/*カレンダーの年月部分*/
.calendarhead {
	padding: 4px 0 4px 10px;
	color: #000;/*■カレンダー年月部分の文字色*/
	text-align: left;
	font: 10px Verdana, sans-serif;
	background: #ddd;/*■背景色*/
}

/*カレンダーの日付部分*/
td.calendarday {
	margin: 0 0 10px 0;
	padding: 3px;
	color: #000;/*■カレンダー日付の文字色*/
	font: 10px Verdana, sans-serif;
}

/*カレンダーの日付部分のリンク設定*/
calendarday a {
	color: #000;
}

/*サイドバーの見出し部分（カテゴリ名など）*/
.sidetitle {
	margin: 10px 0 0 0;
	padding: 3px 10px;
	text-align: left;
	color: #000;/*■文字色*/
	font: 12px Verdana, sans-serif;
	background: #ddd;/*■背景色*/
}

/*サイドバーの本文（カテゴリなどの中身）*/
.side {
	margin: 0 0 10px 0;
	padding: 5px 0 10px 0;
	text-align: left;
	font: 10px/1.7 Verdana, sans-serif;
}

/*サイドバーの本文とタグクラウドのリンク設定*/
.side a, .side-tag a {
	font-size: 12px;
	color: #30F;
}

.side a:hover,.side-tag a:hover{/*マウスを乗せたときのアクション*/
	color: #f60;/*■文字色*/
}

/*タグクラウドの設定*/
.side-tag {
	margin: 0 0 10px 0;
	padding: 5px 0 10px 0;
	text-align: left;
	font: 10px Verdana, sans-serif;
}

/*記事検索の入力欄*/
input {
	max-width: 200px;
	background: #fff;/*■入力欄の背景色*/
	border: 1px solid #999;/*■入力欄の枠線の色*/
}

/*記事検索・コメントを書く欄の確認送信ボタン*/
.input-submit {
	margin: 0 5px 0 0;
	color: #fff;/*■ボタンの文字の色*/
	background: #f60;/*■ボタンの背景色*/
	border: 1px solid #999;/*■ボタンの枠線の色*/
}

/*ブログ下部のseesaaバナー*/
.powered {
	padding: 20px 0;
	text-align: center;
}

.powered table{
	margin: 0px auto;
	text-align: center;
}

/*RSS設定*/
.syndicate {
	margin: 20px 0;
	text-align: center;
	font-size: 10px;
}

/*コメント欄全体*/
#comments {
	margin: 25px 0 35px 25px;
	padding: 0;
	text-align: left;
	font: 12px Verdana, sans-serif;
}

/*コメントフォームの設定*/
#comments form {
	margin: 20px;
	padding: 0;
}

/*コメント記入欄*/
textarea {
	width: 300px;
	margin: 0 0 5px 0;
	background: #fff;/*■入力欄の背景色*/
	border: 1px solid #999;/*■入力欄の枠線の色*/
}

/*コメント欄の上部*/
.comments-head {
	margin: 0 0 15px 0;
	padding: 5px 7px;
	color: #360;/*■”コメントを書く”などの文字色*/
	font: bold 12px Verdana, sans-serif;
	border-bottom: 2px dotted #f60;/*■下線*/
}

/*コメント本文*/
.comments-body {
	margin: 0;
}

/*コメントの投稿者部分*/
.comments-post {
	margin: 0 0 15px 0;
	padding: 0 0 2px 0;
	text-align: right;
	font-size: 10px;
}

/*トラックバック部分*/
#trackback {
	margin: 25px 0 30px 25px;
	padding: 10px 0;
	color: #666;/*■文字色*/
	text-align: left;
	font: 12px/1.5em Verdana, sans-serif;
	border-top: 2px dotted #f60;/*■トラックバック上部線*/
}

/*トラックバック内の線の設定*/
hr {
	border-style: double none none;
	border-top-width: 1px;
	border-top-color: #999;/*■トラックバック内の線*/
	height: 1px;
}

/*フッター*/
#footer {
	clear: left;
}

/*引用の設定*/
blockquote{
	margin: 20px 10px;
	padding: 10px 5px;
	background: #eee;/*■背景色*/
}

/*Blogtimesの設定*/
.blogtimes{
	margin: 0 0 10px 0;
	padding: 5px 0 10px 0;
	text-align: center;
}

/*-----ダイエット表示部分------------------------*/

/*ダイエット内容全体部分*/
#diet-container{
	margin: 0 0 10px 0;
	padding: 10px 5px 0 5px;
}

/*目標体重・残り・体重・体脂肪率の部分*/
.diet-content{
	padding: 0 0 0 10px;
}

/*１回目測定・２回目測定の部分*/
.diet-title{
	margin: 5px 0;
	padding: 0px 10px 0px 5px;
	font-weight: bold;
	border: 1px solid #999;
}

/*食事内容全体*/
#diet-foods{
	padding: 5px 0 0 0;
	border-bottom: 1px solid #999;
}

/*朝・昼・夜食の部分*/
.food-title{
	margin: 5px 0 0 0;
	padding: 10px 0 0 0;
	width: 20%;
	clear: left;
	float: left;
	border-top: 1px solid #999;
}

/*朝・昼・夜食に食べたものを表示する部分*/
.food-content{
	margin: 5px 0 0 0;
	padding: 10px 0;
	width: 100%;
	border-top: 1px solid #999;
}


/*-----タグクラウドの表示設定------------------------*/

.tag-word{
	margin: 20px 0px 0px 0px;
	line-height: 1.4em;
}
.tag{
	margin: 15px 0 0 21px;
	padding: 10px;
	position: relative;
}
#tag_cloud{
	padding: 10px;
	text-align: left;
	position: relative;
	border: 1px solid #999;
}
#tag_cloud a {
	padding: 2px;
}
.tag-title{
	font: bold 16px;
	text-align:left;
}
.tag-body{
	margin: 10px 0px;
	padding: 10px 0px 0px 0px;
	position: relative;
}
.tag-service{
	padding: 0px 0px 5px 0px;
	clear: left;
	text-align: left;
	font-weight: bold;
	border-bottom: 1px solid #999;
	position: relative;
}
.tag-search{
	margin: 0 0 10px 0;
	padding: 5px 0px;
	text-align: right;
	font-weight: bold;
	position: relative;
}
.tag-article{
	padding: 0px 10px 10px 10px;
	text-align: left;
	position: relative;
}
.tag-article-title{
	padding: 0px 0px 5px 0px;
	text-align: left;
	font-weight: bold;
	position: relative;
}
.tag-article-posted{
	font-weight: normal;
	position: relative;
}
.tag-article-summary{
	padding: 0px 10px;
	line-height: 1.4em;
	position: relative;
}
.tag-more{
	margin: 10px 0px;
	text-align: right;
	clear: left;
	position: relative;
}
.tag-photos{
	margin: 10px 8px;
	float: left;
	position: relative;
	width: 140px;
	height: 200px;
}
.tag-photos-title{
	line-height: 1.4em;
	padding: 5px 0px;
	text-align: left;
	position: relative;
}
.tag-audios{
	margin: 5px;
	position: relative;
}
.tag-audios-title{
	text-align: left;
	font-weight: bold;
	padding: 0px 0px 5px 0px;
	position: relative;
}
.tag-audios-posted{
	font-weight: normal;
	position: relative;
}
.tag-videos{
	margin: 10px 8px;
	float: left;
	position: relative;
}
.tag-videos-title{
	padding: 5px 0px;
	line-height: 1.4em;
	text-align: left;
	position: relative;
}
.tag-navi{
	margin:10px 0px;
	clear: left;
	text-align: center;
	position: relative;
}

br {
	letter-spacing: normal;
}
