@charset "utf-8";
/* default PC */

#contents .sitemap-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* view-1140 notePC,Tablet */
@media screen and (max-width: 1140px) {}

/* view-959 Mobile,Tablet */
@media screen and (max-width: 959px) {
  #contents .sitemap-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* view-559 Mobile */
@media screen and (max-width: 559px) {
  #contents .sitemap-list {
    gap: 15px;
  }
}

/* 559以下はRWD時に崩れがあれば任意で作成 */

/*IE*/
@media all and (-ms-high-contrast: none) {}