/* point-howto-list */
.point-howto-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 3em auto;
}
.point-howto-list li {
  width: 25%;
  font-size: 100% !important;
  margin-bottom: 0 !important;
}
.point-howto-list .ttl {
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.2em;
  margin-bottom: 0.6em;
}
.point-howto-list .txt {
  font-size: 100%;
}
.point-howto-list .note {
  padding: 0.2em 0 0 0;
}
@media only screen and (max-width: 1000px) {
  .point-howto-list .ttl,
  .point-howto-list .txt {
    font-size: calc(14 / 1000 * 100vw);
  }
}
@media only screen and (max-width: 640px) {
  .point-howto-list {
    width: 96%;
    justify-content: flex-start;
    gap: 30px 4%;
    padding: 0 !important;
  }
  .point-howto-list li {
    width: 48%;
    margin-bottom: 0 !important;
  }
  .point-howto-list .ttl,
  .point-howto-list .txt {
    font-size: calc(18 / 640 * 100vw);
  }
  .point-howto-list .note {
    font-size: calc(16 / 640 * 100vw);
  }
}

/* color-list */
.color-list-title {
  font-size: 110%;
  font-weight: bold;
}
.color-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em 4%;
  margin-top: 2em;
}
.color-list .color-list-item {
  width: 48%;
}
.color-list .fig-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1em;
}
.color-list .fig-wrap .fig {
  width: 49%;
  margin: 0;
}
.color-list .fig-wrap .color {
  width: 47%;
}
.color-list .tx-wrap .ttl {
  margin-bottom: 0.5em;
}
.color-list .tx-wrap .ttl .en {
  font-family: 'Metropolis', sans-serif;
  font-weight: bold;
  margin-right: 1em;
}
.color-list .tx-wrap .note {
  padding: 0.5em 0 0 0;
}

@media only screen and (max-width: 640px) {
  .color-list-title {
    text-align: center !important;
  }
  .color-list .color-list-item {
    width: 100%;
  }
}