@charset "UTF-8";

/*****************************
  サイトマップ
*****************************/
.sitemaplist {
  background: #F7F7F7;
  gap: 1rem;
  padding: 4rem;
}
.sitemaplist li{
  width: calc(50% - 1rem);
}

.sitemaplist li a{
  background: #2A5350;
  border: 1px solid #2A5350;
  border-radius: 5px;
  color: #fff;
  display: block;
  opacity: 1;
  padding: .5rem 2rem .5rem 3rem;
  position: relative;
  transition: .5s;
}
.sitemaplist li a::before{
  content: "\f054";
  font: var(--fa-font-solid);
  position: absolute;
  top: 10px;
  left: 1rem;
}
.sitemaplist li a:hover{
  background: #fff;
  color: #2A5350;
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .sitemaplist {
    padding: 2rem;
  }
  .sitemaplist li{
    width: 100%;
  }
}