@charset "UTF-8";
/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
.area_sitemap .sec_sitemap {
  margin-top: 80px;
}
@media all and (max-width: 896px) {
  .area_sitemap .sec_sitemap {
    margin-top: 50px;
  }
}
.area_sitemap .list_sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media all and (max-width: 896px) {
  .area_sitemap .list_sitemap {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media all and (max-width: 480px) {
  .area_sitemap .list_sitemap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.area_sitemap .list_sitemap a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #DFDFDF;
  position: relative;
  font-size: 1.8rem;
  height: 100%;
  color: #000;
}
@media all and (max-width: 896px) {
  .area_sitemap .list_sitemap a {
    font-size: 1.6rem;
  }
}
.area_sitemap .list_sitemap a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #AE2803;
  position: absolute;
  bottom: -1px;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 896px) {
  .area_sitemap .list_sitemap a::before {
    width: 20px;
  }
}
.area_sitemap .list_sitemap a:hover {
  opacity: 1;
}
.area_sitemap .list_sitemap a:hover::before {
  width: 100%;
}