.sitemap-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
}

/* ========================================================================== */
/* sitemap-section */
/* ========================================================================== */

.sitemap-section {
  padding: 0 0 64px 0;
}

.sitemap-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 16px;
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid var(--sky-blue);
}

.sitemap-heading:hover {
  opacity: 0.7;
}

.sitemap-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.28px;
}

.sitemap-arrow {
  width: 40px;
  height: 40px;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 24px;
  padding-left: 16px;
  margin: 32px 0 0 0;
  list-style: none;
  margin-top: 32px;
}

.sitemap-list li {
   width: 100%;
}

.sitemap-list a {
  position: relative;
  padding-left: 16px;
  text-decoration: none;
  line-height: 30px; /* 187.5% */
  letter-spacing: 0.64px;
}

.sitemap-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #00A0E9;
  border-radius: 50%;
}

.sitemap-list a img {
  margin-left: 10px;
}

.sitemap-divider {
  width: 100%;
  height: 2px;
  background-color: #009FE8;
  margin-bottom: 40px;
}

/* ========================================================================== */
/* @media：TB */
/* ========================================================================== */

@media (max-width: 1023px) {
  .sitemap-wrapper {
    padding: 64px 64px;
  }

  /* ==================================================== */
  /* sitemap-section */
  /* ==================================================== */

  .sitemap-section {
    padding: 0 0 48px 0;
  }

  .sitemap-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.28px;
  }

  .sitemap-list {
    margin-top: 24px;
  }

  .sitemap-list a {
    font-size: 14px;
  }

  .sitemap-arrow {
    width: 32px;
    height: 32px;
  }
}

/* ========================================================================== */
/* @media：SP */
/* ========================================================================== */

@media (max-width: 767px) {
  .sitemap-wrapper {
    padding: 64px 24px;
  }

  /* ==================================================== */
  /* sitemap-section */
  /* ==================================================== */

  .sitemap-heading {
    padding: 0 0 8px;
  }

  .sitemap-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
