body {
	/* モーダルを開いたときにレイアウトが崩れる場合は幅を指定する */
	width: 100%;
}
.bodyLock {
	/* bodyを固定する */
	position: fixed;
}

.modal_content {
	position: fixed;
	top:0;
	left:0;
	width: 100vw;
	height: 100%;
	overflow: auto;
	z-index: 9999;
	/* モーダルの背景色 */
	background-color: rgba(0,0,0,.5);
}
.modal_content:not(.active) {
	display: none;
}
.modal_wrap {
	position: absolute;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	width: 100%;
}
.modal_inner {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	/* 外側の余白の調整 */
	margin: 80px 10%;
	/* モーダル内の幅を指定する場合はwidthやmax-widthなどを指定する */
	/* width: 100%; */
	/* max-width: 860px; */
}
/* モーダルを閉じるボタン */
/* .modal_close {
	position: absolute;
	z-index: 2;
	border-radius: 100%;
	transition: all .3s;
	background-color: #96add7;
	width: 50px;
	height: 50px;
	right: 0;
	top: 0;
	transform: translate(20px,-20px);
}
.modal_close:hover {
	opacity: .8;
}
.modal_close::before,
.modal_close::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: #fff;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}
.modal_close::before {
	transform: rotate(-45deg);
}
.modal_close::after {
	transform: rotate(45deg);
} */