/* ==========================================================================
   Layout: Footer
   ========================================================================== */
.l-footer {
  width: 100%;
  background-color: #791336;
  color: #ffffff;
  padding-top: 60px;
}
.l-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
.l-footer__logo {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 20px;
  padding: 0 20px;
}
.l-footer__logo h2 {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.l-footer__logo a {
  display: inline-block !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  transition: opacity 0.3s ease;
}
.l-footer__logo a:hover {
  opacity: 0.85;
}
.l-footer__logo img {
  max-width: 100%;
  height: 34px !important;
  width: auto;
  display: inline-block !important;
  vertical-align: bottom;
  margin: 0 auto !important;
  filter: brightness(0) invert(1) !important;
}
.l-footer__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 0;
}
.l-footer__row:not(:last-child) {
  border-bottom: 1px solid #aa853e;
}
.l-footer__label {
  width: 120px;
  border: 1px solid #aa853e;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-left: 0;
  width: 100%;
}
.l-footer__links li {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.l-footer__links li a {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.3s ease, text-decoration 0.3s ease;
}
.l-footer__links li a:hover {
  text-decoration: none;
  opacity: 0.85;
}
@media screen and (min-width: 768px) {
  .l-footer__row {
    flex-direction: row;
    align-items: center;
    padding: 24px 0;
  }
  .l-footer__label {
    width: 140px;
    flex-basis: 140px;
    padding: 10px 0;
    margin-bottom: 0;
  }
  .l-footer__links {
    margin-left: 30px;
    gap: 8px 24px;
    width: auto;
  }
}
.l-footer__bottom {
  border-top: 1px solid #aa853e;
  background-color: #791336;
  text-align: center;
  padding: 24px 20px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-footer__bottom .l-footer__policy {
  font-size: 13px;
  margin-bottom: 8px;
}
.l-footer__bottom .l-footer__policy a {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.3s ease, text-decoration 0.3s ease;
}
.l-footer__bottom .l-footer__policy a:hover {
  text-decoration: none;
  opacity: 0.85;
}
.l-footer__bottom .l-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
}
