/* 余白と幅 */
.footer {
  background-color: #FFFEF8;
  border-top: 1px solid #B1B1B1;
  padding-left: 8rem;
  padding-right: 8rem;
}

.footer_wrapper {
  width: 112rem;
  max-width: 100%;
  padding-top: 5.1rem;
}

/* ロゴ */
.footer_flex_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12.5rem;
}

.footer_logo {
  width: 23.6rem;
  height: 6.2rem;
}

.footer_logo_image {
  width: 100%;
  height: 100%;
}

/* フッターナビゲーションバー */
.footer_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_list_item {
  color: #212121;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', serif;
  margin-left: 5.7rem;
}

/* コピーライト */
.footer_image_box {
  width: 75.8rem;
  height: 5.4rem;
  margin-left: auto;
  margin-right: auto;
}

.footer_image {
  width: 100%;
  height: 100%;
}

.footer_copyright {
  width: 112rem;
  height: 6.3rem;
  background-color: #212121;
  border-radius: 2rem 2rem 0 0;
}

.footer_copyright_text {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', serif;
  padding-top: 2.1rem;
  width: 100%;
  height: 100%;
  text-align: center;
}

/* スマホ表示 */
@media screen and (max-width: 699.98px) {

  /* 余白と幅 */
  .footer {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .footer_wrapper {
    width: 32.5rem;
    padding-top: 2rem;
  }

  /* ロゴ */
  .footer_flex_box {
    display: block;
    margin-bottom: 14.6rem;
  }

  .footer_logo {
    width: 20rem;
    height: 5.2rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4.4rem;
  }

  /* フッターナビゲーションバー */
  .footer_list {
    margin-left: 1.1rem;
  }

  .footer_list {
    display: block;
  }

  .footer_list_item {
    margin-bottom: 2rem;
    margin-left: 0;
  }

  .footer_list_item:last-child {
    margin-bottom: 0;
  }

  /* コピーライト */
  .footer_image_box {
    width: 28.9rem;
  }

  .footer_image {
    object-position: left;
  }

  .footer_copyright {
    width: 32.5rem;
    height: 5rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .footer_copyright_text {
    padding-top: 1.7rem;
  }
}