/* =========================
   旧ページ誘導バナー
========================= */
.legacy-notice {
  margin: 20px auto;
  max-width: 900px;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7e6, #fff1f1);
  border: 2px solid #e0b96b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.legacy-notice__inner {
  text-align: center;
}

.legacy-notice__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #c0392b;
  margin-bottom: 10px;
}

.legacy-notice__text {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

.legacy-notice__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.legacy-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #1e3a8a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.2s ease;
}

.legacy-btn:hover {
  background: #c7d2fe;
}

.legacy-btn.primary {
  background: #356ac3;
  color: #fff;
}

.legacy-btn.primary:hover {
  background: #2c5aa0;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .legacy-notice {
    padding: 16px;
  }

  .legacy-notice__title {
    font-size: 1.05rem;
  }

  .legacy-btn {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}