/*----------------------------------------------------- */
/*  footer           */
/*----------------------------------------------------- */
.footer {
  background: #E3E8F1;
  padding: 10px 0;
  display: block;
}

.footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.footer img {
  width: 123px;
}

.footer_list {
  display: flex;
  align-items: center;
}

.footer_list li {
  padding: 0 30px;
  border-left: 2px solid #858585;
  display: inline-flex;
}

.footer_list li:first-child {
  border-left: none;
  padding-left: 0;
}

.footer_list li:last-child {
  padding-right: 0;
}

.footer_list a {
  color: #092E62;
  font-size: 14px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .footer .inner {
    flex-direction: column;
    height: 100px;
    justify-content: space-evenly;
  }

  .footer_list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_list li:first-child {
    border-left: none;
    padding-left: 30px;
  }

  .footer_list li:last-child {
    border-left: none;
    padding-left: 0;
    padding-right: 0;
  }
}