@charset "UTF-8";

.photobox{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.photobox a{
    width: 30%;
    padding: 8px;
    border: solid 1px #ccc;
    text-align: center;
    background: #fcd15c;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    font-weight: bold;
}
.photobox a .img_box{
	width: 100%;
	max-width: 200px;
	max-height: 200px;
	margin: 0 auto 10px auto;
	overflow: hidden;
}

.photobox a img{
	width: 100%;
	transition: 0.3s
}
.photobox a:hover img{
 width: 110%;
}

@media screen and (max-width:729px){
	.photobox a{
		width: 44%;
	}
}