.for_SnapicPage *,
.for_SnapicPage *::before,
.for_SnapicPage *::after {
	box-sizing: initial;
}

.for_SnapicPage {
	margin: 0;
	padding: 5em 0 3em 0;
	max-width: 960px;
	font-size: 100%;
	font-weight: normal;
	line-height: 1;
	word-wrap: break-word;
	box-sizing: border-box;
}

.for_SnapicPage h3 {
	font-size: 16px;
	font-weight: normal;
}

.for_SnapicPage-powered {
	float: right;
	bottom: 2em;
	padding-right: 15px;
	border-right: 3px solid #ff8800;
}

.for_SnapicPage-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.for_SnapicPage-wrap a {
	position: relative;
	margin: 0.25em;
	padding: 0;
	width: calc(33.33333% - 0.25em * 2);
	border-radius: 0.5em;
	background-color: #f0f0f0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.for_SnapicPage-wrap a:hover {
	-webkit-transform: translate(0,-3px);
	transform: translate(0,-3px);
	box-shadow: 0px 10px 15px -10px rgba(0 0 0 / 25%);
}

.for_SnapicPage-img {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: calc(100% * 3/3);
}

.for_SnapicPage-img img {
	position: absolute;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	top: 0;
	left: 0;
	border-radius: 0.5em;
}

.for_SnapicPage-info {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-direction: column;
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 1em;
	width: calc(100% - 2em);
	height: calc(100% - 2em);
	color: white;
	line-height: 1.2;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.for_SnapicPage-info::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 0.5em;
	background-color: rgba(0 0 0 / 50%);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.for_SnapicPage-item:hover .for_SnapicPage-info::before {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	background-color: rgba(0 0 0 / 0%);
}

.for_SnapicPage-title,
.for_SnapicPage-time {
	display: block;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	z-index: 1;
}

.for_SnapicPage-title {
	font-size: 1.8em;
}

.for_SnapicPage-time {
	margin-top: 0.5em;
	font-size: 1.2em;
}

.for_SnapicPage-item:hover .for_SnapicPage-title,
.for_SnapicPage-item:hover .for_SnapicPage-time {
	display: none;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

@media screen and (max-width: 600px) {

	.for_SnapicPage-info {
		padding: 0.5em;
		width: calc(100% - 1em);
		height: calc(100% - 1em);
	}

	.for_SnapicPage-title {
		font-size: 1.6em;
	}

	.for_SnapicPage-time {
		font-size: 1em;
	}

}

@media screen and (max-width: 480px) {

	.for_SnapicPage-wrap a {
		width: calc(50% - 0.25em * 2);
	}

}