:root {
  --color-blue: 68, 173, 213;
  --color-yello: 241, 192, 26;
  --color-green: 184, 205, 63;
  --color-grey: 164, 173, 179;
}
.color-dots span {
  background-color: rgb(var(--color-blue));
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.color-dots span + span {
  margin-left: 16px;
}
.color-dots span:nth-child(2) {
  background-color: rgb(var(--color-yello));
}
.color-dots span:nth-child(3) {
  background-color: rgb(var(--color-green));
}
.color-dots span:last-child {
  background-color: rgb(var(--color-grey));
}
.area-title {
  font-size: 2.375rem;
  margin-bottom: 2rem;
}
.logo-area-grid {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(98%, 200px), 1fr));
  grid-row-gap: 2rem;
}
.logo-area-grid .logo-area {
  text-align: center;
}
.logo-area-grid .logo-area img {
  width: auto;
  margin: 0 auto 2.125rem;
}
.logo-area-grid .logo-area h6 {
  font-size: 1.25rem;
}
.table-scroll {
  width: min(100%, 100vw);
  overflow-x: auto;
  margin-top: 3.75rem;
  margin-bottom: 4rem;
}
.table-scroll table {
  width: 100%;
}
.table-scroll table th,
.table-scroll table td {
  height: 3.125rem;
  padding: 0 1rem;
  line-height: 1.2;
}
.table-scroll table thead > tr > th {
  border-bottom: 0.5rem solid #fff;
}
.table-scroll table thead > tr > th + th,
.table-scroll table tbody > tr > td + td {
  border-left: 0.5rem solid #fff;
}
.table-scroll table thead > tr > th:nth-child(4n + 1) {
  background-color: rgb(var(--color-grey));
}
.table-scroll table thead > tr > th:nth-child(4n + 2) {
  background-color: rgb(var(--color-blue));
}
.table-scroll table thead > tr > th:nth-child(4n + 3) {
  background-color: rgb(var(--color-yello));
}
.table-scroll table thead > tr > th:nth-child(4n + 4) {
  background-color: rgb(var(--color-green));
}
.table-scroll table tbody > tr > td:nth-child(4n + 1) {
  background-color: rgba(var(--color-grey), 0.3);
}
.table-scroll table tbody > tr > td:nth-child(4n + 2) {
  background-color: rgba(var(--color-blue), 0.3);
}
.table-scroll table tbody > tr > td:nth-child(4n + 3) {
  background-color: rgba(var(--color-yello), 0.3);
}
.table-scroll table tbody > tr > td:nth-child(4n + 4) {
  background-color: rgba(var(--color-green), 0.3);
}
.table-scroll table .light > td:nth-child(4n + 1) {
  background-color: rgba(var(--color-grey), 0.2);
}
.table-scroll table .light > td:nth-child(4n + 2) {
  background-color: rgba(var(--color-blue), 0.2);
}
.table-scroll table .light > td:nth-child(4n + 3) {
  background-color: rgba(var(--color-yello), 0.2);
}
.table-scroll table .light > td:nth-child(4n + 4) {
  background-color: rgba(var(--color-green), 0.2);
}
@media (max-width: 768px) {
  .table-scroll table {
    white-space: nowrap;
  }
  .table-scroll table th,
  .table-scroll table td {
    padding: 4px !important;
  }
}
.step-area {
  margin-top: 3.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.step-area img {
  width: auto;
  margin: 0 auto;
}
.step-area img.step-next {
  margin-top: 1.75rem;
}
.step-area p {
  height: 3.5rem;
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .step-area {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .step-area .step-next {
    width: 46px;
    height: 6rem;
    object-fit: contain;
    aspect-ratio: 2 / 1;
    transform: rotate(90deg);
  }
}
