/* -----------------------------------------------
  galleryページ専用
------------------------------------------------- */
.gallery {
    position: relative;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    background: #000;
    margin-top: 50px;
}

/* inner
-------------------------------------------------- */
.gallery__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.gallery__inner._column {
    flex-direction: column;
    width: 40%;
}
.gallery__inner._wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 70%;
}

.gallery__inner img {
    width: 50%;
    height: auto;
}
.gallery__inner._column img {
    width: 100%;
}

/* gallery__image
------------------------------------------------*/
.gallery__image {
    height: auto;
}
.gallery__image._30 {
    width: 30%;
}
.gallery__image._35 {
    width: 35%;
}
.gallery__image._40 {
    width: 40%;
}
.gallery__image._50 {
    width: 50%;
}
.gallery__image._100 {
    width: 100%;
}


/* copyright
------------------------------------------------------- */
.gallery__copyright {
    position: absolute;
    bottom: 0.1%;
    left: 26%;
    color: #fff;
    font-size: 0.8em;
}
.gallery__copyright._left {
    left: 52%;
}

/* for SP */
@media screen and (max-width: 480px){
    .gallery__inner,
    .gallery__inner._column,
    .gallery__inner._wrap {
        align-items: center;
        width: 100%;
    }
    .gallery__inner img {
        width: 50%;
        height: auto;
    }

    .gallery__image,
    .gallery__image._30,
    .gallery__image._35,
    .gallery__image._40,
    .gallery__image._50,
    .gallery__image._column img {
        width: 100%;
        height: auto;
    }

    .gallery__copyright {
        color: #fff;
        font-size: 0.8em;
        bottom: 5.8%;
        left: 53%;
    }
    .gallery__copyright._left {
        bottom: 0.05%;
        left: 3%;
    }
  
}