@charset "utf-8";
/* Gallery */
footer { margin-top: 80px; }
#gallery-list{display: flex; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.gallery-item{width: 50%; position: relative;}
.gallery-item p{position: absolute; bottom: 10px; color: #000; text-shadow: #fff 1px 1px 2px,#fff -1px 1px 2px,#fff 1px -1px 2px,#fff -1px -1px 2px;}
.gallery-item:nth-of-type(2n+1) p{left: 10px;}
.gallery-item:nth-of-type(2n) p{right: 10px;}
.gallery-child{position: relative;}

/* Media */
@media only screen and (max-width: 767px){ 
    .gallery-item{width: 100%;}
    .gallery-item:nth-of-type(2n) p{right: auto; left: 10px;}
}