@charset "utf-8";
.page_title {
  background: url(../img/page_title.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    width: 600px;
    padding: 1em 20px;
  }
}

.figure_block {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  padding: 40px 0;
  margin-bottom: 24px;
  p {
    width: 90%;
    margin: 0 auto;
  }
  @media screen and (max-width: 767px) {
    margin-bottom: 10px;
  }
}
.art_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px 24px;
  article {
    width: calc(50% - 12px);
    border-radius: 3px;
    background: rgba(185, 241, 255, 0.5);
    padding: 20px 28px;
  }
  h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 3px;
    margin-bottom: 24px;
    padding: 16px;
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 1.2px;
  }
  span.indent {
    display: block;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;

    gap: 10px;
    article {
      width: 100%;
      /* width: calc(50% - 5px); */
      padding: 20px 5%;
    }
    h3 {
      margin-bottom: 20px;
      font-size: 2rem;
      letter-spacing: 1px;
      padding: 16px 2.5%;
    }
  }
}


.gray_block {
  padding: 56px 0;
  background: rgba(231, 231, 231, 0.7);
  h2 {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 44px;
  }
  @media screen and (max-width: 767px) {
    padding: 48px 0;
    h2 {
      font-size: 2rem;
      letter-spacing: 1px;
      margin-bottom: 36px;
    }
  }
}
.problem_list {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 120px;
  &::before {
    content: '';
    position: absolute;
    background: url(../img/img11.svg)no-repeat center;
    background-size: contain;
    width: 623px;
    height: 213px;
    bottom: -6em;
    right: 0;
    left: 0;
    margin: auto;
  }
  li {
    width: calc(33.3% - 10px);
    max-width: 328px;
    min-height: 240px;
    background: #fff;
    border-radius: 3px;
    padding: 32px 24px;
    text-align: center;
    line-height: 1.7;
    font-weight: 500;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
    margin-bottom: 200px;
    &:before {
      width: 100%;
      height: 160px;
      bottom: -140px;
    }
    li {
      width: 100%;
      min-height: initial;
      padding: 20px 5%;
      line-height: 1.5;
    }
  }
}
.risk_block {
  width: 100%;
  background: #D9D9D9;
  border-radius: 3px;
  padding: 40px 0 32px;
  @media screen and (max-width: 767px) {
    padding: 32px 0;
  }
}
.risk_inner {
  position: relative;
  width: 90%;
  max-width: 932px;
  margin: 0 auto;
  &::before {
    content: '';
    position: absolute;
    background: url(../img/more.svg)no-repeat center;
    background-size: contain;
    width: 138px;
    height: 138px;
    top: -5.5em;
    left: 0;
  }
  h3 {
    color: var(--main-color);
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    text-align: left;
    line-height: 1.7;
  }
  ul {
    width: 100%;
    background: #fff;
    border-radius: 3px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    li {
      text-align: center;
      font-size: 2.4rem;
      letter-spacing: 1.2px;
      line-height: 1.7;
      font-weight: bold;
    }
  }
  @media screen and (max-width: 767px) {
    &::before {
      width: 88px;
      height: 88px;
      top: -6.5em;
      left: -15px;
    }
    h3 {
      font-size: 2.4rem;
      letter-spacing: 1.2px;
      line-height: 1.5;
    }
    ul {
      padding: 28px 5%;
      li {
        font-size: 1.8rem;
        letter-spacing: 0.9px;
        line-height: 1.5;
        margin-bottom: 6px;
      }
      li:last-child {margin-bottom: 0;}
    }
  }
}




.white_block {
  position: relative;
  padding: 88px 0 64px;
  background: #fff;
  &::before {
    content: '';
    position: absolute;
    background: url(../img/arrow.svg)no-repeat center;
    background-size: contain;
    width: 149px;
    height: 98px;
    top: -2em;
    right: 0;
    left: 0;
    margin: auto;
  }
  h2 {
    color: var(--main-color);
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    text-align: center;
    margin-bottom: 40px;
  }
  @media screen and (max-width: 767px) {
    padding: 64px 0 48px;
    &::before {top: -3em;}
    h2 {
      font-size: 2.8rem;
      letter-spacing: 1.4px;
      margin-bottom: 32px;
    }
  }
}

.lightblue_block {
  padding: 80px 0;
  background: linear-gradient(133deg, #DCF8FF 7.5%, #D5FFFA 51.68%, #84C3FF 95.87%);
  h2 {
    color: var(--main-color);
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    text-align: center;
    margin-bottom: 40px;
  }
  @media screen and (max-width: 767px) {
    padding: 64px 0;
    h2 {
      font-size: 2.8rem;
      letter-spacing: 1.4px;
      margin-bottom: 32px;
    }
  }
}