@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- SITEMAP --------------
***************************************/
#sitemap ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  margin: 30px auto;
}

@media (min-width: 768px) and (max-width: 1199px) {
  #sitemap ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  #sitemap ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
h3.h3 {
  color: var(--base-color04);
}

#sitemap ul li a {
  display: inline-block;
  position: relative;
  padding-left: 16px;
}

#sitemap ul li a:hover {
  color: var(--base-color04);
  opacity: 0.8;
  text-decoration: underline;
}

#sitemap ul li a:before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
}