@charset "UTF-8";

/*━━━━━━━━━━━━━━
▼social	ボタンのサイズ50×50で横並びの例
━━━━━━━━━━━━━━━*/
#social_wrap {
	width: 105px;
	/*margin: 0 auto;*/
	float: right;
	margin-right: 10px;
}
#social_wrap:after {
	content: "";
	display: block;
	clear: both;
}
#social_wrap ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#social li {
	float: left;
	margin: 0 5px 10px 0;
}
#social li:last-child {
	margin: 0 0 10px;
}
#social a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-indent: 200%;
	text-decoration: none;
	overflow: hidden;
	position: relative;

	transition: all 0.3s;
	box-shadow: 1px 1px 6px rgba(0,0,0,0.25);
	/*border-radius: 4px;*/
}
#social a:after {
	display: block;
	font-family: FontAwesome;
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	text-indent: 0;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
}
#social a:hover {
	opacity: 0.7;
	text-decoration: none;
}

#home a {background-color: #ccc;}
#twitter a {background-color: #00b0ed;}
#facebook a {background-color: #3b579d;}
#gglplus a {background-color: #df4a32;}
#line a {background-color: #00c300;}

#home a:after {
	content: "\f015";
}
#twitter a:after {
	content: "\f099";
}
#facebook a:after {
	content: "\f09a";
}
#gglplus a:after {
	content: "\f0d5";
}
#line a:after {
	content: "";
	background: #00c300 url(gra/btn_line.png) no-repeat center center;
}