  .map_area {
    width:750px;
    /*2017.03.17 プログレスダイアログ対応 add*/
    position: relative;
  }
  #map {
    width:750px;
    height:700px;
  }
  /*タブメニュー*/
  #tabmenu{
    background-color : #FFFFFF;
    margin:0;
    padding:0;
    height  : 40px;
    text-align: center;
  }
  #tabmenu ul{
    display: inline;
  }
  #tabmenu li{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #tabmenu ul li {
        margin-right: 3px;
        float: left;
        position: relative;
    }
  #tabmenu  a{
    float: left;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 100px;
    display: block;
    text-decoration:none;
    color:#FFFAFA;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background:#B22222;
    background: -moz-linear-gradient(left top 315deg, #B22222, #B22222 95%, #FFFAFA 100%);
    background: -webkit-gradient(linear, left top, right bottom, from(#B22222), color-stop(95%, #B22222), color-stop(100%, #FFFAFA));
    background:-ms-linear-gradient(left top, #B22222 95%, #FFFAFA 100%); /* IE */
    -moz-box-shadow: 3px 0px 3px rgba(0, 0, 0, .4);
    -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .4);
    box-shadow: 3px 0px 3px rgba(0, 0, 0, .4);
  }
  #tabmenu  a.selected{
    background:#FFFAFA;
    background: -moz-linear-gradient(left top 315deg, #FFFAFA, #FFFAFA 95%, #B22222 100%);
    background: -webkit-gradient(linear, left top, right bottom, from(#FFFAFA), color-stop(95%, #FFFAFA), color-stop(100%, #B22222)); 
    background:-ms-linear-gradient(left top, #FFFAFA 95%, #B22222 100%); /* IE */
    -moz-box-shadow: 3px 0px 3px rgba(0, 0, 0, .4);
    -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .4);
    box-shadow: 3px 0px 3px rgba(0, 0, 0, .4);

    color:#B22222;
  }
  
  /*地図ヘッダ*/
  #map_header {
    height: 25px;
    width: 100%;
    background:#B22222;
    color:#FFFAFA;
  }
  #map_header_left {
    float: left;
    line-height: 25px;
    height: 25px;
  }
  #map_header_right {
    float: right;
    line-height: 25px;
    height: 25px;
  }
  #info_mark {
    height: 18px;
    width: 18px;
    display: inline-block;
    vertical-align: middle;
  }
  .map_header_text {
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
  }
  
  /*未選択ラベル*/
  .no_selected_div {
    position: absolute;
    z-index: 999;
    top: 50%;
    bottom: 50%;
    left: 0;
    right: 0;
    font-size: 2em;
    width: 400px;
    text-align: center;
    margin: auto;
  }
  
  /*避難勧告のポリゴン*/
  path.leaflet-interactive{
    cursor:default;
  }
  
  /*避難所の吹き出し*/
  table.shelter_table {
    border-spacing: 0;
  }
  table.shelter_table tr td {
    padding: 2px 3px; 
    border-bottom: 1px solid #84b2e0;
    border-left: 1px solid #84b2e0;
    border-right: 1px solid #84b2e0;
    text-align: left;
    font-size:12px;
    word-break:break-all;
  }
  table.shelter_table tr {
    background: #fff;
  }
  table.shelter_table tr:nth-child(2n+1) {
    background: #f1f6fc;
  }
  table.shelter_table tr:first-child td {
    border-top: 1px solid #84b2e0;
  }
  table.shelter_table tr td:last-child {
    border-right: 1px solid #84b2e0;
  }
  table.shelter_table tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
  }
  table.shelter_table tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
  }
  table.shelter_table tr:first-child td:first-child {
    border-radius: 5px 0 0 0;
  }
  table.shelter_table tr:first-child td:last-child {
    border-radius: 0 5px 0 0;
  }
  
  /*被害状況の吹き出し*/
  table.damage_table {
    border-spacing: 0;
    text-align: center;
  }
  table.damage_table tr:first-child td {
    color : #FF0000;
    font-weight : bold;
  }
  table.damage_table tr:last-child td {
    font-size: 0.9em;
  }
  
  /*共通*/
  .disnone {
    display: none;
  }
  /*プログレスダイアログ*/
  /*2017.03.17 プログレスダイアログ対応 add*/
  .waitingmessage_panel {
    position: absolute;
    z-index: 9999;
    width: 750px;
    height: 100%;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .waitingmessage_panel span {
    position: absolute;
    top: 50%;
    right: 55%;
    //bottom: 15%;
    //left: 15%;
    user-select: none; /* CSS3 */
    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Safari、Chromeなど */
    -ms-user-select: none; /* IE10かららしい */
    unselectable="on"
  }