/* ------------------------------ */
/* component: footer */
/* ------------------------------ */
.footer {
  background: #dadada;
  padding: 70px 0 0;
}

.footer__inner {
  /* max-width: 1440px; */
  margin: 0 auto;
  padding: 0 50px;
}

.footer__top {
  display: grid;
  grid-template-columns: 250px 1fr;
  column-gap: 150px;
  row-gap: 26px;
}

.footer__brand {
  width: 250px;
  padding-top: 4px;
}

.footer__logoImage {
  width: 250px;
  height: auto;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, max-content) max-content;
  grid-auto-rows: auto;
  /* カラム間隔を詰める（スクショの約1/3幅目安） */
  column-gap: 40px;
  row-gap: 18px;
  padding-top: 6px;
  width: fit-content;
  justify-self: end;
}

.footer__addresses {
  grid-column: 2;
  margin-top: 40px;
  justify-self: end;
  text-align: right;
}

.footerAddress {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #000;
  padding: 2px 0;
}

.footerAddress__place {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: #fff;
  line-height: 1.2;
  padding: 0 2px;
}

.footerAddress__text {
  font-family: var(--font-latin);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.footerCol {
  min-width: auto;
}

.footerCol__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #000;
}

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

a.footerCol__title:hover {
  text-decoration: underline;
}

.footerCol__list {
  display: flex;
  flex-direction: column;
}

/* フッターナビの配置（NEWS/CONTACTだけ縦並び） */
.footerCol--mission {
  grid-column: 1;
}
.footerCol--business {
  grid-column: 2;
}
.footerCol--caseStudy {
  grid-column: 3;
}
.footerCol--company {
  grid-column: 4;
}
.footerCol--newsContact {
  grid-column: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footerCol__link {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}

.footerCol__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: translateY(1px);
  flex: 0 0 auto;
  margin-top: 5px;
}

.footerCol__title--stacked {
  margin-top: 24px;
}

.footer__bar {
  margin-top: 50px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer__policy {
  grid-column: 2;
  font-size: 12px;
  color: #000;
  justify-self: center;
}

.footer__copyright {
  grid-column: 3;
  justify-self: end;
  font-family: var(--font-latin);
  font-size: 12px;
  color: #000;
}

