/* ========================================
   SNS・QRコード表示 - les SALON
   横並び表示対応
   ======================================== */

.footer-sns {
  padding-top: 1rem;
}

.footer-sns-horizontal {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-sns-item {
  flex: 0 0 auto;
}

.footer-sns-item strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #B8860B;
  font-size: 1rem;
  text-align: center;
}

/* モバイル：直リンク表示 */
.footer-sns-mobile {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #B8860B, #6B5845);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer-sns-mobile:hover {
  background: linear-gradient(135deg, #6B5845, #B8860B);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  color: #fff;
}

/* PC：QRコード表示 */
.footer-qr-desktop {
  display: none;
}

/* PC表示（769px以上） */
@media (min-width: 769px) {
  .footer-sns-mobile {
    display: none;
  }
  
  .footer-qr-desktop {
    display: block;
    text-align: center;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .footer-qr-desktop:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .footer-qr-code img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  
  .footer-qr-code p {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
  }
}

/* モバイル（768px以下）縦並び */
@media (max-width: 768px) {
  .footer-sns-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-sns-item {
    width: 100%;
    text-align: center;
  }
}
