/* お問い合わせページ専用スタイル */

/* カードホバーエフェクト強化 */
.contact-card-hover {
  transition: all 0.3s ease;
}

.contact-card-hover:hover {
  transform: translateY(-5px);
}

/* QRコードプレースホルダースタイル */
.qr-placeholder {
  background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
              linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
              linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
              linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .contact-cards {
    gap: 1.5rem;
  }
}