@charset "utf-8";
/* CSS Document */
.entry {
	width: 100%;
	height: 100%;
	z-index: 1003;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
}
.entry div.entry_inner {
	background: #1f3799;
	width: 50%;
	height: auto;
	color: #fff;
	position: absolute;
	padding: 50px;
	left: calc((100% - 50%) / 2);
	transform: translateY(calc(50% - 30px));
	border-radius: 10px;
}

@media all and (max-width: 767px) {
	.entry div.entry_inner {
		width: 80%;
		left: calc((100% - 80%) / 2);
		padding: 30px;
	}
}
