.notice-page .notice-list {
  margin-top: 40px;
}

/* お知らせカード */
.notice-card {
  max-width: 420px;
}

/* 日付 */
.notice-date {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: rgba(210, 225, 255, 0.7);
  text-align: center;
}

/* タイトル */
.notice-card .menu-title {
  margin-bottom: 12px;
}

/* 本文 */
.notice-card .card-text {
  line-height: 2;
  font-size: 0.95rem;
}
/* ===============================
   NOTICE QR LINKS
================================ */

.notice-qr {
  margin: 80px auto 20px;
  text-align: center;
}

.qr-wrap {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.qr-card {
  width: 120px;
  height: 140px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.35),
    inset 0 0 0 rgba(0,0,0,0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.qr-card span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #444;
}

.qr-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45);
}

/* mobile */
@media (max-width: 768px) {
  .qr-wrap {
    gap: 16px;
  }
}
