/* モラタメとは ページ内リンクの sticky nav */
/* https://dohouse.backlog.jp/view/MTSD-9969 */
.p-9969-sticky-footer {
  bottom: 0;
  z-index: 9999;
  display: flex;
  padding-right: 6px;
  padding-left: 6px;
  width: 100vw;
  height: 50px;
  background-color: #EB651A;
  list-style: none;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.35;
}
@media screen and (min-width: 425px) {
  .p-9969-sticky-footer {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .p-9969-sticky-footer {
    font-size: 18px;
  }
}
.p-9969-sticky-footer li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 6px;
  width: 33.3333%;
}
.p-9969-sticky-footer li::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 1px;
  height: 20px;
  background-color: white;
  content: "";
}
.p-9969-sticky-footer li:last-child::after {
  display: none;
}
.p-9969-sticky-footer a {
  display: block;
  width: 100%;
  color: white;
}
@media screen and (min-width: 768px) {
  .p-9969-sticky-footer a br {
    display: none;
  }
}

#topscrollWrp {
  margin-top: 0;
}

/* /モラタメとは ページ内リンクの sticky nav */