:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

.p-sitemapPage__body {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-sitemapPage__body {
    margin-top: 130px;
  }
}

.p-sitemapPage__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
}
@media screen and (min-width: 768px) {
  .p-sitemapPage__columns {
    justify-content: center;
    gap: 60px 7.89%;
  }
}

.p-sitemapPage__columnItem + .p-sitemapPage__columnItem {
  margin-top: 36px;
}

.p-sitemapPage__columnItem.p-sitemapPage__columnItem--marginL {
  margin-top: 80px;
}

.p-sitemapPage__columnItemTitle {
  padding-left: 20px;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  --lh: 1.5;
  line-height: var(--lh, 1.5);
  position: relative;
}
.p-sitemapPage__columnItemTitle::before {
  content: "";
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #c80000;
  position: absolute;
  left: 0;
  top: calc(var(--lh, 1.5) / 2 * 1em);
  transform: translateY(-50%);
}

.p-sitemapPage__sitemapList {
  margin-top: 21px;
}

.p-sitemapPage__sitemapItem {
  padding-left: 20px;
  font-size: 14px;
  font-feature-settings: "palt";
  white-space: nowrap;
  --lh: 1.5;
  line-height: var(--lh, 1.5);
  position: relative;
}
.p-sitemapPage__sitemapItem::before {
  content: "";
  width: 7px;
  aspect-ratio: 7/12;
  background: transparent url("../images/sitemap/sitemap-chevron.png") no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: calc(var(--lh, 1.5) / 2 * 1em);
  transform: translateY(-50%);
}
.p-sitemapPage__sitemapItem + .p-sitemapPage__sitemapItem {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-sitemapPage__sitemapItem {
    font-size: 16px;
  }
}

.p-sitemapPage__sitemapLink {
  padding-inline: 0.5em;
  text-decoration: none;
}