@charset "utf-8";
/* CSS Document */

#photogallery {
	padding: 0 5% 110px;
}
.photogalleryArea {
	max-width: 1280px;
	margin: 0 auto;
}
.photogallery_txt {
	text-align: center;
	margin-bottom: 35px;
	font-size: 1.3rem;
}
@media screen and (max-width: 1024px) {
	#photogallery {
		padding: 0 2% 120px;
	}
}
@media screen and (max-width: 480px) {
	#photogallery {
		padding: 0 2% 60px;
	}
	.photogallery_txt {
		margin-bottom: 20px;
		font-size: 1.2rem;
	}
}


/* ==============================================

	photogallery_cat

================================================= */
.photogallery_cat {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 50px;
}
.photogallery_cat li a {
	padding: 8px 15px;
	background: #ecf0e9;
	font-size: 1.3rem;
	color: #222222;
	display: block;
	font-weight: 500;
}
.photogallery_cat li.current a,
.photogallery_cat li a:hover {
	background: #2d4f0f;
	color: #fff;
}
@media screen and (max-width: 480px) {
	.photogallery_cat {
		gap: 8px;
		margin-bottom: 30px;
	}
	.photogallery_cat li a {
		padding: 6px 12px;
		font-size: 1.1rem;
	}
}

/* ==============================================

	photogallery article

================================================= */
.photogallery_contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-flow: row wrap;
}
.photogallery_contents article{
	width: calc(100% / 6);
	position: relative;
	background: #fff;
	padding: 3px;
}
.photogallery_contents article figure{
	aspect-ratio: 1 / 1;
}
.photogallery_contents article img {
	-webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.photogallery_contents article a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 768px) {
	.photogallery_contents article{
		width: calc(100% / 4);
	}
}
@media screen and (max-width: 480px) {
	.photogallery_contents article{
		width: calc(100% / 3);
	}
}


/* ==============================================

	もっと見るボタン用

================================================= */
.is-hidden,
.is-btn-hidden {
	display: none;
}

.more_btn button {
	width: 300px;
	height: 50px;
	color: #2d4f0f;
	background: #fdfdfd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 40px auto 0;
	border: 1px solid #2d4f0f;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	letter-spacing: 0.1em;
	cursor: pointer;
	font-size: 1.3rem;
}
.more_btn button::after {
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	transform: rotate(135deg);
	border-top: 1px solid #2d4f0f;
	border-right: 1px solid #2d4f0f;
}
.more_btn button:hover {
	color: #fff;
	background: #2d4f0f;
}
.more_btn button:hover::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
@media screen and (max-width: 480px) {
	.more_btn button {
		margin-top: 20px;
	}
}

