/************************************************

          Modal Window・独自仕様
		  
************************************************/
.modalWindow{
	z-index:950;
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;/*スマホ優先の場合は、120％にする*/
}

	/*コンテンツ部分--------------*/
	.modalContents{
		z-index:952;
		height:300px;
		width:500px;
		background-color:#cfc;
	}
		.modalContents>div{/*コンテンツ基準div*/
			height:240px;
			width:400px;
			background-color:white;
		}

	.modalShield{/*Shield--------------*/
		z-index:951;
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:120%;/*スマホ対策*/
		background-color:rgba(0,0,0,0.75);
	}


/********************************************************************************

          メディアクエリ

*********************************************************************************/
@media(max-width:640px){
}
