@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root {
  --pink: #e8a4b8;
  --pink-dark: #c4788a;
  --pink-light: #f5d5e0;
  --gold: #d4a853;
  --gold-light: #f0dba8;
  --bg: #fff9fb;
  --text: #333333;
  --text-light: #888888;
  --border: rgba(232,164,184,0.3);
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,249,251,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px; letter-spacing: 0.15em; color: var(--pink-dark);
}
.header-logo span { display: block; font-size: 9px; letter-spacing: 0.3em; color: var(--text-light); }
.header-nav { display: flex; gap: 20px; font-size: 11px; letter-spacing: 0.12em; }
.header-nav a { color: var(--text); transition: color 0.2s; }
.header-nav a:hover { color: var(--pink-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); display: block; transition: 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 30px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; letter-spacing: 0.15em; color: var(--text); }
.mobile-close { position: absolute; top: 20px; right: 20px; font-size: 24px; background: none; border: none; cursor: pointer; }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: linear-gradient(160deg, #ffeef4 0%, #fff5f8 40%, #fdf0e8 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 60px;
}
.hero-inner { text-align: center; z-index: 1; padding: 20px; }
.hero-photo {
  width: min(320px, 80vw); height: min(420px, 65vh);
  border-radius: 4px; object-fit: cover;
  margin: 0 auto 30px;
  box-shadow: 0 20px 60px rgba(196,120,138,0.2);
}
.hero-photo-placeholder {
  width: min(320px, 80vw); height: min(420px, 65vh);
  background: linear-gradient(160deg, var(--pink-light), var(--gold-light));
  border-radius: 4px; margin: 0 auto 30px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-dark); font-size: 13px; letter-spacing: 0.1em;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 6vw, 48px);
  letter-spacing: 0.08em; line-height: 1.2;
  color: var(--pink-dark); margin-bottom: 8px;
}
.hero-name-ja { font-size: clamp(13px, 3vw, 16px); letter-spacing: 0.3em; color: var(--text-light); margin-bottom: 20px; }
.hero-catch { font-size: clamp(12px, 2.5vw, 14px); color: var(--text-light); letter-spacing: 0.1em; margin-bottom: 30px; }
.hero-sns { display: flex; gap: 16px; justify-content: center; }
.hero-sns a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: 0.2s;
}
.hero-sns a:hover { background: var(--pink); border-color: var(--pink); }

/* ── SECTION ── */
.section { padding: 60px 20px; max-width: 1000px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(20px, 4vw, 28px); color: var(--pink-dark);
  text-align: center; margin-bottom: 6px;
}
.section-title-ja { font-size: 10px; letter-spacing: 0.3em; color: var(--text-light); text-align: center; margin-bottom: 36px; }
.section-divider { width: 40px; height: 1px; background: var(--gold); margin: 12px auto 36px; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(196,120,138,0.15); }
.card-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--pink-light); }
.card-img-placeholder { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--pink-light), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-light); }
.card-body { padding: 14px; }
.card-category { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-dark); margin-bottom: 6px; }
.card-title { font-size: 13px; font-weight: 500; margin-bottom: 8px; line-height: 1.4; }
.card-price { font-size: 14px; color: var(--pink-dark); font-weight: 500; }
.card-price span { font-size: 10px; color: var(--text-light); }
.btn-card { width: 100%; padding: 8px; background: var(--pink); color: var(--white); border: none; font-size: 11px; letter-spacing: 0.1em; cursor: pointer; margin-top: 10px; transition: background 0.2s; }
.btn-card:hover { background: var(--pink-dark); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 12px 32px;
  background: var(--pink); color: var(--white);
  font-size: 12px; letter-spacing: 0.2em;
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: var(--pink-dark); }
.btn-outline {
  display: inline-block; padding: 11px 30px;
  border: 1px solid var(--pink); color: var(--pink-dark);
  font-size: 12px; letter-spacing: 0.15em;
  background: none; cursor: pointer; transition: 0.2s;
}
.btn-outline:hover { background: var(--pink); color: var(--white); }
.btn-gold {
  display: inline-block; padding: 12px 32px;
  background: var(--gold); color: var(--white);
  font-size: 12px; letter-spacing: 0.2em;
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-gold:hover { background: #b8923f; }

/* ── FANCLUB PLANS ── */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .plan-grid { grid-template-columns: 1fr; } }
.plan-card {
  border: 1px solid var(--border); padding: 28px 20px; text-align: center;
  background: var(--white); position: relative;
}
.plan-card.premium { border-color: var(--gold); }
.plan-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 9px; letter-spacing: 0.2em; padding: 3px 14px;
}
.plan-name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--pink-dark); margin-bottom: 10px; }
.plan-price { font-size: 28px; color: var(--text); font-weight: 500; }
.plan-price span { font-size: 13px; color: var(--text-light); }
.plan-features { list-style: none; margin: 20px 0; text-align: left; }
.plan-features li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.plan-features li::before { content: '✦ '; color: var(--pink); font-size: 10px; }

/* ── NEWS / LIST ── */
.news-list { list-style: none; }
.news-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.news-date { font-size: 11px; color: var(--text-light); white-space: nowrap; min-width: 80px; margin-top: 2px; }
.news-tag { font-size: 9px; letter-spacing: 0.15em; background: var(--pink-light); color: var(--pink-dark); padding: 2px 8px; border-radius: 2px; white-space: nowrap; }
.news-text { font-size: 13px; }

/* ── PROFILE ── */
.profile-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 600px) { .profile-wrap { grid-template-columns: 1fr; } }
.profile-photo { width: 100%; max-width: 300px; margin: 0 auto; }
.profile-photo-ph { width: 100%; aspect-ratio: 2/3; background: linear-gradient(160deg, var(--pink-light), var(--gold-light)); }
.profile-name { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--pink-dark); margin-bottom: 4px; }
.profile-name-kana { font-size: 11px; letter-spacing: 0.2em; color: var(--text-light); margin-bottom: 20px; }
.profile-table { width: 100%; }
.profile-table tr td { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.profile-table tr td:first-child { color: var(--text-light); width: 80px; font-size: 11px; letter-spacing: 0.1em; }

/* ── EVENTS ── */
.event-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 20px; margin-bottom: 16px; display: flex; gap: 20px;
}
.event-date-box { text-align: center; min-width: 60px; }
.event-month { font-size: 10px; letter-spacing: 0.1em; color: var(--text-light); }
.event-day { font-size: 28px; font-family: 'Playfair Display', serif; color: var(--pink-dark); line-height: 1; }
.event-info { flex: 1; }
.event-title { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.event-meta { font-size: 11px; color: var(--text-light); margin-bottom: 8px; }
.event-price { font-size: 14px; color: var(--pink-dark); font-weight: 500; }
.event-remaining { font-size: 11px; color: var(--text-light); margin-left: 10px; }
.sold-out-badge { font-size: 10px; background: #eee; color: #888; padding: 2px 8px; border-radius: 2px; }

/* ── FOOTER ── */
footer {
  background: #2a1f24; color: #ccc;
  text-align: center; padding: 40px 20px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--pink); margin-bottom: 6px; }
.footer-sns { display: flex; gap: 16px; justify-content: center; margin: 16px 0; }
.footer-sns a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #ccc; transition: 0.2s; }
.footer-sns a:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.footer-nav { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.1em; margin: 12px 0 20px; }
.footer-copy { font-size: 10px; color: #666; }

/* ── TOAST / CART ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #2a1f24; color: #fff; padding: 12px 20px;
  font-size: 12px; letter-spacing: 0.05em; opacity: 0;
  transition: opacity 0.3s; pointer-events: none;
}
.toast.show { opacity: 1; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--pink); color: #fff; border-radius: 50%;
  width: 16px; height: 16px; font-size: 9px;
  display: flex; align-items: center; justify-content: center;
}
.cart-icon-wrap { position: relative; cursor: pointer; }

/* ── UTIL ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.loading { opacity: 0.5; pointer-events: none; }
.hidden { display: none !important; }
.tag { display: inline-block; font-size: 9px; letter-spacing: 0.15em; padding: 2px 8px; border-radius: 2px; }
.tag-pink { background: var(--pink-light); color: var(--pink-dark); }
.tag-gold { background: var(--gold-light); color: #8b6914; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-light); font-size: 13px; }

/* ── FORM ── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 14px; font-family: inherit; outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--pink); }
.form-select { width: 100%; padding: 10px 12px; border: 1px solid var(--border); background: var(--white); font-size: 14px; font-family: inherit; }
textarea.form-input { resize: vertical; min-height: 100px; }

/* ── LOCK / MEMBER ONLY ── */
.lock-overlay {
  position: relative; overflow: hidden;
}
.lock-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 20%, var(--bg) 80%);
}
.lock-cta {
  text-align: center; padding: 24px; background: var(--white);
  border: 1px solid var(--border); margin-top: 16px;
}

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 500;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); max-width: 480px; width: 90%; padding: 32px; position: relative; }
.modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-light); }
.modal-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--pink-dark); margin-bottom: 20px; }

/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(380px, 100vw);
  background: var(--white); z-index: 300; transform: translateX(100%);
  transition: transform 0.3s; box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-footer { padding: 20px; border-top: 1px solid var(--border); }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 60px; height: 80px; object-fit: cover; background: var(--pink-light); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 12px; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--pink-dark); }
.cart-item-remove { font-size: 11px; color: var(--text-light); cursor: pointer; border: none; background: none; margin-top: 4px; }
.cart-total { font-size: 16px; font-weight: 500; margin-bottom: 12px; }
.cart-overlay-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 299; }
.cart-overlay-bg.open { display: block; }
