.year_range {
  -webkit-appearance: none;
  margin: 0;
  width: auto;
}
.year_range:focus {
  outline: none;
}

/* WebKit・Blink向け 溝のスタイル */
.year_range::-webkit-slider-runnable-track {
  width: auto;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: #cccccc;
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border-radius: 1.3px;
  border: 1px solid #010101;*/
}
/* WebKit・Blink向け つまみのスタイル */
.year_range::-webkit-slider-thumb {
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  border: 1px solid #dcdcdc;
  height: 12px;
  width: 12px;
  border-radius: 2px;
  background: #f2f2f2;
  cursor: pointer;
  -webkit-appearance: none;
  /* 以下は つまみの縦位置調整 */
  margin-top: -5.5px;  /* (つまみの高さ - トラックの高さ) / 2 。つまみの高さは border を含む */	
}

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

/* WebKit・Blink向け focus時のスタイル */
.year_range:focus::-webkit-slider-runnable-track {
  background: #999999;
}

/* Firefox向け 溝のスタイル */
.year_range::-moz-range-track {
  width: auto;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  background: #cccccc;
  /*border-radius: 1.3px;
  border: 0.2px solid #010101;*/
}
/* Firefox向け つまみのスタイル */
.year_range::-moz-range-thumb {
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  border: 1px solid #dcdcdc;
  height: 12px;
  width: 12px;
  border-radius: 2px;
  background: #f2f2f2;
  cursor: pointer;
}

/* Edge・IE向け 溝のスタイル */
.year_range::-ms-track {
  width: auto%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  /*border-width: 16px 0;*/
  color: transparent;
}
/* Edge・IE向け 溝の色（つまみより左側） */
.year_range::-ms-fill-lower {
  background: #cccccc;
  /*border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
}
/* Edge・IE向け 溝の色（つまみより右側） */
.year_range::-ms-fill-upper {
  background: #cccccc;
  /*border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
}
/* Edge・IE向け つまみのスタイル */
.year_range::-ms-thumb {
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  border: 1px solid #dcdcdc;
  height: 12px;
  width: 12px;
  border-radius: 2px;
  background: #f2f2f2;
  cursor: pointer;
}
/* Edge・IE向け focus時の色（つまみより左側） */
.year_range:focus::-ms-fill-lower {
  background: #cccccc;
}
/* Edge・IE向け focus時の色（つまみより右側） */
.year_range:focus::-ms-fill-upper {
  background: #cccccc;
}

/* Edge・IE向け ポップアップを非表示に */
.year_rang  [type=range]::-ms-tooltip {
  display: none;
}