/*-----------------footer--------------------- */
.l-footer {
  background-color: #fff;
}

.l-footer .l-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0 60px;
  flex-wrap: wrap;
}

.l-footer-inner__left .logo {
  width: 129px;
  margin-bottom: 32px;
}

.l-footer-inner__left .info {
  letter-spacing: 0.05em;
  line-height: 1.73;
  margin-bottom: 24px;
}

.l-footer-inner__left .copyright {
  color: #707070;
  font-size: 1.2rem;
  font-family: "futura-pt", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo;
  letter-spacing: 0.05em;
}

.l-footer-inner__right {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .l-footer-inner__right{
    display:none;
  }
}

.footer-block h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block li {
  margin-bottom: 6px;
}

.footer-block a {
  font-size: 18px;
  color: #191919;
  text-decoration: none;
}

.footer-block a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .l-footer .l-footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .l-footer-inner__left {
    text-align: center;
  }

  .l-footer-inner__left .logo {
    margin-left: auto;
    margin-right: auto;
  }

  .l-footer-inner__left .info {
    justify-content: center;
  }

  .l-footer-inner__left .copyright {
    text-align: center;
  }

  .l-footer-inner__right {
    justify-content: center;
    gap: 32px;
  }
}
