/* =============================================
   Eminent Service — Price Slide CSS
   ダークブラウン × ゴールド / 高級感デザイン
   ============================================= */

/* ---------- Section wrapper ---------- */
.em-price-section {
  padding: 120px 0 100px;
  background: #0e0c08;
  position: relative;
  overflow: hidden;
}
.em-price-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 30%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 70%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.em-price-lead {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-top: 20px;
  text-align: center;
  letter-spacing: 0.04em;
}
.em-price-lead strong { color: var(--gold, #C9A84C); font-weight: 600; }

/* ---------- Slide tab navigation ---------- */
.em-slide-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 52px 0 40px;
}
.em-slide-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 18px;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
  color: rgba(255,255,255,0.45);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-width: 88px;
}
.em-slide-tab:hover {
  border-color: rgba(201,168,76,0.5);
  color: rgba(255,255,255,0.75);
  background: rgba(201,168,76,0.08);
}
.em-slide-tab.active {
  border-color: var(--gold, #C9A84C);
  background: rgba(201,168,76,0.12);
  color: var(--gold, #C9A84C);
  box-shadow: 0 0 16px rgba(201,168,76,0.15);
}
.em-tab-num {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  opacity: 0.6;
}
.em-tab-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.em-slide-tab.active .em-tab-num { opacity: 1; }

/* ---------- Slide track ---------- */
.em-slide-track-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(255,255,255,0.02);
}
.em-slide-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.em-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.em-slide-inner {
  padding: 52px 60px;
}

/* Slide title area */
.em-slide-title-area {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.em-slide-index {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold, #C9A84C);
  opacity: 0.7;
  margin-bottom: 8px;
  font-weight: 500;
}
.em-slide-heading {
  font-family: 'Cinzel', 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 8px;
}
.em-slide-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ---------- Table style ---------- */
.em-table-wrap { overflow-x: auto; }
.em-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}
.em-price-table thead tr {
  border-bottom: 1px solid rgba(201,168,76,0.35);
}
.em-price-table th {
  padding: 14px 24px;
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(201,168,76,0.7);
  text-transform: uppercase;
}
.em-price-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.em-price-table tbody tr:hover { background: rgba(201,168,76,0.05); }
.em-price-table td {
  padding: 18px 24px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.em-price-val {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--gold, #C9A84C) !important;
  letter-spacing: 0.04em;
  font-family: 'Cormorant Garamond', serif;
}
.em-zero { color: rgba(255,255,255,0.4) !important; }
.em-quote {
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.4) !important;
  font-weight: 500 !important;
}
.em-tr-quote td { color: rgba(255,255,255,0.4); }
.em-tr-high td { color: var(--gold, #C9A84C); }

/* ---------- Rate cards (size / time) ---------- */
.em-cards-grid {
  display: grid;
  gap: 20px;
}
.em-cards-4 { grid-template-columns: repeat(4, 1fr); }
.em-cards-3 { grid-template-columns: repeat(3, 1fr); }

.em-rate-card {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.em-rate-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.06); }
.em-rate-card.em-featured {
  border-color: rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.07);
}
.em-rate-card.em-high {
  border-color: rgba(201,168,76,0.6);
  background: rgba(201,168,76,0.1);
}
.em-rate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.5);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  margin-bottom: 12px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.04em;
}
.em-rate-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  line-height: 1.5;
}
.em-rate-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.04em;
}
.em-rate-val.em-zero { color: rgba(255,255,255,0.3); }

/* ---------- Spec cards (item characteristics) ---------- */
.em-spec-card {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.em-spec-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.5); }
.em-spec-card.em-spec-vip {
  border-color: rgba(201,168,76,0.55);
  background: rgba(201,168,76,0.08);
  position: relative;
}
.em-spec-icon { font-size: 2rem; margin-bottom: 10px; }
.em-spec-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.em-spec-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
  margin-bottom: 14px;
}
.em-spec-rate {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  font-family: 'Cormorant Garamond', serif;
}
.em-spec-insurance {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 20px;
  font-size: 0.68rem;
  color: var(--gold, #C9A84C);
  letter-spacing: 0.06em;
}

/* ---------- Option list ---------- */
.em-option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}
.em-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
  border-left: 3px solid rgba(201,168,76,0.25);
}
.em-option-row:hover {
  background: rgba(201,168,76,0.05);
  border-left-color: var(--gold, #C9A84C);
  transform: translateX(4px);
}
.em-option-featured {
  border-left-color: rgba(201,168,76,0.55);
  background: rgba(201,168,76,0.05);
}
.em-option-premium {
  border-left-color: var(--gold, #C9A84C);
  background: rgba(201,168,76,0.07);
}
.em-option-urgent {
  border-left-color: #d4785a;
  background: rgba(212,120,90,0.05);
}
.em-option-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.em-option-icon { font-size: 1.4rem; }
.em-option-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.03em;
}
.em-option-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.em-option-rate {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  font-family: 'Cormorant Garamond', serif;
  white-space: nowrap;
}
.em-rate-fixed { font-size: 1.15rem; }

/* ---------- Time cards ---------- */
.em-time-card {
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s;
}
.em-time-card:hover { transform: translateY(-5px); }
.em-time-early  { background: rgba(255,240,180,0.04); border-color: rgba(255,220,100,0.3); }
.em-time-night  { background: rgba(120,80,180,0.06); border-color: rgba(150,100,220,0.3); }
.em-time-deep   { background: rgba(40,40,80,0.1); border-color: rgba(100,100,200,0.3); }
.em-time-icon   { font-size: 2.2rem; margin-bottom: 12px; }
.em-time-label  {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.em-time-range {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.em-time-rate {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  font-family: 'Cormorant Garamond', serif;
}

/* ---------- Pagination ---------- */
.em-slide-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.em-pag-prev,
.em-pag-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  background: transparent;
  color: rgba(201,168,76,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.em-pag-prev:hover,
.em-pag-next:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold, #C9A84C);
  color: var(--gold, #C9A84C);
}
.em-pag-prev:disabled,
.em-pag-next:disabled {
  opacity: 0.25;
  cursor: default;
}
.em-pag-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.em-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.22);
  cursor: pointer;
  transition: all 0.3s;
  border: 0;
}
.em-dot.active {
  background: var(--gold, #C9A84C);
  width: 24px;
  border-radius: 4px;
}

/* ---------- CTA ---------- */
.em-price-cta {
  text-align: center;
  margin-top: 48px;
}
.em-price-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  line-height: 1.8;
}
.em-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 52px;
  border: 1.5px solid var(--gold, #C9A84C);
  color: var(--gold, #C9A84C);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  background: transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.em-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold, #C9A84C);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.em-cta-btn:hover::before { transform: translateX(0); }
.em-cta-btn:hover { color: #0e0c08; }
.em-cta-btn i, .em-cta-btn span { position: relative; z-index: 1; }

/* ---------- Slide note ---------- */
.em-slide-note {
  margin-top: 28px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .em-slide-inner { padding: 40px 36px; }
  .em-cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .em-price-section { padding: 80px 0 70px; }
  .em-slide-tab { min-width: 72px; padding: 10px 12px; }
  .em-tab-label { font-size: 0.7rem; }
  .em-slide-inner { padding: 32px 22px; }
  .em-slide-heading { font-size: 1.35rem; }
  .em-cards-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .em-cards-3 { grid-template-columns: 1fr; gap: 12px; }
  .em-option-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .em-option-rate { align-self: flex-end; }
}
@media (max-width: 480px) {
  .em-slide-nav { gap: 6px; }
  .em-slide-tab { min-width: 60px; padding: 8px 10px; }
  .em-tab-num { display: none; }
  .em-cards-4 { grid-template-columns: 1fr 1fr; }
  .em-slide-inner { padding: 24px 16px; }
}
