@CHARSET "Shift_JIS";
body {
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout:none;
}

/* グラフ */
#chart1 {
  width:95%;
  clear:both;
}

#yLabel {
  z-index: -1;
}

/* ラベル */
#yLabel {
  position:relative;
  font-size:16px;
  font-weight:bold;
  color:#666666; 
}

/* 期間・金額選択 */
#panel-btn-money>.panel-btn>span>span {
    font-size: 70%;
}
.panel select.selected {
    background: #00a7db;
    color: #fff;
}
.panel select {
  border: none;
  width: 100%;
  margin: 7px 0;
  padding: 5px 7px;
  font-size: 16px;
  font-weight: bold;
}

.legend {
  float: left;
}

.legend > div {
  display: inline-block;
  cursor: pointer;
}

.legend-wrap {
  padding-bottom: 20px;
  float: right;
  font-weight: bold;
  font-size: 16px;
  color: #ccc;
}

@media screen and (min-width:870px) {
  .legend-wrap {
    padding-right: 80px;
    padding-bottom: 0px;
  }
}

.is-active{
  color: #666;
}

.legend-pad {
  padding-right: 30px;
}


/** チャート背景色 
 *
 * 本来チャートの色指定はJSでしかできないため、HTML内に下記2つのIDを持つ隠しタグを設置し色指定、チャートのJSで隠しタグから背景色を参照し設定しています。
 *
 */
#chart-background-1 {
  background-color: rgba(255, 33, 33, 0.1);
}

#chart-background-2 {
  background-color: #ffffff;
}

