  section {
    font-size: 16px;
  }

  dl {
    display: flex;
    gap: min(2vw, 45px);
    flex-wrap: wrap;
    justify-content: space-between;
  }

  dl>div {
    background: #eef9ff;
    border-radius: 20px;
    padding: min(5vw, 50px);
    box-sizing: border-box;
  }

  .mf_w-700 {
    max-width: 700px;
    width: calc(700 / 1200 * 100%);
  }

  .mf_w-460 {
    max-width: 460px;
    width: calc(460 / 1200 * 100%);
  }

  .mf_w-580 {
    max-width: 580px;
    width: calc(580 / 1200 * 100%);
  }

  /* 画像レスポンシブ */
  dl>div img {
    max-width: 100%;
    height: auto;
  }

  dl>div>dt {
    color: #0173bc;
    font-size: calc(34 / 16 * 1em);
    font-weight: bold;
  }

  dl>div>dd>div,
  dl>div>dd>ul {
    color: #0173bc;
    font-size: clamp(5em, calc(130 / 16 * 1.3vw), 8.125em);
    font-weight: bold;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 700;
    font-style: normal;
    display: block;
    width: fit-content;
    position: relative;
    margin: 0;
    z-index: 1;
    line-height: 1;
    margin-bottom: min(5vw, 40px);
    white-space: nowrap;
  }

  dl>div>dd>ul>li {
    font-size: clamp(8rem, calc(130 / 16 * 1.3vw), 14rem);
    font-weight: bold;
    font-family: 'M PLUS 1p', sans-serif;

  }

  dl>div:nth-child(1)>dd>div {
    font-size: clamp(6em, calc(150 / 16 * 1.3vw), 9.375em);
  }

  dl>div:nth-child(2)>dd>div {
    font-size: clamp(6em, calc(150 / 16 * 1.3vw), 9.375em);
  }

  dl>div>dd {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: flex-end;
    margin-block-start: 2em;
    gap: 2em;
  }

  dl>div>dd>div:last-child {
    flex: 1;
    display: flex;
    justify-content: end;
  }

  /* 下線を擬似要素で */
  dl>div>dd>div:first-child:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 25px;
    background: #faed00;
    z-index: -1;
  }

  /* dl>div>dd>div span,
  dl>div>dd>ul>li>span, */
  .numbers-main__counter-txt {
    color: #0173bc;
    font-size: calc(50 / 10 * 1rem);
    font-weight: bold;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  dl>div>p {
    font-size: calc(18 / 16 * 1em);
    line-height: calc(32 / 18);
  }

  dl>div>dd.mf_w-100>ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  dl>div>dd.mf_w-100>ul>li {
    width: 30%;
    position: relative;
    text-align: center;
  }

  dl>div>dd.mf_w-100>ul>li:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 25px;
    background: #faed00;
    z-index: -1;
  }

  dl>div>dd.mf_w-100 {
    width: 100%;
  }

  dl>div>dd.mf_w-100:before {
    display: none;
  }

  dl>div>dd.mf_w-100>ul>li>div {
    background: #0173bc;
    color: #fff;
    max-width: 180px;
    width: 100%;
    font-size: calc(20 / 10 * 1rem);
    font-weight: bold;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 500;
    font-style: normal;
    padding: 0.25rem;
    text-align: center;
  }

  dl>div {
    position: relative;
  }

  dl>div::before {
    content: '';
    display: block;
    position: absolute;
  }

  .mf_p-flex {
    display: flex;
    margin-block-start: 3em;
    font-size: calc(18 / 16 * 1em);
    line-height: calc(32 / 18);
  }

  /* =============================
		   レスポンシブ：2列 → 1列
		   ============================= */
  @media (max-width: 1100px) {
    dl>div:nth-child(3)>dd>div:last-child {
      display: none;
    }

    dl>div:nth-child(5)>dd>div:last-child {
      display: none;
    }
  }

  @media (max-width: 1000px) {
    dl>div:nth-child(2)>dd>div:last-child {
      display: none;
    }

    dl>div:nth-child(8)>dd>div:last-child {
      display: none;
    }
  }

  @media (max-width: 768px) {
    dl {
      gap: 2vw;
      justify-content: center;
    }

    .mf_w-700,
    .mf_w-460,
    .mf_w-580 {
      width: 42vw;
      padding: 10px;
    }

    dl>div>dd>div:last-child {
      display: none;
    }

    .mf_p-flex img {
      display: none;
    }

    .mf_p-flex {
      margin-block-start: 0;
    }

    dl>div>dd>div:first-child {
      margin-inline: auto;
      margin-bottom: 0;
    }

    dl>div>dd>div,
    dl>div>dd>ul {
      white-space: normal;
    }

    dl>div>dd.mf_w-100>ul {
      margin-block-start: 0.3em;
    }

    dl>div>dd>div span,
    dl>div>dd>ul>li>span {
      font-size: calc(30 / 10 * 1rem);
    }
  }

  @media (max-width: 740px) {

    .mf_w-700,
    .mf_w-460,
    .mf_w-580 {
      max-width: none;
      width: 90vw;
      padding: 15px;
    }
  }