
/* footer */
footer nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 25px 50px;
  background: #000062;
}

footer nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

footer nav ul a {
  margin: 0 15px;
}

footer nav li {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

footer nav li+li {
  border-left: 0;
  border-right: 1px solid #fff;
}

footer nav p,
footer nav ul a {
  color: #fff;
  font-size: small;
}

footer nav span {
  margin-left: 16px;
}

footer nav ul a:hover {
  color: #E2864F;
}


@media only screen and (max-width:767px) {
  footer nav {
    padding: 35px 15px;
  }

  footer nav li {
    border-left: 1px solid #fff;
    border-right: 0;
  }

  footer nav li+li {
    border-left: 1px solid #fff;
    border-right: 0;
  }

  footer nav p,
  footer nav ul a {
    font-size: x-small;
  }

  footer nav span {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  footer nav ul {
    flex-direction: column;
    row-gap: 13px;
  }
}

/* footer .logo-tagline */
footer .logo-tagline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 45px 50px;
  background: #fff
}

footer .nikken-logo {
  width: 145px;
}

footer .tagline {
  width: 380px;
}

@media only screen and (max-width:767px) {
  footer .logo-tagline {
    flex-direction: column-reverse;
    row-gap: 10px;
  }

  footer .nikken-logo {
    width: 150px;
  }

  footer .tagline {
    width: 150px;
  }
}

