#footer{
  padding: 265px 5% 50px;
  background-image: url(../img/background/background.png);
  background-position: center;
  background-size: cover;
}

#footer-inner {
  padding: 50px 0;
}

.footer-container{
  max-width: 1440px;
}

.footer-contents{
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 30px;
}

.footer-logo{
  width: 200px;
  height: auto;
}

.footer-menu__area{
  width: 50%;
}

.footer-menu__area .menu-list{
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 50px;
}

.footer-menu__area .menu-list_2{
  justify-content: flex-start;
}

.footer-menu__area .menu-list li{
  width: fit-content;
}

.menu-item{
  text-align: left;
  line-height: 1.5;
  transition: 0.2s;
}

.menu-item:hover{
    color: var(--sub-color);
    transition: 0.2s;
}

.menu-jp{
  display: block;
  font-size: 1.2rem;
}

.footer-bottom{
  margin-top: 50px;
}

.pp-btn{
  text-decoration: underline;
  font-size: 1.2rem;
  transition: 0.2s;
}

.home-btn{
  display: inline-block;
  margin-left: 5px;
  font-size: 1.2rem;
  text-decoration: underline;
  transition: 0.2s;
}

.pp-btn:hover,
.home-btn:hover{
  opacity: 0.7;
  transition: 0.2s;
}

#copyright {
  font-size: 1.2rem;
  text-align:center;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 10px;

  width: fit-content;
}

@media screen and (max-width:1440px) { #footer{ padding: 225px 5% 50px; } }
@media screen and (max-width:1024px) { #footer{ padding: 200px 5% 50px; } }

@media screen and (max-width:1080px) {
  .footer-menu__area{
    display: none;
  }
}
@media screen and (max-width:768px) {
  .footer-bottom{
    flex-direction: column-reverse;
  }

  .home-btn{
    display: block;
    margin: 0;
  }
}