@charset "UTF-8";

/*-------------------------------------------
common
-------------------------------------------*/
:root {
  --red: #FF3301;
  --green: #129459;
  --table-y-green: #e9f5ef;
}
body {
  line-height: 1.75;
}
.check-container {
  max-width: 920px;
  padding-inline: 20px;
  margin-inline: auto;
}
.page-section-title {
  margin-bottom: 40px;
}
section {
  margin-bottom: 100px;
}
.check-text {
  font-size: min(19px, 2.4vw);
  font-weight: 600;
  text-align: justify;
}

/*-------------------------------------------
mv
-------------------------------------------*/
.page-mv {
  background-image: url(../img/check/check-mv.jpg);
}

/*-------------------------------------------
リード
-------------------------------------------*/
.check-lead {
  margin-bottom: 100px;
}
.check-lead-img {
  text-align: center;
  margin-bottom: 50px;
}
.check-lead-img img {
  width: max(15%, 100px);
}

/*-------------------------------------------
名刺交換時に起こるリスク
-------------------------------------------*/
.check-risk {
  background-color: #EDFFF2;
  padding: 60px 0;
}
.check-risk ul {
  width: fit-content;
  margin-inline: auto;
}
.check-risk li {
  font-size: min(26px, 3.4vw);
  font-weight: 500;
  margin-bottom: 1em;
}
.check-risk li::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background-image: url(../img/check/check-bomb.svg);
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.5em;
}

/*-------------------------------------------
メイシーの反社チェックの特徴
-------------------------------------------*/
.check-inner {
  border: 10px solid var(--green);
  padding: 50px 1em;
}
.check-feature ul {
  font-size: min(26px, 3.4vw);
  font-weight: 500;
  line-height: 1.5;
  width: fit-content;
  margin-inline: auto;
}
.check-feature li {
  padding-left: 0.7em;
  text-indent: -0.7em;
  margin-bottom: 1em;
}
.check-feature li span {
  font-size: 0.5em;
  color: var(--green);
  vertical-align: 0.3em;
  margin-right: 0.5em;
}

/*-------------------------------------------
料金
-------------------------------------------*/
.check-price-inner {
  display: flex;
  gap: 4em;
  justify-content: center;
}
.check-price .page-section-title span {
  font-size: 0.6em;
}
.check-price-inner .green {
  color: var(--green);
}
.check-price-inner .circle {
  font-size: 0.7em;
  color: var(--green);
  vertical-align: 0.1em;
  margin-right: 0.3em;
}

/*-------------------------------------------
お問い合わせ
-------------------------------------------*/
.check-contact .check-text {
  text-align: center;
}
.button-red {
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  width: min(360px, 100%);
  background-color: var(--red);
  padding: 0.6em;
  border-radius: 999px;
  margin-top: 30px;
  margin-inline: auto;
}

/*-------------------------------------------
フロー設計
-------------------------------------------*/
.check-flow {
  margin-bottom: 80px;
}
.check-flow-img {
  margin-bottom: 40px;
}
.check-flow-logo {
  width: 30%;
  margin-inline: auto;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* common
  -------------------------------------------*/
  .page-section-title {
    margin-bottom: 30px;
  }
  section {
    margin-bottom: 50px;
  }
  .check-text {
    font-size: max(16px, 2.4vw);
  }

  /* mv
  -------------------------------------------*/
  .page-mv {
    background-image: url(../img/check/check-mv-sp.jpg);
  }

  /* リード
  -------------------------------------------*/
  .check-lead {
    margin-bottom: 50px;
  }
  .check-lead-img {
    margin-bottom: 30px;
  }

  /* 名刺交換時に起こるリスク
  -------------------------------------------*/
  .check-risk {
    padding: 30px 0;
  }
  .check-risk li {
    font-size: max(20px, 3.4vw);
    padding-left: 50px;
    text-indent: -50px;
  }
  .check-risk li::before {
    width: 40px;
    height: 40px;
  }

  /* メイシーの反社チェックの特徴
  -------------------------------------------*/
  .check-inner {
    border: 5px solid var(--green);
    padding: 30px 1em;
  }
  .check-feature ul {
    font-size: max(20px, 3.4vw);
  }


  /* 料金
  -------------------------------------------*/
  .check-price-inner {
    gap: 1em;
    flex-direction: column;
    align-items: center;
  }

  /* お問い合わせ
  -------------------------------------------*/
  .button-red {
    font-size: 16px;
    padding: 0.3em;
    border-radius: 999px;
    margin-top: 20px;
  }

  /* フロー設計
  -------------------------------------------*/
  .check-flow {
    margin-bottom: 40px;
  }
  .check-flow-img {
    margin-bottom: 20px;
  }
  .check-flow-logo {
    width: max(30%, 150px);
    margin-inline: auto;
  }
}