@charset "UTF-8";

/* ==========================================================================
   sitemap.css
   「サイトマップ」専用CSS
   ========================================================================== */

.c-sitemap {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 820px), print {
  .c-sitemap {
    -moz-columns: 2;
         columns: 2;
  }
}
.c-sitemap li {
  position: relative;
}
.c-sitemap li::before {
  position: absolute;
  left: 0;
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.c-sitemap li a {
  font-weight: bold;
  color: currentColor;
}
.c-sitemap > li {
  padding-left: 1.7rem;
  margin-bottom: 2.4rem;
}
.c-sitemap > li::before {
  left: 0;
  top: 0.8rem;
  width: 1rem;
  height: 1.2rem;
  background-image: url(../../img/common/ico-sitemap-arrow.svg);
}
@media screen and (min-width: 820px), print {
  .c-sitemap > li > a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 819px) {
  .c-sitemap > li > a {
    font-size: 1.6rem;
  }
}
.c-sitemap ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-sitemap ul > li {
  position: relative;
  padding-left: 1.7rem;
  margin-top: 1.2rem;
}
.c-sitemap ul > li::before {
  left: 0.4rem;
  top: 0.8rem;
  width: 0.7rem;
  height: 1.1rem;
  background-image: url(../../img/common/ico-sitemap-arrow-sub.svg);
}
@media screen and (min-width: 820px), print {
  .c-sitemap ul > li > a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 819px) {
  .c-sitemap ul > li > a {
    font-size: 1.2rem;
  }
}
