@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@500;700&display=swap");
@media (min-width: 1000px) {
  .spOnly {
    display: none;
  }
}
@media (max-width: 999px) {
  .pcOnly {
    display: none;
  }
}
/* ===================================================================
	Modern Reset + Base
=================================================================== */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  color: #CCCCCC;
  background-color: #131419;
  background-repeat: repeat;
  text-align: center;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1000px) {
  body {
    background-image: url("/img/bg.jpg");
    background-attachment: fixed;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg,
video,
canvas {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

blockquote,
p,
pre,
ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  background-color: transparent;
  border: 0;
}

a {
  color: inherit;
}

a,
button {
  transition: opacity 0.2s;
}

/* ===================================================================
	Link
=================================================================== */
a {
  text-decoration: none;
}
a:link {
  color: #2FAAFB;
  text-decoration: underline;
}
a:visited {
  color: #8590FF;
  text-decoration: underline;
}
a:hover, a:active {
  color: #ff4080;
  text-decoration: underline;
}

a:hover img {
  opacity: 0.75 !important;
}

a.btn:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}
