@charset "utf-8";
.footer {
  background-color: #000;
  color: #fff;
}
.footer-pagetop {
  display: block;
  background-color: #ccc;
  height: 45px;
  cursor: pointer;
  background-image: url("../img/icon-pagetop-01.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px auto;
  transition: all .2s ease-in-out;
}
.footer-pagetop:hover {
  background-color: #ddd;
}
.footer-menu {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-menu-item {
  padding: 0 10px;
}
.footer-corp {
  margin: 170px auto 0;
  width: 170px;
}
.footer-copy {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 1280px) {
  .footer-pagetop:hover {
    background-color: #ccc;
  }
  .footer-menu {
    max-width: 940px;
    padding: 30px 10px;
  }
  .footer-menu-item {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .footer-corp {
    margin: 150px auto 0;
    width: 170px;
  }
  .footer-copy {
    font-size: 10px;
  }
}
@media screen and (max-width: 730px) {
  .footer-menu {
    justify-content: flex-start;
  }
}
