@charset "UTF-8";
/**
 * レスポンシブ時に、PCのみに適用させる。
 * @include pc{}
 */
/**
 * レスポンシブ時に、SPのみに適用させる。
 * @include sp{}
 */
body.is-fixed {
	position: fixed;
	overflow: hidden;
	width: 100%;
}

.l__popup__overlay {
	background-color: rgba(0, 0, 0, 0.7);
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 9999;
	transition: 0.4s;
}

@media only screen and (max-width: 768px) {
	.l__popup__overlay {
		height: 100dvh;
	}
}

.l__popup__overlay.js-active {
	opacity: 1;
	pointer-events: all;
}

.l__popup__overlay.js-active .l__popup__contents {
	transform: translateY(0);
}

.l__popup__overlay .l__popup__wrap {
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
}

@media only screen and (min-width: 769px) {
	.l__popup__overlay .l__popup__wrap {
		max-width: 1100px;
	}
}

.l__popup__overlay .l__popup__contents {
	background-color: #fff;
	width: 100%;
	transform: translateY(40px);
	transition: 0.4s;
}

.l__popup__overlay .l__popup__contents img {
	max-width: 100%;
	height: auto;
}

.l__popup__overlay .l__popup__close {
	position: absolute;
	cursor: pointer;
}

@media only screen and (min-width: 769px) {
	.l__popup__overlay .l__popup__close {
		width: 56px;
		top: 20px;
		right: 20px;
	}
}

@media only screen and (max-width: 768px) {
	.l__popup__overlay .l__popup__close {
		width: 56px;
		top: 20px;
		right: 20px;
	}
}

/*# sourceMappingURL=../../_map/share/css/popup.css.map */
