.products-header-bg {
  background-color: #fff;
  width: 100%;
}
.products-visual-section {
  width: 100%;
  height: 400px;
  background-image: url("../img/products/main.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.products-header-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.products-page-title-en {
  font-size: 4.75rem;
  font-weight: 500;
  color: #6e6bb0;
  margin: 0;
  line-height: 1;
}
.products-page-title-jp {
  font-size: 2.25rem;
  color: #333333;
  margin: 1rem 0 0 0;
  font-weight: 500;
}
.products-heading-left, .products-heading-right {
  flex: 1;
  min-width: 300px;
}
.products-lead-text {
  font-size: 2.1rem;
  color: #1e1e3f;
  line-height: 1.6;
}
.product-category-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}
.product-category-title {
  font-size: 2.25rem;
  color: #333333;
  margin-bottom: 3rem;
}
.product-category-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}
.product-category-sub-wrapper {
  display: block;
}
.product-category {
  min-width: 250px;
}
.product-category#sub {
  min-width: 180px;
  padding: 0 40px;
}
.product-category h4 {
  font-size: 1.875rem;
  color: #333333;
  font-weight: bold;
  margin-bottom: 1rem;
}
.product-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-category li {
  margin: 0.4rem 0;
}
.product-category li a {
  text-decoration: none;
  font-size: 1rem;
  color: #333333;
  transition: color 0.3s ease;
}
.product-category li a:hover {
  color: #1818ab;
}
.product-category .arrow {
  color: #333333;
  margin-right: 0.3rem;
}
.product-list-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}
.product-list-section h3 {
  font-size: 2.25rem;
  color: #333333;
  margin-bottom: 3rem;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 2rem;
  justify-content: space-between;
}
.product-list li {
  list-style: none;
  width: calc(50% - 1rem);
}
.product-list img {
  width: 100%;
  height: auto;
}
.product-list p {
  margin-top: 0.8rem;
  color: #1818ab;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .products-visual-section {
    height: 250px;
  }
  .products-header-section {
    flex-direction: column;
    padding: 3rem 1.5rem;
  }
  .products-page-title-en {
    font-size: 2.5rem;
    text-align: center;
  }
  .products-page-title-jp {
    font-size: 1.5rem;
    text-align: center;
  }
  .products-lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: center;
  }
  .product-category-wrapper {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
  .product-category-sub-wrapper {
    /*flex-direction: column;
    gap: 3rem;
    align-items: center;*/
    display: block;
  }
  .product-category h4 {
    font-size: 1.5rem;
    text-align: center;
  }
  .product-category ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .product-category li {
    width: calc(50% - 0.5rem);
    margin: 0;
  }
  .product-category li a {
    display: block;
    font-size: 1rem;
    text-align: center;
  }
  .product-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0;
  }
  .product-list li {
    width: calc(50% - 0.75rem);
  }
  .product-list p {
    text-align: center;
  }
}