/*-------　リンク設定　-----------*/
a:link{ 	/*未訪問のリンク*/
	color: #8888dd;
	text-decoration:none;
}

a:visited{ 	/*訪問済みのリンク*/
	color: #aaaaaa;
	text-decoration:none;
}

a:hover{ 	/*ポイント時のリンク*/
	color: #ff0000;
	text-decoration:none;
}

a:active{ 	/*選択中のリンク*/
	color: #ff8000;
	text-decoration:underline;
}



/*-------　共通　-----------*/

hr{
	color: #aaa;
}


body{
	font-family:"ヒラギノ角ゴ Pro W3",メイリオ,Osaka,Arial,Verdana,"ＭＳ Ｐゴシック",sans-serif;
	margin:0px;
	padding:0px;
	text-align:center;
	background-color:#222222;
	color:#aaaaaa;	
}

.bodywidth {
	margin-left: auto;
	margin-right: auto; 
	text-align: left;
	width: 803px;
}

.pankuzu {
	font-size: 9pt;
	text-align: right;
}


/*-------　目次仕様　-----------*/

.block{
	width: 803px;
	height: 77px;
	border-bottom: solid 2px #aaaaaa;
	background-color:#eeeeee;
}

#le_top {
	width: 150px;
	height: 75px;
	float: left;
	margin:1px 0px 1px 0px;
}

#centerblock{
	width: 480px;
	height: 75px;
	float: left;
	margin: 2px 0px 0px 10px;
	font-size: 12px;
	color: #222222;
	line-height: 116%;
}

#ri_top {
	width: 150px;
	height: 75px;
	float: right;
	margin:1px 0px 1px 0px;
}

.clearflt{
	clear: both;
}




/*-------　各ページ　-----------*/

#cent_top {
	width: 495px;
	height: 75px;
	float: left;
	margin:1px 0px 1px 5px;
}


.fol{
	font-size: 18px;
	font-weight: bold;
	line-height: 106%;
}


h1 {
	text-align: left;
	font-weight: bold;
	font-size: 12pt;
	color: #dddddd;
	background-color: #111111;
	border-left: 8px solid #ccc;
	padding: 3px 0px 2px 0px;
	margin-top: 5px;
	margin-bottom: 1px;
}



h2 {
	text-align: center;
	font-weight: bold;
	font-size: 12pt;
	color: #dddddd;
	background-color: #111111;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
	padding: 3px 0px 2px 0px;
	margin-top: 5px;
	margin-bottom: 1px;
}

h3 {
	text-align: center;
	font-weight: bold;
	font-size: 11pt;
	color: #ffffff;
	background-color: #888888;
	padding: 3px 3px 2px 3px;
	margin-top: 10px;
	margin-bottom: 3px;
}



/*-------------------リストでボタン---------------------------*/
#menu ul{
	margin: 0; 
	padding: 0; 
	list-style: none;
}

#menu li{ 
	display: inline; 
	padding: 0; 
	margin: 0; 
	float: left;
}

#menu li a{
	display: block; 
	border: 1px solid #888;
	background-color: #fff;
	padding: 3px;
	text-decoration: none;
	color: #444;
	width: 149px; 
	margin: 1px;
	text-align: center;
	font-size: 14px;
}

#menu li a:hover{
	background-color: #aaa;
	color: #fff;
}




/*--------------オンマウスで画像拡大　@その場所で----------------------*/
.thumbpic{
	border-style: none;
	display: inline;
	width: 88px;
	height: 66px；
	float: left;
	margin: 0px 0px 2px 2px;
}

.right_imgs{
	float: right;
	margin: 0px 0px 0px 10px;
}

.left_imgs{
	float: left;
｝	




/*
http://www.nxworld.net/tips/css-only-button-design-and-hover-effects.html
*/

.button {
	display: inline-block;
	width: 250px;
	height: 35px;
	text-align: center;
	text-decoration: none;
	line-height: 35px;
	outline: none;
	background-color: #abc;
	color: #4af;
}
.button:hover {
	background-color: #12a;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}




