.error p{
	color:red;
}
	/*保存ボタン*/
	.saves{
		/*display:none;*/
	}
	#modal-overlay {
		z-index: 9999999 ;
		display: none ;
		position: fixed ;
		top: 0 ;
		left: 0 ;
		width: 100% ;
		height: 120% ;
		background-color: rgba( 0,0,0, 0.75 ) ;
	}
	#modal-content{
		position: absolute;
		background-color: #fff;
    	height: 450px;
    	padding: 10px;
    	text-align: center;
	}
	.tab_wrap{width:500px; margin:5px auto;}
	input[type="radio"]{display:none;}
	.tab_area{font-size:0; margin:0 10px;}
	.tab_area label{width:30%; margin:0 5px; display:inline-block; padding:12px 0; color:#999; background:#ddd; text-align:center; font-size:13px; cursor:pointer; transition:ease 0.2s opacity;}
	.tab_area label:hover{opacity:0.5;}
	.panel_area{background:#fff;}
	.tab_panel{width:100%; padding:80px 0; display:none;}
	.tab_panel p{font-size:14px; letter-spacing:1px; text-align:center;}
	 
	#tab1:checked ~ .tab_area .tab1_label{background:#fff; color:#000;}
	#tab1:checked ~ .panel_area #panel1{display:block;}
	#tab2:checked ~ .tab_area .tab2_label{background:#fff; color:#000;}
	#tab2:checked ~ .panel_area #panel2{display:block;}
	#tab3:checked ~ .tab_area .tab3_label{background:#fff; color:#000;}
	#tab3:checked ~ .panel_area #panel3{display:block;}
	
	.text_v{
		width:100px;
	}
	#list1{
		width:220px;
	}
	#list1 li.point:hover {
		cursor: move;
		background-color: aquamarine;
  	}
	.lists{
	    list-style: none;
	    width: 245px;
    	float: left;
	}
	.lists li{
	    list-style: none;
	    padding: 5px;
	    border: 1px solid #ccc;
	    height: 40px;
	    border-collapse: collapse;
	}
/*フローティング*/
	#list3 {
		float: right;
	    width: 300px;
	    position: fixed;
	    margin: 10px;
	    right: 60px;
	    list-style: none;
	    padding: 0;
	    top: 200px;
	}
	#list3 li{
		display: block;
	    border: 1px solid #9F99A3;
	    background-color: #EEEEEE;
	    padding: 3px 10px;
	    text-decoration: none;
	    color: #333;
	    /* width: 150px; */
	    margin: 2px 2px;
	    text-align: left;
	    font-size: 14px;
	    float: left;
	}
	#list3 li:hover {
    cursor: move;
  }