@charset "utf-8";
/*共通*/
.pagevisual {
  background: url("../img/mv.png")no-repeat center;
  background-size: cover;
}

/*sitemap*/
.sitemap {
  width: 100%;
  max-width: 1024px;
  margin: 100px auto;
  border: 1px solid #000;
  padding: 64px 5% 0;
}
.sitemap_inner {
  width: 100%;
  max-width: 795px;
  margin: 0 auto;
  padding-bottom: 56px;
}
.sitemap_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 36px;
}
.sitemap_flex li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  width: 40%;
}
.sitemap_flex li:last-child {
  width: 35%;
}
.top_link {
  position: relative;
  width: 40%;
  display: block;
}
.sankaisou, .sitemap_flex a {
  position: relative;
  width: 100%;
  display: block;
}
.sankaisou {
  padding-left: 2em;
  margin: -16px 0 -8px;
}
.sankaisou::before {
  content: "";
  position: absolute;
  display: block;
  width: 1.5em;
  height: 1px;
  background: #F10215;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.top_link::before,
.sitemap_flex a::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #F10215;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top_link::after,
.sitemap_flex a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 1200px) {}

/*タブレット（縦）*/
@media screen and (orientation: portrait) and (min-width: 768px){
}

@media screen and ( max-width: 767px ){
  /*sitemap*/
  .sitemap {
    max-width: 90%;
    padding: 48px 48px 0;
    margin: 64px auto;
  }
  .sitemap_inner {
    padding-bottom: 48px;
  }
  .sitemap_flex {
    flex-direction: column;
    gap: 40px;
  }
  .top_link, .sitemap_flex li,
  .sitemap_flex li:last-child {
    width: 100%;
  }
  
  .sankaisou, .sitemap_flex a {
    font-size: 1.5rem;
  }
  .sankaisou {
    padding-left: 1.5em;
  }
  .sankaisou::before {
    width: 1em;
  }
}