.footer {
  width: 100%;
  padding: 60px 0;
  border-top: 1px solid #dddddd;
}
.footer .footer_inner_container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .footer_inner_container .link_list {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.footer .footer_inner_container .link_list .item ~ .item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  background: #eee;
  margin: 0 14px 0 16px;
  vertical-align: middle;
}
.footer .footer_inner_container .link_list .item .private {
  font-weight: 600;
  color: var(--primary-color);
}
.footer .footer_inner_container .link_list .item > a {
  font-weight: 300;
}
.footer .footer_inner_container .address,
.footer .footer_inner_container .tel,
.footer .footer_inner_container .copyright {
  font-size: 1rem;
  font-weight: 300;
}
.footer .footer_inner_container .address {
  font-style: normal;
  margin: 6px 0;
}
.footer .footer_inner_container .tel,
.footer .footer_inner_container .copyright {
  display: block;
}
.footer .footer_inner_container .copyright {
  margin-top: 30px;
}
.footer .footer_inner_container .announcement {
  margin-top: 12px;
  max-width: 600px;
  display: block;
}
.footer .left {
  flex-grow: 1;
}
.footer .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .logo_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer .family_site {
  display: flex;
  justify-content: end;
  gap: 8px;
}
.footer .family_site select {
  height: 35px;
  border: 1px solid #bbb;
  padding: 0 8px;
  width: 180px;
}
.footer .family_site .move_btn {
  display: flex;
  padding: 4px 16px;
  background-color: var(--primary-color);
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s;
}
.footer .family_site .move_btn:hover {
  background-color: #6232c2;
}
.footer .family_site .move_btn > span {
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .footer .footer_inner_container {
    gap: 40px;
  }
  .footer .footer_inner_container .right {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width: 720px) {
  .footer .footer_inner_container .left .link_list {
    justify-content: space-between;
  }
  .footer .footer_inner_container .left .link_list .item ~ .item::before {
    display: none;
  }
  .footer .footer_inner_container .left .link_list .item {
    padding: 6px 0;
  }
  .footer .footer_inner_container .right {
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer_inner_container .right .family_site {
    width: 100%;
  }
  .footer .footer_inner_container .right .family_site select {
    flex-grow: 1;
  }
}

/*# sourceMappingURL=footer.css.map */
