/*--モーダルウィンドウ用--*/
#overlay_modal {
	width: 100%;
	height: 100%;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	z-index: 200;
}

#modalWindow {
	width: 295px;
	height: 230px;
	position: fixed; 
	border: 2px solid #cd5c5c;
	background-color: #FFF;
	display: none; 
	z-index: 200;
	padding: 10px;
	text-align: center;
}

.Window {
	width: 295px;
	height: 230px;
	background-color: #FFF;
	z-index: 200;
	text-align: center;
	margin: auto;
	padding: 10px;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
}

#close_modal {
	width: 150px;
	height: 50px;
	font-size: 1.2em;
	color: #D04255;
	background-color: #FFF;
	border: solid 2px #cd5c5c;
	border-radius: 3px;
	transition: .4s;
	position: relative;
	top: 30px;
}

#close_modal:hover {
	background: #D04255;
	color: #FFF;
}
/*--モーダルウィンドウ用--*/