@charset "utf-8";
/* -----------------------------------------------
 [sitemao]
-------------------------------------------------- */
.sitemap__list {
  margin-top: 50px;
}
.sitemap__list > li {
  margin: 0 0 15px;
}
.sitemap__title {
  margin-top: 50px;
  font-family: var(--font-gothic-m);
  font-weight: bold;
  font-size: 16px;
}
.sitemap__list02 {
  margin: 10px 0 0 10px;
}
.sitemap__list02 > li {
  position: relative;
  margin-top: 20px;
  padding-left: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.sitemap__list02 li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #930B0B;
  border-right: 2px solid #930B0B;
  transform: translateY(-50%) rotate(45deg);
}
@media(min-width: 768px){
  .sitemap__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px auto 0 auto;
  }
  .sitemap__list a:hover {
    text-decoration: underline;
  }
  .sitemap__list > li {
    flex: 0 0 47%;
    max-width: 47%;
  }
  .sitemap__title {
    font-size: 18px;
  }
  .sitemap__list02 > li {
    font-size: 15px;
  }
} /* pc */
