@charset "utf-8";

#subwindow_overlay {
	z-index: 9999;
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	cursor: pointer;
	background-color: #000;
	filter: alpha(opacity=50);
	opacity: 0.5;
}
#subwindow_foundation {
	z-index: 9999;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top:0;
	margin-left:0;
	width: 80%;
	max-width: 780px;
	height: 80%;
	background: #fff;
}
@media screen and (max-width:600px){
	#subwindow_foundation {
		margin-top: 30px;
		width: 94%;
		height: calc(100% - 70px);
	}
}
#subwindow_foundation iframe{
	width: 100%;
	height: 100%;
	border:none;
}
#subwindow_title {
	z-index: 9999;
	position: absolute;
	top: -1.5em;
	color: #fff;
	font-weight: bold;
}
#subwindow_close {
	z-index: 9999;
    position: absolute;
    top: -42px;
    right: -1px;
    cursor: pointer;
    padding: 6px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 30px
}
#subwindow_content {
	z-index: 9999;
	overflow: auto;
}
