/* 新レイアウトのみ */
/*
 * Reset
 */
*, *:before, *:after {
  box-sizing: border-box;
}
body, div, p, h1, h2, h3, h4, h5, h6, span, ul, li, ol, img, table, tr, td, hr, a, address, nav, header, footer, section, article, figure, picture, dl, dt, dd {
  margin: 0;
  padding: 0;
}
body, p, h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
small, i {
  font-weight: normal;
  font-style: normal;
}
img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
ul, li {
  list-style: none;
}
button {
  margin: 0;
  padding: 0;
}
form {
  margin: 0;
}

/*
 * Defaults
 */
html {
  /* font-size: 62.5%; */
  font-size: calc(var(--ref-l) * 1px);
  touch-action: manipulation;
  scroll-behavior: smooth;
  scroll-padding-top: 0 !important;
}
@media screen and (max-width: 1400px) {
  html {
    font-size: calc(var(--ref-m) * 1px);
  }
}
@media screen and (max-width: 1023px) {
  html {
    scroll-padding-top: 0 !important;
    font-size: calc(var(--ref-s) * 1px);
  }
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media screen and (max-width: 1023px) {
  body::after {
    content: '';
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(90 / var(--ref-s) * 1rem);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  body._scrolled_::after {
    opacity: 1;
  }
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  display: block;
  border: none;
  width: 100%;
  height: 1px;
  background-color: #D6D6D6;
  margin: auto;
}

a {
  /* color: var(--color-text); */
  color: currentColor;
  font-weight: inherit;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}



/*  */

