@charset "utf-8";
/* CSS Document */

input,select {
	border: 0;
	padding: 3px;
	margin: 2px;
	font-size: 14px; 
	font-family:'Lato','Noto Sans JP','游ゴシック Medium','游ゴシック体','Yu Gothic Medium',YuGothic,'ヒラギノ角ゴ ProN','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	background-color: #FFFFFF;
	color: #333; 
	border: solid 1px #999999;
	-webkit-appearance:none;
}

input[type="checkbox"]{
width: 18px;
height: 18px;
margin-top: 3px;
position:relative;
vertical-align: middle;
background-color: #FFFFFF;
-webkit-appearance:none;
}

input[type="radio"]{
width: 18px;
height: 18px;
margin-top: 3px;
position:relative;
vertical-align: middle;
background-color: #FFFFFF;
-webkit-appearance:none;
}

input:disabled {
opacity:.5;
cursor:auto;
pointer-events:none;
}

input.sbmt {
	padding: 10px;
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2); 
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2); 
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 1px; 
	-moz-border-radius: 1px; 
	border-radius: 1px;
	-webkit-appearance:none;
}

.radio-input{
  display: none;
}
.radio-input + label{
  padding-left: 25px;
  position:relative;
  margin-right: 20px;
  line-height:25px;
}
.radio-input + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio-input:checked + label{
  color: #000;
}
.radio-input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
}

.checkbox-input{
  display: none;
}
.checkbox-parts{
  position:relative;
  padding-left:26px;
  line-height:30px;
}
.checkbox-parts::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
}
.checkbox-input:checked + .checkbox-parts{
  color: #000;
}
.checkbox-input:checked + .checkbox-parts::after{
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 8px;
  width: 5px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}




input,select {
	border: 0;
	padding: 3px;
	margin: 2px;
	font-size: 13px; 
	font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serifArial, sans-serif; 
	color: #333; 
	border: solid 1px #999999;
}

/* checkbox チェック背景 */
input[type="checkbox"]::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px); /* 10px = 20 / 2 px */
    left: 10px;
    display: block;
    border-radius: 4px;
}
/* checkbox チェックマーク */
input[type="checkbox"]::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 12px;
    left: 5px;
    top: calc(50% - 8px);
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg); /* 回転させてチェックマーク風にする */
    display: block;
    opacity: 0; /* チェック前は透明にしておく */
}

/* hoverの挙動 */
input[type="checkbox"]:hover {
    background-color: #fffaaa;
    cursor: pointer;
}
input[type="checkbox"]:hover::before {
}
input[type="checkbox"]:hover::after {
}

/* check後、色を変えたりする */
input[type="checkbox"]:checked {
}
input[type="checkbox"]:checked::before {
}
input[type="checkbox"]:checked::after {
    opacity: 1; /*　透明化を解除 */
}

input[type="radio"]{
width: 30px;
height: 30px;
margin-top: 1px;
position:relative;
vertical-align: middle;
background-color: #2F353A;
border: none;
}
	
input.sbmt {
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2); 
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2); 
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px; 
	border-radius: 3px;
}

@media only screen and (min-width: 1024px) {
input,select {
	border: 0;
	padding: 3px;
	margin: 2px;
	font-size: 13px; 
	font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serifArial, sans-serif; 
	color: #333; 
	border: solid 1px #999999;
	background-color: #FFF;
}

input[type="radio"]{
width: 25px;
height: 25px;
margin-top: 1px;
position:relative;
vertical-align: middle;
background-color: #2F353A;
border: none;
}
}