@charset "UTF-8";

html {
  font-family: 'Noto Sans JP', sans-serif;
  color: #444;
  font-size: 62.5%;
  line-height: 1;
  font-weight: 400;
}

html * {
  font-weight: inherit;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

a,
button,
input[type="submit"] {
  outline: none;
  transition: opacity .3s, color .3s, background-color .3s, border-color .3s, transform .3s;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sp {
  display: none;
}

/*--------------------------endPC--------------------------------*/

@media screen and (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641vw;
  }

  body {
    font-size: 4.1026vw;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/*--------------------------endSP--------------------------------*/