/*------------------------------------
フッター用CSS
------------------------------------*/
.footer {
  overflow: hidden;
  background-color: #1E4EA5;
}
.footer-inner {
  width: 90%;
  padding: 80px 0 100px;
  margin: 0 auto;
  max-width: 1100px;
}
footer .footer-container {
  display: flex;
  gap: 30px;
}
footer .footer-container .left-content {
  width: 45%;
}
footer .footer-container .left-content .footer_logo {
  width: 60%;
  min-width: 300px;
}
footer .footer-container .left-content .detail {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
footer .footer-container .left-content .detail p {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 400;
}
footer .footer-container .left-content .detail p a {
  color: var(--color-white);
}
footer .footer-container .right-content {
  width: 55%;
  padding-top: 10px;
}
footer .footer-container .right-content .menu-title {
  font-weight: 600;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer-container .right-content .menu-title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  display: block;
}
footer .footer-container .right-content .footer-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}
footer .footer-container .right-content .footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .footer-container .right-content .footer-menu ul li {
  font-size: 0.9rem;
}
footer .footer-container .right-content .footer-menu ul li a {
  color: var(--color-white);
  transition: all .3s;
}
footer .footer-container .right-content .footer-menu ul li a:hover {
  color: var(--color-sub);
}
footer .copy {
  padding: 12px 0 30px;
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
}

@media only screen and (max-width: 1080px) {
  
}

@media only screen and (max-width: 767px) {
  footer .footer-container {
    gap: 30px;
    flex-direction: column;
  }
  footer .footer-container .left-content {
    width: 100%;
  }
  footer .footer-container .left-content .footer_logo {
    min-width: 260px;
    margin: auto;
  }
  footer .footer-container .left-content .detail {
    width: fit-content;
    margin: 20px auto 0;
    min-width: 260px;
  }
  footer .footer-container .right-content {
    padding: 0;
    width: 60%;
    min-width: 300px;
    margin: auto;
  }
  .footer-inner {
    padding: 60px 0;
  }
  footer .footer-container .right-content .footer-menu ul li {
    font-size: 0.8rem;
  }
}