html {
  font-size: 62.5%;
  color: #222;
}

@media(max-width:1090px) {
  html {
    font-size: calc(10 / 1090* 100vw);
  }
}

@media(max-width:768px) {
  html {
    font-size: calc(10 / 768* 100vw);
  }
}

body {
  font-family: 'Shippori Mincho B1', serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.new-line--sp {
  display: none;
}

@media(max-width:768px) {
  .new-line--pc {
    display: none;
  }
}

@media(max-width:480px) {
  .new-line--sp {
    display: block;
  }
}