/*---------------------------------*/
/* Coding
/* 2013.10.16-2013.10.18
/*---------------------------------*/


/* ---------------------------------------------------
    popup window
-------------------------------------------------- */
.popup_window {
	display: none;
	position: absolute;
	z-index:999999;
	width: 400px;
   /* -- height: 264px;2022-11-15-- */
	padding:10px;
	
	background:#FFF;
	border: 1px solid #FFFFFF;
	-webkit-border-radius: 2px;/* webkit */
    -moz-border-radius: 2px;/* fx */
    border-radius: 2px 2px 2px 2px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
	
	filter: alpha(opacity=95); /* IE7以下用 */
    -ms-filter: "alpha(opacity=95)"; /* IE8用 */
	opacity:0.95;
	
	color: #333;
	text-align:left;
}
.popup_window .popup_window_head {
	padding:10px;
	background:#F2F2F2;
	font-size:16px;
}
.popup_window .cursor__move {
    cursor: move;
}
.popup_window .popup_container {
	width: 400px;
   /* -- height: 250px;2022-11-15-- */
	font-size:14px;
}
.popup_window .popup_container ul { margin:20px; }
.popup_window .popup_container ul li {
	float:left;
	width:180px;
	margin-bottom:0.5em;
}
.popup_window .popup_container ul li input {
	margin-right:10px;
	vertical-align:middle;
}
.popup_window .popup_container ul li label,
.popup_window .btn {
    cursor: pointer;
}
.popup_window .btn_close {
    float: right;
	margin:5px 10px;
    font: 26px Roboto,Arial,sans-serif;
	color: #999999 !important; 
}
.popup_window .btn_submit {
	display:block;
	width:72px;
	margin:0 auto;
	padding:10px;
	background:#4D90FE;
	border: solid 1px #3272c1;
	
	-webkit-border-radius: 2px;/* webkit */
    -moz-border-radius: 2px;/* fx */
	border-radius: 2px;
	box-shadow:0 2px 6px rgba(0,0,0,0.3);
	
	color:#FFF;
	font-weight:bold; 
}
.popup_window .btn_submit:hover { background:#357ae8;}
#click_area {
	display: none;
    position: fixed;
    z-index:999998; 
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
	background:#000;
	
	filter: alpha(opacity=80); /* IE7以下用 */
    -ms-filter: "alpha(opacity=80)"; /* IE8用 */
	opacity:0.8;
}
/* ---------------------------------------------------
-------------------------------------------------- */
/* ---道路区分2022-11-22↓--- */
.popup_window .popup_container .switching{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px;
}
.popup_window .popup_container .switching li{
    width: 50%;
}
.popup_window .popup_container .switching input{
    margin-right: 10px;
    vertical-align: middle;
}