@charset "UTF-8";

/* カオナビ採用LP用スタイル---------- */
/* hero */
.mv.-min {
  margin-bottom: 40px;
    .h1-a {
        font-size: 32px;

        > strong {
            font-size: 40px;
        }

        @media screen and (max-width: 768px) {
          font-size: 24px;

          > strong {
              font-size: 28px;
          }

        }
    }
    .mv__bubble {
      font-size: 20px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
}

/* お悩みセクション */
.section-a.problem {
  overflow: visible;
  .h2-a__subtitle {
    margin-top: 16px;
  }
  .howmany__wrapper {
    display: flex;
    gap: 40px;

    @media screen and (max-width: 768px) {
      flex-direction: column;

    }

    .howmany__box {
      margin-bottom: 0;
    }
  }
  .point {
    color: var(--pu-600);
    text-align: center;
    margin-top: 40px;
  }

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    display: block;
    width: 40px;
    height: 30px;
    background: var(--pu-600);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
/* キャンペーン */
.section-a.campain {
  background-color: var(--pa-400);
  text-align: center;
  padding-top: 40px;

  .campain__title {
    position: relative;
    display: inline-flex;
    padding: 8px 32px;
    flex-direction: column;
    align-items: center;
    border-radius: 54px;
    background: var(--pa-50);
    color: var(--water);

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 100%);
      display: block;
      width: 32px;
      height: 24px;
      background: var(--pa-50);
      clip-path: polygon(0 0, 100% 0, 50% 100%);

    }
  }
  .campain-price__wrapper {
    max-width: 960px;
    padding: 60px;
    border-radius: 12px;
    border: 8px solid var(--pa-200);
    background: #FFF;
    margin: 0 auto;

    @media screen and (max-width: 768px) {
      padding: 20px;
    }
  }
  .campain-pirce__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 0;

    }

    > li {
      flex: 1;


      > img {
        width: 100%;
        max-width: 440px;
        height: auto;
      }

      &.large {
        flex: none;
        width: 100%;
      }
    }
  }
  .conv-01 {
    /* margin-bottom: 0; */
  }
  .campain-price__attention-list {
    list-style: disc;
    margin: 0;
    padding: 0 0 0 20px;

    .attention__item {
      padding: 0;
    }
  }
}
.section-a.showcase {
  background-color: var(--sa-50);
}
.section-a.security {
  background-color: var(--sa-50);
}
