@charset "UTF-8";
/*------------------------------------------------------------
●ブラウザ固有のCSSをリセット
-------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,p,blockquote,table,th,td{
	margin: 0;
	padding: 0;
}


address,caption,cite,code,dfn,h1,h2,h3,h4,th,var{
	font-style: normal;
	font-weight: normal;
}

fieldset,img,abbr{ border: 0; }
caption,th{ text-align: left; }
q:before,q:after{ content: ''; }
a{ text-decoration: none; }
img{
	border: none;
	vertical-align: bottom;
}


/*------------------------------------------------------------
■拡張設定

	t＝上（top）
	r＝右（right）
	b＝下（bottom）
	l＝左（left）
	c＝左右の中央（center）
	m＝上下の中央（middle）

※「!important」という設定は、
　どんなclassより、そのclassを優先するという設定です。
-------------------------------------------------------------*/

/*------------------------------------------------------------
●１、align・・・文字の横位置
-------------------------------------------------------------*/

.al-c{ text-align: center; }/*中央寄せ*/
.al-r{ text-align: right; }/*右寄せ*/
.al-l{ text-align: left; }/*左寄せ*/


/*------------------------------------------------------------
●２、valign・・・文字の縦位置
-------------------------------------------------------------*/

.vl-t{ vertical-align: top; }/*上寄せ*/
.vl-m{ vertical-align: middle; }/*中央寄せ*/
.vl-b{ vertical-align: bottom; }/*下寄せ*/


/*------------------------------------------------------------
●３、float・・・ブロックの左右の寄せ
-------------------------------------------------------------*/

.fl-c{ clear: both; }/*左右の寄せを解除*/
.fl-r{ float:right; margin-left: 20px; }/*右寄せ*/
.fl-l{ float:left; margin-right: 20px; }/*左寄せ*/


/*------------------------------------------------------------
●４、margin・・・周りのブロックからの距離

	10、15、20・・・という数字は「px（ピクセル）」を表します
-------------------------------------------------------------*/

.m0{ margin: 0px!important; }/*周りからのmarginを0にする*/
.m0-t{ margin-top: 0px!important; }/*上からのmarginが0px*/
.m0-r{ margin-right: 0px!important; }/*右からのmarginが0px*/
.m0-b{ margin-bottom: 0px!important; }/*下からのmarginが0px*/
.m0-l{ margin-left: 0px!important; }/*左からのmarginが0px*/

.m10{ margin: 10px!important; }/*周りからのmarginが10px*/
.m10-t{ margin-top: 10px!important; }/*上からのmarginが10px*/
.m10-r{ margin-right: 10px!important; }/*右からのmarginが10px*/
.m10-b{ margin-bottom: 10px!important; }/*下からのmarginが10px*/
.m10-l{ margin-left: 10px!important; }/*左からのmarginが10px*/

.m15{ margin: 15px!important; }
.m15-t{ margin-top: 15px!important; }
.m15-r{ margin-right: 15px!important; }
.m15-b{ margin-bottom: 15px!important; }
.m15-l{ margin-left: 15px!important; }

.m20{ margin: 20px!important; }
.m20-t{ margin-top: 20px!important; }
.m20-r{ margin-right: 20px!important; }
.m20-b{ margin-bottom: 20px!important; }
.m20-l{ margin-left: 20px!important; }

.m30{ margin: 30px!important; }
.m30-t{ margin-top: 30px!important; }
.m30-r{ margin-right: 30px!important; }
.m30-b{ margin-bottom: 30px!important; }
.m30-l{ margin-left: 30px!important; }

.m40{ margin: 40px!important; }
.m40-t{ margin-top: 40px!important; }
.m40-r{ margin-right: 40px!important; }
.m40-b{ margin-bottom: 40px!important; }
.m40-l{ margin-left: 40px!important; }

.m50{ margin: 50px!important; }
.m50-t{ margin-top: 50px!important; }
.m50-r{ margin-right: 50px!important; }
.m50-b{ margin-bottom: 50px!important; }
.m50-l{ margin-left: 50px!important; }

.m60{ margin: 60px!important; }
.m60-t{ margin-top: 60px!important; }
.m60-r{ margin-right: 60px!important; }
.m60-b{ margin-bottom: 60px!important; }
.m60-l{ margin-left: 60px!important; }

.m70{ margin: 70px!important; }
.m70-t{ margin-top: 70px!important; }
.m70-r{ margin-right: 70px!important; }
.m70-b{ margin-bottom: 70px!important; }
.m70-l{ margin-left: 70px!important; }


/*------------------------------------------------------------
●５、padding・・・周りのブロックからの距離（padding）

	10、15、20・・・という数字は「px（ピクセル）」を表します
-------------------------------------------------------------*/

.p0{ padding: 0px!important; }/*周りからのmarginを0にする*/
.p0-t{ padding-top: 0px!important; }/*上からのmarginが0px*/
.p0-r{ padding-right: 0px!important; }/*右からのmarginが0px*/
.p0-b{ padding-bottom: 0px!important; }/*下からのmarginが0px*/
.p0-l{ padding-left: 0px!important; }/*左からのmarginが0px*/

.p10{ padding: 10px!important; }/*周りからのmarginが10px*/
.p10-t{ padding-top: 10px!important; }/*上からのmarginが10px*/
.p10-r{ padding-right: 10px!important; }/*右からのmarginが10px*/
.p10-b{ padding-bottom: 10px!important; }/*下からのmarginが10px*/
.p10-l{ padding-left: 10px!important; }/*左からのmarginが10px*/

.p15{ padding: 15px!important; }
.p15-t{ padding-top: 15px!important; }
.p15-r{ padding-right: 15px!important; }
.p15-b{ padding-bottom: 15px!important; }
.p15-l{ padding-left: 15px!important; }

.p20{ padding: 20px!important; }
.p20-t{ padding-top: 20px!important; }
.p20-r{ padding-right: 20px!important; }
.p20-b{ padding-bottom: 20px!important; }
.p20-l{ padding-left: 20px!important; }

.p30{ padding: 30px!important; }
.p30-t{ padding-top: 30px!important; }
.p30-r{ padding-right: 30px!important; }
.p30-b{ padding-bottom: 30px!important; }
.p30-l{ padding-left: 30px!important; }

.p40{ padding: 40px!important; }
.p40-t{ padding-top: 40px!important; }
.p40-r{ padding-right: 40px!important; }
.p40-b{ padding-bottom: 40px!important; }
.p40-l{ padding-left: 40px!important; }

.p50{ padding: 50px!important; }
.p50-t{ padding-top: 50px!important; }
.p50-r{ padding-right: 50px!important; }
.p50-b{ padding-bottom: 50px!important; }
.p50-l{ padding-left: 50px!important; }

.p60{ padding: 60px!important; }
.p60-t{ padding-top: 60px!important; }
.p60-r{ padding-right: 60px!important; }
.p60-b{ padding-bottom: 60px!important; }
.p60-l{ padding-left: 60px!important; }

.p70{ padding: 70px!important; }
.p70-t{ padding-top: 70px!important; }
.p70-r{ padding-right: 70px!important; }
.p70-b{ padding-bottom: 70px!important; }
.p70-l{ padding-left: 70px!important; }

/*------------------------------------------------------------
●６、font-size・・・フォントサイズの設定

	※「em」と「pt」の違い
	　IEで、ブロウザの文字サイズ変更が反映されるのが「em」です
	　「pt」は文字サイズ変更が効きません。
-------------------------------------------------------------*/

.normal{ font-weight: normal!important; }

.b{ font-weight: bold!important; }

.big{ font-size: 120%!important; }
.big2{ font-size: 150%!important; }
.big3{ font-size: 180%!important; }

.small{ font-size: 80%!important; }

.f08em{ font-size: 0.8em; }
.f09em{ font-size: 0.9em; }
.f10em{ font-size: 1.0em; }
.f11em{ font-size: 1.1em; }
.f12em{ font-size: 1.2em; }
.f13em{ font-size: 1.3em; }
.f14em{ font-size: 1.4em; }
.f16em{ font-size: 1.6em; }
.f18em{ font-size: 1.8em; }
.f20em{ font-size: 2.0em; }
.f22em{ font-size: 2.2em; }
.f24em{ font-size: 2.4em; }


.f8pt{ font-size: 8.5pt!important; }
.f9pt{ font-size: 9.0pt!important; }
.f10pt{ font-size: 10pt!important; }
.f11pt{ font-size: 11pt!important; }
.f12pt{ font-size: 12pt!important; }
.f13pt{ font-size: 13pt!important; }
.f14pt{ font-size: 14pt!important; }
.f16pt{ font-size: 16pt!important; }
.f18pt{ font-size: 18pt!important; }
.f20pt{ font-size: 20pt!important; }
.f22pt{ font-size: 22pt!important; }
.f24pt{ font-size: 24pt!important; }

.f8px{ font-size: 8.5px!important; }
.f9px{ font-size: 9.0px!important; }
.f10px{ font-size: 10px!important; }
.f11px{ font-size: 11px!important; }
.f12px{ font-size: 12px!important; }
.f13px{ font-size: 13px!important; }
.f14px{ font-size: 14px!important; }
.f16px{ font-size: 16px!important; }
.f18px{ font-size: 18px!important; }
.f20px{ font-size: 20px!important; }
.f22px{ font-size: 22px!important; }
.f24px{ font-size: 24px!important; }


/*------------------------------------------------------------
●７、color・・・フォントカラーの設定
-------------------------------------------------------------*/

.black{ color: #000!important; }/*黒色*/
.red{ color: #ff0000!important; }/*赤色*/
.blue{ color: #0000dd!important; }/*青色*/
.green{ color: #!important; }/*緑色*/
.yellow{ color: #ffff00!important; }/*黄色*/
.navy{ color: #1F26A9!important; }/*紺色*/
.gray{ color: #ccc!important; }/*灰色*/
.orange{ color: #ff6600!important; }/*橙色*/
.pink{ color: #cc6699!important; }/*ピンク色*/
.purple{ color: #!important; }/*紫色*/
.olive{ color: #!important; }/*黄土色*/
.lime{ color: #00ff00!important; }/*黄緑*/
.aqua{ color: #167FA6!important; }/*水色*/
.akane{ color: #b7282e!important; }/*茜色*/
.kon{ color: #!important; }/*紺色*/

/*------------------------------------------------------------
●８、line-height・・・行間の設定
-------------------------------------------------------------*/

.lh13{ line-height: 1.3em!important; }
.lh14{ line-height: 1.4em!important; }
.lh15{ line-height: 1.5em!important; }
.lh16{ line-height: 1.6em!important; }
.lh17{ line-height: 1.7em!important; }
.lh18{ line-height: 1.8em!important; }
.lh19{ line-height: 1.9em!important; }
.lh20{ line-height: 2.0em!important; }

/*------------------------------------------------------------
●９、underline・・・アンダーライン（下線）の設定
-------------------------------------------------------------*/

.underline{ text-decoration: underline!important; }


/*------------------------------------------------------------
●１０、取り消し線の設定
-------------------------------------------------------------*/

.del{ text-decoration:line-through;}


/*------------------------------------------------------------
●１１、box・・・カラーボックスの設定
-------------------------------------------------------------*/

.box-yellow{ background-color: #ffff00!important; }/*黄色のボックス*/
.box-aqua{ background-color: #00ffff!important; }/*水色のボックス*/
.box-gray{ background-color: #eee!important; }/*灰色のボックス*/
.box-red{ background-color: #fc9b8b!important; }/*赤色のボックス*/


/*------------------------------------------------------------
●１２、input:focus・・・入力フォームをハイライトする
-------------------------------------------------------------*/

input:focus,textarea:focus{ background-color: #dee!important; }


/*------------------------------------------------------------
●１３、hr・・・線の基本設定
-------------------------------------------------------------*/

hr{
	clear: both;
	margin: 0;
	padding: 0;
	border-width: 1px 0 0 0;
	height: 1px;
	border-style: solid none none none;
	color: #ccc;
}
/*------------------------------------------------------------
●１４、left、right・・・画像の横位置設定
-------------------------------------------------------------*/

/*--------------------▽左に画像、右に文章*/

.left{
	float: left;
	margin: 0 30px 20px 0!important;
}


/*--------------------▽右に画像、左に画像*/

.right{
	float: right;
	margin: 0 0 20px 30px!important;
}


/*------------------------------------------------------------
●１５、top、middle、bottom・・・画像の縦位置設定
-------------------------------------------------------------*/

/*--------------------▽画像の縦位置をtopに揃える*/

img.top{ vertical-align: top!important; }

/*--------------------▽画像の縦位置をmiddleに揃える*/

img.middle{ vertical-align: middle!important; }

/*--------------------▽右に画像、左に画像*/

img.bottom{ vertical-align: bottom!important; }


/*------------------------------------------------------------
●１６、noborder・・・枠線を無くす
-------------------------------------------------------------*/

.noborder{ border: 0!important; }

/*------------------------------------------------------------
●１６、zindex・・・重なりの優先度
-------------------------------------------------------------*/

.z2{ z-index: 2; }
.z3{ z-index: 3; }


/*------------------------------------------------------------
　written by Shigeoki Matsuo
-------------------------------------------------------------*/


/*--------------------------------------------------------
1、背景画像の設定（下記から一つ選んで下さい）
--------------------------------------------------------*/

body{
background: url(https://blog-imgs-29-origin.fc2.com/k/a/g/kaguraden/bg-shadow.jpg) repeat-y center top fixed;
}

/*--------------------------------------------------------
1、影画像
background: url(https://blog-imgs-29-origin.fc2.com/k/a/g/kaguraden/bg-shadow.gif) repeat-y center top fixed;
background: url(https://blog-imgs-29-origin.fc2.com/k/a/g/kaguraden/grade-red1.jpg ) repeat-x center top fixed;


2、グラデーション画像
background: url(../images/grade-red1.jpg) repeat-x center top fixed;

3、任意の画像
background: url(../images/bg-photo.jpg) no-repeat center top fixed;

4、色をベタ塗り
background: #000;
--------------------------------------------------------*/

/*--------------------------------------------------------
2、ヘッダーロゴ画像の設定
--------------------------------------------------------*/

div#header-logo{ background: url(https://blog-imgs-29-origin.fc2.com/k/a/g/kaguraden/title-banar1.jpg); }

/*ロゴテキストは下記を使用*/
/*div#header-logo{ background: url(../images/logo-bg-red1.jpg); }*/


/*--------------------------------------------------------
3、各エリアの背景色の設定
--------------------------------------------------------*/

/*最上部帯*/
div#header{	background: #ca6b6d; }

/*グローバルメニュー*/
div#global-menu{ background: #333; }

/*グローバルメニュー　ハイライト*/
div#global-menu li a:hover{ background: #fff; }

/*ナビ*/
div#navi{ background: #fff; }

/*メインコンテンツ*/
div#main{ background: #fff; }

/*左メニュー*/
div#left{ background: #fff; }

/*左メニュータイトル*/
div#left .title{ 
	background:url(https://blog-imgs-29-origin.fc2.com/k/a/g/kaguraden/sidebar_back.jpg) no-repeat center left;

}
/*右コンテンツ*/
div#right{ background: #fff; }

/*フッター*/
div#footer{ background: #fff; }

/*copyright*/
div#copyright{ background: #ca6b6d; }


/*--------------------------------------------------------
4、枠線の設定
--------------------------------------------------------*/

/*左右の枠線*/
div#header,div#header-logo,div#global-menu,div#navi,div#main{
	border-left: 1px solid #666;
	border-right: 1px solid #666;
}

/*ヘッダーロゴの上下*/
div#header-logo{
	border-top: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
}

/*グローバルメニュー*/
div#global-menu li{
	border-left: 1px solid #666;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
}

/*左メニュー*/
div#left .menu{
	
}

div#left .c-t{
	border: 1px solid #ca6b6d;
}
/*左メニューその他ボックス*/
div#left .contents{
	border: 1px solid #ca6b6d;
}


/*--------------------------------------------------------
5、文字色の設定
--------------------------------------------------------*/

/*サイト全体*/
body{ color: #333; }

/*リンク文字*/
a{ text-decoration:none;}/*下線を付ける*/
a:link{ color: #0000FF; }
a:visited{ color: #0000FF; }/*訪問済み*/
a:hover{ color: #ff3300; }/*リンクに乗った時*/
a:link img{ color: #333; }
a:visited img{ color: #333; }/*訪問済み*/


/*最上部帯*/
div#header #top-menu li{ color: #fff; }
div#header #top-menu li a:link{ color: #fff; }
div#header #top-menu li a:visited{ color: #fff; }
div#header #top-menu li a:hover{ color: #ff3300; }


/*ロゴテキスト*/
p#logo-text a{ text-decoration: none; }
p#logo-text,p#sub-text{ color: #333; }
p#logo-text a:link{ color: #333; }
p#logo-text a:visited{ color: #333; }
p#logo-text a:hover{ color: #ff3300; }


/*ヘッダーテキスト*/
div#header-text{ color: #fff; }

/*グローバルメニュー*/
div#global-menu li a{ color: #fff; }
div#global-menu li a:link{ color: #fff; }
div#global-menu li a:visited{ color: #fff; }
div#global-menu li a:hover{ color: #ff3300; }


/*左メニュータイトル帯*/
div#left .title p{ color: #333; }

/*copyright*/
div#footer #copyright{ color: #333; }


/*--------------------------------------------------------
6、見出しタグの設定
--------------------------------------------------------*/

h1{
	z-index: 1;
	position: absolute;
	margin: 7px 0 0 16px;
	font-size: 8.5pt;
	color: #fff;/*文字色*/
}


h2 {
	clear: both;
	margin: 0px 0px 0px 0px;
	padding-left: 7px;
	background: #eee;/*背景色*/
	border-left: 5px solid #ca6b6d;/*左枠線の色*/
	background: #fff;
	font-size: 13pt;
	font-weight: bold;
	line-height: 22pt;
	color: #333;/*文字色*/
}


h3{
	clear: both;
	margin: 10px 10px 10px 10px;
	padding: 2px 0 0 10px;
	background: url(https://blog-imgs-29-origin.fc2.com/k/a/g/kaguraden/h3back-red1.gif);/*背景画像*/
	text-align: left;
	font-size: 11pt;
	font-weight: bold;
	line-height: 13pt;
	color: #333;/*文字色*/
}


/*--------------------------------------------------------
■トータル設定
--------------------------------------------------------*/

body{
	margin: 0;
	text-align: center;
	font-family: "ＭＳ Ｐゴシック","平成角ゴシック",sans-serif;
	font-size: 0.8em;
	line-height: 1.4em;
}

/*左メニュー内のPタグ、右コンテンツ内のPタグは、固有に設定*/
p{ line-height: 1.4em; }

pre{
	font-size: 10pt;
	line-height: 1.4em;
	font-family: "ＭＳ Ｐゴシック","平成角ゴシック",sans-serif;
}

/*--------------------------------------------------------
■container設定
--------------------------------------------------------*/

/*サイズ設定　その1*/
div#container{
	width: 910px;
	_width: 912px;/*IE対策*/
	margin: 0 auto;
	text-align: left;
}


/*--------------------------------------------------------
■最上部帯（サイトマップメニュー等）
--------------------------------------------------------*/

/*サイズ設定　その2*/
div#header{
	width: 910px;
	_width: 912px;/*IE対策*/
	height: 30px;
}

div#header #top-menu{
	position: absolute;
	top: 5px;
	width: 894px;
	text-align: right;
}


div#header #top-menu li{
	display: inline;
	font-size: 8.5pt;
	line-height: 14pt;
}

/*--------------------------------------------------------
■ヘッダーロゴ
--------------------------------------------------------*/

/*サイズ設定　その3*/
div#header-logo{
	z-index: 1;
	position: absolute;
	top: 30px;
	width: 910px;
	_width: 912px;/*IE対策*/
	height: 180px;
	text-align: left;
}

/*--------------------▽ロゴテキスト（ロゴ画像では不使用）*/

p#logo-text{
	position: absolute;
	top: 20px;
	left: 18px;
	font-size: 24pt;
	font-weight: bold;
	letter-spacing: -0.5pt;
}

p#sub-text{
	position: absolute;
	top: 65px;
	left: 18px;
	font-size: 10pt;
	font-weight: bold;
	letter-spacing: -0.5pt;
}


/*--------------------▽ヘッダー文章*/

div#header-text{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 350px;
	text-align: right;
	font-size: 9pt;
	line-height: 14pt;
}


/*--------------------------------------------------------
■グローバルメニューの設定
--------------------------------------------------------*/

/*サイズ設定　その4*/
div#global-menu{
	float: left;
	position: absolute;
	top: 212px;
	_top: 210px;/*IE対策*/
	padding: 0;
	width: 910px;
	_width: 912px;/*IE対策*/
	text-align: center;
}


div#global-menu li{
	float: left;
	display: block;
	list-style-type: none;
	padding: 3px;
	width: 174px;
	_width: 182px;
	font-size: 11pt;
	font-weight: bold;
}

div#global-menu li a{
	display: block;
	text-decoration: none;
	width: 174px;
}

div.ad1{
	position: absolute;
	top: 237px;
	_top: 235px;/*IE対策*/
text-align:center;
}
/*--------------------------------------------------------
■パン屑ナビ
--------------------------------------------------------*/

/*サイズ設定　その5*/
div#navi{
	position: absolute;
	top: 237px;
	_top: 235px;/*IE対策*/

	width: 910px;
	_width: 912px;/*IE対策*/
	height: 20px;
}

div#navi p{
	margin: 6px 0 0 16px;
	font-size: 8.5pt;
	line-height: 14pt;
}


/*--------------------------------------------------------
■コンテンツ全体（右＆左＆フッター）
--------------------------------------------------------*/

/*サイズ設定　その6*/
div#main{
	overflow: hidden;
	position: absolute;
	top: 257px;
	width: 910px;
	_width: 912px;/*IE対策*/
	text-align: left;
}


/*--------------------------------------------------------
■左メニュー
--------------------------------------------------------*/

/*サイズ設定　その6*/
div#left{
	overflow: hidden;
	float: right;
	width: 220px;
}


/*--------------------▽メニューボックス*/

div#left .menu{
	margin: 10px 0 10px 10px;
	width: 198px;
}


/*--------------------▽メニュータイトル帯*/

div#left .title p{
	margin: 0 10px 0 10px;
	padding: 5px 0 5px 0;
	font-size: 11pt;
	font-weight: bold;
}


/*--------------------▽メニューリスト*/

div#left ul{
	margin: 5px 15px 5px 15px;
}

div#left li{
	list-style-type: none;
	list-style-position: outside;
	margin: 15px 0;
	font-size: 10pt;
	font-weight: normal;
	line-height: 14pt;
	background:url(https://blog-imgs-29-origin.fc2.com/k/a/g/kaguraden/arrow.gif) no-repeat center left;
    padding-left:17px;
vertical-align: top;
}
/*--------------------▽その他ボックス*/

div#left .contents{
	margin: 10px 0 10px 10px;
	width: 198px;
}


/*--------------------▽左メニュー内のPタグ*/

div#left p{
	margin: 15px;
}


/*--------------------------------------------------------
■右コンテンツ
--------------------------------------------------------*/

/*サイズ設定　その7*/
div#right{
	overflow: hidden;
	float: left;
	padding: 0 10px 0 10px;
	width: 670px;
	_width: 688px;/*IE対策*/
}


/*--------------------▽コンテンツ*/

div#right .contents{
	clear: both;
	margin: 10px 0px 10px 0px;

}


/*コンテンツ（インデント：10px）*/
div#right .contents2{
	clear: both;
	margin: 10px 0px 10px 0px;
}


/*--------------------▽コンテンツ内の線*/

div#right hr{
	clear: both;
	margin: 10px 0 10px 0;
	color: #ccc;
}


/*--------------------▽コンテンツ内のリストタグ*/

div#right ul,
div#right ol{
	margin: 0 0 20px 20px;
	list-style-type: disc;
	list-style-position: outside;
}
div#right li{
	line-height: 1.8em;
	list-style-type: none;
	list-style-position: outside;
	margin: 10px 0;
	font-size: 10pt;
	font-weight: normal;
	line-height: 14pt;


}
/*--------------------▽更新情報内のリストタグ*/

div#right ul.topics{
	padding: 10px;
	border: 1px solid #aaa;
	list-style-type: none;
	list-style-position: outside;
}



/*--------------------▽戻る＆進むリンク*/

.link-back,
.link-next{
	clear: both;
	margin-top: 20px;
	padding: 0;
	width: 100%;
	font-size: 12pt;
	font-weight: bold;
	line-height: 14pt;
}

.link-back{ text-align: left; }
.link-next{ text-align: right; }


/*--------------------▽右コンテンツ内のPタグは、自動改行*/

p{ margin-bottom: 1.0em; }


/*--------------------------------------------------------
■フッターメニュー
--------------------------------------------------------*/

/*サイズ設定　その8*/
div#footer{
	clear: both;
	width: 910px;
	text-align: center;
}


/*--------------------▽フッター内で使用する線*/

div#footer hr{
	clear: both;
	color: #aaa;
}


/*/*--------------------▽メニューリスト*/

div#footer .menu{
	margin: 7px 0 7px 0;
}

div#footer .menu li{
	display: inline;
	margin: 0 0.8em 0 0.8em;
	font-size: 10pt;
	line-height: 14pt;
}


/*--------------------------------------------------------
■Copyright
--------------------------------------------------------*/

/*サイズ設定　その9*/
div#footer #copyright{
	clear: both;
	margin-top: 15px;
	padding: 15px 0 15px 0;
	width: 910px;
	font-size: 10pt;
	line-height: 14pt;
}


/*--------------------------------------------------------
■広告の絶対配置（オプション）
--------------------------------------------------------*/

/*--------------------▽例：横幅240 縦12c0の広告の場合*/

div.ad{
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	text-align :right;
}

div.ad p{
	position: fixed;
	_position: absolute;/*IE対策*/
	top: 0;
	right: 0;
	padding: 5px;
	width: 240px;
	height: 120px;
	background: #eee;/*背景色*/
	border: 1px solid #000;/*枠線の色*/
	text-align :center;
}


/*--------------------------------------------------------
■その他の設定
--------------------------------------------------------*/

/*--------------------▽テーブルセルの間隔*/

td{ padding: 8px; }


/*------------------------------------------------------------
　written by Shigeoki Matsuo
-------------------------------------------------------------*/
div#right ol li{
background:url(https://blog-imgs-29-origin.fc2.com/k/a/g/kaguraden/catemark.gif) no-repeat center left;
padding-left: 17px;
vertical-align: top;
}

/*神社一覧*/
table{
	font-size: 0.8em;
	line-height: 1.0em;
}

.list-title{
background-color:#C85F69;
color:#ffffff;
font-weight:bold;
text-align:center;
}

.list-syamei{
width:130px;
font-weight:bold;
	font-size: x-small;

}

.list-un{
border-bottom:dotted 1px #333;
}

.list-jusyo{
width:160px;

}

.list-tel{
width:80px;
}

.list-mark{
width:60px;
text-align:center;
}

.siki{
width:100px;
text-align:center;
}

table .syuin{
	font-size: 0.8em;
	line-height: 1.0em;

}

table td{
    border:1px solid #;

}

table .syuin-syamei{
    border:1px solid #;
    color:#fff;
    background-color:#cc0000;
    padding:2px;
    text-align:center;
    height:40px;
margin: 2px;
   width:120px;
}

table .syuin td{
    border:1px solid #;
    color:#333;
    padding:2px;
    text-align:left;
   width:120px;
margin: 2px;
}
table .s-img{

    text-align:center;

}
table .none{
    border:0px;
    padding:2px;
    background-color:#ffffff;
    width:120px;
}
td img{
border-style:outset;
border-width:0px 2px 2px 0px;
border-color:#;
  margin: 2px;
}

table .top{
text-align:center;
}

tr {
}

table .top td {
padding:5px;
text-align:center;
font-size:12px;
}

td.dot {
border:dashed 2px #CC0033;
}
.af a img{

}

.af-1 a img{

}