input,
textarea,
button {
  color: #062037;
  line-height: 1.5;
  background: #fff;
  min-height: 23px;
  padding: 3px;
  /* -webkit-appearance: none; */
  /* -moz-appearance: none;
  appearance: none; */
  border: 1px solid #bfcfdd;
  border-radius: 0;
  box-sizing: border-box;
}
input:focus,
textarea:focus,
button:focus {
  outline: #9eb6cb solid 1px;
}
input[type=date] {
  padding: 2px 3px;
}

input[name=dummy] {
  width: 0 !important;
  height: 0;
  min-height: 0;
  padding: 0;
  border: none;
  float: left;
  visibility: hidden;
}

/*-------------------------------
/* セレクト
*/
select {
  line-height: 1.5;
  display: block;
  position: relative;
  z-index: 3;
  background: transparent;
  width: 100%;
  height: 100%;
  padding: 3px 15px 3px 3px;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #bfcfdd;
  border-radius: 0;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

.select {
  display: inline-block;
  position: relative;
  background: #fff;
}
.select::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 4px 2.5px 0 2.5px;
  border-color: #aec3d4 transparent transparent transparent;
}
.select.-multiple::before {
  display: none;
}
.search_table .select {
  min-width: 120px;
}
@media screen and (max-width: 768px) {
  .search_table .select {
    width: 100%;
  }
}

/*-------------------------------
/* タブメニュー
*/
.tabmenuarea {
  margin-bottom: -5px;
  letter-spacing: -0.4em;
}
.tabmenuarea input {
  display: none;
}
.tabmenuarea * {
  letter-spacing: normal;
}
.tabmenuarea label, .tabmenuarea a {
  color: #778083;
  line-height: 1.5;
  display: inline-block;
  background: #fff;
  min-width: 75px;
  padding: 5px 8px;
  margin-bottom: 5px;
  margin-right: 5px;
  border: 1px solid #778083;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tabmenuarea label, .tabmenuarea a {
    /* min-width: unset; */
    /* width: calc(50% - 5px); */
  }
}
.tabmenuarea label:has(:checked) {
  color: #fff;
  background: #9bacb1;
  border: 1px solid #778083;
}

/*-------------------------------
/* チェックボックス
*/
form input[type=checkbox] {
  display: inline-block;
  margin-right: 8px;
  /* transform: scale(1.5); */
  accent-color: #3280ab;
  width: 20px;
  height: 10px;
}
.check_label{
  color: #3280ab;
}
/*-------------------------------
/* ラジオ
*/
 /* input[type="radio"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
} */
input[type="radio"] {
  position: relative;
  width: 22px;
  height: 12px;
  border: 1px solid #6b6666;
  border-radius: 50%;
  vertical-align: -2px;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4faeda;
  content: '';
} 

/**
 number
*/
input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
  -webkit-appearance: none; 
  -moz-appearance: textfield !important;
  margin: 0; 
}
input[type="number"] { 
  -moz-appearance:textfield; 
} 

.error {
  color: #e94d4d;
}
.errorinput {
  background: #f9d1d1 !important;
  outline: 1px solid #e94d4d !important;
}
.errorbox {
  background: #f9d1d1 !important;
  padding: 5px;
}
.error.select {
  background: #f9d1d1 !important;
  outline: 1px solid #e94d4d !important;
}
::-moz-placeholder {
  color: #7c9dba;
  font-weight: 400;
}

::placeholder {
  color: #7c9dba;
  font-weight: 400;
}

::-moz-placeholder {
  color: #7c9dba;
  opacity: 1;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: #7c9dba;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #7c9dba;
  font-weight: 400;
}
