@charset "utf-8";

body {
  background-image: none;
}

#fv {
  background-image: url(../img/sitemap_fv.webp);
}

@media (max-width: 519px) {
  #fv {
    background-image: url(../img/sitemap_fv_sp.webp);
    height: 180px;
  }
}

#sitemap {
  padding-bottom: 40px;
  max-width: 1140px;
}

#sitemap .ttl {
  margin-top: 60px;
  color: #8A2222;
  font-size: 24px;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
}

#sitemap ul {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1px solid #D1CAC4;
  -moz-column-gap: 32px;
  -webkit-column-gap: 32px;
  column-gap: 32px;
  row-gap: 16px;
}

#sitemap ul li {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  -webkit-column-gap: 8px;
  column-gap: 8px;
  color: #000;
}

#sitemap ul li::before {
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  background: #920A0B;
}

#sitemap a {
  position: relative;
  line-height: 2.6;
}

#sitemap a::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #920A0B;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 1px;
  transition: all ease 0.3s;
}

#sitemap a:hover::after {
  width: 100%;
}

@media (max-width: 519px) {
  #sitemap .ttl {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 20px;
  }

  #sitemap ul {
    flex-direction: column;
    padding-bottom: 30px;
    row-gap: 10px;
  }

  #sitemap a {
    line-height: 1.6;
  }
}