@charset "utf-8";

body {
	margin: 0;
	padding: 0;
	color: #333;
	font-size: 12px;
	line-height: 22px;
	background: #EFEFEF;
	font-family: "メイリオ", "ヒラギノ角ゴシックW3", "Arial";
}

/* HTML5 Reset */
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section {
	display: block;
}

/* ----------------------------------- *
 *  Header
 * ----------------------------------- */

div#wheader {
	background: url('./images/wheader.jpg') repeat-x;
	border-top: 1px solid #564e43;
}

#header {
	width: 1100px;
	margin: 0 auto;
	height: 150px;
	background: url('./images/yaruyomi.png') no-repeat;
}

#header h1 {
	margin: 0 0 0 7px;
	font-size: 0.8em;
	letter-spacing: 1px;
	line-height: 18px;
	text-align: right;
}

#header h1 a {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 1px 0 #ccc, 1px 0 0 #ccc, -1px 0 0 #ccc;
	text-decoration: none;
	-moz-transition: 0.2s linear;
}

#header h1 a:hover {
	padding-top: 10px;
	padding-bottom: 10px;
}

/* ----------------------------------- *
 *  Header Navi
 * ----------------------------------- */

#wnavi {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #ccc;
	box-shadow: 0 -1px 0 #ccc, 0 1px 0 #fff, 0 5px 0 #5e4c35;
}
#nav {
	width: 1100px;
	margin: 0 auto;
	box-shadow: 0 5px 10px rgba(100, 100, 100, 0.6);
	text-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}
#nav ul {
	line-height: 30px;
	border-left: 1px solid #fff;
	box-shadow: -1px 0 0 #ddd;
}
#nav ul li {
	margin: 0;
	float: left;
	border-right: 1px solid #ddd;
	box-shadow: 1px 0 0 #fff;
	font-weight: bold;
}
#nav ul li a {
	display: block;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	margin: 2px;
	padding: 0 20px 0 42px;
	border: 1px solid #eee;
	-o-transition: 0.2s linear;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	transition: 0.2s linear;
	color: #333;
	background-repeat: no-repeat;
	background-position: 10px center;
}
#nav ul li a:hover {
	background-color: #fff;
	box-shadow: 0 0 3px #fff;
	border: 1px solid #ddd;
}
#nav ul li a img {
	margin-right: 8px;
}
#nav ul li a.home { background-image: url('./images/home.png'); }
#nav ul li a.data { background-image: url('./images/data.png'); }
#nav ul li a.about { background-image: url('./images/about.png'); }
#nav ul li a.bbs { background-image: url('./images/bbs.png'); }
#nav ul li a.rss { background-image: url('./images/rss.png'); }

/* ----------------------------------- *
 *  Article
 * ----------------------------------- */

div#wrapper {
	width: 1100px;
	margin: 20px auto;
}
article h1 {
	margin: 20px 0;
	padding: 20px;
	font-size: 1.4em;
	line-height: 25px;
	background: #fafafa;
	background: -webkit-linear-gradient(top, #fafafa, #eee);
	background: -moz-linear-gradient(top, #fafafa, #eee);
	background: -ms-linear-gradient(top, #fafafa, #eee);
	background: -o-linear-gradient(top, #fafafa, #eee);
	border: 1px solid #ddd;
	border-top: 1px solid #fff;
	box-shadow: 0 1px 0 #fff, 0 -1px 0 #ddd;
	font-family: "メイリオ", "ヒラギノ角ゴシックW3", "Arial";
	letter-spacing: 1px;
	position: relative;
	border-radius: 10px;
}

article h1:before, article h1:after {
	z-index: -1;
	position: absolute;
	content: "";
	top: 50%;
	bottom: 15px;
	left: 10px;
	width: 50%;
	max-width: 400px;
	background: rgba(0, 0, 0, 0.7);
	-webkit-box-shadow: 0 15px 10px rgba(0,0,0, 0.7);
	-moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
	box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
	-webkit-transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
}

article h1:after {
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	right: 10px;
	left: auto;
}

article h1.title {
	font-size: 13px;
	padding: 1px 10px;
	border-radius: 0;
	background: transparent;

}
article h1.title:before, article h1.title:after {
	content: none;
}

/* ブロック
 * ----------------------------------- */
.box {
	margin-top: 20px;
	border: 1px solid #ddd;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	background: #f8f8f8;
}

.box:first-child {
	margin-top: 0;
}

.box h1 {
	line-height: 25px;
	margin: 0 0 10px;
	font-size: 1.0em;
	padding: 1px 10px;
	border: 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #ddd;
	box-shadow: 0 -1px 0 #ddd, 0 1px 0 #fff;
}
.box h2 {
	font-size: 0.9em;
	margin: 10px;
	padding: 1px 10px;
	border-left: 1px solid #bbb;
	border-bottom: 1px dashed #bbb;
	border-radius: 5px;
	font-weight: normal;
}
.box p {
	margin: 10px 15px 20px;
}

/* エピソードナビ
 * ----------------------------------- */
.ep_navi {
	background: #f8f8f8;
	border: 1px solid #ddd;
	margin: 0 0 20px;
	position: relative;
	font-family: "メイリオ", "ヒラギノ角ゴシックW3", "Arial";
	font-size: 12px;
	box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff;
}
.ep_navi h1 {
	font-size: 1.1em;
	margin: 0;
}
.ep_navi:before {
	z-index: -1;
	position: absolute;
	content: "";
	top: 50%;
	bottom: 15px;
	left: 10px;
	width: 98%;
	background: rgba(230, 230, 230, 0.7);
	-webkit-box-shadow: 0 15px 10px rgba(0,0,0, 0.7);
	-moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
	box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
}
.ep_navi ul {
	padding: 10px 0 10px 10px;
	font-size: 0.9em;
}
.ep_navi ul li {
	float: left;
	width: 88px;
	margin: 1px;
}
.ep_navi ul li a {
	display: block;
	padding: 0 5px;
	box-shadow: 0 1px 0 #ddd, 0 -1px 0 #ddd, 1px 0 0 #ddd, -1px 0 0 #ddd;
	background: #eee;
	border: 1px solid #fff;
	border-radius: 5px;
	text-decoration: none;
}
.ep_navi ul li.active a {
	color: #f00;
	background: #fff;
}
/* ナビポップアップ */
#navi_popup {
	width: 1080px;
	position: absolute;
	color: #fff;
	background: rgb(33, 33, 33);
	background: rgba(33, 33, 33, 0.9);
	padding: 5px 10px;
	top: -30px;
	left: 0;
	font-size: 1.2em;
	z-index: 10;
	text-align: center;
	box-shadow: 0 0 2px rgba(33, 33, 33, 0.9);
}

/* エピソードリスト not Navigation
 * ----------------------------------- */
#ep_list {
	margin: 10px;
	font-size: 11px;
}
#ep_list li {
	float: left;
	width: 99px;
	margin: 2px;
}
#ep_list li a {
	display: block;
	padding: 0 5px;
	box-shadow: 0 1px 0 #ddd, 0 -1px 0 #ddd, 1px 0 0 #ddd, -1px 0 0 #ddd;
	background: #eee;
	border: 1px solid #fff;
	border-radius: 5px;
	text-decoration: none;
}
#ep_list li a.active {
	background: #fff;
	color: #f00;
}

/* リスト
 * ----------------------------------- */
.list {
	margin: 10px;
}
.list li {
	background: url('./images/list.png') no-repeat left 6px;
	padding: 1px 0 1px 8px;
	margin: 0 0 10px;
}
.list li span {
	font-size: 0.9em;
}
.list li li {
	margin: 0 0 0 8px;
	padding-left: 20px;
	border-bottom: 1px dashed #ddd;
	background: url('./images/list_li.png') no-repeat left 6px;
}
/* 作品リスト
 * ----------------------------------- */
#work_list {
	text-align: center;
}
#work_button {
	margin: 0;
}
#work_button a {
	display: inline-block;
	width: 129px;
	line-height: 30px;
	text-align: center;
	border: 1px solid #ddd;
	text-decoration: none;
	background: #eee;
	border-radius: 5px;
	opacity: 0.7;
	color: #666;
	border-top: 2px solid #aaa;
}
#work_button a.active {
	background: #fff;
	opacity: 1.0;
	color: #333;
	border-top: 2px solid #9f7f55;
}
.work_list {
	margin: 10px;
	text-align: left;
}
.work_list li {
	border-bottom: 1px solid #ddd;
	box-shadow: 0 1px 0 #fff;
}
.work_list li:nth-of-type(2n) {
	background-color: #eee;
}
.work_list li a {
	display: block;
	background: url('./images/work_list.png') no-repeat 8px 5px;
	padding: 0 0 0 28px;
}
.work_list li a:hover {
	background-color: #fff;
}
.work_list li.ongo a {
}
.work_list li.comp a {
	background-image: url('./images/work_list_comp.png');
}
.work_list li.ettr a {
	background-image: url('./images/work_list_ettr.png');
}

/* 作品画像
 * ----------------------------------- */

.work_images {
	padding: 10px 0;
}
.work_images p {
	margin: 0 0 15px 23px;
	padding: 4px;
	float: left;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 2px 3px #333;
	opacity: 0.5;
}
.work_images p:hover {
	opacity: 1.0;
}

/* ----------------------------------- *
 *  Foot Space
 * ----------------------------------- */

.foot_space {
	margin: 100px 0 20px;
}
.aa .foot_space p {
	margin: 0;
}
p.ad {
	width: 728px;
	min-height: 90px;
	float: left;
}
p.gotop {
	min-height: 90px;
	float: right;
}

/* ----------------------------------- *
 *  Comments
 * ----------------------------------- */

.comment_area {
	padding-bottom: 20px;
	font-family: "メイリオ", "ヒラギノ角ゴシックW3", "Arial";
	font-size: 13px;
	position: relative;
}

/* 新着コメント
 * ----------------------------------- */
#new_comments {
	margin: 10px;
}
#new_comments li {
	padding: 0 0 5px;
	margin: 0 0 5px;
	padding: 0 0 0 15px;
	border-bottom: 1px dashed #ddd;
	box-shadow: 0 1px 0 #fff;
	background: url('./images/new_comment.png') no-repeat left 5px;
}
#new_comments li span {
	display: block;
	font-size: 0.8em;
	line-height: 1.8;
	margin-left: -15px;
}

/*  Comments List
 * ----------------------------------- */
#comments {
	width: 538px;
	border: 1px solid #ddd;
	float: left;
	font-family: 'ＭＳ Ｐゴシック', 'IPAMonaPGothic';
	margin: 0 0 20px;
	position: relative;
}
#comments ol {
	margin: 15px 10px 10px;
}
#comments ol li {
	border-bottom: 1px solid #ddd;
	box-shadow: 0 1px 0 #fff;
	margin: 0 0 15px;
	padding: 0 0 15px;
	position: relative;
}
.comment_name {
	color: #215192;
	font-weight: bold;
	margin-right: 10px;
}
#comments p.comment_num {
	margin: 0;
	font-size: 0.8em;
	display: inline-block;
	background: #eee;
	padding: 0 8px;
	border-radius: 50%;
	border: 1px solid #ddd;
	position: absolute;
	top: 0;
	left: 0;
}
#comments p.comment_info {
	margin: 0 0 0 40px;
	font-size: 0.8em;
	color: #666;
	letter-spacing: 1px;
}
#comments p.comment_body {
	margin: 0 0 0 40px;
	padding: 0 0 8px;
	font-size: 1.1em;
}
#comment_popup {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 10px;
	z-index: 10;
	min-width: 510px;
}
#comment_popup p.comment_num {
	top: 10px;
	left: 10px;
}

/*  Comments Form
 * ----------------------------------- */
#comment_form {
	width: 538px;
	border: 1px solid #ddd;
	float: right;
	position: relative;
	top: 0;
	left: 0;
	margin: 0 0 20px;
}

#comment_form table {
	margin: 0 10px;
	padding: 0;
	width: 96%;
	border-spacing: 2px;
}
#comment_form th {
	width: 50px;
	padding: 5px 0 0 10px;
	text-align: left;
	font-weight: normal;
	border-left: 2px solid #999;
	border-bottom: 1px solid #ddd;
}
#comment_form td {
	padding: 5px;
	border-bottom: 1px solid #ddd;
}
#comment_form input[type="text"] {
	border: 1px solid #ddd;
	background: #fff;
	width: 200px;
	padding: 3px 5px;
	border-radius: 5px;
}
#comment_form textarea {
	border: 1px solid #ddd;
	background: #fff;
	width: 426px;
	border-radius: 5px;
	padding: 5px;
}
#comment_form textarea:focus,
#comment_form input[type="text"]:focus {
	background: #f1eee7;
	border-color: #d2cfc9;
}

.aa p.button,
p.button {
	margin: 0 15px 15px;
	text-align: right;
}
p.button input[type="button"],
p.button input[type="submit"] {
	color: #eee;
	border: 1px solid #333;
	background: #000;
	background: rgba(0, 0, 0, 0.8);
	padding: 5px 10px;
	border-radius: 5px;
	box-shadow: 0 3px 0 #000;
	cursor: pointer;
}
p.button input[type="button"]:hover,
p.button input[type="submit"]:hover {
	color: #333;
	background: #eee;
}
p.button input[type="button"]:active,
p.button input[type="submit"]:active {
	position: relative;
	box-shadow: none;
	top: 2px;
	left: 0;
}
p.button input[type="button"].dis,
p.button input[type="submit"].dis {
	background: #eee;
	border: 1px solid #ddd;
	color: #666;
	box-shadow: none;
}

/* ----------------------------------- *
 *  Tag
 * ----------------------------------- */
#tag_form p {
	margin: 0 15px 15px;
	padding: 10px 0 0;
	border-top: 1px dotted #ddd;
}
#tag_form input[type="text"] {
	border: 1px solid #ddd;
	background: #fff;
	width: 60%;
	padding: 3px 5px;
	border-radius: 5px;
}
#tag_form input[type="submit"] {
	width: 32%;
	border: 1px solid #ccc;
	padding: 2px 5px;
	border-radius: 5px;
	background: #fff;
	cursor: pointer;
}
#tag_form input[type="submit"]:hover {
	background: #544941;
	color: #eee;
}
.tags {
	margin: 10px;
	word-wrap: break-word;
}
.tags li {
	display: inline;
	border: 1px solid #ddd;
	margin: 2px;
	border-radius: 5px;
}
.tags li a {
	padding: 5px;
	text-decoration: none;
}

/* ----------------------------------- *
 *  Footer
 * ----------------------------------- */

footer#footer {
	width: 1100px;
	margin: 10px auto 20px;
	text-align: center;
	color: #666;
	font-size: 0.9em;
	letter-spacing: 1px;
}

/* ----------------------------------- *
 *  3 Column layout
 * ----------------------------------- */

#left_wrap {
	width: 830px;
	float: left;
}
#left {
	width: 250px;
	float: left;
}
#center {
	width: 560px;
	float: right;
}
#right {
	width: 250px;
	float: right;
}

/* ----------------------------------- *
 *  Side Nav
 * ----------------------------------- */

.sidenav {
	margin: 10px;
}

.sidenav li {
	border-bottom: 1px solid #ccc;
	box-shadow: 0 1px 0 #fff;
}

.sidenav li a {
	display: block;
	padding: 5px 10px;
}

/* ----------------------------------- *
 *  Page Navi
 * ----------------------------------- */

nav#pagenavi {
	margin: 10px 0;
	line-height: 30px;
}

nav#pagenavi ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

nav#pagenavi ul li {
	display: inline-block;
	line-height: 25px;
	margin-right: 5px;
	text-decoration: none;
	border-radius: 5px;
	border: 1px solid #ddd;
	box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}

nav#pagenavi span,
nav#pagenavi li a {
	display: block;
	padding: 0 10px;
	text-decoration: none;
}

nav#pagenavi li a:hover {
	background: #e8e8e8;
}

/* ----------------------------------- *
 *  Other
 * ----------------------------------- */

.nocomment {
	text-align: center;
	letter-spacing: 1px;
}

#comment_form p.msg {
	margin: 10px 15px;
	font-size: 0.9em;
}

.ranking {
	width: 228px;
	margin: 0 10px 10px;
	border-collapse: collapse;
	font-size: 0.9em;
}
.ranking li {
	padding: 0 5px;
	border-bottom: 1px dotted #ddd;
}
.ranking li span {
	display: inline-block;
	width: 20px;
}

p.small {
	font-size: 0.9em;
}

/* ----------------------------------- *
 *  for thread layout
 * ----------------------------------- */

#thread {
	position: relative;
}
.aa {
	font-family: 'ＭＳ Ｐゴシック', 'MS PGothic', 'IPAMonaPGothic', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #000;
}
.aa p {
	margin: 20px 0 20px 10px;
}
.id {
	color: #ff0000;
}
.name {
	color: #228B22;
	font-weight: bold;
}
#res_popup {
	position: absolute;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 0 10px 10px;
	top: 0;
	left: 0;
	z-index: 10;
	display: none;
}
#res_popup p {
	margin: 0;
	padding: 0;
}

/* jQuery 実行時メッセージ */
#exec_message {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	text-align: center;
	z-index: 100;
	padding: 20px;
	box-shadow: 0 0 3px #000;
}

/* ----------------------------------- *
 *  Common
 * ----------------------------------- */

a {	color: #333; }
a:visited {	color: #666; }
a:hover, a:active {	color: #905858!important; }
img { border: 0; vertical-align: middle; }
a img {	border: 0; }

.cfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
* html .cfix             { zoom: 1; } /* IE6 */
*:first-child+html .cfix { zoom: 1; } /* IE7 */

ol, ul { margin: 0; padding: 0; list-style: none; }

