.page-inner {
  padding: 32px 20px;
}

.page-inner *:first-child {
  margin-top: 0;
}

.page-inner *:last-child {
  margin-bottom: 0;
}

/* 見出し */
.page-lower h1 {
  margin-block: 32px 16px;
  padding: 8px 16px;
  background-color: var(--Main);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.page-lower .header h1 {
  margin-block: 0;
}

.page-lower h2 {
  width: fit-content;
  margin-block: 24px 16px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 8px;
  color: var(--Main);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.page-lower h3 {
  margin-block: 16px;
  color: var(--Main);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* テーブル */
.table {
  border: 1px solid #5B5B5B;
  border-radius: 4px;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  overflow: clip;
}

.table__ttl {
  width: 74px;
  padding: 10px;
  background-color: var(--Main);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.3;
  padding: 10px;
  text-align: left;
}

.table tbody .table__ttl {
  border-top: 1px solid #5B5B5B;
}

.table__heading {
  border-left: 1px solid #5B5B5B;
  padding: 10px;
  background-color: #F5F5F5;
  color: var(--Text2);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.table__data {
  border-top: 1px solid #5B5B5B;
  border-left: 1px solid #5B5B5B;
  padding: 10px;
  background-color: #fff;
  color: var(--Text2);
  font-size: 12px;
  line-height: 1.3;
}

/* ボックス */
.cm__box {
  border: 1px solid var(--Text);
  border-radius: 4px;
  padding: 16px;
  margin-top: 24px;
}


/* チェックボックス */
.check-box {
  margin-block: 16px;
  border: 1px solid var(--Text);
  border-radius: 4px;
  padding: 20px 16px;
}

.check-box__ttl {
  display: flex;
  justify-content: center;
}

.check-box__ttl img {
  width: 95px;
  height: auto;
  object-fit: contain;
}

.check-box__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.check-box__item {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.check-box__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.check-box__item:nth-child(1)::before {
  background-image: url(../img/ico_check_01.svg);
}

.check-box__item:nth-child(2)::before {
  background-image: url(../img/ico_check_02.svg);
}

.check-box__item:nth-child(3)::before {
  background-image: url(../img/ico_check_03.svg);
}

.check-box__item:nth-child(4)::before {
  background-image: url(../img/ico_check_04.svg);
}

.check-box__item:nth-child(5)::before {
  background-image: url(../img/ico_check_05.svg);
}

/* ポイントボックス */
.point-box {
  margin-block: 16px;
  border: 1px solid var(--Sub);
  border-radius: 4px;
  padding: 20px 25px;
}

.point-box__ttl {
  display: flex;
  justify-content: center;
}

.point-box__ttl img {
  width: 83px;
  height: auto;
  object-fit: contain;
}

.point-txt {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
}



@media screen and (min-width: 769px) {
  .page-inner {
    margin-inline: auto;
    max-width: 640px;
    width: 100%;
    padding: 32px 0 40px;
  }

  /* テーブル */
  .table__ttl {
    width: 142px;
    padding: 10px 12px;
  }

  .table tbody .table__ttl {
    border-top: 1px solid #5B5B5B;
  }

  .table__heading {
    border-left: 1px solid #5B5B5B;
    padding: 10px 12px;
    background-color: #F5F5F5;
    color: var(--Text2);
    font-size: 12px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
  }

  .table__data {
    border-top: 1px solid #5B5B5B;
    border-left: 1px solid #5B5B5B;
    padding: 10px;
    background-color: #fff;
    color: var(--Text2);
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
  }

  /* チェックボックス */
  .check-box {
    padding: 32px 84px;
  }

  .check-box__list {
    width: fit-content;
    margin: 8px auto 0;
  }

  /* ポイントボックス */
  .point-box {
    padding: 20px 84px;
  }
}
