/* =============================================================================
   footer
============================================================================= */
.site-footer {
  position: relative;
  padding: 8.625vw 0 7.34375vw 9.479166666666666vw;
  overflow: hidden;
  background-color: var(--color-white);
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: -12.90625vw;
  right: -4.822916666666666vw;
  width: 44.85885416666667vw;
  height: 42.71041666666667vw;
  background-image: url("../images/bg_tomato.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 5.625vw;
  width: 49.895833333333336vw;
}

.footer-logo {
  width: 17.65625vw;
}

.footer-logo img {
  width: 100%;
  display: block;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 3.927083333333334vw;
  flex: 1;
}

.company-list {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.company-list .menu-item a {
  font-size: 1.25vw;
}

.footer-menu-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.3854166666666667vw 0;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.26041666666666663vw;
  width: 50%;
}

.footer-menu .menu-item a {
  font-size: max(0.8333333333333334vw, 1rem);
}
/* sp */
@media screen and (max-width: 768px) {
  .site-footer {
    position: relative;
    padding: 40px 20px 80px;
  }

  .site-footer::after {
    bottom: -25px;
    right: -57px;
    width: 225px;
    height: 214.22px;
  }

  .footer-content {
    flex-direction: column-reverse;
    width: 100%;
  }

  .footer-logo {
    width: 154px;
  }

  .footer-right {
    width: 100%;
    flex-direction: column-reverse;
    gap: 32px;
  }

  .company-list {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .company-list .menu-item a {
    font-size: 11px;
  }

  .footer-menu-wrap {
    width: 80%;
    margin: 0 auto;
    gap: 16px 0;
    justify-content: space-between;
  }

  .footer-menu {
    width: 45%;
  }

  .footer-menu .menu-item a {
    font-size: 12px;
  }
}
