@charset "UTF-8";

body{
    background-color: #fffcfc;
}

svg{
    position: absolute;
    top: 120px;
    border: 1px solid #bbf1f7;
    /*background-color: #fff5e3;*/
    margin-bottom: 5px;
}

h1{
    margin-top: 10px;
    margin-bottom: 5px;
    width: 1300px;
	  text-align: center;
    font-size: 1.5em;
    font-weight: 500;
    color: #302833;
    font-family: "ヒラギノ角ゴ ProN W1","游ゴシック体",sans-serif;
}

h2{
    margin-top: 0px;
    margin-bottom: 10px;
    width: 1300px;
    text-align: center;
    font-size: 1.5em;
    font-weight: 500;
    color: #302833;
    font-family: "ヒラギノ角ゴ ProN W1","游ゴシック体",sans-serif;
}


#description{
    text-align: center;
}


/* mouseover */
.nodeColor{
    stroke: #d70035;
    stroke-width: 2;
    opacity: 0.8;
    cursor: pointer;
}

.nodeColor2nd{
    stroke: #2263cc;
    stroke-width: 2;
    opacity: 0.7;
    cursor: pointer;
}

.clickedNodeColor{
    stroke: #EFFA28;
    stroke-width: 4;
    opacity: 0.8;
    cursor: pointer;

    /* bound animation */

    animation: clickedNode 10s  ease-out;
    animation-play-state:running;

    }
    @keyframes clickedNode {
    0% { transform: scale(0.90, 0.90); }
    1% { transform: scale(1.55, 1.55); }
    2% { transform: scale(1.35, 1.35); }
    3% { transform: scale(1.53, 1.53); }
    4% { transform: scale(1.45, 1.45); }
    5% { transform: scale(1.50, 1.50); }
    6% { transform: scale(1.47, 1.47); }
    7% { transform: scale(1.50, 1.50); }
    8% { transform: scale(1.48, 1.48); }
    9% { transform: scale(1.50, 1.50); }
    10% { transform: scale(1.49, 1.49); }
    11% { transform: scale(1.50, 1.50); }
    100% { transform: scale(1.50, 1.50); }
    }

.selectedNodeColor{
    stroke: #EFFA28;
    stroke-width: 3;
    opacity: 0.8;
    cursor: pointer;

    /* bound animation */
    animation: selectedNode 20s  ease-out;
    animation-play-state:running;
    }

    @keyframes selectedNode {
    0% { transform: scale(1.20, 1.20); }
    100% { transform: scale(1.20, 1.20); }
    }

.linkedNodeText{
    font-weight: 500;
    font-size: 0.85em;
    pointer-events: none;
    opacity: 0.8;
}


.lineColor{
    stroke: #d70035;
    opacity: 1.0;
}

.lineColor2nd{
    stroke: #2263cc;
    opacity: 1.0;
}


/* mouse-click, mouse-over */
.nodeColorFade{
    fill: #E5E5E5;
    stroke: #bfbec5;
    opacity: 0.6;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
    pointer-events: none;

}

.nodeColorFadeOver{
    opacity: 0.35;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
    pointer-events: none;

    /* animation */
    animation: nodeColorFadeOver 0.05s  ease;
    animation-play-state:running;

}

    @keyframes nodeColorFadeOver {
    0% { opacity: 0.7; }
    100% { opacity: 0.35; }
    }



.nodeTextFade{
    opacity: 0.0;
    pointer-events: none;
}




.lineColorFade{
    stroke: #E5E5E5;
    opacity: 0.5;

}

.lineColorFadeOver{
    opacity: 0.3;

    /* animation */
    animation: lineColorFadeOver 0.05s  ease;
    animation-play-state:running;

}

    @keyframes lineColorFadeOver {
    0% { opacity: 0.5; }
    100% { opacity: 0.3; }
    }


.nodeReturnFade{
    opacity: 0.7;
    cursor: pointer;
}


.nodeReturnFadeOver{
    opacity: 0.7;
    cursor: pointer;

    /* animation */
    animation: nodeReturnFadeOver 0.05s  ease;
    animation-play-state:running;

}

    @keyframes nodeReturnFadeOver {
    0% { opacity: 0.35; }
    100% { opacity: 0.7; }
    }

.textReturnFade{
    pointer-events: none;

    /* animation */
    animation: textReturnFadeOver 0.05s  ease;
    animation-play-state:running;

}

    @keyframes textReturnFadeOver {
    0% { opacity: 0.0; }
    100% { opacity: 0.8; }
    }


.lineReturnFade{
    opacity: 0.5;
}

.lineReturnFadeOver{
    opacity: 0.5;

    /* animation */
    animation: lineReturnFadeOver 0.05s  ease;
    animation-play-state:running;

}

    @keyframes lineReturnFadeOver {
    0% { opacity: 0.3; }
    100% { opacity: 0.5; }
    }

/* scroll */
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
}


/* 説明文 */

#detailTextBox{
    position: absolute;
    left: 720px;
    top: 120px;
    width: 230px;
    height: 700px;
    border: 1px solid #fc9f94;
    overflow: scroll;

}

#detailTextBox2{
    position: absolute;
    left: 951px;
    top: 120px;
    width: 230px;
    height: 700px;
    border: 1px solid #76a3fc;
    overflow: scroll;

}

.detailSelected{
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 10px;
    text-align: left;
    font-size: 1.0em;
    font-weight: 600;
    line-height: 150%;
    color: #302833;
    text-decoration: underline;
    font-family: "ヒラギノ角ゴ ProN W1","游ゴシック体",sans-serif;
}

.detailSelected2nd{
    margin-top: 10px;
    margin-bottom: 0px;
    margin-left: 10px;
    text-align: left;
    font-size: 1.0em;
    font-weight: 600;
    line-height: 150%;
    color: #302833;
    text-decoration: underline;
    font-family: "ヒラギノ角ゴ ProN W1","游ゴシック体",sans-serif;
}

.detailSelected2nd_{
    margin-top: 0px;
    margin-bottom: 10px;
    margin-left: 25px;
    text-align: left;
    font-size: 0.9em;
    font-weight: 300;
    line-height: 130%;
    color: #302833;
    font-family: "ヒラギノ角ゴ ProN W1","游ゴシック体",sans-serif;
}

.detailTitle{
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 10px;
    text-align: left;
    font-size: 1.0em;
    font-weight: 500;
    line-height: 150%;
    color: #302833;
    font-family: "ヒラギノ角ゴ ProN W1","游ゴシック体",sans-serif;
}


.detailText{
    margin-top: 3px;
    margin-bottom: 2px;
    margin-left: 15px;
    text-align: left;
    font-size: 0.9em;
    font-weight: 400;
    line-height: 150%;
    color: #0000FF;
    text-decoration: underline;
    font-family: "ヒラギノ角ゴ ProN W1","游ゴシック体",sans-serif;
    cursor: pointer;
}


.button{
    cursor: pointer;
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #46b3f2;
    background: #f2f9f9;
    transition: .4s;
  }

.button:hover {
    background: #46b3f2;
    color: white;
}

/* zoom */
.bigText{
    opacity: 0.8;
    color: #0000FF;
}

.smallText{
    opacity: 0.0;
}





