@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  font-family: "Noto Sans JP", Helvetica;
  font-weight: 400;
}
html,
body {
  margin: 0px;
  height: 100%;
}
html { 
  scroll-behavior: smooth;
}
body {
  width: 100%;
  background-color: #ffffff;
}
.sp {
  display: block!important;
}
.pc {
  display: none!important;
}
@media screen and (min-width:820px){
  .sp {
    display: none!important;
  }
  .pc {
    display: block!important;
  }
}

/* a blue color as a generic focus style */
/*
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
*/
a {
  text-decoration: none;
}