/* ANY ACF PHOTO ROLL */
@media screen {
	._bd_photo-roll {
		display:flex;
		}
	._bd_photo-roll ._bd_photo-roll-entry {
		position:relative;
		}
	._bd_photo-roll ._bd_photo-roll-entry img {
		position:absolute;
		top:0px;
		width:100%;
		height:100%;
		opacity:0.001;
		}
	/* 1 */
	._bd_photo-roll-1 > div {
		width:100%;
		}
	/* 2 */
	._bd_photo-roll-2 > div {
		width:50%;
		}
	/* 3 */
	._bd_photo-roll-3 > div {
		width:calc((100%/3) + 0px);
		}
	/* 4 */
	._bd_photo-roll-4 > div {
		width:25%;
		}
} @media screen and (max-width:640px) {
	/* 3 or more */
	._bd_photo-roll > div {
		width:calc((100%/3) + 0px);
		}
	._bd_photo-roll :nth-child(n+4) {
		display:none;
		}
	/* 2 */
	._bd_photo-roll-2 > div {
		width:50%;
		}
	/* 2 */
	._bd_photo-roll-1 > div {
		width:100%;
		}
}