.siteFooter {
  background: #fff;
}
.footer-contents {
  margin: 20px 0;
}
.footer-contents p {
  color: #dd8500;
  text-align: center;
  font-weight: bold;
}
.footer-contents p br {
  display: none;
}
.footer-contents p strong {
    display: inline-block;
    background-color: #dd8500;
    color: #fff;
    padding: 0.4em 0.8em;
    border-radius: 4px;
    position: relative;
    margin-right: 0.8em; /* 吹き出しの尖り部分のスペース確保 */
}

.footer-contents p strong::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px; /* 吹き出しの右側に配置 */
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px; /* 右向きの三角形 */
    border-color: transparent transparent transparent #dd8500;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  max-width: 1140px;
  margin: 20px auto 0;
  gap: 10px;
}

.footer-menu h2 {
  font-size: 16px;
  margin: 0 0 0.5em;
  padding: 0;
  border: none;
  box-shadow: none;
  background: none;
  color: #888;
  font-weight: bold;
}

.footer-menu ul {
  display: flex;
  gap: 0 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 0 1em 1em;
  justify-content: flex-start;
}

.footer-menu .column,
.footer-menu .service {
  /* border: solid 2px #FFB347;
  border-radius: 8px; */
  padding: 10px 10px 0;
  /* background: #fff; */
}

.footer-menu .column {
  width: 50%;
}

.footer-menu .service {
  width: 70%;
}

.footer-menu li {
  list-style: none;
  width: calc((100% - 40px) / 3);
  margin: 0;
}

.footer-menu li a {
  font-size: 14px;
  font-weight: bold;
}

.footer-menu li a::before {
  content: "-";
  display: inline-block;
  margin: 0 5px 0 0;
}

@media (max-width: 767px) {
  .footer-contents p {
    width: 94%;
    margin: 0 auto;
  }
  .footer-contents p strong {
      display: block;
      margin-right: 0;
      margin-bottom: 0.8em; /* 下のテキストとの間隔 */
  }
  .footer-contents p strong::after {
      top: auto;
      bottom: -8px; /* 吹き出しの下に配置 */
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      border-width: 8px 8px 0 8px; /* 下向きの三角形 */
      border-color: #dd8500 transparent transparent transparent;
  }
  .footer-contents p br {
    display: block;
  }    
  .footer-menu {
    display: block;
  }

  .footer-menu .column,
  .footer-menu .service {
    width: 94%;
    margin: 0 auto;
  }

  .footer-menu li {
    list-style: none;
    width: calc((100% - 20px) / 2);
    margin: 0;
  }

}


/* 目次 */
#toc_container .toc_depth_1 {
  color: #FFB347;
  font-weight: bold;
}

#toc_container .toc_depth_2 {
  color: #FFB347;
  font-weight: bold;
}

#toc_container .toc_depth_3 {
  color: #FFB347;
  font-weight: bold;
}

#toc_container .toc_depth_4 {
  color: #FFB347;
  font-weight: bold;
}

#toc_container .toc_depth_5 {
  color: #FFB347;
  font-weight: bold;
}

#toc_container .toc_depth_6 {
  color: #FFB347;
  font-weight: bold;
}

#toc_container .toc_list li {
  font-size: 16px;
}

#toc_container .toc_list li>ul {
  margin: 0.5em 0 0 1.5em;
}

#toc_container .toc_list li>ul li {
  font-size: 13px;
  margin: 0 0 0.5em;
}

#toc_container .toc_list li a {
  color: #333;
}

/* h3（1.1など）の番号を非表示 */
.toc_list .toc_number.toc_depth_2,
.toc_list .toc_number.toc_depth_3,
.toc_list .toc_number.toc_depth_4,
.toc_list .toc_number.toc_depth_5,
.toc_list .toc_number.toc_depth_6 {
    display: none;
}

/* h3のリンクの前にハイフンを追加 */
.toc_list ul li a::before {
    content: "-";
    margin-right: 0.5em;
    color: #FFB347;
    font-weight: bold;
}