/* CSS Document */

footer .site-info {
	text-align:center;
	margin:0px auto;
	width:960px; /* 横幅 */
}
footer ul {
	list-style-type:none;
	display:table;
	table-layout:fixed;
	margin:0px auto;
}
footer ul li {
	display:table-cell;
}
footer ul li a {
	color:#FFF;
	text-decoration:none;
	padding:5px;
}

/* 960以下 */
@media screen and (max-width: 960px) {
	footer .site-info {
		margin:0px auto;
		padding:10px;
		width:auto; /* 横幅 */
	}
}

/* 800以下 */
@media screen and (max-width: 800px) {
	
}

/* 7インチタブレット */
@media screen and (max-width: 692px) {
	
	footer ul {
		display:block;
		margin:0px auto;
		border:1px solid #333333;
	}
	footer ul li {
		display:block;
		border-top:1px solid #333333;
	}
	footer ul li:first-child {
		border:none;
	}
	footer ul li a {
		display:block;
	}
	
}

/* smartphone */
@media screen and (max-width: 520px) {
	
	
}