/* ==========================================================================
   Problems Section
   ========================================================================== */
.problems {
  background-color: var(--color-gray);
  background-image: url("../../../images/bg_wt.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 30vw auto;
}

.problems-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 clamp(30px, 10px + 2.61vw, 60px);
}

.problems-list {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 13px + 0.87vw, 30px);
}

.problem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.problem-card-content {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px clamp(15px, 11px + 0.52vw, 21px);
  width: 100%;
}

.problem-card-title {
  font-size: clamp(24px, 19px + 0.7vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 5px;
}

.problem-card-text {
  font-size: clamp(18px, 15px + 0.35vw, 22px);
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.problem-card-image {
  height: clamp(100px, 67px + 4.34vw, 150px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: clamp(-22px, -10px - 0.61vw, -15px);
  position: relative;
  z-index: 1;
}

.problem-card-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.arrow-down {
  text-align: center;
  position: relative;
  z-index: 10;
  height: 0;
  transform: translateY(-115px);
}

.arrow-down::before {
  content: "";
  display: inline-block;
  width: clamp(80px, 13px + 8.69vw, 180px);
  height: clamp(35px, 8px + 3.48vw, 75px);
  background: linear-gradient(308.23deg, #FFDB43 3.15%, #FF5C00 72.14%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* ==========================================================================
   Solutions Section
   ========================================================================== */
.solutions {
  background-color: #fff;
  background-image: url("../../../images/bg_gr.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 30vw auto;
}

.solutions-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.solutions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 13px + 0.87vw, 30px);
}

.solution-card {
  background-color: var(--color-gray);
  border-radius: 30px;
  padding: clamp(25px, 17px + 1.04vw, 37px) clamp(20px, 13px + 0.87vw, 30px);
  text-align: center;
}

.solution-card-point {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--color-primary);
  margin: 0 0 clamp(5px, 4px + 0.17vw, 7px);
}

.solution-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 10px;
}

.solution-card-text {
  margin: 0 0 clamp(15px, 11px + 0.52vw, 21px);
  line-height: 1.4;
  text-align: center;
}

.solution-card-image {
  height: clamp(120px, 80px + 5.21vw, 180px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-card-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* XLarge breakpoint */
@media screen and (max-width: 1279px) {
  .xlarge-only {
    display: none;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .problems,
  .solutions {
    background-size: 95vw auto;
  }
  .problems-list {
    flex-direction: column;
    gap: 16px;
  }
  .problem-card {
    max-width: 100%;
  }
  .problem-card-content {
    padding: 20px 16px;
    max-width: 500px;
  }
  .problem-card-title {
    font-size: 24px;
    margin: 0 0 2px;
  }
  .problem-card-text {
    font-size: 18px;
  }
  .problem-card-image {
    height: auto;
    margin-top: -15px;
    width: 100%;
  }
  .problem-card-image img {
    max-height: none;
    height: auto;
  }
  .problem-card:nth-child(1) .problem-card-image img {
    width: 34vw;
    max-width: 190px;
  }
  .problem-card:nth-child(2) .problem-card-image img {
    width: 28vw;
    max-width: 160px;
  }
  .problem-card:nth-child(3) .problem-card-image img {
    width: 36vw;
    max-width: 200px;
  }
  .arrow-down {
    transform: translateY(-80px);
  }
  .arrow-down::before {
    width: 129px;
    height: 54px;
  }
  .solutions-list {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }
  .solution-card {
    padding: 20px 16px;
    max-width: 500px;
    width: 100%;
  }
  .solution-card-point {
    font-size: 12px;
  }
  .solution-card-title {
    font-size: clamp(16px, 13px + 0.96vw, 20px);
  }
  .solution-card-text {
    font-size: clamp(14px, 12px + 0.48vw, 16px);
  }
  .solution-card-image {
    height: auto;
  }
  .solution-card-image img {
    max-height: none;
    height: auto;
  }
  .solution-card:nth-child(1) .solution-card-image img {
    width: 60vw;
    max-width: 300px;
  }
  .solution-card:nth-child(2) .solution-card-image img {
    width: 34vw;
    max-width: 190px;
  }
  .solution-card:nth-child(3) .solution-card-image img {
    width: 48vw;
    max-width: 270px;
  }
  .solution-card:nth-child(4) .solution-card-image img {
    width: 59vw;
    max-width: 300px;
  }
}/*# sourceMappingURL=problem-solution.css.map */