.global-footer {
  position: relative;
  z-index: 5;
  background: #fff;
  color: #123751;
  border-top: 1px solid #dce4e9;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.global-footer a { color: inherit; text-decoration: none; }

.global-footer__main {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 60px;
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: clamp(44px, 6vw, 96px);
}

.global-footer__logo {
  display: block;
  width: min(205px, 100%);
  margin-bottom: 20px;
}

.global-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.global-footer__address {
  margin: 0;
  color: #5d7180;
  font-size: 12px;
  font-style: normal;
  line-height: 1.85;
}

.global-footer__lead {
  max-width: 34em;
  margin: 0 0 18px;
  color: #667a88;
  font-size: 13px;
  line-height: 2;
}

.global-footer__lead span {
  display: block;
}

.global-footer__heading {
  margin: 3px 0 24px;
  color: #123751;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.global-footer__links {
  display: grid;
  gap: 15px;
}

.global-footer__links a {
  width: fit-content;
  color: #5d7180;
  font-size: 13px;
  line-height: 1.65;
  transition: color .2s ease, transform .2s ease;
}

.global-footer__links a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  margin: 0 10px 4px 0;
  background: #9fb2bf;
}

.global-footer__links a:hover {
  color: #063f69;
  transform: translateX(3px);
}

.global-footer__bottom {
  border-top: 1px solid #e1e7eb;
}

.global-footer__bottom-inner {
  width: min(1240px, calc(100% - 64px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.global-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.global-footer__legal a,
.global-footer small {
  color: #778995;
  font-size: 11px;
  line-height: 1.6;
}

.global-footer__legal a:hover { color: #063f69; }

@media (max-width: 760px) {
  .global-footer__main,
  .global-footer__bottom-inner {
    width: min(100% - 40px, 1240px);
  }

  .global-footer__main {
    grid-template-columns: 1fr 1fr;
    padding: 54px 0 44px;
    gap: 40px 28px;
  }

  .global-footer__brand { grid-column: 1 / -1; }
  .global-footer__logo { width: 180px; }

  .global-footer__bottom-inner {
    padding: 22px 0;
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
