@charset "UTF-8";
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

picture {
  display: block;
}

table {
  -webkit-text-size-adjust: 100%;
}

html {
  color: #000000;
  font-family: "Noto Sans", sans-serif;
  /* remを10pxをベースに */
  font-size: 62.5%;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  height: 100%;
  vertical-align: bottom;
  width: 100%;
}

@media screen and (max-width: 350px) {
  img {
    pointer-events: none;
  }
}
a {
  cursor: pointer;
  text-decoration: none;
}

/* iPhoneのスタイルをリセットするリセットcss */
input[type=submit],
input[type=reset],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  border-radius: 10px;
  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;
}

*:focus {
  outline: none;
}

/* =======================================
ボタンタグcssリセット
======================================= */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}
/*# sourceMappingURL=sourcemaps/reset.css.map */