/* =====================================
   リセットCSS
===================================== */
:root {
  --base-width-sp: 375;
  --base-width-pc: 1440;
  --base_font_size-sp:16px;
  --base_font_size-sp:20px;
}

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

html, body {
  height: 100%;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: calc((100vw / var(--base-width-sp)) * var(--base-font-size-sp));
  line-height: 1.5;
  background-color: #fff;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

h1, h2, .english-heading {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

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

input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], textarea, select {
  padding: 0px;
  border: none;
  width: 100%;
  color: #000000;
}

@media screen and (min-aspect-ratio: 1/1) {
  html {
    font-size: calc((100vw / var(--base-width-pc)) * var(--base-font-size-pc));
  }
}