@charset "utf-8";
/* CSS Document */


span.kasen {
	border-bottom: 1px solid gray;
}
span.kasen sub{
	vertical-align: bottom;
}



div#forIE {
	display: none;
}

@media all and (-ms-high-contrast: none){

div#forIE {
	display: block;
	font-size: 20px;
	text-align: center;
	color: crimson;
	background-color: #ffbcbc;
	border: 3px solid crimson;
	border-radius: 6px;
}

}


/*---------------------------------------------------------------------------------- グラフソフト */

div#graphsoft {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

/*---------------------------------------------------------------------------------- グラフ領域 */

div#graph_area {
	text-align: center;
	border: 1px solid black;
	width: calc(100% - 2px);
}

div#graph_area svg {
	overflow: hidden;
}

div#panel_2 {
	text-align: center;
}

/*------------------------------------------ スライダー */

input[type=range] {
	-webkit-appearance: none;
	margin: 0;
	width: 90%;
	height: 16px;
	cursor: pointer;
}
input[type=range]:focus {
	outline: none;
}

/****************************** WebKit・Blink */
input[type=range]::-webkit-slider-runnable-track {	/* 溝 */
	height: 5px;
	animate: 0.2s;
	background-color: silver;
	border: 1px solid dimgray;
	border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {	/* つまみ */
	border: 1px solid dimgray;
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background-color: silver;
	-webkit-appearance: none;
	margin-top: -6px;	/* 縦位置調整 */
}

/* 何故か上の margin-top 指定が Edge に効いてしまうので、Edge向けに設定をリセット */
@supports (-ms-ime-align: auto) {
	input[type=range]::-webkit-slider-thumb {
		margin-top: 0 !important;
	}
}

/****************************** Firefox */
input[type=range]::-moz-range-track {	/* 溝 */
	height: 3px;
	animate: 0.2s;
	background-color: silver;
	border: 1px solid dimgray;
	border-radius: 3px;
}
input[type=range]::-moz-range-thumb {	/* つまみ */
	height: 13px;
	width: 13px;
	background-color: silver;
	border: 1px solid dimgray;
	border-radius: 50%;
}

/****************************** Edge・IE */
input[type=range]::-ms-track {	/* 背景 */
	height: 6px;
	animate: 0.2s;
	background: transparent;
	border-color: transparent;
	border-width: 6px 0;
}
input[type=range]::-ms-fill-lower,	/* 溝（つまみより左側） */
input[type=range]::-ms-fill-upper {	/* 溝（つまみより右側） */
	height: 3px;
	background-color: silver;
	border: 1px solid dimgray;
	border-radius: 3px;
}
input[type=range]::-ms-thumb {	/* つまみ */
	height: 13px;
	width: 13px;
	color: silver;
	background-color: silver;
	border: 1px solid dimgray;
	border-radius: 50%;
}
input[type=range]::-ms-tooltip {	/* ポップアップを非表示 */
	display: none;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ スマートフォン：～425px   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

div#graphsoft {
	width: 100%;
	margin: 8px 0;
	padding: 0;
	position: relative;
}

div#panel_1 {
	display: none;
}

div#graph_area svg {
	width: 100%;
}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ スマートフォン大 454px～666px ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media (min-width: 460px) {

div#graphsoft {
	width: 418px;
	margin: 8px auto;
	padding: 8px;
	border: 2px solid black;
	border-radius: 8px;
}

/*---------------------------------------------------------------------------------- ツールパネル */

div#panel_1 {
	display: block;
	padding: 4px;
	background-color: gainsboro;
	border: 1px solid black;
	border-bottom: none;
	user-select: none;	/* CSS */
}
table#key_1 {
	margin: 0;
}
table#key_1 td {
	border: 3px solid transparent;
	vertical-align: middle;
}
table#key_1 span {
	display: block;
	width: 28px;
	height: 28px;
	padding: 1px;
	background-color: #eaeaea;
	border: 1px solid darkgray;
}
table#key_1 span img {
	vertical-align: middle;
}

/*---------------------------------------------------------------------------------- グラフ領域 */

div#graph_area svg {
	width: 278px;
}


}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ タブレット：667px～884px ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media (min-width: 667px) {

div#graphsoft {
	width: 593px;
	margin: 8px auto;
	padding: 8px;
	border: 2px solid black;
	border-radius: 8px;
}

div#graph_area svg {
	width: 410px;
}

}




/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ デスクトップ小：885px～1201px   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media (min-width: 885px) {


}




/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ デスクトップ中：1202px～1501px   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media (min-width: 1202px) {


}




/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■ デスクトップ大：1502px～ ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media (min-width: 1502px) {


}




