/*****************************

sitemap CSS

*****************************/

.under_layer.sitemap .inner {
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (max-width: 900px) {
  .under_layer.sitemap .inner {
    width: 85%;
  }
}
@media all and (max-width: 600px) {
  .under_layer.sitemap .inner {
    width: 90%;
    display: block;
  }
}

.sitemap .block {
  width: 40%;
  margin-bottom: 60px;
}
.sitemap .block.min {
  margin-bottom: 40px;
}
@media all and (max-width: 600px) {
  .sitemap .block {
    width: 100%;
    margin-bottom: 40px;
  }
  .sitemap .block.min {
    margin-bottom: 40px;
  }
}

.sitemap .block.mb {
  margin-bottom: 0;
}
@media all and (max-width: 600px) {
  .sitemap .block.mb:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.sitemap .block_content {
  width: 100%;
  margin-bottom: 40px;
}
.sitemap .block_content:last-of-type {
  margin-bottom: 0;
}
@media all and (max-width: 600px) {
  .sitemap .block_content {
    margin-bottom: 40px;
  }
}
.sitemap a {
  display: block;
}
@media all and (min-width: 901px) {
  .sitemap a:hover {
    opacity: 0.5;
  }
}

.sitemap .cate_link {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8em;
  position: relative;
  padding-left: 1.5em;
}
.sitemap li:last-of-type .cate_link {
  margin-bottom: 0;
}

@media all and (max-width: 600px) {
  .sitemap .cate_link {
    font-size: 1.6rem;
  }
}
.sitemap .cate_link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #002c76;
  width: 0.5em;
  height: 0.5em;
}
.sitemap .child_link {
  padding: 0.8em 0.5em 0.8em;
  border-bottom: 1px solid #d9d9d9;
  padding-left: 2em;
  position: relative;
}
.sitemap .child_link > a::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5em;
  margin: auto;
}
.sitemap .child_link:nth-of-type(2) {
  border-top: 1px solid #d9d9d9;
}
.sitemap .fl_box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  border-top: 1px solid #d9d9d9;
  padding-bottom: 0.3em;
}
.sitemap .fl_box:last-of-type {
  border-bottom: 1px solid #d9d9d9;
}
/* .sitemap .child_link.fl_box > a::before {
  display: none;
} */
.sitemap .sub_cate {
  width: 30%;
  white-space: nowrap;
  position: relative;
  padding: 0.5em 0;

  padding-left: 2em;
}
.sitemap .sub_cate::before {
  content: "";
  display: block;
  width: 0.8em;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5em;
  margin: auto;
}

.sitemap .sub_child {
  width: 70%;
}

@media all and (max-width: 600px) {
  .sitemap .sub_cate {
    width: 40%;
  }

  .sitemap .sub_child {
    width: 60%;
  }
}
.sitemap .sub_child a {
  position: relative;
  padding: 0.5em 0;
  padding-left: 2em;
}
.sitemap .sub_child a::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5em;
  margin: auto;
}
