@charset "utf-8";

/* ------------------------------ */
/* ロータリーフェーダー */
/* ------------------------------ */
/* 表示枠 */
.rotary_fader_frame {
	width:70px; /* サイズ */
	height:70px; /* サイズ */
	margin:10px auto;
	border-radius:50px;
	-webkit-box-shadow: 0 13px 13px -5px rgba(0,0,10,0.6);
	box-shadow: 0 13px 13px -5px rgba(0,0,10,0.6);
	cursor:pointer;
	-webkit-user-select: none; /* Chrome or Safari */
	-webkit-touch-callout: none; /* Android and iOS*/
	-moz-user-select: none; /* FireFox */
	-ms-user-select: none; /* IE */
	-o-user-select: none; /* Opera */
	user-select: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	position:relative;
}
/* メモリ */
.scale_line {
	height:86px; /* サイズ */
	position:absolute;
	left:50%;
	width:1px;
	top:50%;
	background: -webkit-linear-gradient(#333333 0%, #333333 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	background: linear-gradient(#333333 0%, #333333 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	z-index:1;
}
/* 回転部 */
.rotary_fader {
	position:relative;
	width:100%;
	height:100%;
	border-radius:50px;
	background-color:#f0f0f0;
	background: -webkit-linear-gradient(circle at center, #d6d6d6 0%, #aaaaaa 20%, #f0f0f0 26%, #cccccc 60%, #333333 85%, #000000 100%);
	background: radial-gradient(circle at center, #d6d6d6 0%, #aaaaaa 20%, #f0f0f0 26%, #cccccc 60%, #333333 85%, #000000 100%);
	background-size: cover;
	background-position: center;
	z-index:2;
}
/* ポインター */
.fader_needle {
	width:6px;
	height:	15px;
	margin:0px auto;
	background-image: -webkit-linear-gradient(to left,#333333,#aaaaaa);
	background-image: linear-gradient(to left,#333333,#aaaaaa);
	border-bottom-left-radius:50%;
	border-bottom-right-radius:50%;
}
