.site-footer {
  background-color: #f5f5f2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-left {
  width: 50%;
  max-width: 400px;
  height: 100%;
}

.footer-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-right {
  flex: 1;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.footer-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-right li {
  margin-bottom: 12px;
}

.footer-right a {
  color: #777;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-right a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #AAA;
}

/* スマホ対応のメディアクエリ */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 15px 20px;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
  }
  
  .footer-left {
    width: 100%;
    max-width: 250px;
    height: 100px;
  }
  
  .footer-right {
    width: 100%;
    margin-top: 0;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  
  .footer-right ul {
    text-align: center;
    width: 100%;
  }
  
  .footer-right li {
    margin-bottom: 15px;
  }
  
  .footer-right a {
    font-size: 0.85rem;
    display: block;
    padding: 8px 0;
    text-decoration: none;
  }
  
  .footer-right a:hover {
    opacity: 0.7;
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .footer-bottom {
    padding: 15px 0;
  }
  
  .footer-bottom p {
    font-size: 0.65rem;
    line-height: 1.4;
  }
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1024px) {
  .site-footer {
    padding: 40px 30px 30px;
  }
  
  .footer-inner {
    gap: 40px;
  }
  
  .footer-left {
    width: 50%;
    max-width: 350px;
    text-align: left;
  }
  
  .footer-right {
    gap: 40px;
    margin-top: 30px;
  }
  
  .footer-right a {
    font-size: 0.85rem;
    text-decoration: none;
  }
  
  .footer-bottom p {
    font-size: 0.7rem;
  }
}