@charset "UTF-8";
/* CSS Document */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*----------------------------------------------------------------------
//////////■■■■base style■■■■//////////
----------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1499px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 1299px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media screen and (max-width: 1099px) {
  html {
    font-size: 0.9090909091vw;
  }
}
@media screen and (max-width: 999px) {
  html {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.5625vw;
  }
}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  min-width: 100%;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-size: 1.6rem;
}

p,
h2,
h3,
dt,
dd,
div,
li,
a {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 999px) {
  p,
  h2,
  h3,
  dt,
  dd,
  div,
  li,
  a {
    font-size: 2.4rem;
  }
}

a {
  text-decoration: none;
  outline: none;
}

em, strong, b {
  font-style: normal;
  font-weight: normal;
}

img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}