@charset "UTF-8";
footer {
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}
footer .inner {
  width: 90%;
}
footer .logo {
  width: 200px;
  margin: 0 auto 50px;
}
footer .logo img {
  width: 100%;
}
footer nav {
  margin: 0 auto 120px;
}
footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  font-family: shippori-antique, sans-serif;
  font-weight: 400;
  font-style: normal;
}
footer nav ul li {
  font-size: 18px;
  letter-spacing: 2px;
  padding: 0 20px;
  writing-mode: vertical-rl;
}
footer nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  position: relative;
}
footer nav ul li a:hover {
  opacity: 1;
  color: #e50012;
}
footer nav ul li a:after {
  content: '';
  position: absolute;
  top: 0;
  right: -5px;
  width: 1px;
  height: 100%;
  background: #e50012;
  transition: all .3s;
  transform: scale(1, 0);
  transform-origin: left top;
}
footer nav ul li a:hover:after {
  transform: scale(1, 1);
}
footer nav ul li.pp {
  font-size: 13px;
  letter-spacing: 2px;
  padding: 0;
  writing-mode: horizontal-tb;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 60px;
  text-align: center;
}
footer nav ul li.pp a:after {
  display: none;
}
footer small {
  display: block;
  font-family: shippori-antique, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}
footer .bg_logo {
  width: 95%;
  position: absolute;
  left: 0;
  bottom: -30px;
  opacity: 0.03;
}
footer .bg_logo img {
  width: 100%;
}
@media screen and (max-width:1050px) {
  footer {
    padding: 50px 0 40px;
  }
  footer .logo {
    width: 140px;
    margin: 0 auto 30px;
  }
  footer nav {
    margin: 0 auto 100px;
  }
  footer nav ul li {
    font-size: 16px;
    padding: 0 12px;
  }
  footer nav ul li.pp {
    position: absolute;
    bottom: 50px;
  }
  footer small {
    font-size: 10px;
  }
}
@media screen and (max-width:700px) {
  footer .bg_logo {
    width: 220%;
    position: absolute;
    left: -15%;
  }
}