﻿@charset 'utf-8';

/* -------------------------------------------- */
/* 		スタイルの初期化		*/
/* -------------------------------------------- */

body {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote{
	display: block;
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100.01%;
	text-align: left;
}

em,i, u, del {
	font-style: normal;
	font-weight: normal;
	font-size: 100.01%;
}

strong {
	font-style: normal;
	font-weight: bold;
	font-size: 100.01%;
}

table {
	margin : 0;
	empty-cells: show;
}

fieldset { border: 0px;}

img {
	border: 0px; /* イメージの枠線消し */
	vertical-align: bottom;
}

li { list-style: none; } /* リストの点を消す */

/* ----- ブラウザ対策 ---------------------------------- */

html {/* Firefox */
 	height:100%;
}
html>/**/body {/* Firefox */
 	overflow:-moz-scrollbars-vertical;
}
html:first-child body {/* Safari Opera */
 	min-height:100%;
}
div {/*for IE 5.5-7*/
	zoom:1;
}
ol {/*for IE 5.5-7*/
	padding-left : 2em;
}
ol li {/*for IE 5.5-7*/
	zoom : normal;
}

/* ---------------------------------------------------- */
/* 			HTMLの再定義			*/
/* ---------------------------------------------------- */

body {
	color: #000;		/* 基本のフォント色 */
	background: #000;	/* 基本の背景色 */
	font-size: 13px;	/* 基本のフォントサイズ */
	font-family: Arial, Helvetica, Verdana, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	text-align: center;	/* ボックス中央寄せ IE用 */
}

/* ----- テキスト・リスト・イメージの設定 --------------- */

p, li, dt, dd, address {
	color: #000;
   line-height: 1.4;
}
p {
	margin-bottom: 10px;
}
ul {
	margin: 0px 0px 20px 20px;
}
ul li ol li {
	margin: 0px 20px 0px 25px;
}
ul li ol {
	margin-bottom: 10px;
}

em { font-weight: bold; }		/* 強調 */
i  { font-style: italic; }		/* 斜体 */
u, ins { text-decoration: underline;}	/* 下線 */
del { text-decoration: line-through;}	/* 打ち消し線 */

img {
	margin: 0;
}
object {
	margin-left: 10px;
}

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

a:link, a:visited {
	color: #009966;
	text-decoration: none;
}

a:hover, a:active {
	color: #00FF00;
}

/* ----- 整形・引用・コードの設定 ----------------------- */

pre {
	width: 450px;
	margin: 10px;
	padding: 5px;
	color: #666;
	background: #EEE;
	border: 1px solid #CCC;
	overflow: auto;

	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
code, var, kbd {
	color: #304285;
	font-family: 'ＭＳ ゴシック', monospace;
	line-height: 1.2;
}
blockquote {
	margin: 20px 30px;
	border: 1px dashed #999;
}
blockquote p {
	color: #999999;
}

/* ----- フォームの設定 --------------------------------- */

form legend {
	display: none;
}
form input, form select {
	margin-right: 1px;
	padding: 1px;
	color: #666;
	background: #FFFFFF;
	border: 1px solid #666;
	font-size: 90%;
}
@media screen {
	form input, form select {
		font-family: Verdana, Arial, sans-serif;
	}
}
form select {
	margin-top: 1px;
}
form p input {
	text-align: center;
}
form textarea {
	padding: 1px;
	color: #000;
	background: #fff;
	border: 1px solid #666;
	font-family: 'ＭＳ ゴシック', Osaka, monospace;
	line-height: 1.2;
}

/* ----- テーブルの設定 --------------------------------- */

table {
	margin-bottom: 10px;
	border: 1px solid #666680;
	border-collapse: collapse;
}
table tr th {
	padding: 5px;
	border: 1px solid #AAAAAA;
	background-color: #EEEEEE;
	font-size: 13px;
	text-align: center;
}
table tr td {
	padding: 5px;
	border: 1px solid #AAAAAA;
	font-size: 13px;
}
table tr td input {
	margin: -2px;
}


/* ----- 個別指定 --------------------------------------- */

.new {
	color: #800000; /* newの文字色 */
	font-size: 10px;
}

/* ---------------------------------------------------- */
/* 		基本構造				*/
/* ---------------------------------------------------- */

div#container {
	position: relative;
	width: 980px;
	margin: 0px auto;
	background-color: #fff;
}

div#header {
	float: none;
	/*clear: both;*/
	width: 980px;
	/*height: 277px;*/
	margin:0 auto;
	padding:0;
	background-color: #000;
}

div#menu {
	float: none;
	clear: both;
	margin-bottom: 10px;
}

div#navigation {
	width: 317px;
	float: right;
	margin: 0px;
	background-color: #fff;
}

div#navigation_p {
	padding: 5px;
}

div#logs {
	width: 661px;
	float: left;
	background-color: #fff;
}

div#diary, div#comment, div#trackback {
	padding: 10px 5px;
	background-color: #fff;
}

div#page, div#navi, div#contents, div#work, div#form, div#canvas, div#env, div#status {
	float: none;
	clear: both;
	padding: 0px 15px;
}

div#footer {
	float: none;
	clear: both;
	background-color: #fff;
}

/* ---------------------------------------------------- */
/* 		ヘッダー				*/
/* ---------------------------------------------------- */

div#header1{
	margin-top: 10px;
	float: left;
	width: 275px;
}

*:first-child+html div#header1{
	margin-top: 9px;
}

div#header2{
	float: right;
	width: 680px;
	margin: 10px 0 0 0;
	padding:0;
}

/**:first-child+html div#header2{
	margin-top: 55px;
}*/

*html div#header2{
	margin-top: 50px;
}

div#header3 {
	float: none;
	clear: both;
}

/* ----- 大ジャンルナビ ----------------------- */

div#genre_l{
	float: left;
	width: 966px;
	margin-top: 15px;
}

*:first-child+html div#genre_l{
	margin-top: 0px;
}

*html div#genre_l{
	margin-top: 0px;
}

div#genre_l1{
	float: left;
	margin: 0;
}

div#genre_l2{
	float: right;
	height: 72px;
	width: 210px;
	margin: 0;
	background-image:  url("/log01/skin/log01i/menu/search.jpg");
}

div#genre_l2p{
	padding-top: 25px;
	padding-left: 10px;
}

div#genre_r{
	float: right;
	width: 14px;
	margin-top: 15px;
}

*:first-child+html div#genre_r{
	margin-top: 0px;
	padding: 0;
}

*html div#genre_r{
	margin-top: 0px;
	padding: 0;
}




/* ---------------------------------------------------- */
/* 		メニュー				*/
/* ---------------------------------------------------- */

div#menu h2 {
	display: none;
}

div#menu ul {
	margin: 0px 20px;
	padding: 5px 0px;
	text-align: right;
}
div#menu ul li {
	display: inline;
	margin-right: 10px;
}

/* ---------------------------------------------------- */
/* 		ナビゲーション				*/
/* ---------------------------------------------------- */



div#navi1 {
	margin-bottom: 10px;
	border: 0; 
}


*:first-child+html div#navi1{　/* --IE7以上用-- */
	margin-bottom: 10px;
	padding: 0;
}

*html div#navi1{　/* --IE6以下用-- */
	margin: 0px;
	padding: 0;
}



/* -----レフトナビ内AD３つ　左画像----- */

div.navi2l {
	float: left;
	width: 114px;
	margin-top: 10px;
	border: 0;
}

div.navi2l p {
	color:#686868;
	line-height: 1.1;
	margin-bottom: 5px;
}
/* -----レフトナビ内AD３つ　右文章----- */
div.navi2r {
	float: right;
	width: 175px;
	font-size: 12px;
	margin: 15px 5px 5px auto;
	border: 0; 
	color:#686868;

}

div.navi2r p{
	color:#686868;
}

*:first-child+html div.navi2r{　/* --IE7以上用-- */
	font-size: 10px;
	margin: 15px 5px 0px 5px;
}

*:first-child+html div.navi2r p{　/* --IE7以上用-- */
	line-height: 1.3;
	color:#686868;
}

*html div.navi2r{　/* --IE6以下用-- */
	font-size: 10px;
	margin: 15px 5px 0px 5px;
}

*html div.navi2r p{　/* --IE6以下用-- */
	line-height: 1.3;
	color:#686868;
}

/* -----レフトナビ内AD　週替り記事部分----- */
div.navi2u {
	width: 300px;
	margin: 10px auto 5px 0;
	border: 0; 
}


/* -----レフトナビ内AD３つ　ここまで----- */


div#navi3 {
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	text-align: center;
}

div#navi3 img{
	margin-bottom: 5px;
}

div.clear {
	height: 0;
	float: none;
	clear: both;
}

.navi2r p.navi_b {
	font-size: 14px;
	font-weight: bold;  
	line-height: 1.3;
	margin-bottom: 3px;
}

.nabi2r p {
	line-height: 1.3;
    color:#686868;
   }

div.border_s {
	height: 0;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #aaa;
}

div.border_d {
	height: 0;
	margin: 0;
	padding: 0;
	border-bottom: 1px dotted #aaa;
}


/* ----- ナビ：フォーム --------------------------------- */

div#navigation form dl {
}
div#navigation form dl dt {
	display: none;
}
div#navigation form dl dd {
}
div#navigation form p {
	margin-left: 12px;
	margin-bottom: 0px;
}
div#navigation form input {
	color: #666666;
	background: #FFF;
	border: 1px solid #666;
}

/* ----- ナビ：カレンダー ------------------------------- */

div#navigation table {
	width: 150px;
	margin: -2px 0px 7px 7px;
	border: 0px solid #AAA;
}
@media screen {
	div#navigation table {
        	margin: -2px auto 7px auto;
        }
}
div#navigation table tr th {
	padding: 5px;
	border: 0px solid #AAA;
	background-color: #FFF;
	text-align: left;
}
div#navigation table tr td {
	padding: 0px;
	border: 0px solid #AAA;
	text-align: center;
}
@media screen {
	div#navigation table tr td {
        	padding: 0px;
        }
}
div#navigation table tr td a {
	font-weight: bold;
}

div#navigation .day {
	color: #444;
}
div#navigation .satday {
	color: #44C;
}
div#navigation .sunday {
	color: #C44;
}
div#navigation .today {
	background-color: #EEE;
}

div#navigation .calender {
	margin: 2px 20px;
}
div#navigation .calender li {
	display: inline;
	margin-right: 10px;
}

/* ----- ナビ：各ブロック ------------------------------- */

div#navigation .block {
	margin-right: 15px;
	margin-bottom: 10px;
	padding-bottom: 20px;
	text-align: center;
}


/* ---------------------------------------------------- */
/* 		メイン記事上看板				*/
/* ---------------------------------------------------- */

div#genre_kanban {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}


/* ---------------------------------------------------- */
/* 		メイン記事構成				*/
/* ---------------------------------------------------- */

div#main {
	width: 653px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

div#main_back {
	overflow: hidden;
	background-image:  url("/log01/skin/log01i/kageback.jpg");
	background-repeat: repeat-y;
}

div#genre_menu {
	width: 633px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

*html div#genre_menu{　/* --IE6以下用-- */
	margin-left: 10px;
}

div#main_l {
	width: 460px;
	float: left;
	margin-top: 10px;
	margin-left: 20px;
	border-right: 1px solid #aaa;
}

*html div#main_l{　/* --IE6以下用-- */
	margin-left: 15px;
}

div#main_r {
	width: 140px;
	float: right;
	margin-top: 20px;
	padding-right: 20px;
}

div#main_r1 {
	padding-left: 5px;
	border-bottom: 1px dotted #FF00FF;
}

div#main_r1 p{
	font-size: 15px;
	font-weight: bold;  
	color: #FF00FF;
}

div#main_r2 {
	padding-top: 10px;
	font-size: 12px;
	line-height: 1.5;
}

*html div#main_r2 {
	font-size: 10px;
	line-height: 20px;
}

div#kageunder {
	width: 653px;
	height: 20px;
	margin: 0 auto;
	text-align: center;
	padding: 0;
}


/* ---------------------------------------------------- */
/* 		メイン記事				*/
/* ---------------------------------------------------- */

div#diary .diary {
	margin-bottom: 35px;
	padding: 2px;
}

/* ----- 回りこみ対策 --------------------------------- */

div#diary .diary:after{/*for modern browser*/
	content:".";
	display: block;
	height: 0px;
	clear: both;
	visibility: hidden;
}
/* exlude MacIE5 \*/
* html div#diary .diary { height: 1% }
div#diary .diary {display:block;}
/* end MacIE5 */

/* ----- メイン：見出し --------------------------------- */

div#diary h2 {
	display: none;
}
div#diary h3 {
	margin: 5px 5px 10px 5px;
	padding: 5px;
	font-weight: bold;
	color: #666666;
	border-bottom: 1px dotted #666666;
}
div#diary h4 {
	margin: 10px;
	padding: 2px 10px 3px;
	color: #666666;
	font-weight: bold;
	letter-spacing: 0.3em;
	border-top: 1px solid #AAAAAA;
	border-left: 8px solid #666666;
	border-right: 1px solid #AAAAAA;
	border-bottom: 1px solid #AAAAAA;
}
div#diary h5 {
	margin: 10px 10px 10px 15px;
	padding: 2px 5px 2px 10px;
	color: #666666;
	font-weight: bold;
	letter-spacing: 0.3em;
	border-left: 5px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
div#diary h6 {
	margin: 10px 10px 10px 15px;
	font-weight: bold;
	padding: 1px 10px 1px 5px;
	color: #999999;
	font-weight: bold;
	letter-spacing: 1em;
	text-align: right;
	border-bottom: 1px solid #CCCCCC;
}

/* ----- メイン：テキスト ------------------------------- */

div#diary .text * {
	font-size: x-small;
}
html>body div#diary .text * {
	font-size: small;
}
div#diary .text p {
	margin: 15px 10px;
}
div#diary .text ul {
	margin: 15px 30px;
}
div#diary .text ul li {
	list-style-type: disc;
}
div#diary .text ol {
	margin: 15px 40px;
}
div#diary .text dl {
	margin: 15px 10px;
}
div#diary .text dl dt{
}
div#diary .text dl dd{
	padding-left: 10px;
}
div#diary .text table{
	margin: 15px 10px;
}

/* ----- メイン：日付、分類など ------------------------- */

div#diary .info {
	margin: 5px 10px;

	text-align: right;
}
div#diary .info * {
	font-size: 10px;
}
div#diary .info li {
	display: inline;
	margin-left: 5px;
}

/* ----- メイン：記事一覧のコメント＆トラックバック ----- */

div#diary .list {
	margin: 0px 0px 10px 20px;
	padding: 5px 0px 5px 10px;
}
div#diary .list h4 {
	padding: 5px 10px;
	color: #666666;
	font-weight: bold;
	letter-spacing: 0.3em;
	background: #EEEEEE;
	border-top: 0px solid #999999;
	border-left: 5px solid #999999;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
div#diary .list ul {
	margin: 0px 0px 10px 20px;
}
div#diary .list dl dt {
	margin: 0px 15px;
        font-weight: bold;
}
div#diary .list dl dd {
	margin: 10px 10px 0px 20px;
}

/* ----- メイン：トラックバック ------------------------- */

div#trackback h2 {
	margin-bottom: 15px;
	padding: 5px;
	border-top: 3px double #999999;
	border-bottom: 3px double #999999;
}
div#trackback dl {
	margin-bottom: 10px;
	padding: 2px 2px 10px 2px;
	border: 1px solid #AAAAAA;
}
div#trackback dl dt {
	margin-top: 10px;
	margin-left: 10px;
}
div#trackback dl dd {
	margin-left: 30px;
}

/* ----- メイン：コメント ------------------------------- */

div#comment .comment {
	margin-bottom: 10px;
	padding: 2px 2px 10px 2px;
	border: 1px solid #AAAAAA;
}

div#comment h2 {
	margin-bottom: 15px;
	padding: 5px;
	border-top: 3px double #999999;
	border-bottom: 3px double #999999;
}
div#comment h3 {
	margin: 5px 5px 10px 5px;
	padding: 5px;
}

div#comment .text * {
	font-size: x-small;
}
html>body div#comment .text * {
	font-size: small;
}
div#comment .text p {
	margin: 10px;
}

/* ----- メイン：ページ移動 ----------------------------- */

div#page h2 {
	display: none;
}

div#page ul {
	margin: 0px;
	text-align: right;
}
div#page ul li {
	display: inline;
	margin-right: 10px;
}

/* ----- メイン：ページナビゲーション ------------------- */

div#navi h2 {
	display: none;
}

div#navi ul {
	margin: 5px 0px;
	text-align: right;
}
div#navi ul li {
	display: inline;
	margin-left: 5px;
}

div#navi form dl {
}
div#navi form dl dt {
	display: none;
}
div#navi form dl dd {
	float: left;
}
div#navi form input {
	padding: 0px;
}

/* ----- メイン：コンテンツ ----------------------------- */

div#contents h2 {
	margin-bottom: 15px;
	padding: 5px;
	border-top: 3px double #999999;
	border-bottom: 3px double #999999;
}
div#contents h3 {
	margin-bottom: 15px;
	padding: 3px 0px;
	border-bottom: 1px double #999999;
}
div#contents h4 {
	margin-bottom: 10px;
}

div#contents dl {
	margin-bottom: 20px;
}
div#contents dl dt {
	margin-top: 10px;
}
div#contents dl dd {
	margin-left: 30px;
}

/* ----- メイン：フォーム（管理画面共通） -------------- */

div#form form {
	margin-bottom: 10px;
}
div#form form dl {
	margin-bottom: 20px;
}
div#form form dl dt {
	float: left;
	clear: left;
	width: 5em;
}
div#form form dl dd {
}
div#form form dl dd textarea {
	margin-top: 2px;
}
div#form form ul {
	margin: 0px 0px 20px 0px;
}
div#form form ul li {
	list-style-type: none;
}

/* ---------------------------------------------------- */
/* 		管理画面用				*/
/* ---------------------------------------------------- */

/* ----- 各画面の見出し ------------------------------- */

div#work h2, div#form h2, div#env h2,
div#status h2, div#canvas h2 {
	margin-bottom: 15px;
	padding: 5px;
	border-top: 3px double #999999;
	border-bottom: 3px double #999999;
}

/* ----- 処理選択 ------------------------------------ */

div#work form {
	margin: 10px 0px;
}
div#work form dl dt {
	display: none;
}
div#work form dl dd {
	float: left;
}
div#work form input {
	padding: 0px;
}

/* ----- 環境設定 -------------------------------------- */

div#env h3 {
	margin-bottom: 15px;
	padding: 5px;
	background-color: #EEEEEE;
}

div#env ul li {
	list-style-type: disc;
}
div#env dl {
	margin-bottom: 20px;
}
div#env dl dd {
	margin-bottom: 10px;
}

div#env form {
	margin-bottom: 20px;
}
div#env form p {
	margin-bottom: 20px;
}

/* ----- ステータス ------------------------------------ */

div#status h3 {
	margin-bottom: 15px;
	padding: 3px 0px;
	border-bottom: 1px double #999999;
}
div#status h4 {
	margin-bottom: 10px;
}

div#status dl {
	margin-bottom: 20px;
}
div#status dl dt {
	float: left;
	clear: left;
	width: 10em;
}
div#status dl dd {
}

/* ---------------------------------------------------- */
/* 		お絵かき設定				*/
/* ---------------------------------------------------- */

div#canvas applet {
	margin-bottom: 15px;
}

/* ---- 動的パレット追加用 ------------------------------ */
/*  パレットの枠線などの色設定は palette.js 参照          */
/*  不要の場合は消してください			          */
/* ------------------------------------------------------ */

div#canvas applet {
	float: left;
}

div#palette * {
	font-size: 13px;
	text-align: left;
}

div#palette table {
	margin: 0px;
	border: 0px solid #000000;
}
div#palette td {
	padding: 1px;
	border: 0px solid #000000;
}
div#palette table tr td table tr td table tr td {
	padding: 5px;
}

div#palette input {
	margin: 1px 0px;
	padding: 1px 0px;
	height: 22px;
}
div#palette select {
	margin: 1px 1px 1px 0px;
}
div#palette textarea {
	width: 120px;
	text-align: left;
}
div#palette .button {
	text-align: center;
}

div#palette font {
	font-size: 11px;
}

/* ---------------------------------------------------- */
/* 		フッター				*/
/* ---------------------------------------------------- */

div#footer address {
	padding: 30px 15px 20px 15px;
	color: #777;
	font-size: 10px;
	text-align: right;
}

div#footer a:link, div#footer a:visited {
	color: #777;
	font-size: 10px;

}
div#footer a:active, div#footer a:hover {
	color: #0f0;
	font-size: 10px;
}

div#copyright {
	height: 50px;
	margin: 10px auto;
	font-size: 12px;
	text-align: center;
}
