
/*モーダルウィンドウ用↓*/
.modal{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	/*background:rgba(0,0,0,0.6);*/
	z-index:2147483647;
	/*display:none;*/
	transition:all 0.3s;
}
.modal .close-btn{
	width:30px;
	cursor:pointer;
	position: relative;
    margin-left: auto;
    top: -10px;
    right: -10px;
}
.modal .modal_cnt{
	width:40%;
	padding:0;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction:column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
	background:transparent;
}
.modal .modal_cnt img{
	width:100%;
	height:auto;
}
/*モーダルウィンドウ用↑*/