@charset "utf-8";

/*============================================
全般的なスタイル
============================================*/
* {
	/*line-height:1.5; 		 行の高さを1.5倍にする */
}
body {
	background-image:url("img/tsuku.gif");	/*ウェブページ全体の背景画像*/
	/*width:160px;			幅の指定*/
	margin:20px 20px 0px 20px;	/*位置調整*/
}
body#count {
	line-height: 1; 		/* 行の高さを？倍にする */
	background-image:url("img/tsuku.gif");	/*ウェブページ全体の背景画像*/
}
body#rireki {
	line-height: 1.5; 		/* 行の高さを？倍にする */
	background-image:url("img/tsuku.gif");	/*ウェブページ全体の背景画像*/
}
a {
	text-decoration: none;
	background-color: #DDFFEE;
	font-weight:bolder;
	border: solid 1px skyblue;
}
a:hover {
    color: #0A0;
	background-color: #FFDDFF;
    position: relative;
	left: 2px;
	top: 2px;
	/*transition: 2s;*/
}

/*============================================
お気に入りのページ
============================================*/
div#favo {
	font-size: 10pt;
	line-height: 1; 		/* 行の高さを？倍にする */
}

div#favo img {
	width: 250px;
	height: 45px;
	margin:0px 10px;
	border: solid 1px skyblue;
	float: left;
}

/*============================================
画像処理
============================================*/
img.face {
	width:125px; height:142px;	/*画像の元サイズ156×177*/
	margin:5px 10px;	/*マージン*/
}

img.top {
	width:450px; height:110px;	/*画像の元サイズ370×40*/
}

img.title {
	width:450px; height:40px;	/*画像の元サイズ370×40*/
}

img.page {
	width:350px; height:80px;	/*画像の元サイズ250×100*/
}

img.rogo {
	width:200px; height:50px;
}

.menu0 img {
	width:160px; height:40px;	/*画像の元サイズ250×100*/
	/*margin:0px 0px 20px 20px;	マージン*/
}

.menu img {
	width:105px; height:40px;	/*画像の元サイズ250×100*/
	/*margin:0px 0px 20px 20px;	マージン*/
}

/*============================================
文字の調整
============================================*/
.ShortCut {
	font-size:12pt;
	font-weight:bolder;
	color: blue;
}
.P12 {
	font-size: 12pt;
}
.P10MnGn {
	font-size: 10pt;
	margin-left: 10pt;
	color: green;
}
.P8 {
	font-size: 8pt;
}
.P6 {
	font-size: 6pt;
}
.P6Gn {
	font-size: 6pt;
	color: green;
}
.Rd {
	color: red;
}
.Lft {
	text-align: left;
}
.Ctr {
	/*margin : 0 auto;
	margin-left : auto;
	margin-right : auto;*/
	text-align: center;
}
.Rgt {
	text-align: right;
}

/*============================================
画像のフロート配置処理
============================================*/

figure {
	float: left;
	margin: 0 15px 15px 0;
	/*width: 30%;*/
}

figure img {
	width:500px;/* height:300px;	画像の表示サイズを指定*/
	/*margin:0px 20px 20px 0px;	マージン*/
	border: 0px solid gray;
	/*max-width: 100%;*/
}

.to_p_t {
	text-align:right;
	clear:both;			/*フロート配置をクリアする*/
}

hr {
	clear:both;			/*フロート配置をクリアする*/
}

.noFloat {
	clear:both;			/*フロート配置をクリアする*/
}

/*============================================
フッタ
============================================*/
div#footer {
	/*clear:both;			フロート配置をクリアする*/
	font-size:14px;			/*フォントのサイズ*/
	background-color:#999999;	/*背景色*/
	color:#ffffff;			/*文字色*/
	height:40px;			/*高さの指定*/
	padding:10px 0px 0px 0px;	/*パディング*/
	text-align:center;		/*センタリング*/
}