/* COLOR VARIABLE */
/* FONT VARIABLE */
/*OTHER VARIABLE */
main.topPage .hero-section {
  height: 500px;
}

@media (min-width: 992px) {
  main.topPage .hero-section {
    height: 43vw;
  }
}

main.topPage .hero-section .hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../img/mainvisual.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

main.topPage .hero-section .hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

main.topPage .hero-section .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

main.topPage .business-section .business-flow-card {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

main.topPage .business-section .flow-box {
  padding: 1.5rem 8px 8px;
  border-radius: 1.5rem;
}

main.topPage .business-section .flow-box.green {
  background-color: #EBF4EF;
}

main.topPage .business-section .flow-box.blue {
  background-color: #EEF3FE;
}

main.topPage .business-section .flow-box .icon {
  width: 48px;
}

main.topPage .business-section .flow-box .icon i {
  font-size: 38px;
}

main.topPage .business-section .flow-box .info {
  flex: 1;
}

main.topPage .business-section .flow-box .info h4 {
  font-size: 20px;
}

main.topPage .business-section .flow-box .hasLine {
  position: relative;
  border-radius: 1rem 1rem 0 0;
}

main.topPage .business-section .flow-box .hasLine:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background-color: #EBF4EF;
}

main.topPage .business-section .flow-box .second {
  border-radius: 0 0 1rem 1rem;
}

main.topPage .business-section .company-center {
  position: relative;
}

main.topPage .business-section .company-center .logo {
  height: 40px;
}

main.topPage .business-section .company-center .pellet-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #fff;
  padding: 8px;
}

@media (max-width: 768px) {
  main.topPage .business-section .company-center .pellet-circle {
    width: 140px;
    height: 140px;
  }
}

main.topPage .business-section .company-center p {
  font-size: 20px;
}

main.topPage .business-section .company-center .arrow-left-top {
  position: absolute;
  top: 40%;
  left: 1rem;
}

main.topPage .business-section .company-center .arrow-left-bottom {
  position: absolute;
  top: 67%;
  left: 1rem;
}

main.topPage .business-section .company-center .arrow-right-top {
  position: absolute;
  top: 40%;
  right: 1rem;
}

main.topPage .business-section .company-center .arrow-right-bottom {
  position: absolute;
  top: 67%;
  right: 1rem;
}

main.topPage .products-section .product-card {
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main.topPage .products-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

main.topPage .products-section .product-card .product-img-wrap {
  position: relative;
  background: #fff;
}

main.topPage .cta-section .cta-banner {
  border-radius: 2rem;
}

@media (max-width: 991px) {
  main.topPage .cta-section .cta-banner {
    border-radius: 2rem !important;
  }
}

main.topPage .cta-section .icon {
  background-color: #D7E5FC;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

main.topPage .cta-section .icon i {
  font-size: 3rem;
}

main.topPage .cta-section .cta-btn {
  transition: all 0.3s ease;
  padding: 1.5rem 5rem;
}

main.topPage .cta-section .cta-btn:hover {
  background-color: #00419f;
  transform: translateX(5px);
}

/*# sourceMappingURL=top.css.map */