/* CSS Document */


#contents a:link {
color:#fa611d;
text-decoration:underline;
}
#contents a:visited {
color:#fa611d;
text-decoration:underline;
}
#contents a:hover {
text-decoration:none;
}
#contents a:active {
text-decoration:none;
}


.gallery{
width: 990px;
margin: 40px auto 80px;
display: flex;
flex-wrap: wrap;
}
.gallery_item{
width: 320px;
height: auto;
padding: 10px;
margin:5px;
background: #fff;
border-radius:4px;
box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
.gallery_item img{
width: 300px;
height: 300px;
object-fit: cover;
}
.gallery_item p{
padding-top: 8px;
font-size: 14px;
}
.gallery_item p span{
font-size: 12px;
}
video{
width:100%;
}



@media screen and (max-width: 768px){

.gallery{
width: 100%;
}
.gallery_item{
width: 100%;
margin:10px 0;
}
.gallery_item img{
width: 100%;
height: auto;
object-fit: cover;
}



}