/* phpテンプレートに対してのスタイル */
/* tmpl/footer.phpに対してのスタイル */
#site-footer {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ft-localnav {
  display: flex;
  justify-content: center;
}
.ft-localnav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-localnav ul li {
  font-size: 14px;
  position: relative;
  padding-right: 8px;
}
.ft-localnav ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2em;
  background: var(--color-white);
}
.ft-bottom .ft-copyright {
  font-size: 12px;
}
.topBack {
  display: none;
}

@media (max-width: 800px) {
  #ft-about {
    padding: 0 0 30px 0;
  }
  .ft-about-img {
    width: 100%;
  }
  .ft-about-img img {
    width: 100%;
    object-fit: cover;
  }
  .ft-about-inner {
    flex-direction: column;
    align-items: center;
  }
  .ft-about-logo::after {
    display: none;
  }
  .ft-about-content {
    gap: 20px;
  }
}
