@charset "UTF-8";
.products {
  margin: 128px 0 313px;
}

.products .products-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 120px;
  width: 100%;
  max-width: 1204px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .products {
    margin: 52px 0 225px;
  }

  .products .products-wrap {
    row-gap: 64px;
  }
}

.products .products-wrap .products-list .products-list-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
}

.products .products-wrap .products-list .products-list-title p {
  margin: 0;
  font-size: 0.8125em;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products .products-wrap .products-list .products-list-title h2 {
  position: relative;
  padding-bottom: 39px;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.products .products-wrap .products-list .products-list-title h2::before,
.products .products-wrap .products-list .products-list-title h2::after {
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 3px;
  content: "";
  transform: translateX(-50%);
}

.products .products-wrap .products-list .products-list-title h2::before {
  left: calc(50% - 15px);
  background-color: var(--main-color-orange);
}

.products .products-wrap .products-list .products-list-title h2::after {
  left: calc(50% + 15px);
  background: var(--gradient-blue);
}

.products .products-wrap .products-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  margin: 78px 0 0;
  padding: 0;
}

.products .products-wrap .products-list ul li {
  width: calc((100% / 3) - 16px);
}

.products .products-wrap .products-list ul li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #edf3f7;
  text-decoration: none;
}

.products .products-wrap .products-list ul li a::after {
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 18px;
  height: 18px;
  background: url(/assets/images/icon_arrow_gray.svg) center center / cover no-repeat;
  content: "";
}

.products .products-wrap .products-list ul li a.modal-open-btn::after {
  width: 20px;
  height: 20px;
  background: url(/assets/images/icon_detail.svg) center center / cover no-repeat;
}

.products .products-wrap .products-list ul li a figure {
  width: 27.5%;
  height: 100%;
  overflow: hidden;
}

.products .products-wrap .products-list ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.products .products-wrap .products-list ul li a:hover figure img {
  transform: scale(1.1);
}

.products .products-wrap .products-list ul li a p {
  flex: 1;
  margin: 0;
  padding: 22px 24px;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  color: var(--main-color-black);
}

@media screen and (max-width: 1040px) {
  .products .products-wrap .products-list ul li {
    width: calc((100% / 2) - 12px);
  }
}

@media screen and (max-width: 768px) {
  .products .products-wrap .products-list .products-list-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
  }

  .products .products-wrap .products-list .products-list-title p {
    font-size: 0.625em;
  }

  .products .products-wrap .products-list .products-list-title h2 {
    padding-bottom: 20px;
    font-size: 2em;
  }

  .products .products-wrap .products-list .products-list-title h2::before,
  .products .products-wrap .products-list .products-list-title h2::after {
    width: 20px;
    height: 2px;
  }

  .products .products-wrap .products-list .products-list-title h2::before {
    left: calc(50% - 10px);
  }

  .products .products-wrap .products-list .products-list-title h2::after {
    left: calc(50% + 10px);
  }
}

@media screen and (max-width: 620px) {
  .products .products-wrap .products-list ul {
    gap: 8px;
    margin: 44px 0 0;
  }

  .products .products-wrap .products-list ul li {
    width: 100%;
  }

  .products .products-wrap .products-list ul li a {
    min-height: 74px;
  }

  .products .products-wrap .products-list ul li a.modal-open-btn::after {
    bottom: 8px;
    right: 6px;
    width: 18px;
    height: 17px;
  }

  .products .products-wrap .products-list ul li a figure {
    width: 21%;
    aspect-ratio: 69 / 72;
  }

  .products .products-wrap .products-list ul li a p {
    display: flex;
    align-items: center;
    padding: 15px 17px;
    font-size: 0.9375em;
  }
}

@media screen and (max-width: 768px) {
  .common-side-nav {
    right: -204px;
    width: 202px;
  }

  .common-side-nav.is-scrolled {
    right: -166px;
  }

  .common-side-nav.is-open {
    right: 0;
  }
}
