@charset "utf-8";

/* ==========================================================================
   footer (旧 LP より移植)
   ========================================================================== */

footer {
  padding: min(7%, 70px) 0;
  background: #fff;
  text-align: center;
  font-family: var(--font-jp);
  color: var(--color-text);
}

footer .links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .links li {
  line-height: 1.3;
  padding: 0 1.2em;
  font-size: min(1.6vw, 16px);
  font-weight: 900;
}
footer .links li:nth-child(n + 2) {
  border-left: 3px solid;
}
footer .links li a {
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-decoration: underline;
}
footer .links li a:hover {
  opacity: 0.7;
}

footer .foot_logo {
  margin: min(5%, 50px) auto;
  width: min(31%, 310px);
}
footer .foot_logo img {
  width: 100%;
  height: auto;
  display: block;
}

footer .copy {
  margin: 0;
  font-size: min(1.3vw, 13px);
  font-weight: 900;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 750px) {
  footer {
    padding: 15% 5%;
  }
  footer .links li {
    margin-top: 1em;
    font-size: 4vw;
  }
  footer .links li:nth-child(n + 2) {
    border-left: 0.8vw solid;
  }
  footer .links li:nth-child(4) {
    border-left: none;
  }
  footer .foot_logo {
    margin: 9% auto;
    width: 60%;
  }
  footer .copy {
    font-size: 3.2vw;
  }
}
