@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
body{
    line-height: 1;
    font-family: "Noto Sans JP", monospace,"游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
}
* {
  margin: 0;
  padding: 0;
}
a:focus, *:focus, select:focus { outline:none; }

h1, h2, h3, h4, h5 {
  margin: 0;
}

ol, ul {
  list-style: none;
}
img {
  border: none;
  /* chrome逕ｨ 1px縺壹ｌ隗｣豸� */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
    opacity: 0.8;
    transition: .3s; 
}

select {
  color: #000;
}

.pc {
    display: block;
}
.sp {
    display: none;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
}
.sp {
    display: block;
}
}