section.kv {
  margin-top: 140px;
}
@media screen and (max-width: 1200px) {
  section.kv {
    margin-top: 70px;
  }
}

section.sitemap .inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
section.sitemap .inner .section_title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section.sitemap .inner .section_title {
    margin-top: 30px;
  }
}
section.sitemap .inner .section_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 35px;
  border-bottom: 2px solid #20459e;
}
section.sitemap .inner .section_title h2 {
  color: #4c4c4c;
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section.sitemap .inner .section_title h2 {
    font-size: 24px;
  }
}
section.sitemap .inner .content {
  margin-top: 70px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  section.sitemap .inner .content {
    margin-top: 35px;
    margin-bottom: 50px;
  }
}
section.sitemap .inner .content .page-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}
@media screen and (max-width: 768px) {
  section.sitemap .inner .content .page-list {
    grid-template-columns: 1fr;
    gap: 30px 30px;
  }
}
section.sitemap .inner .content .page-list .page-item .page-link {
  display: block;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e4e4e4;
  font-size: 20px;
  font-family: "Zen Old Mincho";
  color: #20459e;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  transition: opacity 0.3s;
}
@media (hover) {
  section.sitemap .inner .content .page-list .page-item .page-link:hover {
    opacity: 0.7;
  }
}
section.sitemap .inner .content .page-list .page-item .page-link .arrow {
  display: inline-block;
  font-size: 15px;
  position: relative;
  color: #20459e;
}
@media screen and (max-width: 768px) {
  section.sitemap .inner .content .page-list .page-item .page-link .arrow {
    font-size: 12px;
  }
}
section.sitemap .inner .content .page-list .page-item .subpage-list {
  display: flex;
  flex-direction: column;
  gap: 1lh;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section.sitemap .inner .content .page-list .page-item .subpage-list {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
section.sitemap .inner .content .page-list .page-item .subpage-list .subpage-link {
  padding-left: 1em;
  transition: opacity 0.3s;
}
@media (hover) {
  section.sitemap .inner .content .page-list .page-item .subpage-list .subpage-link:hover {
    opacity: 0.7;
  }
}
section.sitemap .inner .content .page-list .page-item .subpage-list .subpage-link span {
  display: inline-block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  rotate: -45deg;
  width: 7px;
  height: auto;
  aspect-ratio: 1/1;
  transform-origin: center left;
  margin-right: 0.5em;
}

/*# sourceMappingURL=style.css.map */
