@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital@1&family=Playfair+Display:ital@1&display=swap');

/* =================================================
   PERSONAL PAGE（FAQ / 禁止事項 共通仕様）
================================================= */

/* =========================
   PAGE BASE
========================= */
body {
  background-color: transparent !important;
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #f0efef !important;
}

.page-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* =========================
   PAGE TITLE
========================= */
.page-section h2.neon-text {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5em;
  color: #bfaaff;
  text-shadow:
    0 0 8px #bfaaff,
    0 0 18px rgba(191,170,255,0.8);
}

/* =========================
   GRID LAYOUT（2×2）
========================= */
.menu-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: stretch;
}

/* =========================
   CARD
========================= */
.card-box {
  background: linear-gradient(
    180deg,
    rgba(20,20,40,0.95),
    rgba(10,10,20,0.95)
  );
  border-radius: 20px;
  padding: 32px 28px;

  box-shadow:
    0 22px 70px rgba(0,0,0,0.85),
    inset 0 0 30px rgba(255,255,255,0.05);

  color: #f0efef;
}

/* =========================
   CARD TITLE
========================= */
.menu-title {
  font-size: 1.35rem;
  margin-bottom: 1.2em;
  color: #d9d2ff;
  text-shadow:
    0 0 8px rgba(180,160,255,0.8),
    0 0 20px rgba(150,130,255,0.6);
}

/* =========================
   TEXT
========================= */
.card-box p {
  line-height: 2;
  font-size: 0.95rem;
  color: rgba(235,240,255,0.92);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .menu-pair {
    grid-template-columns: 1fr;
  }

  .page-section {
    padding: 40px 14px;
  }
}
/* =========================
   PERSONAL PAGE LEAD CENTER
========================= */

.personal-page .page-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 2.2;
}
/* =========================
   PAGE SIGNATURE
========================= */

.personal-page .page-signature {
  margin-top: 90px;
  text-align: center;

  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;

  letter-spacing: 0.14em;
  color: rgba(230, 235, 255, 0.8);

  opacity: 0.95;
}

/* 上に静かな区切りライン */
.personal-page .page-signature::before {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  margin: 0 auto 26px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(200,190,255,0.9),
    transparent
  );

  box-shadow:
    0 0 10px rgba(180,170,255,0.6);
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.qr-label {
  margin-top: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;

  color: #0b0b0b; /* ← 明るめの上品ホワイトブルー */
  opacity: 0.95;

  text-shadow:
    0 0 4px rgba(255,255,255,0.6),
    0 0 10px rgba(180,200,255,0.55);
}

/* hover時：やりすぎない発光 */
.qr-item:hover .qr-label {
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(255,255,255,0.9),
    0 0 16px rgba(180,200,255,0.75);
}
