/*** モーダルウィンドウ ***/
.modal-content {
	position:fixed;
	display:none;
	z-index:100;
	width:300px;
	margin:0;
	padding:0;
	border:3px solid #333;
	background:#333;
	border-radius:3px;
}

/* ヘッダ */
.mwHeader {
	width:100%;
	background:#444;
	border-radius:3px 3px 0 0;
}

/* ボディ */
.mwBody {
	width:100%;
	background:#fff;
}

/* ボディ */
.mwSearchForm {
	padding:0 5px 0 5px;
}

/* フッタ */
.mwFooter {
	width:100%;
	background:#444;
	border-radius:0 0 3px 3px;
}

.scheduleMwTitle {
	padding:0 0 0 5px;
	font-size:24px;
	font-weight:bold;
	color:#fff;
}

.modal-content p {
	margin:0;
	padding:0;
}

.modal-overlay {
	z-index:100;
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:120%;
	background-color:rgba(0,0,0,0.20);
}

.modal-open {
	color:#00f;
	text-decoration:underline;
}

.modal-open:hover {
	cursor:pointer;
	color:#f00;
}