/* Style text input */
input[type="text"],
input[type="date"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="textarea"],
input[type="email"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size:16px;
  margin-bottom: 10px;
}

.short{
  width:150px !important;
}

select {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size:120%;
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size:16px;
  margin-bottom: 10px;
}

  input[type="checkbox"] {
      margin-right: 5px;
}


input[type="radio"] {
  width: 20px; /* ラジオボタンの幅 */
  height: 20px; /* ラジオボタンの高さ */
  vertical-align: middle;
  margin-right:5px;
}



/* Style submit button */
input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
}

/* Change submit button on hover */
input[type="submit"]:hover {
  background-color: #0056b3;
}

::placeholder {
  color: #CDD6DD;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #CDD6DD;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #CDD6DD;
}

textarea{
    width: 100% !important;
    height: 100px !important;
}
.select {
    border: solid 1px #CCC;
    border-radius: 3px;
    vertical-align: middle;
    font-size: 120%;
	padding: 10px 30px 10px 10px
}
