@charset "UTF-8";

/*!
 * Gallery
 */

.gallery {
    margin: 40px 0 0 0;
    padding: 0;
}

.gallery-item,
.gallery-item-sizer {
    width: calc(309 / 1280 * 100%);
    list-style: none;
    padding: 7px
}
.gallery-item.is-loading {
    opacity: 0;
}

.gallery-item a {
    display: block;
    transition: filter .3s ease-out;
}

.gallery-item a:hover {
    filter: brightness(0.75);
    opacity: 1;
}

.gallery-item .caption {
    display: none;
}

/* フィルター */
.filter-form {
    display: flex;
    flex-wrap: wrap;
}

.filter-form label {
    cursor: pointer;
    display: inline-block;
    margin-left: 1em;
    padding: 0.4rem 3rem;
	margin-top:0.4em;
	margin-bottom:0.4em;
    color: #fff;
    font-size: 14px;
	font-family: 'SuzukiPROBold';
    background-color: #888888;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


.filter-form input[type="radio"]:checked+label {
	color:#13ABF5;
    background-color: #191919;
}
.filter-form input[type="radio"] {
    display: none;
}

/* 追加読み込みボタン */
.load-more {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(230, 230, 230);
    display: block;
    padding: 1em 0;
    width: 100%;
    margin-top: 10px;
}

/* jQuery UI helper */
.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

#gallery-load-more {
    margin-top: 80px;
}
@media (max-width: 768px) {
	#gallery-load-more {
		margin-top: 5vw;
	}
}


#cboxClose{
    /* background: url(../img/gallery/sprites.png) no-repeat 0 -20px; */
    width: 40px;
    height: 40px;
    position: absolute;
    top: -50px;
    right: 0px;
    opacity: 0;
    transition: opacity .5s ease-out;
}
#cboxClose[data-status="open"]{
    opacity: 1;
}
#cboxClose[data-status="close"]{
    opacity: 0;
}
#cboxClose::before{
    display: block;
    content: " ";
    position: absolute;
    top: 14px;
    left: 23px;
    width: 6px;
    height: 33px;
    background: #fff;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    transform: rotate(-45deg);
}
#cboxClose::after{
    display: block;
    content: " ";
    position: absolute;
    top: 14px;
    left: 23px;
    width: 6px;
    height: 33px;
    background: #fff;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    transform: rotate(45deg);
}
#colorbox,
#cboxWrapper{
    overflow: visible;
}
#cboxTitle {
    position: relative;
    background: none;
    top: auto;
}
.cboxPhoto{
    max-width: 970px;
}
#inner-navi li a{
    transition: color .3s ease-out;
}
#inner-navi li a[data-status="active"]{
    color: #077DDE;
}

@media screen and (max-width:1280px) {
    .filter-form label {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
	.filter-form label {
		padding: 0.2rem 1rem;
		font-size: 12px;
	}
}

@media screen and (max-width:1100px) {
    .filter-form label {
		margin-bottom:0.2em;
    }

    .filter-form label {
        margin-left: 0;
        margin-right: 0.5em;
    }
    .gallery-item,
    .gallery-item-sizer {
        width: calc((100% - 12px) / 3);
    }
}

@media screen and (min-width:768px) {
    #cboxLoadedContent[data-haslink="true"]{
        background-color: #fff;
    }
    #cboxLoadedContent[data-haslink="true"] img{
        cursor: pointer;
        transition: opacity .3s ease-out;
    }
    #cboxLoadedContent[data-haslink="true"] img:hover{
        opacity: 0.65;
    }
}

@media screen and (max-width:768px) {
    .gallery-item,
    .gallery-item-sizer {
        width: calc((100% - 12px) / 2);
    }
}