@charset "utf-8";

		*{
			box-sizing: border-box;
			margin: 0;
			padding: 0;
		}
		.content{
			margin: 0 auto;
			padding: 40px;
		}
		.modal{
			display: none;
			height: 100vh;
			position: fixed;
			top: 0;
			width: 100%;
			z-index:20000;
		}
		.modal__bg{
			background: rgba(0,0,0,0.8);
			height: 100vh;
			position: absolute;
			width: 100%;
		}
		.modal__content{
			left: 50%;
			padding: 40px;
			position: absolute;
			top: 50%;
			transform: translate(-50%,-50%);
			/*width: 60%;*/
			height: auto;
		}
/*
		.modal__content p{
			width:auto !important;
			height: auto !important;
		}

		.modal__content p img{
			width:auto !important;
			height: auto !important;
		}
*/
		.js-modal-close{
			float:right;
		}

		.next{
			left: 95%;
			position: absolute;
			top: 48%;
			width:40px;
		}

		.prev{
			right: 95%;
			position: absolute;
			top: 48%;
			width:40px;
		}