@charset "UTF-8";
@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 400;
    src: url(//fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Regular.woff2) format('woff2'), url(//fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Regular.woff) format('woff'), url(//fonts.gstatic.com/ea/notosansjapanese/v3/NotoSansJP-Regular.otf) format('opentype');
}

.wf-roundedmplus1c {
    font-family: "Rounded Mplus 1c";
}

html {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Rounded Mplus 1c', serif, sans-serif;
    font-size: 100%;
    font-weight: 400;
    text-align: left;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    color: #d3d3d3;
    font: 12pt arial;
    background-color: #222222;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 1em 0em 0.2em 0em;
}

.container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

#network {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    border: 0px;
    background-color: #222222;
}

#infoarea {
    min-width: 300px;
    width: 30%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    border: 0px;
    background-color: #222222;
    color: #dadada;
    overflow-y: scroll;
}

.bold {
    font-weight: 700;
}

#loadingBar {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80%;
    height: 100%;
    background-color: rgba(200, 200, 200, 0.0);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 1;
}

#wrapper {
    position: relative;
    width: 900px;
    height: 900px;
}

#text {
    position: absolute;
    top: 8px;
    left: 90%;
    width: 30px;
    height: 50px;
    margin: auto 50px auto auto;
    font-size: 22px;
    color: #000000;
}

div.outerBorder {
    position: relative;
    top: 400px;
    width: 80%;
    height: 50px;
    margin: auto auto auto auto;
    border: 8px solid rgba(0, 0, 0, 0.1);
    background: rgb(252, 252, 252);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(252, 252, 252, 1) 0%, rgba(237, 237, 237, 1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(252, 252, 252, 1)), color-stop(100%, rgba(237, 237, 237, 1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(252, 252, 252, 1) 0%, rgba(237, 237, 237, 1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(252, 252, 252, 1) 0%, rgba(237, 237, 237, 1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(252, 252, 252, 1) 0%, rgba(237, 237, 237, 1) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(252, 252, 252, 1) 0%, rgba(237, 237, 237, 1) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed', GradientType=0);
    /* IE6-9 */
    border-radius: 72px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#border {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100%-40px);
    height: 23px;
    margin: auto auto auto auto;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

#bar {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    margin: auto auto auto auto;
    border-radius: 11px;
    border: 2px solid rgba(30, 30, 30, 0.05);
    background: rgb(0, 173, 246);
    /* Old browsers */
    box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.4);
}

button {
    margin: 8px 4px
}

table {
    width: 100%;
    margin: 0;
    /*table要素の「上」ボーダー*/
    border: 1px solid #ccc;
    /*セル同士の間隔*/
    border-spacing: 0;
}

table tr th,
table tr td {
    /*「,」で区切って複数のセレクタを指定しています*/
    border: 1px solid #ccc;
    /*セルのボーダーとテキストの間をあけて読みやすく*/
    padding: 0.25em;
}

table tr th {
    /*th（見出し）だけ背景色を付けてます*/
    background: #e6eaff;
    color: #404040;
}

td.focus {
    background: #d174bf;
    color: #2c2c2c;
    font-weight: 600;
}

td.grayzone {
    background: #d6b3cf;
    color: #2c2c2c;
    font-weight: 600;
}

.btn {
    display: inline-block;
    /* font-size: 1.0em; */
    padding: 0.4em 0.8em;
    height: 32px;
    text-decoration: none;
    background-color: white;
    border-radius: 3px;
    transition: .4s;
}

.btn_disc {
    color: #eb7311;
    border: solid 2px #eb7311;
}

.btn_disc:hover {
    background: #eb7311;
    color: white;
}

.btn_judge {
    color: #67c5ff;
    border: solid 2px #67c5ff;
}

.btn_judge:hover {
    background: #67c5ff;
    color: white;
}

.btn_cansel {
    color: #ff67c5;
    border: solid 2px #ff67c5;
}

.btn_cansel:hover {
    background: #ff67c5;
    color: white;
}

.btn_calc {
    background: #068621;
    border: solid 2px #068621;
    color: white;
}

.btn_calc:hover {
    background: #dadada;
    color: #068621;
    border: solid 2px #068621;
}

.btn_done {
    background: #6e6e6e;
    color: #dadada;
    border: solid 2px #6e6e6e;
}

#sample3 li {
    position: relative;
}

.tooltips:hover {
    background: #deb3ba;
}

.tooltips {
    position: absolute;
    bottom: -2.8em;
    left: 0.3em;
    z-index: 9999;
    padding: 0.3em 0.5em;
    color: #FFFFFF;
    background: #c72439;
    border-radius: 0.5em;
}

.tooltips:after {
    width: 100%;
    content: "";
    display: block;
    position: absolute;
    left: 0.5em;
    top: -8px;
    border-top: 8px solid transparent;
    border-left: 8px solid #c72439;
}