.problem, .problem--itemNone {
  position: relative;
  background: #FAFAFA;
  padding-top: 100px;

  &::after {
    content: "";
    display: inline-block;
    border-bottom: 100px solid #E8F3FC;
    border-left: 0px solid #E8F3FC;
    border-right: 50vw solid transparent;
    border-top: 0px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
    @media (max-width: 600px) {
      border-bottom: 50px solid #E8F3FC;
    }
  }

  &::before {
    content: "";
    display: inline-block;
    border-bottom: 100px solid #E8F3FC;
    border-left: 50vw solid transparent;
    border-right: 0px solid #E8F3FC;
    border-top: 0px solid transparent;
    position: absolute;
    top: 0;
    right: 0;
    @media (max-width: 600px) {
      border-bottom: 50px solid #E8F3FC;
    }
  }
}
@media screen and (max-width: 600px) {
  .problem {
    padding-top: 50px;
  }
}

.problem--itemNone {
  padding-top: 88px;
  @media screen and (max-width: 600px) {
    padding-top: 50px;
  }

  &::after,
  &::before {
    display: none;
  }
}

.problem__heading {
  text-align: center;
  position: relative;
}

.problem__headingText {
  font-size: 55px;
  font-weight: bold;
  line-height: 1.45;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .problem__headingText {
    font-size: 44px;
  }
}
@media screen and (max-width: 600px) {
  .problem__headingText {
    font-size: 32px;
  }
}

.problem__headingTextSub {
  font-size: 90px;
  font-weight: bold;
  color: #0074DB;
  opacity: 0.1;
  position: absolute;
  top: 21%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .problem__headingTextSub {
    font-size: 74px;
    top: 18%;
  }
}
@media screen and (max-width: 769px) {
  .problem__headingTextSub {
    top: 8%;
  }
}
@media screen and (max-width: 600px) {
  .problem__headingTextSub {
    font-size: 54px;
    top: 3%;
  }
}

.problem__containerTop {
  position: relative;
}

.problem__containerTop::before {
  content: "";
  display: inline-block;
  border-bottom: 100px solid #E8F3FC;
  border-left: 0px solid #E8F3FC;
  border-right: 50vw solid transparent;
  border-top: 0px solid transparent;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 990px) {
  .problem__containerTop::before {
    border-bottom: 70px solid #E8F3FC;
  }
}
@media screen and (max-width: 600px) {
  .problem__containerTop::before {
    border-bottom: 50px solid #E8F3FC;
  }
}

.problem__containerTop::after {
  content: "";
  display: inline-block;
  border-bottom: 100px solid #E8F3FC;
  border-left: 50vw solid transparent;
  border-right: 0px solid #E8F3FC;
  border-top: 0px solid transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 990px) {
  .problem__containerTop::after {
    border-bottom: 70px solid #E8F3FC;
  }
}
@media screen and (max-width: 600px) {
  .problem__containerTop::after {
    border-bottom: 50px solid #E8F3FC;
  }
}

.problem__containerTopInner {
  max-width: 1100px;
  width: 100%;
  padding: 0 20px 80px;
  margin: 38px auto 0;
}
@media screen and (max-width: 600px) {
  .problem__containerTopInner {
    padding: 0 15px 35px;
    margin: 25px auto 0;
  }
}

.problem__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 25px;
}
@media screen and (max-width: 600px) {
  .problem__flex {
    gap: 22px 10px;
  }
}

.problem__flexItem {
  width: calc((100% - 100px) / 3);
}
@media screen and (max-width: 768px) {
  .problem__flexItem {
    width: calc((100% - 50px) / 2);
  }
}
@media screen and (max-width: 600px) {
  .problem__flexItem {
    width: calc((100% - 10px) / 2);
  }
}

.problem__imgBox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.problem__flexIcon {
  width: 100%;
  height: auto;
}

.problem__flexIcon--money {
  width: 100%;
}

.problem__flexIcon--watch {
  width: 80%;
}

.problem__flexIcon--heart {
  width: 80%;
}

.problem__flexIcon--alert {
  max-width: 84%;
}

.problem__flexIcon--rain {
  width: 80%;
}

.problem__flexText {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.45;
  min-height: 102px;
  margin-top: 10px;
}
@media screen and (max-width: 1339px) {
  .problem__flexText {
    font-size: 28px;
    min-height: 82px;
    margin-top: 22px;
  }
}
@media screen and (max-width: 600px) {
  .problem__flexText {
    font-size: 20px;
    min-height: 60px;
    margin-top: 10px;
  }
}

.problem__containerBottom {
  background: #E8F3FC;
  padding: 80px 0 60px;
}
@media screen and (max-width: 768px) {
  .problem__containerBottom {
    padding: 20px 0;
  }
}

.problem__answerHeading {
  font-size: 55px;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .problem__answerHeading {
    font-size: 44px;
  }
}
@media screen and (max-width: 600px) {
  .problem__answerHeading {
    font-size: 32px;
  }
}

.problem__answerHeadingText {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg,#03a3ff 0%,#0074db 50%,#004ea2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.problem__answerHeadingText::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 50px;
  background: linear-gradient(135deg,#03a3ff 0%,#0074db 50%,#004ea2 100%);
  transform: rotate(-36deg);
  margin-right: 29px;
  position: relative;
  top: 9px;
}
@media screen and (max-width: 768px) {
  .problem__answerHeadingText::before {
    height: 80px;
    transform: rotate(-25deg);
    margin-right: 0px;
    position: absolute;
    top: unset;
    bottom: 0;
    left: -30px;
  }
}
@media screen and (max-width: 600px) {
  .problem__answerHeadingText::before {
    bottom: -14px;
    left: -30px;
  }
}

.problem__answerHeadingText::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 50px;
  background: linear-gradient(135deg,#03a3ff 0%,#0074db 50%,#004ea2 100%);
  transform: rotate(36deg);
  margin-left: 29px;
  position: relative;
  top: 9px;
}
@media screen and (max-width: 768px) {
  .problem__answerHeadingText::after {
    height: 80px;
    transform: rotate(25deg);
    margin-right: 0px;
    position: absolute;
    top: unset;
    bottom: 0;
    right: -30px;
  }
}
@media screen and (max-width: 600px) {
  .problem__answerHeadingText::after {
    bottom: -14px;
    right: -30px;
  }
}

.problem__containerBottomInner {
  max-width: 1107px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.problem__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .problem__list {
    gap: 24px;
  }
}

.problem__listItem {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .problem__listItem {
    gap: 12px;
  }
}

.problem__listItemText {
  font-size: 35px;
  font-weight: bold;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .problem__listItemText {
    flex: 1;
    font-size: 24px;
  }
}

.problem__listItem::before {
  content: "";
  display: inline-block;
  background: url('../images/icon_check_blue.svg') center/contain no-repeat;
  width: 37px;
  height: 23.5px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .problem__listItem::before {
    width: 27px;
    height: 19.5px;
    margin-top: 8px;
  }
}

.problem__listItemTextBlue {
  color: #1A74D6;
}

.problem__listIcon {
  display: inline-block;
  margin-top: 15px;
  margin-right: 18px;
}

.problem__btnBox {
  margin-top: 40px;
}

.problem__btn {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 10px;
}

