/*-----footer black-----*/
.footer-black {
  position: relative;
}

.footer-bg {
  width: 100%;
  height: auto;
}

.footer-bg-sp {
  display: none;
  width: 100%;
  height: auto;
}

.footer-contents {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding: 0 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-black-btn-container {
  width: 100%;
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-black-btn {
  font-family: var(--font-KakuGo);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #C0C0C0;
}

.footer-black-copy {
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1;
  color: #C0C0C0;
  text-wrap: nowrap;
}


@media screen and (max-width: 768px) {

  .footer-contents {
    bottom: 32px;
    padding: 0;
    flex-direction: column;
  }

  .footer-black-btn-container{
    margin-bottom: 24px;
    justify-content: center;
  }

  .footer-black-btn {
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
  }

  .footer-bg {
    display: none;
  }

  .footer-bg-sp {
    display: block;
  }
}

/*-----footer white-----*/
.footer-white {
  position: relative;
}
.footer-white-btn{
  font-family: var(--font-KakuGo);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #0D0E28;
}
.footer-white-copy {
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1;
  color: #0D0E28;
  text-wrap: nowrap;
}


@media screen and (max-width: 768px) {
  .footer-white-btn {
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
  }
}