/*------------------------------------
フッター用CSS
------------------------------------*/
footer {
  overflow: hidden;
}
.footer-inner {
  width: 90%;
  max-width: 1140px;
  margin: auto;
  padding: 90px 0;
}
.footer-contact {
  background-image: url(../../img/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer-contact .footer-inner .btn-container {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.footer-contact .footer-inner .btn-container .defalt-btn.tel-btn a.normal-btn {
  background-color: transparent;
  font-size: 1.3rem;
  font-weight: 400;
  padding: 0 20px;
}
.footer-contact .footer-inner .btn-container .defalt-btn.tel-btn a.normal-btn:hover {
  background-color: var(--color-sub);
}
.footer-contact .footer-inner .btn-container .defalt-btn.tel-btn a.normal-btn i {
  font-size: 1.1rem;
  margin-right: 5px;
}
.footer-contact .footer-inner .btn-container .defalt-btn.tel-btn a.normal-btn::before {
  display: none;
}
.footer-contact .footer-inner .btn-container .defalt-btn.tel-btn p {
  margin-top: 8px;
  font-size: 0.8rem;
  text-align: center;
}
.footer-contact .footer-inner .description {
  width: fit-content;
  margin: 30px auto 0;
  font-family: var(--font-sub-2);
}
footer .footer-menu {
  background-color: #000000;
}
footer .footer-menu .footer-inner {
  padding: 40px 0;
}
footer .footer-menu .footer-inner .footer-menu-container .footer-logo {
  width: 300px;
}
footer .footer-menu .footer-inner .footer-menu-container .footer-logo img {
  transition: .3s;
}
footer .footer-menu .footer-inner .footer-menu-container .footer-logo img:hover {
  opacity: 0.8;
}
footer .footer-menu .footer-inner .footer-menu-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list {
  display: flex;
  gap: 40px;
  align-items: center;
}
footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list ul li a {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  transition: 0.3s;
}
footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list ul li a:hover {
  color: var(--color-sub);
}
footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list .instagram {
  width: 40px;
}
footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list .instagram a {
  display: block;
  width: 100%;
  transition: 0.3s;
}
footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list .instagram a:hover {
  opacity: 0.8;
}
footer .copy {
  background-color: #fff;
  padding: 12px 0;
  color: #000;
  text-align: center;
  font-size: 0.8rem;
}

@media only screen and (max-width: 1080px) {
  .footer-inner {
    width: 90%;
    padding: 40px 0;
  }
  .footer-contact .footer-inner .btn-container {
    padding: 40px 0 20px;
  }
  footer .footer-menu .footer-inner .footer-menu-container .footer-logo {
    width: 250px;
  }
  footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list ul {
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
  }
  footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list ul li {
    width: calc((100% - 30px) / 4);
  }
  footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list ul li a {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 767px) {
  .footer-inner {
    padding: 40px 0;
  }
  .footer-contact .footer-inner .btn-container {
    padding: 20px 0 0;
    flex-direction: column;
    gap: 20px;
  }
  footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list {
    gap: 20px;
    flex-direction: column-reverse;
  }
  footer .footer-menu .footer-inner .footer-menu-container .footer-logo {
    width: 220px;
  }
  footer .footer-menu .footer-inner .footer-menu-container {
    gap: 10px;
  }
  footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list ul li {
    width: calc((100% - 10px) / 2);
  }
  footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list ul {
    max-width: 300px;
  }
  footer .footer-menu .footer-inner .footer-menu-container .footer-menu-list .instagram {
    width: 35px;
  }
  .footer-contact .footer-inner .description {
    margin: 20px auto 0;
    font-size: 0.8rem;
  }
}