*, *::before, *::after {
    min-width: 0px;
    min-height: 0px;
  }
  body {
    font-family: var(--font-sans);
    color: var(--black);
    background-color: var(--white);
    background-image: var(--paper-white);
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  #root {
    max-width: 1920px;
    margin: 0 auto;
  }
  p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 400;
  }
  img, iframe {
    max-width: 100%;
  }
  iframe {
    border: none;
    box-shadow: none;
  }
  a, a:hover {
    color: var(--black);
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .button {
    position: relative;
    appearance: none;
    cursor: pointer;
    box-shadow: none;
    border: 0;
    outline: none;
    transition: opacity 200ms ease, transform 200ms ease;
    background-color: var(--dark-green);
    color: var(--white);
    font-size: 0.875rem;
    text-align: center;
    letter-spacing: 0.04em;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1rem;
    min-width: 200px;
  }
  .button--outline {
    background-color: transparent;
    border: 1px solid var(--white);
  }
  .button--outline.button--black {
    color: var(--black);
    border-color: var(--black);
  }
  .button--indigo {
    background-color: var(--indigo);
  }
  .button > p {
    flex: 1 0 0%;
  }
  .button:hover {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transform: scale(0.98);
  }
  .button--outline.button--black:hover {
    color: var(--black);
  }
  .list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1.5rem;
    list-style: disc outside none;
  }
  .list>p {
    margin: 0;
    display: list-item;
  }
  .list.ordered-list {
    list-style: decimal outside none;
  }
  .webgene-pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
  }
  .webgene-pagination ul li a {
    display: inline-block;
    width: 3rem;
    line-height: 3rem;
    text-align: center;
    border: 1px solid var(--black);
  }
  .webgene-pagination ul li a:hover {
  }
  .webgene-pagination ul li.selected a {
    background: var(--indigo);
    border: 0px;
    color: var(--white);
  }
  .webgene-pagination ul li.selected a:hover {
    color: var(--white);
  }
  .thumbnail {
    position: relative;
    padding-top: 56.25%;
  }
  .thumbnail img, .thumbnail:empty::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .thumbnail:empty::before {
    content: '';
    background-image: url('/system_panel/uploads/images/ogp.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .article-body>p {
    margin: 1em 0;
  }
  .article-body>h1,
  .article-body>h2,
  .article-body>h3,
  .article-body>h4,
  .article-body>h5,
  .article-body>h6 {
    margin: 2em 0 1em;
  }
  .article-body>*:first-child {
    margin-top: 0;
  }
  .article-body>*:last-child {
    margin-bottom: 0;
  }
  .article-body a, .article-body a:hover {
    color: var(--blue);
    text-decoration: underline;
  }
  .item-images a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .footer-nav__item::before,
  .footer-nav a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    background-color: var(--white);
  }

  .footer-nav__item-black:before,
  .footer-nav--black a::before{
    background-color: var(--black)
  }

  .footer-nav a,
  .footer-nav__item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .footer-nav__child a::before {
    content: none;
  }
  .footer-nav__child a {
    font-size: 0.75rem;
  }
  .footer-nav a > p {
    flex: 1 0 0%;
  }
  .news-list .webgene-blog {
    display: grid;
    gap: 2.5rem;
  }
  @media screen and (min-width: 768px) {
    .footer-nav a,
    .footer-nav__item {
      font-size: 1.125rem;
    }
    .footer-nav__child a {
      font-size: 1rem;
    }
    .news-list .webgene-blog {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .news-list .webgene-pagination {
      grid-column: span 2 / span 2;
    }
  }
  @media screen and (min-width: 1200px) {
    .footer-nav a,
    .footer-nav__item {
      font-size: 1.125rem;
    }
    .footer-nav__child a {
      font-size: 1rem;
    }
    .news-list .webgene-blog {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .news-list .webgene-pagination {
      grid-column: span 3 / span 3;
    }
  }
  
  .blur {
    background-color: rgba(255, 255, 255, 75%);
    backdrop-filter: blur(24px);
  }
  .brackets {
    position: relative;
  }
  .brackets::before, .brackets::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    border-style: solid;
    border-color: var(--dark-green);
    border-top-width: 3px;
    border-bottom-width: 3px;
    top: 0;
    bottom: 0;
  }
  .brackets::before {
    border-left-width: 3px;
    border-right-width: 0px;
    left: 0;
  }
  .brackets::after {
    right: 0;
    border-right-width: 3px;
    border-left-width: 0px;
  }
  .swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    overflow-x: auto;
  }
  .swiper:not(.swiper-initialized) .swiper-slide {
    width: 100%;
    min-width: 100%;
  }
  .swiper-pagination {
    position: relative;
  }
  .swiper-pagination-bullet {
    background-color: var(--light-gray);
    opacity: 1;
  }
  .swiper-pagination-bullet-active {
    background-color: var(--indigo);
  }
  .products__section-title {
    bottom: -8px;
    right: 0;
    position: absolute;
    font-size: 40px;
    font-family: var(--font-display);
    font-weight: 800;
    color: rgba(255 255 255 / 30%);
    text-align: right;
    letter-spacing: 0;
    line-height: 1;
  }
  @media screen and (min-width: 768px) {
    .products__section-title {
      bottom: 40px;
      right: 40px;
      font-size: 60px;
    }
  }
  .faq-item {
    border: 1px solid var(--light-gray);
    border-radius: 1rem;
    align-self: flex-start;
  }
  .faq-item__title {
    cursor: pointer;
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
  .faq-item__content {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  
  html.has_js body {
    opacity: 0;
    pointer-events: none;
  }
  html.has_js::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    border: 2px solid var(--light-gray);
    border-top-color: var(--indigo);
    border-radius: 9999px;
    z-index: 99;
    animation: rotate 600ms linear infinite;
    opacity: 1;
    pointer-events: none;
    transition: opacity 1500ms ease;
  }
  body {
    opacity: 0;
    animation: visible 300ms 100ms linear forwards;
  }
  @keyframes visible {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  html.loaded body {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 1500ms ease;
    animation: none;
  }
  html.has_js.loaded::before {
    opacity: 0;
  }
  @keyframes rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  