@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: "Zen Kaku Gothic New", sans-serif;
  border: none;
}
select {
  width: 100%;
  background: #f0f0f0;
  height: 4.5rem;
  padding: 1rem 2rem;
}
input {
  border: none;
  padding: 1rem 2rem;
  background: #f0f0f0;
}
input[type=text] {
    width: 100%;
    background: #f0f0f0;
    height: 4.5rem;
    padding: 1rem 2rem;
}
input[type=email] {
    width: 100%;
    background: #f0f0f0;
    height: 4.5rem;
    padding: 1rem 2rem;
}
input[type=radio] {
  margin-right: 0.3em;
}
input[type=checkbox] {
  margin-right: 0.3em;
}
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: #fff !important;
  -webkit-transition: none !important;
  transition: none !important;
  cursor: default;
}
input::placeholder, textarea::placeholder {
  color: #9D9D9D;
  font-weight: 500;
}
textarea {
  width: 100%;
  padding: 1rem 2rem;
  resize: vertical;
  overflow: auto;
  background: #f0f0f0;
}
