@charset "UTF-8";
.l-footer {
  padding: 75px 0;
  background-color: #f4f4f4;
}
.l-footer .row {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.l-footer .row .col {
  width: 100%;
  max-width: calc(100% - 205px);
}
.l-footer .row .col + .col {
  width: 100%;
  max-width: 205px;
}

.l-footer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.l-footer nav ul li {
  width: calc(50% - 25px);
}
.l-footer nav ul li a {
  font-size: 20px;
  font-weight: 700;
}
.copyright {
  text-align: center;
  margin-top: 75px;
}
.l-footer small {
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  .l-footer .row .col {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .l-footer .row {
    flex-direction: column;
    gap: 75px;
  }
  .l-footer .row .col,
  .l-footer .row .col + .col {
    max-width: 100%;
  }
  .l-footer nav ul li {
    width: calc(50% - 12.5px);
  }
  .l-footer nav ul li a {
    display: inline-block;
    font-size: 16px;
  }
  .l-footer .link-btn {
    margin: 0 auto;
  }
  .l-footer small {
    font-size: 12px;
  }
}

@media screen and (min-width: 481px) {
  .contact-footer {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .contact-footer {
    position: fixed;
    display: flex;
    bottom: 0;
    width: 100%;
    z-index: 1000;
  }
  .contact-footer a {
    display: block;
    flex: 1;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 70px;
    font-size: 1.6rem;
  }
  .contact-footer span {
    position: relative;
  }
  .contact-footer span::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    margin: auto;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .contact-footer-tel {
    background-color: #fda1a1;
  }
  .contact-footer-mail {
    background-color: #64c6bb;
  }
  .contact-footer-mail span {
    padding-left: 20px;
  }
  .contact-footer-tel span::after {
    left: -25px;
    background-image: url(../images/ico-tel_white.svg);
  }
  .contact-footer-mail span::after {
    top: 5px;
    left: -5px;
    background-image: url(../images/ico-mail.svg);
  }
}
