/* フッター */

.footer_container {
  font-family: var(--NotoSans);
  background-color:var(--black01);
}


.footer_text_flex {
  width: 100%;
  height: 6.555rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.6rem;
}

.footer_text_font{
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4em;
  text-align: left;
  color: var(--white01);
}


/* SP版 */

@media screen and (max-width: 699.98px) {

/* フッター */

  .footer_text_flex {
    height: 4rem;
    column-gap: 2.4rem;
  }
  .footer_text_font {
    font-size: 1rem;
    line-height: calc(15/10);
  }
}