@charset "UTF-8";
/* 共通カラー */
/* ブレイクポイント */
/* メディアクエリ */
.section--gray {
  background: #f6f7f7;
  padding: 30px 0;
}
@media screen and (min-width: 520px) {
  .section--gray {
    padding: 50px 0;
  }
}
@media screen and (min-width: 760px) {
  .section--gray {
    padding: 30px 0 70px;
  }
}

.sitemap {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto 30px auto;
}
@media screen and (min-width: 760px) {
  .sitemap {
    margin: 0 auto 70px auto;
  }
}
.sitemap:last-of-type {
  margin: 0 auto 0 auto;
}
.sitemap__title {
  position: relative;
  padding-left: 40px;
}
.sitemap__title a {
  display: inline-block;
}
.sitemap__title a:hover span {
  color: #f00;
  border-bottom: 1px solid #f00;
}
.sitemap__title span {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  margin-right: 20px;
}
@media screen and (min-width: 960px) {
  .sitemap__title span {
    font-size: 2.2rem;
  }
}
.sitemap__title small {
  font-size: 1.4rem;
  font-weight: bold;
  color: #f00;
}
@media screen and (min-width: 960px) {
  .sitemap__title small {
    font-size: 1.5rem;
  }
}
.sitemap__title::before {
  content: "";
  background-image: url(../img/sitemap/title_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 22px;
  height: 21px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sitemap__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px 10px;
  margin-top: 10px;
}
@media screen and (min-width: 760px) {
  .sitemap__wrap {
    padding: 20px;
  }
}
@media screen and (min-width: 960px) {
  .sitemap__wrap {
    padding: 30px;
  }
}
.sitemap__group {
  width: 50%;
  padding-right: 5px;
  padding-left: 5px;
  margin-bottom: 20px;
}
.sitemap__group:nth-of-type(2n) {
  margin-bottom: 0;
}
@media screen and (min-width: 760px) {
  .sitemap__group {
    width: 25%;
    padding-right: 20px;
    padding-left: 0;
    margin-bottom: 0;
  }
}
.sitemap__oversight {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 20px;
  margin-bottom: 10px;
}
@media screen and (min-width: 760px) {
  .sitemap__oversight {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  .sitemap__oversight {
    font-size: 1.8rem;
    padding-left: 27px;
  }
}
.sitemap__oversight::before {
  content: "";
  background-image: url(../img/sitemap/oversight_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 10px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 8px;
}
.sitemap__oversight:hover::before {
  background-image: url(../img/sitemap/oversight_red_icon.svg);
}
.sitemap__oversight:hover {
  color: #f00;
}
.sitemap__oversight:hover span {
  color: #f00;
}
.sitemap__oversight span {
  display: inline-block;
}
.sitemap__item {
  padding-bottom: 10px;
}
.sitemap__item a {
  display: inline-block;
  position: relative;
  padding-left: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 760px) {
  .sitemap__item a {
    padding-left: 20px;
  }
}
@media screen and (min-width: 960px) {
  .sitemap__item a {
    font-size: 1.5rem;
  }
}
.sitemap__item a:hover {
  color: #f00;
}
.sitemap__item a:hover span {
  color: #f00;
}
.sitemap__item a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 1px;
  background: #000;
  left: 0;
  top: 12px;
}
@media screen and (min-width: 760px) {
  .sitemap__item a::before {
    width: 10px;
  }
}
.sitemap__item a:hover::before {
  background: #f00;
}
.sitemap__item a span {
  display: inline-block;
}