/* サイトマップページ専用。後ほど style_new.css へ結合可 */

@media (min-width: 769px) {
  .sitemap-page .sp-only {
    display: none;
  }

  .sitemap-page .pages-content-body {
    margin-top: 133px;
    margin-bottom: 130px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .sitemap-page .pages-content-body .container {
    max-width: 870px;
  }
}

@media (max-width: 768px) {
  .sitemap-page .pc-only {
    display: none;
  }

  .sitemap-page .pages-content-body {
    margin-top: 80px;
    margin-bottom: 60px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.sitemap {
  display: flex;
  align-items: flex-start;
  gap: 128px;
}

.sitemap__col {
  flex: 1;
  min-width: 0;
}

.sitemap-block {
  margin-bottom: 109px;
}

.sitemap__col > .sitemap-block:last-child {
  margin-bottom: 0;
}

.sitemap-block__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.sitemap-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 3px;
  border-bottom: 1px solid #002b5b;
  color: #002b5b;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sitemap-block__head:hover,
.sitemap-block__head:focus-visible {
  opacity: 0.72;
}

.sitemap-block__title {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.sitemap-block__arrow {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #002b5b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sitemap-block__arrow::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: -2px;
}

.sitemap-block__list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.sitemap-block__list li + li {
  margin-top: 6px;
}

.sitemap-block__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #333;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 2.2px;
  text-decoration: none;
  transition: color 0.2s;
}

.sitemap-block__link:hover,
.sitemap-block__link:focus-visible {
  color: #002b5b;
}

.sitemap-block__link:hover .sitemap-block__link-text,
.sitemap-block__link:focus-visible .sitemap-block__link-text {
  text-decoration: underline;
}

.sitemap-block__external {
  display: inline-flex;
  flex: 0 0 auto;
  width: 0.85em;
  height: 0.85em;
  margin-top: -0.1em;
}

.sitemap-block__external svg {
  display: block;
  width: 100%;
  height: 100%;
}

.sitemap-block__external-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .sitemap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }

  .sitemap__col {
    display: contents;
  }

  .sitemap-block {
    width: 100%;
    margin-bottom: 0;
    order: var(--sitemap-order, 0);
  }

  .sitemap-block__title {
    font-size: 18px;
  }

  .sitemap-block__arrow {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .sitemap-block__arrow::before {
    width: 6px;
    height: 6px;
  }

  .sitemap-block__link {
    font-size: 15px;
  }
}
