@charset "UTF-8";
/* ==================================================
	common
================================================== */
/* elements
-------------------------------------------------- */
form {
  display: inline;
}

label {
  vertical-align: middle;
}

input,
select, optgroup, option,
textarea {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0; 
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
}
input::placeholder {
  color: #8c8c8c;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  input,
  select, optgroup, option,
  textarea {
    font-size: 14px;
  }
}
/* ========== end △ */

input[type=text], input[type=email], input[type=search] {
  width: 100%;
  padding: 0.5rem 1rem;
  height: 4rem;
  border: 1px solid #000;
}
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: #ddd !important;
  -webkit-transition: none !important;
  transition: none !important;
  cursor: default;
}

textarea {
  width: 100%;
  height: 8em;
  padding: 0.5rem 1rem;
  border: 1px solid #000;
  resize: none;
  overflow: hidden;
}