@charset "UTF-8";
/*****************************
  sitemap
*****************************/
.sitemap{
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1rem;
}
.sitemap .sitelogo{
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}
.sitemap .sitelogo a{
  display: block;
  max-width: 300px;
}
.sitemap .siteitem{
  margin: 2% 3%;
  width: 26%;
}
.sitemap .siteitem > dt{
  border-bottom: 2px solid #D2E397;
  color: #8DAACB;
  font-family: "M PLUS 1", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}
.sitemap .siteitem > dt::before{
  content: "";
  aspect-ratio: 32 / 11;
  background: url(../../images/ob/arrow_blue.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
}
.sitemap .siteitem ul li{
  margin-top: 1rem;
}
.sitemap .siteitem ul li a{
  display: inline-block;
}
.sitemap .siteitem ul li a:hover{
  color: #8DAACB;
  opacity: 1;
  text-decoration: underline;
}

@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  .sitemap .siteitem {
    margin: 2% 2%;
    width: 45%;
  }
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .sitemap .sitelogo{
    margin: 0;
    text-align: left;
  }
  .sitemap .sitelogo a{
    max-width: 100%;
  }
  .sitemap .siteitem {
    margin: 3rem 0 0 ;
    width: 98%;
  }
}