html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    word-break: break-all;
}
body {
    transition: 1.4s;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
*, *::before, *::after {
    box-sizing: border-box;
}
a {
    color: unset;
    text-decoration: none;
}
li {
    list-style: none;
}
h1, h2, h3, h4, h5, h6, p, li, div, span {
    font-size: 100%;
    letter-spacing: 0.08em;
    line-height: 1.6;
    color: #4a4a4a;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.jus-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.loading {
  opacity: 0;
}
.scroll {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 2s, opacity 2s, visibility 2s;
}
.scroll-left {
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 2s, opacity 2s, visibility 2s;
}
.scroll-right {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 2s, opacity 2s, visibility 2s;
}
.fadein {
  transform: translateX(0);
  opacity: 2;
  visibility: visible;
}
.text-gradient_green {
  background: linear-gradient(90deg, #0D9A53 0%, #29D980 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-white {
  color: #fff;
}
.c-navy {
  color: #002130;
}
.bg-beige {
  background-color: #F0E4D2;
}
.bg-red {
  background-color: #E97467;
}
.text-en {
  font-family: "Lato", sans-serif;
  font-style: normal;
}
.text-serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}