@charset "utf-8";

/* =========================
   VIP Ticket Page
   ========================= */

.vip_wrap {
  background-color: #000;
}

/* ===== Header (override: always black logo on VIP page) ===== */
.vip_wrap header {
  background: transparent;
}

/* ===== Hero ===== */
.vip_hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.vip_hero__bg {
  position: absolute;
  inset: 0;
}

.vip_hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.vip_hero__content {
  position: relative;
  z-index: 1;
  padding: 0 60px 80px;
  width: 100%;
}

.vip_hero__eyebrow {
  font-family: "MuseoModerno", sans-serif;
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.vip_hero__title {
  font-family: "MuseoModerno", sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 200;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.vip_hero__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.vip_hero__date {
  font-family: "MuseoModerno", sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

/* ===== About ===== */
.vip_about {
  padding: 100px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.vip_about__title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 40px;
}

.vip_about__text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 2.4;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
}

.vip_details {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.vip_details__item {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  align-items: baseline;
}

.vip_details__label {
  font-family: "MuseoModerno", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  min-width: 60px;
  text-transform: uppercase;
}

.vip_details__value {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

/* ===== Tickets ===== */
.vip_tickets {
  padding: 80px 40px 120px;
}

.vip_tickets__header {
  text-align: center;
  margin-bottom: 64px;
}

.vip_tickets__title {
  font-family: "MuseoModerno", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 200;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 12px;
}

.vip_tickets__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
}

.vip_tickets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== Ticket Card ===== */
.ticket_card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: border-color 0.3s ease;
}

.ticket_card:hover {
  border-color: rgba(255,255,255,0.25);
}

.ticket_card--premium {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

.ticket_card__badge {
  position: absolute;
  top: -1px;
  right: 40px;
  background: #fff;
  color: #000;
  font-family: "MuseoModerno", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 6px 16px;
}

.ticket_card__type {
  font-family: "MuseoModerno", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ticket_card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ticket_card__price_num {
  font-family: "MuseoModerno", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 200;
  letter-spacing: 0.02em;
  color: #fff;
}

.ticket_card__price_tax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
}

.ticket_card__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.ticket_card__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.ticket_card__benefits li {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.ticket_card__benefits li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  top: 3px;
}

.ticket_card__btn {
  display: block;
  text-align: center;
  padding: 18px 24px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin-top: auto;
}

.ticket_card__btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.ticket_card--premium .ticket_card__btn {
  border-color: rgba(255,255,255,0.6);
}

/* ===== Notice ===== */
.vip_notice {
  padding: 0 60px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.vip_notice__title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.vip_notice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vip_notice__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  padding-left: 20px;
  position: relative;
}

.vip_notice__list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
}

/* ===== Back Link ===== */
.vip_back {
  padding: 0 60px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.vip_back__link {
  font-family: "MuseoModerno", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.vip_back__link:hover {
  color: rgba(255,255,255,0.8);
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .vip_hero__content {
    padding: 0 24px 60px;
  }

  .vip_about {
    padding: 70px 24px;
  }

  .vip_details__item {
    flex-direction: column;
    gap: 8px;
  }

  .vip_tickets {
    padding: 60px 20px 80px;
  }

  .vip_tickets__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ticket_card {
    padding: 36px 28px;
  }

  .vip_notice {
    padding: 0 24px 70px;
  }

  .vip_back {
    padding: 0 24px 40px;
  }
}
