@charset "UTF-8";
/* CSS Document */

/* sitemap */

.sitemap_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  gap: 40px 0;
	margin: 0;
	padding: 0;
}

.sitemap_list ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
  width: 45%;
}

.sitemap_list li {
	margin: 0 0 10px;
	padding: 0;
	font-size: 0.85em;
	line-height: 1.8em;
}

.sitemap_list .li_bold {
	font-size: 1em !important;
	font-weight: bold;
}

.sitemap_list li.mt {
  margin-top: 40px;
}

@media screen and (min-width: 1024px) {
  .sitemap_list ul {
    width: 20%;
  }

  .sitemap_list ul:first-of-type {
    width: 28%;
  }

  .sitemap_list li {
    font-size: 1em;
  }
}