/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: none;
	touch-action: none;
	outline: 0;
	opacity: .002;
	contain: layout style size;
	-webkit-tap-highlight-color: transparent;
}
.pswp:focus {
	outline: 0;
}
.pswp * {
	box-sizing: border-box;
}
.pswp img {
	max-width: none;
}
.pswp--open {
	display: block;
}
.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}
.pswp__bg {
	opacity: .002;
	background: #2f4732;
}
.pswp,.pswp__scroll-wrap {
	overflow: hidden;
}
.pswp__bg,
.pswp__container,
.pswp__content,
.pswp__img,
.pswp__item,
.pswp__scroll-wrap,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}
.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}
.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}
.pswp__button,
.pswp__container,
.pswp__counter,
.pswp__img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.pswp__item {
	z-index: 1;
	overflow: hidden;
}
.pswp__hidden {
	display: none !important;
}
.pswp__content {
	pointer-events: none;
}
.pswp__content>* {
	pointer-events: auto;
}
.pswp__error-msg-container {
	display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: white;
}
.pswp .pswp__hide-on-close {
	opacity: .002;
	will-change: opacity;
	transition: opacity .6s cubic-bezier(.4,0,.22,1);
	z-index: 10;
	pointer-events: none;
}
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* スライドのデュレーション */
.pswp__container {
	transition: transform .3s cubic-bezier(.3,1,.7,1);
}
/* 矢印クリックした時に付与 */
.pswp__container.pswp--anim {
	transition: transform .6s cubic-bezier(.5,0,.2,1);
	will-change: transform;
}

/* :::::: コントローラー :::::: */
.pswp__top-bar {
	pointer-events: none;
	z-index: 10;
	position: absolute;
	top: 8px;
	right: 8px;
	left: 8px;
	width: calc(100% - 16px);
	height: 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pswp__top-bar > * {
	pointer-events: auto;
	will-change: opacity;
}

/* ボタン */
.pswp__button {
	display: block;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	background: 0 0;
	box-shadow: none;
	opacity: .95;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}
.pswp__button:active,
.pswp__button:focus,
.pswp__button:hover {
	transition: none;
	padding: 0;
	background: 0 0;
	border: 0;
	box-shadow: none;
	opacity: 1;
}
.pswp__button: disabled {
	opacity: .2;
	cursor: auto;
}

/* アイコン */
.pswp__ico {
	pointer-events: none;
	width: 24px;
	height: auto;
	fill: none;
	stroke: white;
	stroke-width: 2;
	stroke-linecap: round;
}
.pswp__ico:focus {
	outline: 0;
}

/* プリローダー */
.pswp__preloader {
	position: relative;
	display: grid;
	place-content: center;
	width: 48px;
	height: 48px;
	margin-right: auto;
}
.pswp__preloader .pswp__ico {
	opacity: 0;
	stroke-linecap: round;
	stroke-dasharray: 88 88;
	animation: loader 1.2s infinite cubic-bezier(.4,0,.3,1), loading 1s infinite linear;
	transition: opacity .2s linear;
}
.pswp__preloader--active .pswp__ico {
	opacity: .95;
}
@keyframes loader {
	from { stroke-dashoffset: 88; }
	to { stroke-dashoffset: -88; }
}
@keyframes loading {
	from { transform: none; }
	to { transform: rotate(360deg); }
}

/* ズーム */
.pswp__button--zoom {
	display: none;
}
.pswp--zoom-allowed .pswp__button--zoom {
	display: grid;
	place-content: center;
}
.pswp__button--zoom .pswp__ico .minus,
.pswp__button--zoom .pswp__ico .plus {
	transition: transform .2s cubic-bezier(.3,1,.7,1);
	transform-origin: 16px 16px;
}
.pswp__button--zoom .pswp__ico .minus {
	transform: scaleX(0);
}
.pswp--zoomed-in .pswp__button--zoom .pswp__ico .minus {
	transform: scaleX(1);
}
.pswp--zoomed-in .pswp__button--zoom .pswp__ico .plus {
	transform: scale(0);
}

/* 閉じる */
.pswp__button--close {
	display: grid;
	place-content: center;
}

/* 矢印 */
.pswp__button--arrow {
	display: grid;
	place-content: center;
	position: absolute;
	top: 0;
	width: 48px;
	height: 48px;
	top: calc(100% - 56px);
}
.pswp__button--arrow: disabled {
	display: none;
	cursor: default;
}
.pswp__button--arrow .pswp__ico {
	width: 40px;
	height: auto;
	stroke-width: 1;
}
.pswp--touch .pswp__button--arrow {
	visibility: hidden;
}
.pswp--has_mouse .pswp__button--arrow {
	visibility: visible;
}
.pswp__button--arrow--prev {
	left: 8px;
}
.pswp__button--arrow--next {
	right: 8px;
}
.pswp__button--arrow--prev .pswp__ico {
	transform: scaleX(-1);
}
.pswp--one-slide {
	transition: opacity .2s !important;
}
.pswp__counter,
.pswp--one-slide .pswp__button--arrow,
.pswp--one-slide .pswp__counter { display: none; }

/* キャプション (photoswipe-dynamic-caption-plugin) */
.pswp__dynamic-caption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: white;
	font-size: .875rem;
	line-height: 1.4;
	transition: opacity .3s linear !important; /* override default */
}
.pswp-caption-content {
	display: none;
}
.pswp__dynamic-caption a {
	color: white;
}
.pswp__dynamic-caption--faded {
	opacity: 0 !important;
}
.pswp__dynamic-caption--aside {
	width: auto;
	max-width: 320px;
	margin-top: 70px;
	padding: 1em;
}
.pswp__dynamic-caption--below {
	width: auto;
	max-width: 1200px;
	padding-top: .5em;
}
.pswp__dynamic-caption--on-hor-edge {
	padding-left: 1em;
	padding-right: 1em;
}
.pswp__dynamic-caption--mobile {
	width: 100%;
	padding: 1em 1rem;
	font-size: .75rem;
	background: rgb(47,71,50,.8);

	right: 0;
	bottom: 0;

	/* override styles that were set via JS.
		as they interfere with size measurement */
	top: auto !important; 
	left: 0 !important;
}