*, *::before, *::after {
  min-width: 0px;
  min-height: 0px;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background-color: var(--white);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 18px;
  }
}

#root {
  max-width: 1920px;
  margin: 0 auto;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

img, iframe {
  max-width: 100%;
}

iframe {
  border: none;
  box-shadow: none;
}

a, a:hover {
  color: var(--black);
}

[id] {
  scroll-margin-top: 3.75rem;
}

.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;
  border-radius: 1.25rem;
  background-color: var(--orange);
  color: var(--white);
  padding: 1.25rem 2rem;
  font-weight: 700;
  line-height: 1;
  transition: opacity 150ms ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.button:hover {
  opacity: 0.8;
  text-decoration: none;
  color: var(--white);
}
.button--gray {
  background-color: var(--light-gray);
  color: var(--black);
}
.button--gray:hover {
  color: var(--black);
}
.button--yellow {
  background-color: var(--yellow);
  color: var(--black);
}
.button--yellow:hover {
  color: var(--black);
}
.button--red {
  background-color: var(--red);
}
.button--navy {
  background-color: var(--navy);
}
.button--small {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 1.125rem;
  }
}

.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;
}

.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;
  background-color: var(--light-yellow);
  border-radius: 9999px;
  width: 3rem;
  line-height: 3rem;
  text-align: center;
  font-weight: 700;
}

.webgene-pagination ul li a:hover {}

.webgene-pagination ul li.selected a {
  background-color: var(--yellow);
}

.webgene-pagination ul li.selected a:hover {}

.thumbnail {
  position: relative;
  padding-top: 66.6%;
  background-color: var(--white);
}

.thumbnail img, .thumbnail:empty::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnail:empty::before {
  content: "";
  background-image: url("/system_panel/uploads/images/ogp.png");
  background-repeat: no-repeat;
  background-size: cover;
  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;
}

.footer-nav a {
  transition: opacity 150ms ease;
}
.footer-nav a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.footer-title {
  position: absolute;
  bottom: -0.625rem;
  left: 0;
  width: 600%;
  min-width: 600%;
}
.footer-title .swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.footer-title .swiper {
  width: 100%;
}

.shadow-card {
  box-shadow: 0.5rem 0.5rem 0 0 var(--black);
}
.shadow-card--orange {
  box-shadow: 0.5rem 0.5rem 0 0 var(--orange);
}
.shadow-card--sky-blue {
  box-shadow: 0.5rem 0.5rem 0 0 var(--sky-blue);
}
.shadow-card--yellow {
  box-shadow: 0.5rem 0.5rem 0 0 var(--yellow);
}
.shadow-card--green {
  box-shadow: 0.5rem 0.5rem 0 0 var(--green);
}
.shadow-card--red {
  box-shadow: 0.5rem 0.5rem 0 0 var(--red);
}
.shadow-card--navy {
  box-shadow: 0.5rem 0.5rem 0 0 var(--navy);
}

.line-icon-shadow {
  box-shadow: 0px 4px 4px 0px rgba(0 0 0 / 25%)
}

.blog-filter .webgene-blog {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.scrollable-menu {
  max-height: 400px;
  overflow-y: auto;
}
.scrollable-menu::-webkit-scrollbar,
.dialog__body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.scrollable-menu::-webkit-scrollbar-thumb,
.dialog__body::-webkit-scrollbar-thumb {
  border-radius: .25rem;
  background-color: #00000021;
}
.scrollable-menu::-webkit-scrollbar-track,
.dialog__body::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #0000;
}

.blog-list .webgene-blog {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

.section-heading {
  position: relative;
  padding-top: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}
.section-heading::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -90px;
  width: 270px;
  height: 100px;
  background-image: url("/system_panel/uploads/images/section-heading.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.swiper-pagination {
  position: relative;
  z-index: 0;
}
.swiper-pagination-bullet-active {
  background-color: var(--yellow);
}
.services-voices {
  /* z-index: 10; */
  z-index: auto;
}


.services-voices .swiper-wrapper {
  transform: none;
  z-index: unset;
}
.services-voices .swiper-android,
.services-voices .swiper-slide,
.services-voices .swiper-ios
.services-voices .swiper-slide,
.services-voices .swiper-wrapper {
  transform: none;
}
.swiper-button-prev, .swiper-button-next {
  color: var(--orange);
  width: 3rem;
  line-height: 3rem;
  height: 3rem;
  background-color: var(--white);
  border-radius: 9999px;
  border: 1px solid var(--black);
}
.swiper-button-prev, .swiper-button-next {
  display: none;
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 1.125rem;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.15;
}

.gallery .swiper {
  border-radius: 0.75rem;
  overflow: hidden;
}
.gallery .swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  overflow-x: auto;
}
.gallery .swiper:not(.swiper-initialized) .swiper-slide {
  min-width: 100%;
}
.gallery .swiper-pagination {
  position: absolute;
  bottom: 3rem;
  z-index: 10;
}
.gallery .swiper-slide img {
  aspect-ratio: 1 / 1;
}

@media screen and (min-width: 414px) {
  .footer-title {
    width: 480%;
    min-width: 480%;
  }
}
@media screen and (min-width: 768px) {
  .footer-title {
    width: 320%;
    min-width: 320%;
  }
  .blog-list .webgene-blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
  .blog-list .webgene-pagination {
    grid-column: span 2 / span 2;
  }
  .section-heading {
    font-size: 1.75rem;
  }
  .section-heading::before {
    top: -32px;
    right: -110px;
    width: 320px;
    height: 118.5px;
  }
  .swiper-button-prev, .swiper-button-next {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .footer-title {
    width: 200%;
    min-width: 200%;
  }
  .scrollable-menu {
    max-height: calc(100vh - 5rem);
  }
  .blog-list .webgene-blog {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .blog-list .webgene-pagination {
    grid-column: span 1 / span 1;
  }
  .section-heading {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer-title {
    width: 150%;
    min-width: 150%;
  }
  .blog-list .webgene-blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-list .webgene-pagination {
    grid-column: span 2 / span 2;
  }
  .section-heading {
    font-size: 2.5rem;
  }
  .section-heading::before {
    top: -40px;
    right: -132px;
    width: 398px;
    height: 148px;
  }
}




