@charset "UTF-8";
/* ==================================================
	common
================================================== */
/* elements
-------------------------------------------------- */
form {
  display: inline;
}

label {
  vertical-align: middle;
}

input,
select, optgroup, option,
textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  font-family: "IBM Plex Sans JP", sans-serif;
  white-space: pre-wrap;
  border: none;
  color: #848789;
}
select {
  width: 100%;
  background: #fff;
  height: 4rem;
  padding: 0.3rem 2rem;
}
input {
  border: none;
  padding: 0.3rem 2rem;
  background: #fff;
}
input[type=text] {
    width: 100%;
    background: #fff;
    height: 4rem;
    padding: 0.3rem 2rem;
}
input[type=email] {
    width: 100%;
    background: #fff;
    height: 4rem;
    padding: 0.3rem 2rem;
}
input[type=radio] {
  margin-right: 0.3em;
  padding: 0;
}
input[type=checkbox] {
  margin-right: 0.3em;
  padding: 0;
}
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
}
input[type=submit][disabled] {
  background-color: #ddd !important;
  -webkit-transition: none !important;
  transition: none !important;
  cursor: default;
}
input::placeholder, textarea::placeholder {
  color: #4d4d4d;
}
textarea {
  width: 100%;
  padding: 0.3rem 2rem;
  resize: vertical;
  overflow: auto;
  background: #fff;
}
