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: "Roboto", 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 {
  font-size: 100%;
  letter-spacing: 0.18em;
  line-height: 1.4;
}
h3, h4, h5, h6, p {
  font-size: 100%;
  line-height: 2;
}
li, div, span {
  font-size: 100%;
  line-height: 2;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.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-blue {
  color: #2B90D1;
}
.bg-blue {
  background-color: #2B90D1;
}
.bg-gray {
  background-color: #E6ECF3;
}
.text-en {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
}
.char {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.char.is-show {
  opacity: 1;
  transform: translateY(0);
}