@charset "UTF-8";

/* Reset box-model
------------------------------------------ */
* {
  box-sizing: border-box;
}
::before,
::after {
  box-sizing: inherit;
}
html {
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  font-size: 62.5%;
  font-size: 10px;
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}
body {
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", "Segoe UI", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", YuGothic, Verdana, Arial, "メイリオ", Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
@media screen and (max-width:768px) {
  html {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  body {
    min-width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
a:focus { outline: none; }
img {
  vertical-align: top;
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
}
ul, ol { list-style: none; }

/* Form */
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form input[type="password"],
form input[type="search"],
form input[type="submit"],
form input[type="reset"],
form input[type="button"],
form input[type="url"],
form select,
form textarea,
button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
	border: none;
	border-radius: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
	font-size: 100%;
}
form select,
form input[type="checkbox"],
form input[type="radio"] {
  margin: 0;
  padding: 0;
}
::-webkit-input-placeholder { color: #bcbcbc; }
::-moz-placeholder { color: #bcbcbc; }
:-ms-input-placeholder { color: #bcbcbc; }

/* Measures Against Float */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}