@charset "UTF-8";
/* CSS Document */
/* 色 */
/* フォント */
/* テキストサイズ */
*, *:before, *:after {
  -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%;
  scroll-behavior: smooth;
}

body {
  background: #111;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  min-width: 100%;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  word-wrap: break-word;
  font-display: swap;
}
@media screen and (width < 768px) {
  body {
    font-family: "Jost", sans-serif;
  }
}

div, a, p, h1, h2, h3,
li, dt, dd {
  color: #fff;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-weight: 300;
  line-height: 1.875;
  letter-spacing: 0;
}

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

em, i {
  font-style: normal;
}

strong, b {
  font-weight: normal;
}

u {
  text-decoration: none;
}

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

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

address {
  font-style: normal;
}