@charset"utf-8";
/* 全体をボックスサイズに収める */
*, *::before, *::after {
  box-sizing: border-box;
}
/* フォーム要素の基本スタイルをリセット */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  resize: none;
}
/* ボタン系はカーソルとデフォルト動作 */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  cursor: pointer;
  background-color: transparent;
}
/* テキスト系入力のボーダーや背景を明示 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 0.5em;
}
/* placeholder のスタイルもリセット */
::placeholder {
  color: #999;
  opacity: 1;
}
/* iOS特有の問題への対処 */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
/* placeholderのリセット（iOS向け） */
::placeholder {
  color: #999;
  opacity: 1;
}
::-webkit-input-placeholder {
  color: #999;
}