@charset "utf-8";

.contents {
  max-width: 1000px;
}

.sitemap {
  margin-top: 50px;
}
.sitemap a {
  text-decoration: none;
}

.sitemap dl {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: start;
}

.sitemap dt {
  display: flex;
  align-items: center;
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  font-weight: bold;
}
.sitemap dt a {
  min-width: 280px;
  padding: 5px 10px;
  border: 1px #ddd solid;
}
.sitemap dt span {
  flex: 1;
  border-top: 1px #000 solid;
}

.sitemap dd {
  margin: 0;
  border-left: 1px #000 solid;
}
.sitemap ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  line-height: 100%;
}
.sitemap li {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.sitemap li span {
  width: 20px;
  margin-right: 20px;
  border-top: 1px #000 solid;
}

.sitemap dd ul li:first-child {
  align-items: start;
  padding-top: 0;
}
.sitemap dd ul li:last-child {
  align-items: end;
  padding-bottom: 0;
}

.others {
  margin-top: 60px;
}
.others li~li {
  margin-top: 5px;
}


/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1279px) {
}

@media screen and (max-width: 979px) {
    .sitemap dl {
      grid-template-columns: 290px 1fr;
    }
    .sitemap dt a {
      min-width: 230px;
    }
}

@media screen and (max-width: 779px) {
}

@media screen and (max-width: 579px) {
    .sitemap {
      margin-top: 30px;
    }
    .sitemap dl {
      display: block;
      grid-template-columns: auto;
    }
    .sitemap dl~dl {
      margin-top: 30px;
    }
    .sitemap dt a {
      width: 100%;
      min-width: auto;
    }
    .sitemap dt span {
      border-width: 0;
    }
    .sitemap dd {
      margin-top: 0px;
      margin-left: 20px;
    }
    .sitemap dd ul li:first-child {
      align-items: center;
      padding-top: 20px;
    }
    .sitemap li span {
      margin-right: 10px;
    }
}

@media screen and (max-width: 379px) {
}
