@charset "UTF-8";

* {
	padding: 0;
  	margin: 0;
}
	
	
	div#droppable{
	border: gray solid 1em;
    padding: 1em;
    font-size: 20px;
    text-align: left;
	}
	.link {
	stroke: #ccc;
	}

	.node text {
	pointer-events: none;
	font: 10px sans-serif;
	}

	#chart {
	  background: #fff;
	  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	}

	.title {
	    font-weight: bold;
	    font-size: 24px;
	    text-align: center;
	    margin-top: 6px;
	    margin-bottom: 6px;
	}

/*
	text {
	  pointer-events: none;
	}
*/

	.grandparent text {
	  font-weight: bold;
	}

	rect {
	  fill: none;
	  stroke: #fff;
	}

	rect.parent,
	.grandparent rect {
	  stroke-width: 2px;
	}

	rect.parent {
	    pointer-events: none;
	}

	.grandparent rect {
	  fill: orange;
	}

	.grandparent:hover rect {
	  fill: #ee9700;
	}

	.children rect.parent,
	.grandparent rect {
	  cursor: pointer;
	}

	.children rect.parent {
	  fill: #bbb;
	  fill-opacity: .5;
	}

	.children:hover rect.child {
	  fill: #bbb;
	}


body {
 	font-family: 'Exo 2'“ヒラギノ角ゴ ProN W3″, “Hiragino Kaku Gothic ProN”, “メイリオ”, Meiryo, sans-serif;
	background-color: #fdfdfd;
	color:#333;
	text-align: center;
}

h1 {
	font-size: 30px;
	font-weight: bold;
	margin:10px;
}

table{
	margin: 0 auto;
	width: 980px;
	padding: 20px;
}

th{
	height: 45px;
}

td{
	width: 130px;
	height: 45px;
    font-size:20px;
    text-align: center;
}

.trnode circle {
  fill: #fff;
  stroke: steelblue;
  stroke-width: 1.5px;
}

.trnode {
  font: 10px sans-serif;
}

.trlink {
  fill: none;
  stroke: #ccc;
  stroke-width: 1.5px;
}

 /* heatmap disable text selection */
      svg *::selection {
         background : transparent;
      }
     
      svg *::-moz-selection {
         background:transparent;
      } 
     
      svg *::-webkit-selection {
         background:transparent;
      }
      rect.selection {
        stroke          : #333;
        stroke-dasharray: 4px;
        stroke-opacity  : 0.5;
        fill            : transparent;
      }

      rect.cell-border {
        stroke: #eee;
        stroke-width:0.3px;   
      }

      rect.cell-selected {
        stroke: rgb(51,102,153);
        stroke-width:0.5px;   
      }

      rect.cell-hover {
        stroke: #F00;
        stroke-width:0.3px;   
      }

      text.mono {
        font-size: 9pt;
        font-family: Consolas, courier;
        fill: #aaa;
      }

      text.text-selected {
        fill: #000;
      }

      text.text-highlight {
        fill: #c00;
      }
      text.text-hover {
        fill: #00C;
      }
      #tooltip {
        position: absolute;
        width: 200px;
        height: auto;
        padding: 10px;
        background-color: white;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
        pointer-events: none;
      }

      #tooltip.hidden {
        display: none;
      }

      #tooltip p {
        margin: 0;
        font-family: sans-serif;
        font-size: 12px;
        line-height: 20px;
      }