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

	Modal Window・独自仕様

*********************************************************************************************************************************/
/*modalWindow･･･････････････････････････････････････････････････････*/
.modalWindow{
	z-index:950;
	display:none;
	position:fixed;
	top:0;
	left:0;
	height:100vh;/*スマホ優先の場合は120vh*/
	width:100vw;
}


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


	/*modalShield･･･････････････････････････････････････････････････*/
	.modalShield{
		z-index:951;
		position:absolute;
		top:0;
		left:0;
		height:100vh;/*スマホ優先の場合は120vh*/
		width:100vw;
		background-color:rgba(0,0,0,0.75);
	}




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

		メディアクエリ（ ～1000px以下 ）

*********************************************************************************************************************************/
@media(max-width:1000px){
	/*･･････････････････････････････････････････････････････････････*/

}




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

		メディアクエリ（ ～500px以下：モバイル対応 ）

*********************************************************************************************************************************/
@media(max-width:500px){
	/*･･････････････････････････････････････････････････････････････*/

}

