<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset 'utf-8';


#main.gallery {
	background-color: #edebea;
	color: #28282b;
}

#main.gallery a {
	color: #28282b;
}

#main.gallery .gallery-list-wrap {
	margin: 0 auto 100px;
}

#main.gallery .contents-list li {
	margin: 0 20px 20px 0;
}

#main.gallery .contents-list li:nth-of-type(3n) {
	margin: 0 0 20px;
}

ul.contents-list li a.youtube-open .thumb {
	position: relative;
	height: 180px;
}

a.youtube-open .thumb::after {
	content: '\25B6';
	position: absolute;
	width: 53px;
	height: 53px;
	border: 3px solid #ccc;
	text-align: center;
	font-size: 28px;
	border-radius: 28px;
	top: 50%;
	color: #ccc;
	left: 50%;
	background-color: rgba(0,0,0,.2);
	margin: -28px 0 0 -28px;
	line-height: 56px;
}

a.youtube-open:hover .thumb::after {
	border-color: #fff;
	color: #eee;
}


.gallery-images a {
	display: none;
}

.gallery-images a .thumb {
	height: 213px;
	overflow: hidden;
}

.gallery-images a:first-of-type {
	display: unset;
}

.gallery-images a .thumb img {
	vertical-align: bottom;
}

/* mfp close */

.mfp-gallery .mfp-close {
	right: 15px;
	top: 15px;
	width: 34px;
	height: 34px;
	background: url(../images/common/icon-close.svg) no-repeat;
	background-size: cover;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
}

.mfp-gallery .mfp-content .mfp-close {
	display: none;
}

.mfp-gallery .mfp-close:active {
	top: 15px;
}

/* start state */
.mfp-gallery .mfp-iframe-scaler {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}


/* animate in */
.mfp-gallery.mfp-ready .mfp-iframe-scaler {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* animate out */
.mfp-gallery.mfp-removing .mfp-iframe-scaler {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
}

/* Dark overlay, start state */
.mfp-gallery.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

/* animate in */
.mfp-gallery.mfp-ready.mfp-bg {
	background-color: #000;
	opacity: 1;
	min-width: 1080px;
	margin: 0 auto;
}

/* animate out */
.mfp-gallery.mfp-removing.mfp-bg {
	opacity: 0;
}

.mfp-gallery img.mfp-img {
	padding: 64px 0 64px;
	background-color: #000;
}

.mfp-gallery .mfp-title {
	font-size: 1.6rem;
	line-height: 1.33;
	font-weight: 400;
}

.mfp-gallery .mfp-title span {
	display: block;
	margin-top: 5px;
	font-size: 1.3rem;
}

.mfp-gallery .mfp-counter {
	font-size: 1.3rem;
	font-family: 'OSwald', sans-serif;
}

.mfp-gallery .mfp-arrow {
	width: 20px;
	height: 30px;
	background-image: url(../images/common/arrow.svg);
	background-repeat: no-repeat;
	background-size: cover;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
	margin: -15px 0 0;
}

.mfp-gallery .mfp-arrow:active {
	margin: -15px 0 0;
}

.mfp-gallery .mfp-arrow-left {
	left: 20px;
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.mfp-gallery .mfp-arrow-right {
	right: 20px;
}

.mfp-gallery .mfp-arrow:before,
.mfp-gallery .mfp-arrow:after {
	display: none;
}

@media (max-width: 900px){
	.mfp-gallery .mfp-arrow {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	.mfp-gallery .mfp-arrow-left {
		-moz-transform: rotate(180deg) scale(1);
		-webkit-transform: rotate(180deg) scale(1);
		transform: rotate(180deg) scale(1);
	}
}
</pre></body></html>