.Footer {
  background-color: var(--color-primary);
  padding: 60px 0 48px;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .Footer {
    padding: 40px 0 60px;
  }
}
.Footer-FixedCta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
  opacity: 1;
  visibility: visible;
  transition-property: opacity, visibility;
  transition-duration: 0.25s, 0s;
  transition-timing-function: ease, linear;
  transition-delay: 0s, 0s;
  will-change: opacity;
}
.Footer-FixedCta[data-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0.25s;
}
@media screen and (max-width: 980px) {
  .Footer-FixedCta {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-right: 8px;
    gap: 8px;
  }
}
.Footer-FixedCtaButton {
  border-radius: 6px;
  flex: 1;
  width: 100%;
  max-width: 450px;
  height: 75px;
  padding-left: 55px;
  display: flex;
  align-items: center;
  gap: 38px;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.72;
}
.Footer-FixedCtaButton:hover {
  opacity: 0.85;
}
@media screen and (max-width: 980px) {
  .Footer-FixedCtaButton {
    height: 48px;
    justify-content: center;
    gap: 12px;
    padding-left: 0px;
    font-size: 16px;
    letter-spacing: 0.03em;
  }
}
.Footer-FixedCtaButton-Text {
  display: inline-block;
}
.Footer-FixedCtaButton-Icon {
  width: auto;
  height: 32px;
}
@media screen and (max-width: 980px) {
  .Footer-FixedCtaButton-Icon {
    height: 22px;
  }
}
.Footer-FixedCtaButton__Line {
  background-color: #00b623;
}
.Footer-FixedCtaButton__Tel {
  background-color: #f16908;
}
.Footer__Inner {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 16px;
}
.Footer__Top {
  display: grid;
  grid-template-areas: "brand nav" "brand cta";
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: start;
  row-gap: 32px;
  column-gap: 60px;
}
@media screen and (max-width: 980px) {
  .Footer__Top {
    grid-template-areas: "nav" "cta" "brand";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 32px;
  }
}
.Footer__Brand {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 980px) {
  .Footer__Brand {
    gap: 24px;
  }
}
.Footer-Logo {
  display: inline-block;
  text-decoration: none;
}
.Footer-Logo img {
  display: block;
  width: 200px;
  height: auto;
}
@media screen and (max-width: 980px) {
  .Footer-Logo {
    display: none;
  }
}
.Footer-Company {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Footer-Company-Name {
  position: relative;
  width: fit-content;
  padding-bottom: 12px;
  padding-left: 4px;
  padding-right: 4px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.Footer-Company-Name::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.Footer-Offices {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.Footer-Offices li {
  color: #fff;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 980px) {
  .Footer-Offices li {
    font-size: 11px;
  }
}
.Footer-Nav {
  grid-area: nav;
  width: 100%;
}
.Footer-Nav-Columns {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 980px) {
  .Footer-Nav-Columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.Footer-Nav-Column {
  list-style: none;
}
.Footer-Nav-List {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 980px) {
  .Footer-Nav-List {
    gap: 24px;
  }
}
.Footer-Nav-Link {
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 980px) {
  .Footer-Nav-Link {
    gap: 8px;
    font-size: 13px;
  }
}
.Footer-Nav-Link:hover {
  opacity: 0.7;
}
.Footer-Nav-Dot {
  display: inline-block;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .Footer-Nav-Dot {
    width: 6px;
    height: 6px;
  }
}
.Footer-Cta {
  grid-area: cta;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 980px) {
  .Footer-Cta {
    flex-direction: column;
    gap: 10px;
  }
}
.Footer-CtaButton {
  border-radius: 4px;
  transition: opacity 0.2s;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
@media screen and (max-width: 980px) {
  .Footer-CtaButton {
    height: 80px;
    flex: auto;
    justify-content: flex-start;
    gap: 24px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 18px;
  }
}
.Footer-CtaButton:hover {
  opacity: 0.9;
}
.Footer-CtaButton--Form {
  background-color: #f16908;
}
.Footer-CtaButton--Tel {
  background-color: #f16908;
}
.Footer-CtaButton--Line {
  background-color: #00b623;
}
.Footer-CtaButton-Icon {
  flex-shrink: 0;
  width: 24px;
  height: auto;
}
@media screen and (max-width: 980px) {
  .Footer-CtaButton-Icon {
    width: 32px;
  }
}
.Footer-CtaButton-Text {
  display: inline-block;
}
@media screen and (max-width: 980px) {
  .Footer-CtaButton--Line .Footer-CtaButton-Text,
  .Footer-CtaButton--Tel .Footer-CtaButton-Text {
    padding-left: 24px;
  }
}
.Footer-Copyright {
  margin-top: 96px;
  text-align: center;
  color: #d4d4d4;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 980px) {
  .Footer-Copyright {
    margin-top: 48px;
    font-size: 11px;
  }
}
@media screen and (max-width: 980px) {
  .PC {
    display: none;
  }
}
@media screen and (min-width: 980px) {
  .SP {
    display: none;
  }
}
