/*サイトマップ */
.sitemap {
  background-color: #f6f6f6;
}

/* 共通パーツ調整 */
.sitemap .u-block-margin {
  margin-bottom: 100px;
}

@media screen and (max-width: 600px) {
  .sitemap .c-section-title {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .sitemap .u-block-margin {
    margin-bottom: 70px;
  }
}

/* パンくず調整 */
.sitemap .breadcrumb {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .sitemap .breadcrumb {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .sitemap .breadcrumb > .inner {
    font-size: 10px;
  }
}

/* サイトマップ */
.sitemap-title {
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid #242424;
}

.sitemap-title a {
  color: #004190;
}

.sitemap-title.company-name {
  margin-bottom: 30px;
}

.sitemap-title + .sitemap-title {
  margin-top: 30px;
}

.sitemap-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
}

.sitemap-list + .sitemap-title {
  margin-top: 30px;
}

.sitemap-list-item {
  padding-top: 13px;
  padding-bottom: 10px;
  font-size: 12px;
  border-bottom: 1px solid #D0D0CA;
}

.sitemap-list-item a {
  color: #004190;
}

.sitemap a.external {
  display: flex;
  gap: 10px;
}

.sitemap a.external::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-image: url("/kagu/wp-content/themes/kagu_plus/assets/images/common/icon-arrow-03.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 600px) {
  .sitemap-wrap {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}