/* 

フッター

*/

#footer {
  color: var(--color-black);
  border-top: 1px solid #dddddd;
  padding: 40px 0 24px;
  text-align: center;
}

#footer .footer-nav {
  margin-bottom: 24px;
  text-align: center;
}

#footer .footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 16px;
  width: 100%;
}

#footer .footer-menu-item {
  position: relative;
  padding: 0 20px;
}

#footer .footer-menu-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  background-color: #333333;
  transform: translateY(-50%);
}

#footer .footer-menu a {
  text-decoration: none;
  color: inherit;
}

#footer .footer-menu a:hover {
  opacity: 0.7;
}

#footer .copy-right {
  text-align: center;
  font-size: 12px;
}

@media (max-width: 767px) {
  #footer {
    padding: 32px 16px 20px;
  }

  #footer .footer-menu {
    flex-wrap: wrap;
    gap: 0;
    font-size: 14px;
  }

  #footer .footer-menu-item {
    padding: 0 12px;
  }

  #footer .footer-menu-item:not(:last-child)::after {
    height: 14px;
  }

  #footer .copy-right {
    margin-top: 16px;
  }
}