@charset "UTF-8";
/* CSS Document */
img{
	border:0;
}

.clearfix { 
	display:flex; 
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#gallery_wrap {
	width:100%;
	padding-top: 20px;
	padding-bottom: 30px;
}
#gallery_list li{
	width:calc(100% / 4 - 10px);
	margin:0 5px 15px;
	overflow:hidden;
	padding:5px;
	text-align:center;
	font-size:0;
}
#gallery_list a.photo{
	display:block;
	width:100%;
	aspect-ratio: 1 / 1;
	margin:0 auto;
	padding: 10px;
	overflow:hidden;
	background-color: #fff;
}
p.detail_text{
	font-size: 0.9rem;
}
.photo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

	/*---------------------------------
	      Pager style
---------------------------------*/
.pager_link{
	text-align:right;
	padding:10px;
}
/*ページャーボタン*/
.pager_link a {
    border: 1px solid #aaa;
    border-radius: 5px 5px 5px 5px;
    color: #333;
    font-size: 12px;
    padding: 3px 7px 2px;
    text-decoration: none;
	margin:0 1px;
}
/*現在のページ、オーバーボタン*/
.pager_link a.current,.pager_link a:hover{
    background: #999;
    color: #FFFFFF;
}
.overPagerPattern{
	padding:0 2px ;	
}
@media (max-width: 959px){
	#gallery_list li{
		width:calc(100% / 3 - 10px);
	}
}
@media (max-width: 749px){
	#gallery_list li{
		width:calc(100% / 2 - 10px);
	}
}
@media (max-width: 450px){
	.clearfix{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#gallery_list li{
		width: 100%;
		max-width: 300px;
		padding: 10px;
	}
}