@charset "UTF-8";

/* =========================================================================
   Price page (/price/)
   Ported from price.html mockup. Header/nav/footer markup is not
   included here — those are provided by header.php / footer.php.
   Section backgrounds and watermark layout reuse the shared
   .section-base / .section-base--yellow / --white component (rendered via
   cebuway_render_base_section()); the Final CTA buttons reuse the shared
   .jh-cta component (cebuway_cta_buttons(), from junior-high.css).
   ========================================================================= */

.price {
  --price-orange-accent: #FB7312;
  --price-pink: #FC75AE;
  --price-blue: #0385FE;
  --price-text-dark: #1A1A1A;
  --price-text-gray: #5B5B5B;
  --price-bg-gray: #EFEFEF;
  --price-bg-page: #F8F8F8;
  --price-radius-lg: 20px;
  --price-radius-md: 14px;
  --price-shadow-card: 0 4px 18px rgba(0, 0, 0, .08);
  --price-font-en: "Jost", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--price-text-dark);
  line-height: 1.9;
  overflow-x: hidden;
}

.price *,
.price *::before,
.price *::after {
  box-sizing: border-box;
}

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

/* ---- hero -------------------------------------------------------------- */
.price-hero {
  position: relative;
  margin-top: 144px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--price-bg-page);
  padding: 88px 20px 72px;
  text-align: center;
  overflow: hidden;
}
.price-hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 30, .3), rgba(15, 20, 30, .42));
  z-index: 0;
}
.price-hero__inner { position: relative; z-index: 1; }
.price-hero__title {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.6;
  letter-spacing: .02em;
  max-width: none;
  margin: 0 auto 20px;
}
.price-hero__lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255, 255, 255, .9);
}

/* ---- section shell (paired with cebuway_render_base_section) ---------- */
.pp-section { position: relative; overflow: hidden; }
.pp-section__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-base__watermark-text {
  display: inline-block;
  font-family: var(--price-font-en);
  font-weight: 800;
  font-size: clamp(58px, 9vw, 108px);
  letter-spacing: -.02em;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  color: rgba(0, 0, 0, .055);
}
.section-base--yellow .section-base__watermark-text { color: rgba(255, 255, 255, .16); }

.price-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: var(--price-text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}
.section-base--yellow .price-heading { color: #fff; }

.price-lead {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
  font-size: 15.5px;
  color: var(--price-text-gray);
}
.section-base--yellow .price-lead { color: rgba(255, 255, 255, .92); }

/* ---- price table --------------------------------------------------------- */
.price-table-wrap {
  background: #fff;
  border: 2px solid var(--price-text-dark);
  border-radius: var(--price-radius-lg);
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 44px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--price-text-dark);
  padding: 16px 8px;
  border-bottom: 1px solid var(--price-bg-gray);
}
.price-table td {
  text-align: right;
  font-family: var(--price-font-en);
  font-size: 24px;
  font-weight: 900;
  color: var(--price-text-dark);
  padding: 16px 8px;
  border-bottom: 1px solid var(--price-bg-gray);
}
.price-table tr:last-child th,
.price-table tr:last-child td { border-bottom: none; }
.price-table td small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--price-text-gray);
  margin-left: 4px;
}
.price-table-note {
  max-width: 820px;
  margin: 20px auto 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
  text-align: center;
}

/* ---- program summary (compressed, links out) --------------------------- */
.price-prog-summary {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 900px;
  margin: 0 auto 40px;
}
.price-prog-summary__card {
  display: block;
  background: #fff;
  border-radius: var(--price-radius-lg);
  border: 2px solid var(--price-pink);
  padding: 28px 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-prog-summary__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--price-shadow-card);
}
.price-prog-summary__card--blue { border-color: var(--price-blue); }
.price-prog-summary__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--price-pink);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 14px;
}
.price-prog-summary__card--blue .price-prog-summary__tag { background: var(--price-blue); }
.price-prog-summary__card h3 { font-size: 17px; font-weight: 900; color: var(--price-pink); line-height: 1.6; }
.price-prog-summary__card--blue h3 { color: var(--price-blue); }
.price-prog-summary__note {
  text-align: center;
  font-size: 15px;
  color: var(--price-text-dark);
  max-width: 700px;
  margin: 0 auto 30px;
}
.price-prog-summary__btn-wrap { text-align: center; }

/* ---- included items grid ------------------------------------------------ */
.price-included-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto 60px;
}
.price-included-item {
  background: #fff;
  border-radius: var(--price-radius-md);
  box-shadow: var(--price-shadow-card);
  padding: 28px 14px 24px;
  text-align: center;
}
.price-included-item__mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F8B133, #F59F27);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.price-included-item__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
}
.price-included-item__mark svg { position: relative; z-index: 1; width: 26px; height: 26px; }
.price-included-item p { font-size: 13.5px; font-weight: 700; color: var(--price-text-dark); line-height: 1.5; }

/* ---- refund guarantee banner --------------------------------------------- */
.price-refund {
  background: #fff;
  border-radius: var(--price-radius-lg);
  box-shadow: var(--price-shadow-card);
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 48px;
  text-align: center;
}
.price-refund h3 { font-size: 24px; font-weight: 900; color: var(--price-orange-accent); margin-bottom: 16px; }
.price-refund p { font-size: 15px; color: var(--price-text-dark); margin-bottom: 28px; }

/* ---- consultation CTA section -------------------------------------------- */
.price-consult-points {
  background: #fff;
  border-radius: var(--price-radius-lg);
  box-shadow: var(--price-shadow-card);
  max-width: 720px;
  margin: 0 auto 44px;
  padding: 36px 42px;
}
.price-consult-points h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--price-text-dark);
  text-align: center;
  margin-bottom: 20px;
}
.price-consult-points ul { list-style: none; }
.price-consult-points li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15px;
  color: var(--price-text-dark);
  border-bottom: 1px solid var(--price-bg-gray);
}
.price-consult-points li:last-child { border-bottom: none; }
.price-consult-points li::before {
  content: "◎";
  position: absolute;
  left: 4px;
  top: 10px;
  color: var(--price-orange-accent);
  font-weight: 900;
}
.price-cta-note {
  text-align: center;
  font-size: 13px;
  color: var(--price-text-gray);
  margin-top: 14px;
}

/* ---- buttons (outline links reused on this page) ------------------------ */
.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform .2s ease, filter .2s ease;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}
.price-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.price-btn--outline { background: #fff; color: var(--price-text-dark); border: 1.5px solid var(--price-text-dark); }
.price-btn--outline:hover { transform: translateY(-2px); filter: none; }
.price-btn--lg { font-size: 16px; padding: 17px 34px; min-width: 270px; }

/* ---- responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .price-hero__title { font-size: 30px; }
}
@media (max-width: 768px) {
  .price-hero { margin-top: 110px; }
  .price-hero__title { font-size: 25px; }
  .price-heading { font-size: 21px; }
  .price-table-wrap { padding: 26px 20px; }
  .price-table td { font-size: 19px; }
  .price-included-grid { grid-template-columns: repeat(2, 1fr); }
  .price-refund { padding: 30px 24px; }
  .price-refund h3 { font-size: 20px; }
  .price-consult-points { padding: 26px 22px; }
  .price-btn--lg { min-width: 100%; }
  .section-base__watermark-text { font-size: 44px; }
}
