/* ============================================================
   apply.css — お申し込みページ専用スタイル
   ============================================================ */

/* ---------- Apply Hero ---------- */
.apply-hero {
  background: linear-gradient(135deg, #0e1e36 0%, #1a2a4a 50%, #243860 100%);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.apply-hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 20px;
  padding: 6px 20px;
  margin-bottom: 40px;
}

/* ---------- Price Block ---------- */
.apply-price-block {
  max-width: 560px;
  margin: 0 auto 32px;
  padding: 40px 48px;
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--gold);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(200,168,75,0.15);
}
.apply-price-block--early {
  border-color: var(--gold-light);
  box-shadow: 0 0 40px rgba(200,168,75,0.1);
}

.apply-price-block__badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.apply-price-block__badge--early {
  background: var(--gold-light);
}

.apply-price-block__label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.apply-price-block__price {
  font-size: clamp(72px, 14vw, 108px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.apply-price-block__price--early {
  font-size: clamp(60px, 11vw, 88px);
  color: var(--gold-light);
}

.apply-price-block__unit {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.apply-price-block__tax {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.apply-price-block__saving {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.apply-price-block__saving strong {
  color: #ff8a80;
  font-size: 16px;
}

.apply-price-block__deadline {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px 20px;
}
.apply-deadline-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}
.apply-deadline-count {
  font-size: 22px;
  font-weight: 900;
  color: #ff8a80;
  letter-spacing: 0.02em;
}

.apply-hero__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto;
}

/* ---------- Form Section（1カラム） ---------- */
.apply-form-section {
  background: var(--bg-gray);
  padding: 56px 0 80px;
}

.apply-form-section__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Coupon Note ---------- */
.apply-coupon-note {
  background: linear-gradient(135deg, #fffbea 0%, #fff8d6 100%);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.6;
}
.apply-coupon-note strong {
  color: var(--gold-dark, #b8860b);
}

.apply-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 32px 24px;
  margin-bottom: 24px;
}
.apply-form-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ---------- Notice ---------- */
.apply-form-notice {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.apply-form-notice p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}
.apply-form-notice a {
  color: var(--gold-light);
}
.apply-form-notice a:hover {
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .apply-hero {
    padding: 100px 0 48px;
  }
  .apply-price-block {
    padding: 28px 20px;
    margin: 0 8px 24px;
  }
  .apply-price-block__price {
    font-size: 72px;
  }
  .apply-form-wrap {
    padding: 16px 8px;
  }
}
