@CHARSET "UTF-8";

.range {
    width: 90%;
    margin: 5px auto;
    /*background: #c0d9ff;*/
}

/*
input[type="range"] {
    width: 100%;
    cursor: pointer;
    box-shadow: 0px 0px 0px 4px #c0d9ff;
    margin: 0;
    padding: 0;
}
*/

/** スライダー完コピ **/
input[type=range].slider {
	-webkit-appearance: none;
	width: 100%;
	margin: 0.7px 0;
	padding: 0;
}

input[type=range].slider:focus {
outline: none;
}

/** 横棒 chrome **/
input[type=range].slider::-webkit-slider-runnable-track {
	width: 100%;
	/*height: 25.6px;*/
	height: 2px;
	cursor: pointer;
	/*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
	box-shadow: 0px 0px 0px #629bf3, 0px 0px 0px #629bf3;
	/*background: #c3fa71;*/
	background: #629bf3;
	border-radius: 0px;
	border: 0px solid #010101;
}

/** スライド部分 chrome **/
input[type=range].slider::-webkit-slider-thumb {
	/*box-shadow: 0px 0px 1px #c3fa71, 0px 0px 0px #3f5c7c;*/
	box-shadow: 0px 0px 1px #ffffff, 0px 0px 0px #ffffff;
	border: 0px solid #c3fa71;
	/*height: 27px;
	width: 18px;*/
	height: 22px;
	width: 22px;
	border-radius: 50%;
	/*background: green;*/
	background: #08118a;
	cursor: pointer;
	-webkit-appearance: none;
	/*margin-top: -0.7px;*/
	margin-top: -10px;
}

input[type=range].slider:focus::-webkit-slider-runnable-track {
	/*background: #cbfb84;*/
	background: #629bf3;
}

/* スライド線 firefox */
input[type=range].slider::-moz-range-track {
	width: 99%;
	/*height: 25.6px;*/
	height: 16px;
	cursor: pointer;
	/*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
	box-shadow: 0px 0px 0px #629bf3, 0px 0px 0px #629bf3;
	/*background: #c3fa71;*/
	background: #629bf3;
	/*border-radius: 0px;*/
	border-radius: 30px;
	border: 0px solid #010101;
}

/* スライド操作 firefox */
input[type=range].slider::-moz-range-thumb {
	/*box-shadow: 0px 0px 1px #c3fa71, 0px 0px 0px #3f5c7c;*/
	box-shadow: 0px 0px 1px #ffffff, 0px 0px 0px #ffffff;
	border: 0px solid #c3fa71;
	height: 18px;
	width: 18px;
	/*border-radius: 0px;*/
	border-radius: 50%;
	/*background: #3fc2c9;*/
	background: #08118a;
	cursor: pointer;
}

/* スライド中線 IE */
input[type=range].slider::-ms-track {
	width: 99%;
	/*height: 25.6px;*/
	height: 16px;
	cursor: pointer;
	background: transparent;
	border-color: transparent;
	color: transparent;
}

/* スライドデータ以上 IE */
input[type=range].slider::-ms-fill-lower {
	/*background: #334a64;*/
	border: 0px solid #010101;
	border-radius: 30px;
	/*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
	box-shadow: 0px 0px 0px #629bf3, 0px 0px 0px #629bf3;
	background: #629bf3;
}
/* スライドデータ未満 IE */
input[type=range].slider::-ms-fill-upper {
	/* background: #c3fa71; */
	border: 0px solid #010101;
	border-radius: 50px;
	/*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
	box-shadow: 0px 0px 0px #629bf3, 0px 0px 0px #629bf3;
	background: #629bf3;
}

/* スライド操作 IE */
input[type=range].slider::-ms-thumb {
	/*box-shadow: 0px 0px 1px #c3fa71, 0px 0px 0px #3f5c7c;*/
	box-shadow: 0px 0px 1px #ffffff, 0px 0px 0px #ffffff;
	border: 0px solid #c3fa71;
	/*height: 27px;
	width: 18px;*/
	/*border-radius: 0px;*/
	/*background: #3fc2c9;*/
	background: #08118a;
	cursor: pointer;
	/*height: 25.6px;*/
	height: 18px;
	width: 18px;
	border-radius: 50%;
	margin-top: 0px;
}

/* スライド中　スライドデータ以上 IE */
input[type=range].slider:focus::-ms-fill-lower {
	/*background: #c3fa71;*/
	background: #629bf3;
}

/* スライド中　スライドデータ未満 IE */
input[type=range].slider:focus::-ms-fill-upper {
	/*background: #cbfb84;*/
	background: #629bf3;
}
#sld-wrapper {
padding: 0px 7px;
}
div#sld-wrapper ul.sld-scale {
	padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 5px;
}

/* IE */
@media all and (-ms-high-contrast: none){
	div#sld-wrapper ul.sld-scale {
		margin-top: 0px;
	}
}

/* Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0){
	div#sld-wrapper ul.sld-scale{
		margin-top: 0px;
	}
}

/* FireFox */
@-moz-document url-prefix (){
	div#sld-wrapper ul.sld-scale {
		margin-top: -25px;
	}
}

.sld-scale01 li {
width: 10%;
float: left;
height: 10px;
position: relative;
padding-left: 0px;
box-sizing: border-box;
}
.sld-scale01 li:after {
content: '';
width: 1px;
height: 10px;
background-color: #999;
position: absolute;
}
.sld-scale01 li:last-child {
border-right: 1px solid #999;
}
.sld-scale02 li {
width: 9.9%;
float: left;
height: 10px;
position: relative;
padding-left: 0px;
box-sizing: border-box;
/*font-size: 15px;*/
font-size: 13px;
font-weight: bold;
/*left: -3px;*/
left: -8px;
}
.sld-scale02 li:after {
height: 10px;
background-color: #999;
position: absolute;
text-align: center;
}
.sld-scale02 li:nth-child(11n) {
width: 1%;
float: left;
height: 10px;
position: relative;
padding-left: 0px;
box-sizing: border-box;
}

div.sld-scale03 {
	margin-top: 25px;
    font-size: 13px;
}

/*** ラジオ ***/
input[type="radio"] {
	display: none;
}

input[type="radio"] + label {
	position: relative;
    padding: 5px 18px;
    margin-bottom: 0px;
    font-weight: normal;
}

input[type="radio"] + label::before{
 	content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: -2px;
    width: 17px;
    height: 17px;
    border: 1px solid #999;
    border-radius: 50%;
}

input[type="radio"]:checked + label::after{
	content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 0px;
    width: 13px;
    height: 13px;
    background: #013594;
    border-radius: 50%;
}

input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	position: relative;
    padding: 5px 18px;
    margin-bottom: 0px;
    font-weight: normal;
}

input[type="checkbox"] + label::before{
 	content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: -3px;
    width: 16px;
    height: 16px;
    border: 1px solid #999;
    border-radius: 5px;
}

input[type="checkbox"]:checked + label::after{
	content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 1px;
    width: 9px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid #013594;
    border-right: 3px solid #013594;
}

input[type="text"] {
    border-radius: 3px;
    border: solid 1px #c2c2c2;
    font-size: 16px;
}

select {
	height: 30px;
    min-width: 50%;
    border-radius: 5px;
    border: solid 1px #c2c2c2;
}

textarea {
	width: 100%;
    height: 70px;
    border-radius: 5px;
    border: solid 1px #c2c2c2;
    resize: none;
}

input::placeholder {
	color: #c2c2c2;
  }
  
  /* IE */
  input:-ms-input-placeholder {
	color: #c2c2c2;
  }
  
  /* Edge */
  input::-ms-input-placeholder {
	color: #c2c2c2;
  }