/* ========================================
   フッター
   ======================================== */
.hashikake-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hashikake-footer-top {
  background: #dadada;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  gap: 10px;
}

.hashikake-footer-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.hashikake-footer-logo {
  width: 128px;
  height: 80px;
}

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

.hashikake-footer-menu {
  display: flex;
  align-items: center;
}

.hashikake-footer-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hashikake-footer-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hashikake-footer-menu a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #3d3d3d;
  text-decoration: none;
  padding: 8px 16px;
  transition: opacity 0.3s;
}

.hashikake-footer-menu a:hover {
  opacity: 0.7;
}

.hashikake-footer-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hashikake-footer-btn {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: white;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 8px;
  min-width: 168px;
  text-align: center;
  transition: opacity 0.3s;
}

.hashikake-footer-btn:hover {
  opacity: 0.8;
}

.hashikake-footer-btn-blue {
  background: #489fd7;
}

.hashikake-footer-btn-pink {
  background: #e37997;
}

.hashikake-footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hashikake-footer-sns-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(89.4976deg, #E37997 0%, #489FD7 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

.hashikake-footer-sns-icon:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.hashikake-footer-sns-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.hashikake-footer-bottom {
  background: #dadada;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hashikake-footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #3d3d3d;
  margin: 0;
}

@media (max-width: 1024px) {
  .hashikake-footer-top {
    flex-direction: column;
    gap: 32px;
  }
  
  .hashikake-footer-content {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  
  .hashikake-footer-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .hashikake-footer-btn {
    width: 100%;
  }
  
  .hashikake-footer-social {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hashikake-footer-top {
    padding: 24px 20px;
  }
  
  .hashikake-footer-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }
  
  .hashikake-footer-menu a {
    padding: 8px 0;
    width: 100%;
  }
  
  .hashikake-footer-logo {
    width: 100px;
    height: 62px;
  }
  .hashikake-footer-menu ul {
    padding: 0 0 0 16px;
  }
}