@charset "utf-8";

.sitemap-heading-h2 {
  position: relative;
  margin-top: 120px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #0071b3 118px, #c1c1c1 118px) 1;
  font-size: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sitemap-heading-h2 {
    margin-top: min(15.62vw,120px);
    margin-bottom: min(3.9vw,30px);
    font-size: min(5.2vw,40px);
  }
}

.sitemap-heading-h2 span {
  font-size: 0.7em;
}

@media screen and (max-width: 768px) {
  .row {
    --gap-row: min(3.9vw,30px);
    margin-top: min(3.9vw,30px);
  }
}

.sitemapLink {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 15px 30px 15px 0;
  border-bottom: 2px solid #c1c1c1;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: border 0.3s ease-out, color 0.3s;
}
@media screen and (max-width: 768px) {
  .sitemapLink {
    min-height: min(14.97vw,115px);
    padding: min(1.95vw,15px) min(6.51vw,50px) min(1.95vw,15px) 0;
    font-size: min(3.73vw,28px);
  }
}

.sitemapLink:hover {
  border-bottom-color: #0071b3;
  color: #0071b3;
}

.sitemapLink::after {
  position: absolute;
  top: 50%;
  right: 10px;
  rotate: 45deg;
  translate: 0 -50%;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-top: 2px solid #c1c1c1;
  border-right: 2px solid #c1c1c1;
  transition: border 0.3s;
  content: "";
}
@media screen and (max-width: 768px) {
  .sitemapLink::after {
    right: min(2.66vw,20px);
    width: min(2.66vw,20px);
    border-top-width: min(0.53vw,4px);
    border-right-width: min(0.53vw,4px);
  }
}

.sitemapLink:hover::after {
  border-top-color: #0071b3;
  border-right-color: #0071b3;
}