@charset "UTF-8";
/*--------------------------------
サイトマップ
---------------------------------*/
.sm-bg {
  background: #f4f7fa;
  position: relative;
  padding: 120px 0;
}
.sm-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 5.5%;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .sm-flex {
    justify-content: flex-start;
    gap: 40px;
  }
}

.smlist {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.-indent {
  padding-left: 0.7em;
  text-indent: -0.7em;
}

.smlist-item {
  line-height: 1.4;
  color: var(--text)
}

.smlist-item.-bold {
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.smlist-link {
    color: var(--text);
}
.smlist-link:hover {
    color: var(--bluegrey);
}

.smlist.-line {
  border-left: 1px solid #848484;
  padding-left: 15px;
}

.smlist-item_arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 2px solid #848484;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-top: 4px;
  margin-left: 8px;
}

.smlist-link:hover .smlist-item_arrow{
    border: 2px solid var(--bluegrey);
      border-left: 0;
  border-bottom: 0;
}

.smlist.-mt40 {
  margin-top: 40px;
}

@media screen and (max-width: 575px) {
  .sm-bg {
  padding: 80px 0;
}
}