/* Footer Legal Menu (Astra child) */
.footer-legal-bar{
  width:100%;
  box-sizing:border-box;
  background:#f7f7f7;
  border-top:1px solid rgba(0,0,0,.06);
  padding:12px 16px;
  font-size:12px;
  line-height:1.6;
}

.footer-legal-nav{
  max-width:1200px;
  margin:0 auto;
}

.footer-legal-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  list-style:none;
  padding:0;
  margin:0;
  align-items:center;
  justify-content:center;
}

.footer-legal-list > li{
  position:relative;
  padding-right:14px;
}
.footer-legal-list > li:not(:last-child)::after{
  content:"・";
  position:absolute;
  right:2px;
  top:0;
  bottom:0;
  display:inline-block;
}

.footer-legal-list a{
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.footer-legal-list a:hover,
.footer-legal-list a:focus{
  border-bottom-color:currentColor;
}

@media (max-width:480px){
  .footer-legal-bar{ padding:12px 12px; }
  .footer-legal-list{ gap:6px 10px; }
  .footer-legal-list > li{ padding-right:10px; }
}