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

    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);
	}









/*･･････････････････････････････････････････････････････････*/
/*･･････････････････････････････････････････････････････････*/
    /*･･････････････････････････････････････････････････････*/
    /*･･････････････････････････････････････････････････････*/


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

    メディアクエリ

***************************************************************************************/
/*画面幅1201px以上*/
@media(min-width:1201px){
}

/*641以上 ～ 1200px以下*/
@media(min-width:641px) and (max-width:1200px){
}

/*640px以下（モバイル対応）*/
@media(max-width:640px){
}