/*垂直方向の中央寄せ　ここから*/
html,body{
	height: 100%;
	margin: 0 auto; padding: 0;
	display: table;
}
html{
    display:table;
}
body{
	min-height: 100%;
	max-height: 100%;
	margin: 0 auto; padding: 0;
	display:table-cell;
	vertical-align:middle;
}
em{
	font-style: normal;
	font-weight: bold;
	font-size:14px;
	color: rgb(76,63,63);
}
strong{
	color: rgb(162,156,154);
}

/*ここまで*/

h1 {
	font-size:18px;
	margin-top:0px;
	margin-bottom:0px;
	letter-spacing: 1px;
	color: rgb(76,63,63);
}
p {
	font-size:12px;
	color: rgb(76,63,63);
}

/*リンク色指定等*/
a{/*リンクされた文字*/
	color: rgb(76,63,63);
	font-style:normal;
	text-decoration:none;
}
a:link {/*未訪問のリンク*/
	color: rgb(76,63,63);
	font-style:normal;
	text-decoration:none;
}
a:visited {/*訪問後のリンク*/
	color: rgb(76,63,63);
	text-decoration:none;
}
a:hover {/*マウスをのせたとき*/
	color:rgb(140,0,0);
	font-style:normal;
	text-decoration:none;
}
a:active {/*クリック中*/
	text-decoration:none;
}
img{
	margin-top: 3px;
	margin-buttom: 3px;
	margin-left: 2.5px;
	margin-right: 10px;
	box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.3);
}
/*メニュー項目のブロック全体*/
nav{
	text-align:center;
	position: fixed !important;
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	padding-top: 0.5em;
	padding-bottom: 2em;
	background-color: #fff;
}
nav ul{
	margin:0 auto 0 auto;	/*autoを左右に指定してブロック自体を中央配置*/
	text-align:center;	/*メニュー項目を中央に配置する*/
	overflow:hidden; zoom:1;	/*内側の要素にfloatプロパティがあるときのおまじない*/
	margin:0;	/*ulタグの領域の外側の余白を0にリセット*/
	padding:0;	/*ulタグの領域の内側の余白を0にリセット*/
	list-style:none;	/*メニュー項目先頭の黒丸を消去*/
	letter-spacing: 0px;
}
/*メニュー項目のli要素*/
nav li{
	display:inline-block;		/*この要素を左から横に並べる*/
	margin:0;
	margin-left: 1px;
	margin-right: 1px;
	padding:4px;
	font-weight: bold;
}
footer{
	text-align:center;
	position: fixed !important;
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	background-color: #fff;
}
footer p{
	text-align:center;
	margin:0;
	margin-left: 1px;
	margin-right: 1px;
	padding:4px;
}
/*IE6向けの設定*/
* html footer li{
	display:inline; zoom:1;	
}
/*IE7向けの設定*/
*+html footer li{
	display:inline; zoom:1;	
}

section{
	margin-top:15px;
	margin-bottom:20px;
	margin-left:15px;
	margin-right:15px;
}

.left {float: left;margin-right:10px;}
.clear {
    clear: both;
}

/*スマホ非表示設定*/
@media screen and (max-width: 768px){
	.br-sp {
		display: none;
	}
}

/*スマホ改行設定*/
	.br-spbr {
		display: none;
	}
@media screen and (max-width: 768px){
	.br-spbr {
		display: block;
	}
}