/*　フッタ　*/

footer {
	position: fixed;  
    left: 0;  
    bottom: 0;
	width: 100%;
    height: 25px;  
    background-color: #000;
    color: white;
    z-index:1;
	font-size: 12px;
	text-align: center;
	padding: 5px 5px 2px;
	font-family: Arial, Tahoma;
}

footer a {
  color: #FF0000;
  text-decoration: none;
}

/*ここからスマートフォン用（480px以下）環境の設定(フッターだけ別サイズ指定：他のcssは599px）
---------------------------------------------------------------------------*/
@media (max-width : 740px){

footer {
	position: fixed;  
    left: 0;  
    bottom: 0;
	width: 100%;
    height: 50px;  
    background-color: #000;
    color: white;
    z-index:1;
	font-size: 12px;
	text-align: center;
	padding: 5px 5px 2px;
	font-family: Arial, Tahoma;
}
}