/* ===========================
   SNS・予約 導線セクション
=========================== */
.sns-links {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.sns-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sns-links h2 {
  font-size: 1.8rem;
  color: #a45c6d;
  margin-bottom: 10px;
}

.sns-links p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.sns-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sns-btn {
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
}

.sns-btn:hover {
  opacity: 0.8;
}

.sns-btn.instagram {
  background-color: #e1306c;
}

.sns-btn.line {
  background-color: #06c755;
}

.sns-btn.hotpepper {
  background-color: #d93a63;
}

/* ===========================
   SNS導線：レスポンシブ対応（sns.css専用）
=========================== */
@media (max-width: 600px) {
  .sns-buttons {
    flex-direction: column;
    align-items: center;
  }

  .sns-btn {
    width: 90%;
    text-align: center;
  }
}
