#sub_column {
	display: flex;
	flex-direction: column;
}
#icon {
	order: 1;
	margin-top: 1em;
}
#inst_wrap{
	background: #fff;
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid #d5d5d5;
	margin-top: 30px;
	order: 2;
}
#inst_list{
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	justify-content: center;
	overflow-y: auto;
}
@media (max-width: 640px) {
	#inst_wrap{
		order: 0;
	}
	#inst_list{
		height: 200px;
		display: flex;
    }
	#inst_list > div:before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	#inst_list > div {
		position: relative;
		width: calc((100% - 8px)/3);
	}
	.inst_thumb {
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
	}
}
@media (min-width: 640px) {
	#inst_list{
	    height: 1200px;
	}
	#inst_list > div {
		padding: 5%;
	}
	#inst_list > div:not(:last-child) {
		border-bottom: 1px solid #eee;
	}
	.inst_thumb {
		position: relative;
	}
}
.inst_thumb img{
	width: 100%;
	object-fit: cover;
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
@media (max-width: 640px) {
	.inst_thumb img {
    	height: 100% !important;
	}
}
.inst_thumb:hover img{
	opacity: .5;
}
.inst_comment{
	font-size: .9rem;
	text-align: left;
	padding: 1em 0;
	white-space: pre-wrap;
	max-width: 195px;
}
.inst_comment > a,
.inst_comment > a:visited {
	color: #385898 !important;
}
.inst_user {
	font-weight: bold;
	font-size: .8rem;
	padding: 2px;
}
#inst_prof{
	padding: 2%;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-bottom: 1px solid #d5d5d5;
}
#inst_prof > a{
	font-size: 16px;
	color: #000 !important;
	font-family: YuGothic,'Yu Gothic';
	text-decoration: none;
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	line-height: 0;
	padding: 5px;
}
#inst_prof > a:hover{
	opacity: 0.5;
}
#inst_prof img {
	width: 32px;
	height: 32px;
	border-radius: 16px;
	margin-right: 4px;
	vertical-align: middle;
}

.like_count,
.comments_count {
	position: absolute;
	top: 5px;
	color: #fff;
	font-size: .9rem;
}
.like_count {
	right: 55px;
}
.comments_count {
	right: 10px;
}
.like_count::before,
.comments_count::before {
	content: "";
	display: inline-block;
	height: 18px;
	width: 18px;
	margin-right: 4px;
	background-repeat: no-repeat;
}
.like_count::before {
	vertical-align: -5px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' stroke-width='30' stroke='white' fill-opacity='0' viewBox='0 0 512 512'%3E %3Cpath d='M352 56h-1c-39.7 0-74.8 21-95 52-20.2-31-55.3-52-95-52h-1c-61.9.6-112 50.9-112 113 0 37 16.2 89.5 47.8 132.7C156 384 256 456 256 456s100-72 160.2-154.3C447.8 258.5 464 206 464 169c0-62.1-50.1-112.4-112-113z'/%3E%3C/svg%3E");
}
.comments_count::before {
	vertical-align: -4px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E %3Cpath d='M2.678 11.894a1 1 0 0 1 .287.801 10.97 10.97 0 0 1-.398 2c1.395-.323 2.247-.697 2.634-.893a1 1 0 0 1 .71-.074A8.06 8.06 0 0 0 8 14c3.996 0 7-2.807 7-6 0-3.192-3.004-6-7-6S1 4.808 1 8c0 1.468.617 2.83 1.678 3.894zm-.493 3.905a21.682 21.682 0 0 1-.713.129c-.2.032-.352-.176-.273-.362a9.68 9.68 0 0 0 .244-.637l.003-.01c.248-.72.45-1.548.524-2.319C.743 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7-3.582 7-8 7a9.06 9.06 0 0 1-2.347-.306c-.52.263-1.639.742-3.468 1.105z'/%3E%3C/svg%3E");
}
.inst_icon {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	overflow: hidden;
	border-radius: 8px;
}
.inst_icon:before{
	content: '';
	position: absolute;
	top: 14px;
	left: -10px;
	width: 36px;
	height: 36px;
	background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
	background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}
.inst_icon .fa-instagram {
	color: #FFF;
	position: relative;
	z-index: 2;
	font-size: 24px;
	top: 3px;
}
.inst_date {
	color: #888;
	text-align: left;
	font-size: .8rem;
}
@media (max-width: 640px) {
	.inst_comment,
	.inst_date,
	.like_count,
	.comments_count {
		display: none;
	}
}
