@charset "Shift_JIS";

/*--------------------------------------------

Name: n001 STRAIGHT-no.
Version: 1.0
Date: 2007-08-01
Author: アメ
Site: {neut}
URL: http://neut.xtr.jp/

--------------------------------------------*/

/*	　目次
----------------------------------------------
1.全体
2.見出し
3.リンク
4.リスト
5.フォーム
6.テキスト装飾
7.コンテナー
8.ヘッダー
9.コンテンツ
10.フッター
11.indexページ
--------------------------------------------*/

/*	　1.全体
--------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	line-height: 1.7; /* 全体の行の高さ（変更すると定義リスト関連が崩れますので適宜変更して下さい） */
	font-style: normal;	
	font-weight: normal;
	font-size: 100%;
}
html,
body {
	scrollbar-3dlight-color: #000;
	scrollbar-arrow-color: #000;
	scrollbar-base-color: #fff;
	scrollbar-darkshadow-color: #000;
	scrollbar-face-color: #fff;
	scrollbar-highlight-color: #fff;
	scrollbar-shadow-color: #fff;
	scrollbar-track-color: #fff;
}
html {
	overflow-y: scroll;
}
body {
	color: #000; /* 全体のフォントカラー */
	background:#fff; /* 全体の背景色 */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 75%; /* 全体のフォントサイズ */
	text-align: center;
}
p {
	margin-bottom: 1em;
}
img {
	border: 0;
}
br {
	letter-spacing: normal;
}
/* 記号の文字化け対策 */
.mark {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", sans-serif;
}
/*	　2.見出し
--------------------------------------------*/
h2 {
	margin-bottom: 15px;
	border-top: 1px solid #000;
	border-bottom: 3px solid #000;
	background: #eee;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 120%;
}
h3 {
	margin-bottom: 1em;
	border-bottom: 1px dotted #000;
	font-weight: bold;
}
h4 {
    border-bottom: 1px solid #ccc;
	display: inline;
    background: #eee;
}
/*	　3.リンク
--------------------------------------------*/
a {
	color: #2c9fb6;
	text-decoration: none;
}
a:hover {
	color: #fff;
	background-color: #2c9fb6;
	text-decoration: none;
}
/*	　4.リスト
--------------------------------------------*/ 
ul,
ol,
dl {
	margin-bottom: 1em;
}
ul li {
	list-style: none outside;
}
ol li {
	list-style: decimal inside;
}
dt {
	padding-left: 20px;
	background: url("img/list.gif") no-repeat left center;
}
/* テキストのリスト1（縦並び・WORKS-Novels-Short storyで使用） */
ul.textlist1 li {
	padding-left: 20px;
	background: url("img/list.gif") no-repeat 0px 7px;
}
/* テキストのリスト2（横並び・WORKS-Illustrations-Category2とLINK-Link-Category2で使用） */
ul.textlist2 li {
	margin-right:2em;
	display: inline;
}
/* イメージのリスト（横並び・WORKS-Illustrations-Category1とLINK-Link-Category1で使用） */
ul.imglist {
	width: 650px;
}
ul.imglist li {
	float: left;
}
ul.imglist a {
	background: none;
}
ul.imglist li img {
	margin: 0 5px 5px 0;
}
/* 番号付きリスト1（横並び・WORKS-Novels-Long storyで使用） */
ol.horizontal {
	margin-bottom: 0;
}
ol.horizontal li {
	margin-right: 1em;
	display: inline;
	list-style: none outside;
}
/* 定義リスト1（dtの幅が長いVer・WORKS-Novels-Long storyで使用） */
dl.dt-long dt {
	padding-left: 20px;
	width: 10em;	
	background: url("img/list.gif") no-repeat left center;
	line-height: 1.7;
}
dl.dt-long dd {
	margin: -1.7em 0 0 10em;
}
dl.dt-long dd.second {
	margin-top: 0.1em;
}
/* 定義リスト2（dtの幅が短いVer・更新履歴とABOUT-About link・メールフォームで使用） */
dl.dt-short dt {
	padding-left: 20px;
	width: 8em;
	line-height: 1.7;
	background: url("img/list.gif") no-repeat left center;
}
dl.dt-short dd {
	margin: -1.7em 0 0 8em;
}
dl.dt-short dd.second {
	margin-top: 0.1em;
}
/* イメージとテキストの定義リスト1（LINK-Link-Category3で使用） */
dl.imgtextlist1 {
	width: 100%;
}
dl.imgtextlist1 dt {
	padding: 0;
	float: left;
	width: 200px;
	background-image: none;
}
dl.imgtextlist1 dt a {
	background: none;
}
dl.imgtextlist1 dd {
	margin-left: 200px;
	padding-left: 20px;
}
/* イメージとテキストの定義リスト2（LINK-Link-Category4で使用） */
div.imgtextlist2_box {
	width: 650px;
}
	/* IE6用 */
	* html div.imgtextlist2_box {
		margin-bottom: 1.2em;
	}
dl.imgtextlist2 {
	margin-right: 10px;
	float: left;
	width: 200px;	
}
dl.imgtextlist2 dt {
	padding: 0;
	width: 200px;
	background-image: none;	
}
dl.imgtextlist2 dt a {
	background: none;
}
	/* floatクリア用（※削除不可） */
	ul.imglist:after,
	div.imgtextlist1:after,
	div.imgtextlist2_box:after {
		height: 0;
		visibility: hidden;
		content: ".";
		display: block;
		clear: both;
	}
	ul.imglist:after,
	div.imgtextlist1:after,
  	div.imgtextlist2_box {
		/*\*/*/
		overflow: hidden;
		/**/
	}
/*	　5.フォーム
--------------------------------------------*/
fieldset {
	border: 0;
}
legend {
	display: none;
}
textarea,
select,
input {	
	margin-bottom: 1em;
	border: 1px solid #fff;
	border-bottom: 1px solid #000;	
	line-height: 1.2;
	color: #000;	
	background-color: #fff;	
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, "ＭＳ Ｐゴシック", "Osaka", sans-serif;	
	scrollbar-3dlight-color: #000;
	scrollbar-arrow-color: #000;
	scrollbar-base-color: #fff;
	scrollbar-darkshadow-color: #000;
	scrollbar-face-color: #fff;
	scrollbar-highlight-color: #fff;
	scrollbar-shadow-color: #fff;
	scrollbar-track-color: #fff;
}
textarea {
	width: 350px;
	border: 1px solid #000;
}
select:hover,
input:hover {
	border-bottom: 1px solid #2c9fb6;
	background-color: #eee;
}
select:focus,
input:focus {
	border-bottom: 1px solid #2c9fb6;
	background-color: #eee;
}
textarea:hover {
	border: 1px solid #2c9fb6;
	background-color: #eee;
}
textarea:focus {
	border: 1px solid #2c9fb6;
	background-color: #eee;
}
input.button {
	margin-right: 0.5em;
	padding: 0 0.5em;
	border: 1px solid #000;	
	width: 70px;
	vertical-align: middle;	
	color: #fff;
	background-color: #000;	
	cursor: pointer;
}
input.check,
input.radio {
    margin: 0 0.5em 0 0;
	border: none;
	width: auto;
	background: none;
}
/*	　6.テキスト装飾
--------------------------------------------*/
/* 強調 */
em {
	font-weight: bold;
}
/* より強い強調 */
strong {
	border-bottom: 1px dashed #666;
	font-weight: bold;
}
/* 追加 */
ins {
	text-decoration: underline;
}
/* 削除 */
del {
	color: #666;
	text-decoration: line-through;
}
/* 引用 */
blockquote {
	margin: 1.5em 20px;
	padding: 6px 1em;
	border-top: 1px solid #ccc;
	border-bottom: 3px solid #ccc;
	background-color: #fff;
}
blockquote p {
	margin-bottom: 0;
}
cite,
q {
	font-style: oblique;
}
/* 整形済みテキスト */
pre {
	margin: 1.5em 0;
	padding: 0.5em 1em;
	border: 1px dotted #ccc;
	width: 80%;
	height: 100px;
	overflow: scroll;
	background-color: #fff;
	font-family: "Osaka−等幅", monospace;
}
code {
	font-family: "Osaka−等幅", monospace;
}
/* アドレス */
address {
	margin-bottom: 1em;
	font-style: normal;
}
/* テーブル */
table {
	margin-bottom: 1em;
	border-collapse: separate;
}
th,
td {
	padding: 0 0.8em;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;	
}
th {
	color: #fff;	
	background-color: #bbb;
	text-align: center;
}
td {	
	color: #666;
	background-color: #eee;
}
td.second {
	color: #666;
	background-color: #fff;
}
/* 装飾ボックス */
div.deco {
	margin-bottom: 1em;
	padding: 0.5em;
	color: #000;
	background: #eee;
}
/*	　7.コンテナー
--------------------------------------------*/
div#container {
	margin:auto;
	width: 650px;
	text-align: left;
}
/*	　8.ヘッダー
--------------------------------------------*/
div#header {
	padding-top: 24px;	
}
/* サイト名 */
h1 {
	padding-left: 25px;
	border-bottom: 1px solid #000;
	height: 35px;
	line-height: 35px;
	color: #000;
	background: url("img/h1.gif") no-repeat 0% 50%; 
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 28px;
}
h1 a {
	height: 35px;
	line-height: 35px;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 28px;
}
h1 a:hover {
	color: #000;
	background: none;
}
/* メニュー */
div#menu {
	width: 650px;
	border-bottom: 7px solid #000;
	float: left;
	line-height: 1.7;
}
div#menu ul {
	margin: 0;
}
div#menu li {
	float: left;
	color: #000;
}
div#menu li a {
	padding: 0 18px 5px;
	border-top: 5px solid #fff; /* bodyの背景色と同色にする */
	display: block;
	line-height: 24px;	
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
}
div#menu li a:hover {
	border-top: 5px solid #2c9fb6;
	background: url('img/triangle.gif') center bottom no-repeat;
	color: #2c9fb6;
}
div#menu li.on a {
	border-top: 5px solid #000;
	color: #000;
	background: url('img/triangle.gif') center bottom no-repeat;
}
div#menu li.on a:hover {
	border-top: 5px solid #000;
	color: #000;
	background: url('img/triangle.gif') center bottom no-repeat;
}
/* WEB拍手 */
div#menu p {
	margin: 0;
}
div#menu a#clap {
	margin-top: 18px;
	padding: 0 0.2em;
	display: block;
	float: right;
	line-height: 16px;	
	color: #fff;
	background: #000;
	font-size: 10px;
	text-decoration: none;
}
/* メインイメージ */
div#mainimg img {
	border-bottom: 7px solid #000;
}
/*	　9.コンテンツ
--------------------------------------------*/
div#contents {
	margin-bottom: 20px;
	padding-top: 20px;
	clear: both;	
	line-height: 1.7;
}
/* 一段組みの場合 */
div.textbox {
	padding-bottom: 1em;
}
/* 二段組みの場合の左ボックス */
div.leftbox {
	padding-bottom: 1em;
	float: left;
	width: 318px;
}
/* 二段組みの場合の右ボックス */
div.rightbox {
	padding-bottom: 1em;
	float: right;
	width: 318px;
}
/*	　10.フッター
--------------------------------------------*/
ul#footer {
	margin: 0 0 20px;
	border-top: 1px solid #000;
	clear: both;
	text-align: center;
}
ul#footer li {
	margin: 0 0.5em;
	display: inline;
	color: #000;
	font-size:94%;
}
ul#footer li a {
	color: #000;
	text-decoration: none;
}
ul#footer li a:hover {
	color: #fff;
	background-color: #2c9fb6;
	text-decoration: none;
}
/*	　11.indexページ
--------------------------------------------*/
body#index div#container {
	width: 400px;
}
body#index h1 {
	border: 0;
}
body#index div#contents {
	padding: 0;
}