/* ------------------------------------------------------
  reset.css
------------------------------------------------------ */

* {
	margin: 0;
  padding: 0;
	box-sizing: border-box;
}

* ,
::before,
::after {
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body {
	font-size: 62.5%;
	-webkit-overflow-scrolling: touch;
}

html {
	overflow-y: scroll;
	cursor: default;
}

body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-print-color-adjust: exact;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

ol, ul, li {
	list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td, th {
  padding: 0;
}

blockquote {
	quotes: none;
}

blockquote:before, blockquote:after {
	content: '';
	content: none;
}

a {
	color: inherit;
	background-color: transparent;
	text-decoration: none;
	-webkit-text-decoration-skip: objects;
	cursor: pointer;
}

a:active, a:hover {
	outline-width: 0;
}

a:focus, *:focus {
	outline: none;
}

img {
  border-style: none;
	vertical-align: bottom;
}

input[type="text"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="number"],
button, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

select {
	outline:none;
	text-indent: 0.01px;
	text-overflow: '';
	background: none transparent;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}
select option {
	background-color: #fff;
}
select::-ms-expand {
	display: none;
}
select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #aaa;
}


input {
  vertical-align: middle;
}

button{
	text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"], [role="button"] {
  cursor: pointer;
}

/* IEのinput要素に出てくるマークを消去 */
input::-ms-clear {
  visibility: hidden;
}

/* IEのinput要素に出てくるマークを消去 */
input::-ms-reveal {
  visibility: hidden;
}