@charset "utf-8";
/* CSS Document */

#instafeed{}
	
#instafeed ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	}
	
#instafeed ul li{
	overflow: hidden;/*これではみでたとこ隠してる*/
	position: relative;
	align-self: center;
	width: 180px;/*好みでどうぞ*/
	height: 180px;/*好みでどうぞ*/
	margin-right: 22px;
	margin-bottom: 25px;
	border: 1px #FFFFFF solid;
}
#instafeed ul li:nth-child(5){
	margin-right: 0px;
}	
	
#instafeed iframe {
	position: absolute;
	top: -60px;/*ヘッダー隠してる*/
	width: auto;
	border: 1px solid #fff;
}
	

.pager{
	text-align: center;
	padding:50px;
	clear:both;
}
		.pager a{
			border: 1px solid #999;
			border-radius: 5px 5px 5px 5px;
			color: #4e4e4e;
			font-size: 12px;
			padding: 10px 13px;
			text-decoration: none;
			margin:0 10px;
		}

				.pager a.current{
					/*background: #999;*/
					border: 1px solid #999;
					border-radius: 5px 5px 5px 5px;
					color: #fff;
					font-size: 12px;
					padding: 10px 13px;
					margin:0 1px;
					text-decoration: none;
				}

				.pager a:hover{
					background:#999;
					color: #fff;
				}


