.footer {
  display: flex;
  height: 276px;
}

.footer-logo {
  background-color: #F6F6F6;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo__img {
  width: 150px;
}

.footer-menu {
  background-color: #BDE0FF;
  flex-grow: 1;
  padding: 48px 80px 15px 94px;
}

.footer-menu__list {
  max-width: 834px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 48px;
}

.footer-menu__list a {
  color: #347CBE;
  text-align: center;
  font-family: var(--font-noto-sans-jp);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 18px;
}

.footer-menu__list-left {
  display: flex;
}

.footer-menu__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-right: 80px;
}

.footer-menu__contact {
  display: block;
  width: 199px;
  border-radius: 3px;
  border: 1px solid #2A77BF;
  background: #4A96DC;
  color: #fff!important;
  padding: 9px 0;
  text-align: center;
}

.footer-copy-right {
  color: #6D6B66;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-logo {
    width: 337px;
  }

  .footer-menu {
    padding: 48px 32px 15px 32px;
  }

  .footer-menu__list {
    margin-bottom: 32px;
  }

  .footer-menu__item {
    margin-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    display: block;
    height: auto;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-logo__img {
    width: 100px;
    margin: 40px 0;
  }

  .footer-menu__list, .footer-menu__list-left {
    display: block;
    text-align: center;
  }
  
  .footer-menu__list a {
    margin-bottom: 16px;
  }

  .footer-menu__list a:last-child {
    margin-bottom: 0;
  }

  .footer-menu__list-left {
    margin-bottom: 45px;
  }
  .footer-menu {
    padding: 40px 0 15px 0;
  }

  .footer-menu__item {
    margin-right: 0;
    align-items: center;
  }

  .footer-menu__item:first-child {
    margin-bottom: 16px;
  }

  .footer-copy-right {
    text-align: center;
  }
}