.site-footer {
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #FFFFFF;
  border-radius: 24px;
  padding: 30px;
  max-width: 1400px;
  margin: 50px auto 20px;
}
@media (max-width: 768px) {
  .site-footer {
    margin: 70px 10px 10px;
    padding: 20px 16px;
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
.site-footer .title {
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.site-footer .col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.site-footer .col a {
  font-size: 14px;
  line-height: 24px;
  color: #0A0911;
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}
.site-footer .col a img {
  width: 24px;
  height: 24px;
}
.site-footer .row {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.site-footer .general {
  width: 327px;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 18px;
}
.site-footer .general .logo {
  margin-bottom: 19px;
  width: 190px;
}
.site-footer .general .store {
  margin-top: 13px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  column-gap: 9px;
}
.site-footer .general .store img {
  width: 120px;
}
@media (max-width: 768px) {
  .site-footer .general .pc {
    display: none;
  }
}
.site-footer .links {
  display: flex;
  flex-direction: column;
}
.site-footer .mobile-version {
  display: none;
}
@media (max-width: 768px) {
  .site-footer .mobile-version {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
  }
  .site-footer .mobile-version .text {
    font-size: 13px;
    line-height: 18px;
  }
  .site-footer .mobile-version .store {
    margin-bottom: 26px;
  }
}
