@charset "UTF-8";


/* 全体的な設定
------------------------------------------------------------ */

	/* 全体的なマージン・パディング・フォントスタイル等の初期化 */

	* {
		margin : 0;
		padding : 0;
		font-style : normal;
		font-weight : normal;
	}

	/* body要素以下全てに適用されます */
	/* 背景に画像を使用したい場合はbackground-colorをbackgroundに修正してお使い下さい */

	/* 書式・例 */

	/* background : url("画像のパス") 画像の表示位置 繰り返し指定; */
	/* background : url("hoge.gif") top left no-repeat; */

	body {
		color : #666;							/* 文字の色 */
		font-family:"Verdana", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka‐等幅";
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/bg.gif") top left repeat-x;		/* 背景画像を繰り返し表示 */
		background-color : #fff;				/* 背景の色 */
		/* 背景画像使用例（背景画像を使わない場合はbackground行を削除して下さい */
		text-align : center;					/* 古いIEでセンタリングする */
		line-height : 1.5;						/* 行間 */
		font-size : x-small !important;		/* 古いIEの文字サイズ */
		voice-family : "\"}\"";					/* おまじない */
		voice-family : inherit;					/* おまじない */
		font-size : small !important;			/* CSSを正しく解釈出来るブラウザ用の文字サイズ */
	}

	html>body {
		font-size : small !important;			/* Opera用の文字サイズ */
	}

	textarea {
		width : 90%;
	}

	/* 絵文字 */
	.emoji{
		vertical-align:middle;
	}


/* リンクの設定
------------------------------------------------------------ */

	/* リンクの設定 */
	a {
		text-decoration : none;					/* アンダーラインなど装飾を施さない */
	}

	/* リンクする要素のうち、未閲覧（キャッシュされていない）要素に対してスタイルを適用します */
	a:link {
		color : #51bec9 !important;				/* 文字の色（important＝サイト制作者のスタイルよりもユーザーが設定した色を優先する） */
	}

	/* リンクする要素のうち、閲覧済（キャッシュされている）要素に対してスタイルを適用します */
	a:visited {
		color : #4db2bc !important;				/* 文字の色（important＝サイト制作者のスタイルよりもユーザーが設定した色を優先する） */
	}

	/* ユーザーがカーソルをその要素の上に置いているが、まだアクティブ状態にしていない時にスタイルを適用します */
	a:hover {
		color : #4db2bc !important;				/* 文字の色（important＝サイト制作者のスタイルよりもユーザーが設定した色を優先する） */
		text-decoration : none !important;
		border-bottom: 1px dashed #ccc;
	}

	/* その要素がユーザーによってアクティブ状態にされた時にスタイルを適用します */
	a:active {
		color : #51bec9 !important;				/* 文字の色（important＝サイト制作者のスタイルよりもユーザーが設定した色を優先する） */
	}

	/* リンク画像の枠を表示しない */
	a img {
		border-style : none;					/* 枠を非表示 */
		border-width : 0px;						/* 枠の幅を0pxに設定 */
		text-decoration : none;					/* 装飾を表示しない */
	}


/* 強調の設定
------------------------------------------------------------ */

	/* 強調 */

	em {
		font-style : italic;					/* 斜体 */
	}

	/* より強い強調 */

	strong {
		font-weight : bold;						/* 文字を太字にする */
	}

/* リストの設定
------------------------------------------------------------ */

	/* リスト・要素 */

	ul, ol, li, dl, dt, dd {
		list-style-type: none;
	}


/* 引用の設定
------------------------------------------------------------ */

	/* 背景に画像を使用したい場合はbackground-colorをbackgroundに修正してお使い下さい */

	/* 書式・例 */

	/* background : url("画像のパス") 画像の表示位置 繰り返し指定; */
	/* background : url("hoge.gif") top left repeat; */

	blockquote {
		width : auto;						/* 幅 */
		margin : 10px 20px;					/* マージン */
		padding : 0.5em;					/* パディング */
		border : 1px solid #333;			/* 枠の色と線種 */
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/bg_blockquote.gif") top left repeat-y;
	}



/* コード
------------------------------------------------------------ */

	/* 記事中にプログラムコードなどを書く時に使います */
	/* プロポーショナルフォントではなく等幅フォントを指定すると良いでしょう */



	div.main_body pre {
		margin : 1em auto;
		padding : 0.5em;
		border : 1px solid #633;
		font-family : sans-serif;
		overflow : auto;
		width : 90%;							/* pre element clearing bug in WinIE  */
	}

	/* for without MacIE5 \*/

	div.main_body pre {
		overflow : scroll;						/* MacIE用バグ対応 */
	}/* */

	div.main_body > pre {
		width : auto;							/* MacIE用バグ対応 */
	}

	div.main_body code {
		font-family : monospace;				/* 等幅フォントを指定 */
	}



/* Mac版IEの文字化け対策
------------------------------------------------------------ */

	/* マック版IEでは表示できるフォントを指定しないと文字化けを起こしますので通常は削除しないで下さい */

	textarea,input,select {
		font-family : "ヒラギノ角ゴ Pro W3", "Hiragino Kaku GothicPro", "Osaka", "Helvetica", "Arial", "Verdana", "ＭＳ Ｐゴシック", sans-serif;
	}
	


/* レイアウト用ブロックの設定
------------------------------------------------------------ */

	/* 全体の大枠 */
	/* 左右のマージンを自動で求める事でセンタリングを行ってます */
	/* text-alignをcenterにすることでセンタリングできるのはIEのみの仕様です */
	/* センタリングが不要の場合はmargin-leftの行とmargin-rightを削除して下さい */

	div#container {
		width : 630px;							/* wrapper＋extra-columnの幅 */
		margin-left : auto;						/* 左側のマージンを自動計算 */
		margin-right : auto;					/* 右側のマージンを自動計算 */
		text-align : left;						/* 古いIE用にセンタリングした部分を元に戻す */
		background-color : transparent;			/* 背景を透過（bodyで指定した値が有効になります） */
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/bg_container.gif") top left repeat-y;
		margin-top : 20px;
	}

	/* タイトル部分 */
	/* 背景画像を使用したい場合はheight（高さ）・background（背景画像）などを追加して下さい */

	/* 書式・例 */

	/* background : url("画像のパス") 画像の表示位置 繰り返し指定; */
	/* background : url("hoge.gif") top left no-repeat; */

	div#header {
		width : 620px;
		height : 67px;
		padding-top : 70px;
		padding-left : 10px;
		background : #FFFFFF;
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/bg_header.jpg") top left no-repeat;
	}

	div.main {
		margin : 15px 0px;						/* タイトル部分と記事、記事部分とフッター部分の間隔 */
	}

	#wrapper {
		margin-left : 5px;
	}

	/* 本文部分ブロック */
	/* IEは正しくCSSの幅・高さを解釈出来ませんのでそのままではレイアウトが崩れます */
	/* 正しく解釈出来るようにボックスモデルハックと呼ばれるおまじないを施します */

	div#left {
		float : left;								/* 右側に回り込む */
		width : 430px;								/* 古いIE用の幅（コンテンツ幅＋ボーダー幅＋左右パディングの幅） */
		padding-right : 0px 20px;					/* パディング */
		voice-family : "\"}\"";						/* おまじない */
		voice-family : inherit;						/* おまじない */
		width : 430px;								/* CSSを正しく解釈出来るブラウザ用のコンテンツ幅 */
		text-align : center;
	}

	html>body div#left {
		width : 430px;							/* Opera用のコンテンツ幅 */
	}

	/* サイトインフォ関連ブロック */

	div#right {
		float : right;								/* 左側に回り込む */
		width : 190px;								/* コンテンツ幅 */
	}

	/* 著作表示ブロック */

	div#footer {
		width : 630px;
		height : 20px;
		clear : both;							/* 回り込みを解除 */
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/bg_footer.gif") top left no-repeat;
	}

	div#copy {
		width : 630px;
		margin : 10px auto;
		background-color: #FFFFFF;
		
		font-size : 11px;
line-height: 1.8;
	}
	
	div#copy a {
		font-size : 11px;
	}
	


/* タイトル・サイトの説明部分の設定
------------------------------------------------------------ */

	/* タイトル */

	div#header h1 a {
		color : #666666;
		padding : 0px 10px;
		font-size : large;					/* 古いIEの文字サイズ */
		font-weight : normel;						/* 太字にする */
		voice-family : "\"}\"";					/* おまじない */
		voice-family : inherit;					/* おまじない */
		font-size : x-large;					/* CSSを正しく解釈出来るブラウザ用の文字サイズ */
	}

	html>body div#header h1 {
		color : #666666;
		font-size : xx-large;					/* Opera用の文字サイズ */
	}

	/* サイトの説明 */

	div#header p {
		color : #999;
		padding : 0px 10px;
		font-family	: "Century Gothic","Verdana","ＭＳ　Ｐゴシック",Osaka;
		font-size : x-small;						/* 古いIEの文字サイズ */
		voice-family : "\"}\"";					/* おまじない */
		voice-family : inherit;					/* おまじない */
		font-size : small;						/* CSSを正しく解釈出来るブラウザ用の文字サイズ */
	}

	html>body div#header p {
		color : #999;
		font-size : small;						/* Opera用の文字サイズ */
	}



/* leftの設定
------------------------------------------------------------ */


	/* 各記事毎のブロック */
	/*

        *-------------+
        |             |
        |             |
        |  main_body  |
        |             |
        |             |
        +-------------+

        *-------------+
        |             |
        |             |
        |  main_body  |
        |             |
        |             |
        +-------------+

        
        +-+- main_body
        | |
        | +-+- h2（タイトル）
        |   |
        |   +-+- 記事
        |     |
        |     +- 段落
        |
        +-+- main_body
        | |
        | +-+- h2（タイトル）

        各記事はこのようにブロックで記事毎に階層が分けられています */

	div.main_body {
		margin : 0 auto 15px;					/* 記事と記事の間隔 */
		width : 408px;
		text-align : left;
	}

	/* 記事のタイトル部分 */

	div.main_body h2.entry_header {
		height : 34px;
		padding-top : 19px;
		padding-left: 45px;
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/entry_top.gif") top left no-repeat;		/* サンプル画像50x20 */
		font-size : small;						/* 古いIEの文字サイズ */
		voice-family : "\"}\"";					/* おまじない */
		voice-family : inherit;					/* おまじない */
		font-size : medium;						/* CSSを正しく解釈出来るブラウザ用の文字サイズ */
	}

	html>body div.main_body h2 {
		font-size : medium;						/* Opera用の文字サイズ */
	}

	/* 段落の設定 */

	div.main_body p {
		margin : 1em 0em;							/* 上下1行分空ける */
	}

	/* 記事本体部分 */

	div.entry_body {
		padding : 10px 15px;
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/entry_bg.gif") top left repeat-y;
	}

	/* 追記部分 */

	p.entry_more {
		padding : 25px 0px 15px 0px;
		text-align : right;
	}

	/* 記事中に使われたタグのリンクリスト */
	
	div.entry_body p.tag_lnk {
		margin-top: 10px;
	}
	
	/* 記事の投稿先テーマ・ジャンル */

	div.entry_body p.theme {
		margin-top: 10px;
	}

	/* フッター部分（コメントやトラックバックなど） */
	
	div.entry_footer {
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/entry_bottom.gif") bottom left no-repeat;
	}

	div.main_body ul.entry_footer {
		padding : 20px 15px 10px 10px;
		list-style-position : inside;
		text-align: right;
	}

	div.main_body ul.entry_footer li {
		display : inline;
		list-style-type : none;
	}


	/* 全記事表示・検索結果表示の時の日付部分 */
	
	div.entry_body span.state {
		color: #999999;
	}

	/* コメント・トラバ見出し */

	p.sub_header {
		margin : 5px 0px 10px;
		font-size: 120%;
	}

	/* コメント・トラックバックのタイトル */

	div.main_body h3 {
		font-size : xx-small;						/* 古いIEの文字サイズ */
		voice-family : "\"}\"";					/* おまじない */
		voice-family : inherit;					/* おまじない */
		font-size : x-small;						/* CSSを正しく解釈出来るブラウザ用の文字サイズ */
	}

	html>body div.main_body h3 {
		font-size : x-small;						/* Opera用の文字サイズ */
	}

	/* ページ移動用ナビゲーション */

	p.page_navi {
		margin-bottom : 20px;
		text-align : center;
	}

	/* ページトップへのリンク */
	div.pagetop {
		text-align : right;
		padding-right : 15px;
		margin-bottom : 15px;
	}



/* コメント、トラックバックのボックスの設定
------------------------------------------------------------ */


	div.Box {
		width : 408px;
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/entry_bg.gif") top left repeat-y;
		margin : 10px auto;
		text-align : left;
	}
	
	div.Box_top {
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/box_top.gif") top left no-repeat;
	}
	
	div.Box_bottom {
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/entry_bottom.gif") bottom left no-repeat;
		padding : 0 10px 15px;
		margin: 0;
	}
	
	div.subBox_bottom {
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/box_bottom.gif") top left no-repeat;
	}
	
	dl.c_form{
		float : left;
		width : 360px;
		margin-top : 10px;
		text-align : left;
	}

	dl.c_form dt{
		float : left;
		clear : both;
		width : 80px;
		padding : 5px 0;
	}

	dl.c_form dd{
		float : left;
		width : 250px;
		padding : 5px 0;
	}



/* コメント部分の設定
------------------------------------------------------------ */

	/* コメントフォーム */

	div#left form {
		padding : 0px 10px;
	}

	/* 管理者だけにコメント */

	input#himitu {
		margin-right : 0.5em;
	}

	/* コメントフォームのボタン */

	p.form_btn {
		clear : both;
		margin-top : 10px;
		margin-bottom : 10px;
		text-align : center;
	}

	#comment {
		margin-bottom: 10px;
	}

	.comment_header {
		font-size : small;
	}

	/* コメント本文 */

	div.comment_body {
		margin : 0 10px;
		padding : 10px 0 5px;
		background : url("https://templates.blog.fc2.com/template/goldfish_bowl/dot.gif") bottom left repeat-x;
	}

	/* コメントフッター */

	ul.comment_footer {
		text-align : right;
		padding : 5px 10px 10px;
	}

	ul.comment_footer li {
		display : inline;
		list-style-type : none;
	}
	
	.w_50 {
		width: 50px;
		border : 1px solid #ccc;
	}
	
	.w_150 {
		width: 150px;
		border : 1px solid #ccc;
	}
	
	.w_250 {
		width: 250px;
		border : 1px solid #ccc;
	}




/* トラックバック部分の設定
------------------------------------------------------------ */


	/* トラックバックURL */

	p.trackback_uri {
		margin-bottom : 15px;
		padding : 0.2em 0.5em;
	}

	/* トラックバックURLワンクリックフォーム */

	p.trackback_uri input {
		padding-bottom: 3px;
		border-bottom: 1px solid #ccc;
		border-top : none;
		border-left : none;
		border-right : none;
		width: 370px;
		background-color: #FFFFFF;
	}

	/* トラックバック先の概要 */

	div.trackback_body {
		padding : 0px 10px;
		background : transparent;
	}

	/* トラックバックフッター */

	ul.trackback_footer {
		padding : 10px 10px 15px 10px;
		display : inline;
		list-style-type : none;
	}

	ul.trackback_footer li {
		display : inline;
		list-style-type : none;
	}



/* サイドメニュー（プラグイン）の設定
------------------------------------------------------------ */


	dl.plugin {
		margin-bottom: 15px;
		text-align : left;
	}
	
	dl.plugin dt {
		font-size : x-small;					/* 古いIEの文字サイズ */
		voice-family : "\"}\"";					/* おまじない */
		voice-family : inherit;					/* おまじない */
		font-size : small;						/* CSSを正しく解釈出来るブラウザ用の文字サイズ */
		background : url(https://templates.blog.fc2.com/template/goldfish_bowl/bg_plugin.gif) top left no-repeat;
		height : 33px;
		padding-top : 10px;
		padding-left : 10px;
	}
	
	html>dl.plugin dt {
		font-size : small;						/* Opera用の文字サイズ */
	}
	
	dl.plugin dd {
		margin-top: 3px;
		margin-right: 10px;
		margin-left: 10px;
		padding-left : 13px;
			}
			
	.plug_in {
		margin-left: 15px;
	}
			
	dl.plugin_third {
		margin-bottom: 15px;
		text-align : left;
		float: left;
		width : 190px;
		padding-right : 10px;
	}
	
	dl.plugin_third dt {
		font-size : x-small;					/* 古いIEの文字サイズ */
		voice-family : "\"}\"";					/* おまじない */
		voice-family : inherit;					/* おまじない */
		font-size : small;						/* CSSを正しく解釈出来るブラウザ用の文字サイズ */
		background : url(https://templates.blog.fc2.com/template/goldfish_bowl/bg_plugin.gif) top left no-repeat;
		height : 33px;
		padding-top : 10px;
		padding-left : 10px;
	}
	
	html>dl.plugin_third dt {
		font-size : small;						/* Opera用の文字サイズ */
	}
	
	dl.plugin_third dd {
		margin-top: 3px;
		margin-right: 10px;
		margin-left: 10px;
		padding-left : 12px;
		background : url(https://templates.blog.fc2.com/template/goldfish_bowl/list_01.gif) 0 6px no-repeat;
	}

	/* サイドメニューリストマーク設定 */

	#right li {
		list-style-type: none;
	background : url(https://templates.blog.fc2.com/template/goldfish_bowl/list_01.gif) 0 7px no-repeat;
		padding-left: 13px;
	}




/* 横カレンダーの設定
------------------------------------------------------------ */

	#x_calender {
		margin : 10px 9px 0px;
		padding : 5px 0px;
		text-align : center;
		width : 612px;
		font-size:11px;
	}

	#x_calender ul {
		margin : 0px;
		padding : 0px;
		text-align : center;
		list-style-position : inside;
		background :#fff url(https://templates.blog.fc2.com/template/goldfish_bowl/bg_calender.gif);
	}

	#x_calender li {
		display : inline;
		list-style-type : none;
	}

	#x_calender li a{
		text-decoration : none;
	}

	#x_calender li a:hover {
		text-decoration : none;
	}

	li.day {
		padding : 0px 2px;
	}

	.c_link {
		margin : 0px;
		padding : 0px  3px;
	}


/* プラグインカレンダーの設定
------------------------------------------------------------ */

	.calender {
		width :150px;
		font-size :11px;
		border-collapse :separate;
		margin : 5px auto 0px;
	}

	.caption {
		margin : 10px 0px 5px;
		padding : 0px;
	}
	
	th#sat {
		color :#3b5fcc;
	}

	th#sun {
		color :#b60000;
	}

	.calender a:link,
	.calender a:visited {
		text-decoration: none;
	}

	.calender a:hover {
		text-decoration : underline;
	}

	.calender th {
		width : 20px;
		height : 25px;
		font-size : 10px;
		text-align : center;
		border-bottom : 1px solid #cccccc;
	}

	table.calender td {
		text-align : center;
	}

	.calender td a {
		display:block;
	}

	.calender td a:link,
	.calender td a:visited {
		color : #ffffff;
		text-decoration : none;
		background-color : ghostwhite;
		border-bottom : 0px;
	}

	.calender td a:hover {
		text-decoration : none;
		background-color : #ffffff;
		border-bottom : 0px;
	}


/* プラグイン検索フォームの設定
------------------------------------------------------------ */

	.plugin-search input {
		border: 1px solid #ccc;
	}