.footer {
  background: #FAFAFA;
  padding: 32px 15px 22px;
}
.footer .footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer .footer__inner .flex__box {
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 767px) {
  .footer .footer__inner .flex__box {
    display: block;
  }
}
.footer .footer__inner .flex__box nav {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .footer .footer__inner .flex__box nav {
    width: 100%;
    box-sizing: border-box;
  }
  .footer .footer__inner .flex__box nav + nav {
    margin-top: 15px;
  }
}
.footer .footer__inner .flex__box nav .nav__top {
  margin-bottom: 10px;
}
.footer .footer__inner .flex__box nav .nav__top a {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .footer .footer__inner .flex__box nav .nav__top a:hover {
    color: #EB6100;
  }
  .footer .footer__inner .flex__box nav .nav__top a:hover .arrow::before,
  .footer .footer__inner .flex__box nav .nav__top a:hover .arrow::after {
    background: #EB6100;
  }
}
.footer .footer__inner .flex__box nav .nav__top a .arrow {
  border: none;
  margin: 0 0 0 10px;
}
.footer .footer__inner .flex__box nav .nav__ttl {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer .footer__inner .flex__box nav ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer__inner .flex__box nav ul li {
  margin-bottom: 10px;
  margin-right: 25px;
}
.footer .footer__inner .flex__box nav ul li a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 768px) {
  .footer .footer__inner .flex__box nav ul li a:hover {
    color: #EB6100;
  }
  .footer .footer__inner .flex__box nav ul li a:hover .arrow::before,
  .footer .footer__inner .flex__box nav ul li a:hover .arrow::after {
    background: #EB6100;
  }
}
.footer .footer__inner .bottom__box {
  border-top: 1px solid #CACACA;
  margin-top: 22px;
  padding: 32px 0 0;
}
.footer .footer__inner .bottom__box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .footer .footer__inner .bottom__box ul {
    justify-content: flex-start;
  }
}
.footer .footer__inner .bottom__box ul li {
  margin-bottom: 10px;
  margin-right: 25px;
}
.footer .footer__inner .bottom__box ul li a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 768px) {
  .footer .footer__inner .bottom__box ul li a:hover {
    color: #EB6100;
  }
}
.footer .footer__inner .copyright {
  padding: 32px 0 0;
  text-align: center;
  line-height: 1.1;
}
@media only screen and (max-width: 767px) {
  .footer .footer__inner .copyright {
    padding: 16px 0 0;
  }
}
.footer .footer__inner .copyright span {
  display: inline-block;
  text-align: left;
  font-size: 1rem;
  color: #333;
}