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

.menu{
	position: fixed;
	top: 0;
	left: 0;
}

.photo__content{
	width: 90%;
	margin: 130px auto 0;
}

.photo__inner{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 70px 0 0;
	flex-wrap: wrap;
}
.photo__cell{
	display: block;
	width: calc(100% / 4 - 30px);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	margin: 30px 15px;
}
.photo__cell:after{
	content: "";
	display: block;
	padding-top: 100%;
}
.photo__more{
	display: none;
	width: 200px;
	height: 40px;
	border: 1px solid #717171;
	border-radius: 8px;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	color: #717171;
	margin: 50px auto 0;
}
.photo__more.is-show{
	display: flex;
}
@media print, screen and (max-width: 1200px) {
	.photo__cell{
		width: calc(100% / 3 - 30px);
	}
}
@media print, screen and (max-width: 640px) {
	.photo__cell{
		width: calc(100% / 2 - 10px);
		margin: 30px 5px;
	}
}