@charset "UTF-8";

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	footer
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.front-footer {
  display: flex;
  flex-direction: column  ;
  justify-content: start;
  align-items: start;
  background: #111827;
  padding: 40px 20px;
  font-family: 'Noto Sans JP', sans-serif;
}
.front-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.front-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.15fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.front-footer__brand-link {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
.front-footer__brand-copy {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  color: #9ca3af;
}
.front-footer__nav-title {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}
.front-footer__nav a {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: #9CA3AF;
}
.front-footer__nav a:last-child {
  margin-bottom: 0;
}
.front-footer__cta-block {
  display: flex;
  flex-direction: column;
}
.front-footer__cta {
  display: block;
  margin-bottom: 18px;
}
.front-footer__cta:last-child {
  margin-bottom: 0;
}
.front-footer__cta img {
  width: 100%;
  max-width: 352px;
  height: auto;
}
.front-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding-top: 40px;
}
.front-footer__copyright {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #6b7280;
}
.front-footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.front-footer__legal a {
  font-size: 12px;
  line-height: 1.6;
  color: #9ca3af;
}

@media only screen and (max-width: 768px) {
  .front-footer {
    padding: 40px 20px 28px;
  }
  .front-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 0px;
  }
  .front-footer__brand-link {
    margin-bottom: 14px;
    font-size: 20px;
  }
  .front-footer__nav-title {
    margin-bottom: 16px;
  }
  .front-footer__brand-copy,
  .front-footer__nav a {
    font-size: 14px;
    line-height: 1.8;
    color: #6B7280;
  }
  .front-footer__cta img {
    max-width: none;
  }
  .front-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 24px;
  }
  .front-footer__legal {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
}
