@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap");

/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ W3", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
}

/* REVE DES LUMIERES specific styles */
.parts-header {
  display: none;
}

.parts-notification {
  display: none;
}

/* Payment flow tags */
.payment-flow-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

.payment-flow-tag.lottery {
  background-color: #dc2626;
}

.payment-flow-tag.first-come {
  background-color: #4b5563;
}

.payment-flow-tag.priority {
  background-color: #2563eb;
}

/* Kiosk status */
.kiosk-status {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.kiosk-status.on-sale {
  color: #059669;
}

.kiosk-status.upcoming {
  color: #d97706;
}

.kiosk-status.ended {
  color: #dc2626;
}

/* Utility classes */
.u-pink {
  color: #dc2626;
}

.u-blue {
  color: #2563eb;
}

.u-gray {
  color: #6b7280;
}

/* Link styles */
a.link {
  text-decoration: underline;
  color: #2563eb;
}

a.link:hover {
  text-decoration: none;
}

/* Form elements */
input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Entry page JS components */
.ticket-choice-appendable .ticket-choice-wrap {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.ticket-choice-appendable .choice-header {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #111827;
}

.ticket-choice-appendable .choice-content {
  margin-bottom: 1rem;
}

.ticket-choice-appendable .choice-btn-wrap {
  text-align: center;
}

.ticket-choice-appendable .choice-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #1f2937;
  color: white;
  font-weight: bold;
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.ticket-choice-appendable .choice-btn:hover {
  background-color: #111827;
}

.ticket-choice-appendable .choice-btn.disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

/* Calendar styles for date selection */
.calendar-wrapper {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-nav {
  padding: 0.5rem 1rem;
  background: #e5e7eb;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}

.calendar-nav:hover {
  background: #d1d5db;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.calendar-day:hover {
  background-color: #1f2937;
  color: white;
}

.calendar-day.selected {
  background-color: #1f2937;
  color: white;
  font-weight: bold;
}

.calendar-day.disabled {
  color: #d1d5db;
  cursor: not-allowed;
}

.calendar-day.disabled:hover {
  background: transparent;
  color: #d1d5db;
}

/* Time slot styles */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.time-slot {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  cursor: pointer;
}

.time-slot:hover {
  background-color: #1f2937;
  color: white;
}

.time-slot.selected {
  background-color: #1f2937;
  color: white;
}

.time-slot.disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

/* Quantity selection */
.quantity-select {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  min-width: 80px;
}

/* Total price display */
.total-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
}

/* Checkbox styles */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: #1f2937;
}

/* Stock indicators */
.stock-full {
  color: #059669;
}

.stock-limited {
  color: #d97706;
}

.stock-soldout {
  color: #dc2626;
}
