/* 
	ページ全体
*/
body { 
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, serif, sans-serif;
	margin: 0px;
	padding: 0px;
	background-color: #E4E7EE;
	color: #444;
	/* background-image: url('./img/body-bg.png');	background-color: #EBEBEB; */
}

/* 
	リンク
*/
header a, nav a {
	text-decoration: none;
	color:  #777;
}
header a:hover, nav a:hover {
	color: #1BA0E1;
	text-decoration: underline;
}
#content a {
	color: #1BA0E1;
	//color :black;
	text-decoration: underline;
}
#content a:hover {
 	color: #05D3F4;
}

/* 
	見出し
*/
h1 {
	display: inline;
	color: #1BA0E1;
}
h2 {
	color: #1BA0E1;
}
h2.mincho {
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", Meiryo, "メイリオ", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
h3 {
	margin: 15px 0px 15px 0px;
	padding: 3px 5px 3px 5px;
	background-color: #eee;
	border-radius: 5px;
}
h4 {
	margin: 7px 0px 7px 0px;
}
h4.theme {
	/* padding-left: 20px; */
}

/* 
	ロゴ
*/
div#title {
	float: left;
	margin: 0px;
	padding: 0px 20px 20px 70px;
}
.logo {
	margin-top: 10px;
	padding: 0px 0px 0px 0px;
}
div#title p {
	margin: 0px;
	padding: 10px 0px 0px 0px;
	color: #1BA0E1;
}

/* 
	ヘッダー 
*/
header {
	overflow: auto; /* 子ブロックが親ブロックからはみ出さないようにする */
	width: 100%;
	margin-bottom: 30px;
	padding: 0px;

	border-bottom: 1px #CCC solid;

	background-color: #FFF;
	box-shadow: 0px 1px 5px #CCC;
	/*box-shadow: 0 2px 4px rgba(0,0,0, .2);*/
	/* トップロゴを中央寄せするために使おうかなーとか思ってる記述
	.center {
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	*/
}
header #title a:hover {
	text-decoration: none;
}
header p.tcu {
 	margin: 0px;
	padding: 10px 0px 0px 20px;

	border-left: 50px #fff solid;
	/* color: #1BA0E1; */
}

header div#logo_top {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 50px;
	background-color: #1BA0E1;
	border-radius: 2px;
}
header div#logo_btm {
	position: absolute;
	top: 40px;
	left: 17px;
	width: 20px;
	height: 18px;
	background-color: #1BA0E1;
	border-radius: 2px;
}

/* 
 * フッター
 */
footer {
	float: left;
	width: 100%;
	height: 30px;
	margin-top: 30px;
	padding-top: 5px;

/*	border-top: 1px #CCC solid;*/
	text-shadow: 1px 1px 0px #fff;
	color: #666;

	text-align: center;
	font-size: small;	
}
footer p{
	padding: 0px;
	margin: 0px;
}

/* 
	ラッパー
		navとcontentを包む
*/
div#wrapper {
	position: relative;
	/* width: 80%; */
	width: 90%;
	min-width: 820px;
	margin: 0px 30px 0px 30px;						/* 	左寄せ */
	/* margin-left: auto; margin-right: auto; */	/* 中央寄せ */
	padding: 0px;
}

/* 
	ナビゲーションメニュー
*/
nav#main {
	float: left;
	width: 170px;
	border: 1px #CCC solid;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0, .2);
}
nav#main ul {
	margin: 0;
	padding-left: 0px;
	list-style: none;
	font-weight: bold;
}
nav#main li {
	padding-left: 20px;
	border-left: 6px solid #fff;
	margin-bottom: 0px;
 	height: 44px;
 	line-height: 44px;
}
nav#main li a {
 	display: block;
}
nav#main a:hover {
 	color: #777;
	text-decoration: none;
}
nav#main li:hover {
	background-color: #eee;
	border-color: #eee;
}
nav#main li.selected {
	/*position: relative; absolute配置する▲の始点座標にするため*/
	border-color: #1BA0E1;
	color: #1BA0E1;
 }
/* ▲ 未使用 */
/*.selected:after {
	display: block;
	position: absolute;
	top: 0;
	right: -22px;
	width: 0px; height: 0px;
	content:"";
	border: 15px solid rgba(0,0,0,0.0);
	border-color:transparent;
	border-top-color: #fff;
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}*/

/*
	サブメニュー
*/
nav#sub {
	overflow: hidden;
	width: 600px;
	margin: 0 0 0px 200px;
}
nav#sub ul {
	overflow: hidden;
	margin: 0;	padding: 0;
	list-style: none;
}
nav#sub li {
	float: left;
	margin: 0px 7px 0px 0px;
	padding: 0 10px 0 10px;
	height: 40px; line-height: 40px;
	border-top: 1px;
	border-bottom: 0px;	
	border-left: 1px;
	border-right: 1px;
	border-color: #CCC;
	border-style: solid;
	background-color: #DDD;
	font-weight: bold;
	border-radius: 10px 10px 0px 0px;
/* 	border-radius: 5px;
	box-shadow: 0px 1px 5px #CCC; */
}

nav#sub li a {
	display: block;
	height: 40px; line-height: 40px;
}
nav#sub li.curr {
/* 	border-top: 1px #CCC solid;
	border-left: 1px #CCC solid;
	border-right: 1px #CCC solid; */
	background-color: #1BA0E1;
	color: #fff;
}

/* 
	メインコンテンツ
*/
div#inline_content { padding: 0px 30px 0px 30px; }
div#content {
	/*
		#contentのwidth=660 → サイト全体のwidth=960
			・横幅を変えるときは、div#contentのwidthを変えること
			・今はwrapperをwidth80%にしてるから、#contentのwidthは指定なし
	*/
	/* width: 660px; */
	margin-left: 200px;
/*	padding: 0px 30px 0px 30px; inline_contentに移動*/
	overflow: auto; /* Beta 不具合おきたらこれ削除*/
	position: relative; /* Beta 不具合おきたらこれ削除*/
	border: 1px #CCC solid;
	background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0, .2);
}
#content article {
	margin-bottom: 30px;
}

#content ul {
	margin: 0px 0px 0px 0px;
}
#content li {
	margin-bottom: 10px;
}
div#content tr {
	height: 40px;
}

ul.link li {
	list-style: none;
	list-style-image: url('../img/li_link.png');
}
ul.link > ul {
	list-style: none;
	padding-left: 0px;
}

.description {
	font-size: small;
	margin-left: 10px;
	color: #999;
	font-style: italic;
}
span.yZemi, span.mZemi, span.sZemi {
	font-size: x-small;
	margin-left: 5px;
	/* font-style: italic; */
	font-weight: bold;
	vertical-align: super;
}

.yZemi { color: #1BA0E1; }
.mZemi { color: #EF3E78; }

#content article > article > article {
	padding: 0 5px 0 5px;
/*	border: 2px solid #1BA0E1;
	border-radius: 0px;*/
}

em {
	font-weight: bold;
	font-style: normal;
}

div.fadeIn {
	display: none;
}
.center {
	width: 250px;
	height: 250px;
	margin-right: auto;
	margin-left: auto;	
}

span.reversal {
	padding: 1px;
	background-color: #1BA0E1;
	color: #fff;
}
span.xxlarge {
	font-size: xx-large;
}
span.large {
	font-size: large;
	vertical-align: super;
}

.small {
	font-size: 0.8em;
}

/* 
	member.html
		ToDo：この部分はmember.cssとして別ファイルにする
*/
time {
	font-size: small;
	margin-left: 10px;
	color: #999;
}

/* テーブル */
table {
	margin: 20px;
	border-collapse: collapse;
	border: 1px solid #ddd;
}
tr.col {
	background-color: #eee;
}
td {
	padding: 5px 20px 5px 20px;
}
td.line {
	border-right: 1px #ddd solid;
}

table.member_list {
	white-space: nowrap;
}
table.member_list th {
	border-bottom: 1px solid #ddd;
}
table.member_list td, table.member_list th {
	padding: 0 20px 0 20px;
	/*padding: 5px 20px 5px 20px;*/
}
.nowrap {
	white-space: nowrap;
}
tr.border {
	border-bottom: 1px solid #ddd;
}
/* member.html ここまで*/

div.photo img {
	margin: 2px;
}

img#tope {
	width: 100%;
}
