
/* ギャラリー */

div#Gallery {
    width: 100%;
/*    background-color: #000;*/
    padding: 20px 0;
}

div#GalleryContainer {
    width: 100%;
    margin: 0 auto;
}

.galleryItem {
  margin: 5px;
  background-color: #fff;
}

.galleryItemSize1 {
    width: 240px;
}

.galleryItemSize2 {
    width: 490px;
}

.galleryItem a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

.galleryItem a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: “alpha(opacity=80)”;
}

.galleryItem img {
    vertical-align: bottom;
    width: 100%;
}

/*************************************************************/
/* レスポンシブ用 */
/*************************************************************/

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

}

@media screen and ( max-width: 480px )
{
    /* ギャラリー */

    .galleryItemSize1 {
        width: 240px;
    }

    .galleryItemSize2 {
        width: 240px;
    }

}
