@charset "UTF-8";
/*=============================================================================*/
/*sns list*/
.sns_list {
	display: table;
	width: 100%;
}
.sns_list li {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 33.3%;
}
.sns_list li .img {
	height: 200px;
}
.sns_list li .text {
	height: 160px;
	padding: 20px;
}
.sns_list li .img {
	background-color: #f1efe9;
	position: relative;
}
.sns_list li .img.blue {
	background-color: #3b5999;
}
.sns_list li .img.sky {
	background-color: #397abc;
}
.sns_list li .img span.thumb {
	position: relative;
	display: inline-block;
	width: 90%;
	height: 90%;
	max-width: 180px;
	max-height: 180px;
	border: 5px solid #fafaf7;
	border-radius: 50%;
	overflow: hidden;
	background-color: #FFF;
	margin-top: 3%;
}
.sns_list li .img span.thumb img {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	width: 100%;
	height: 100%;
}
.sns_list li .img span.mark {
	position: absolute;
	bottom: 5px;
	left: 5px;
}
.sns_list li .img.blue {
	background-color: #3b5999;
}
.sns_list li .img.blue span.thumb {
	border-color: #bcc6dc;
}
.sns_list li .img.sky {
	background-color: #397abc;
}
.sns_list li .img.sky span.thumb {
	border-color: #bbd2e8;
}
.sns_list li .text {
	color: #575e6e;
	word-break: keep-all;
	position: relative;
}
.sns_list li .text.arrGray {
	background: url("../images/arrGray.png") center top no-repeat;
}
.sns_list li .text.arrSky {
	background: url("../images/arrSky.png") center bottom no-repeat;
}
.sns_list li .text.arrBlue {
	background: url("../images/arrBlue.png") center top no-repeat;
}
.sns_list li .text p {
	margin-top: 20px;
	height: 80px;
	overflow: hidden;
	font-size:	1.04em;
	line-height: 1.5;
}
.sns_list li .text a {
	position: absolute;
	bottom: 35px;
	left: 50%;
	border: 1px solid #ccced3;
	display: block;
	color: #575e6e;
	padding: 2px 20px;
	font-size: 12px;
	margin-left: -35px;
}

@media screen and (max-width:560px) {
   .sns_list li {
	  display: inline-block;
	  float: left;
	  width: 50%;
  }
}