@import url(//fonts.googleapis.com/css?family=Roboto:300,400,700,900);
@import url(//fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,700,900&display=swap&subset=japanese);
* {
  font-family: "Roboto", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Arial",
    sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
html {
  font-size: 16px;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
}
body {
  font-size: 1rem;
  line-height: 1.5;
  color: transparent;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: #f4f3f3;
}

/**
 * Iframe
 */
iframe {
  display: none;
}

/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
  color: transparent;
  text-decoration: none;
  cursor: pointer;
}
a:active,
a:hover {
  outline: 0;
  color: transparent;
}
input,
textarea,
button,
select {
  color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
}
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::placeholder,
textarea::placeholder {
  color: transparent;
}
button:focus {
  outline: 0;
}
ul {
  list-style: none;
}
ol {
  list-style-type: decimal;
  list-style-position: inside;
}

/**
 * Forms
 */
button,
.button {
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background: transparent;
  color: transparent;
  border: none;
  user-select: none;
  cursor: pointer;
}
button:hover,
.button:hover {
  background-color: transparent;
}
.button {
  display: block;
}

/**
 * Images
 */
img {
  display: none;
  /**
   * Remove border when inside a element in IE 8/9/10.
   */
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

