@charset "UTF-8";

/* =========================================================================
   Support page (/support/)
   Ported from support.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()); CTA buttons reuse the shared .jh-cta
   component (cebuway_cta_buttons(), from junior-high.css).
   ========================================================================= */

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

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

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

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

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

.section-base__watermark-text {
  display: inline-block;
  font-family: var(--support-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); }

.support-phase {
  text-align: center;
  font-family: var(--support-font-en);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--support-orange-accent);
  margin-bottom: 10px;
}
.section-base--yellow .support-phase { color: #fff; }

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

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

/* ---- support cards (icon on top) --------------------------------------- */
.support-cards {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.support-card {
  background: #fff;
  border-radius: var(--support-radius-lg);
  box-shadow: var(--support-shadow-card);
  padding: 34px 28px 30px;
}
.support-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F8B133, #F59F27);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.support-card__icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
}
.support-card__icon svg { position: relative; z-index: 1; width: 28px; height: 28px; }
.support-card__body { text-align: center; }
.support-card h3 { font-size: 16.5px; font-weight: 900; color: var(--support-text-dark); line-height: 1.6; margin-bottom: 12px; }
.support-card p { font-size: 14px; color: var(--support-text-gray); text-align: left; }

/* ---- final CTA ----------------------------------------------------------- */
.support-cta-note {
  text-align: center;
  font-size: 13px;
  color: var(--support-text-gray);
  margin-top: 14px;
}
.section-base--yellow .support-cta-note { color: rgba(255, 255, 255, .85); }

/* ---- responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .support-hero__title { font-size: 30px; }
}
@media (max-width: 768px) {
  .support-hero { margin-top: 110px; }
  .support-hero__title { font-size: 25px; }
  .support-heading { font-size: 21px; }
  .support-card { padding: 26px 22px 24px; }
  .section-base__watermark-text { font-size: 44px; }
}
