.courseDetailPage {
  --cd-pink: #f55279;
  --cd-pink-dark: #e63f67;
  --cd-pink-soft: #fff0f5;
  --cd-pink-line: #ffd3de;
  --cd-cream: #fff8f2;
  --cd-yellow: #ffe66e;
  --cd-navy: #111c3a;
  --cd-text: #33415b;
  --cd-muted: #6e778b;
  --cd-shadow: 0 18px 50px rgba(235, 87, 121, 0.13);
  color: var(--cd-navy);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 225, 234, 0.78), transparent 28%),
    radial-gradient(circle at 92% 15%, rgba(255, 242, 247, 0.92), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fff9fb 42%, #fff 100%);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  overflow: hidden;
}

.courseDetailPage a {
  color: inherit;
  text-decoration: none;
}

.courseDetailHero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 251, 0.94) 36%, rgba(255, 255, 255, 0.52) 57%, rgba(255, 255, 255, 0.08) 78%),
    var(--course-detail-hero-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.courseDetailHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(245, 82, 121, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, transparent 45%, rgba(245, 82, 121, 0.08) 45% 55%, transparent 55%);
  background-size: 22px 22px, 180px 180px;
  opacity: 0.45;
  pointer-events: none;
}

.courseDetailHero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(440px, 650px) minmax(360px, 1fr);
  grid-template-areas:
    "copy visual"
    "cta visual";
  gap: 24px 30px;
  align-items: center;
}

.courseDetailHero__copy {
  grid-area: copy;
  min-width: 0;
  padding: 42px 0 0;
}

.courseDetailHero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
  color: #72798b;
  font-size: 13px;
  font-weight: 800;
}

.courseDetailHero__breadcrumb a::after {
  content: ">";
  margin-left: 10px;
  color: #d4b7bf;
}

.courseDetailHero__breadcrumb strong {
  color: var(--cd-navy);
}

.courseDetailHero__script {
  margin: 0 0 10px;
  color: #f3a8ba;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.courseDetailHero h1 {
  margin: 0;
  color: var(--cd-pink);
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.courseDetailHero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--cd-navy);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 900;
  line-height: 1.85;
}

.courseDetailHero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 590px;
  margin-top: 42px;
}

.courseDetailHero__stats article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--cd-pink-line);
  border-radius: 50%;
  aspect-ratio: 1;
  box-shadow: 0 15px 36px rgba(235, 87, 121, 0.11);
  backdrop-filter: blur(10px);
}

.courseDetailHero__stats span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  color: var(--cd-pink);
  background: var(--cd-pink-soft);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
}

.courseDetailHero__stats strong,
.courseDetailHero__stats p {
  display: block;
  margin: 0;
}

.courseDetailHero__stats strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.courseDetailHero__stats p {
  margin-top: 5px;
  color: var(--cd-text);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.courseDetailHero__visual {
  display: none;
}

.courseDetailHero__visual img {
  display: none;
}

.courseDetailHero__cta {
  position: absolute;
  right: max(32px, calc((100vw - 1180px) / 2 + 18px));
  bottom: 42px;
  z-index: 2;
  width: min(390px, 100%);
  margin: 0;
  padding: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 3px solid #ffe77b;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(235, 87, 121, 0.16);
}

.courseDetailHero__cta p,
.courseDetailHero__cta strong {
  display: block;
  margin: 0;
}

.courseDetailHero__cta p {
  color: #815e11;
  font-size: 14px;
  font-weight: 900;
}

.courseDetailHero__cta strong {
  margin-top: 8px;
  color: var(--cd-navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.courseDetailHero__cta a,
.courseDetailBanner a,
.courseDetailBottomCta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 30px;
  color: #fff;
  background: linear-gradient(90deg, var(--cd-pink), var(--cd-pink-dark));
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(235, 87, 121, 0.25);
}

.courseDetailHero__cta a {
  width: 100%;
  margin-top: 20px;
}

.courseDetailHero__cta a::after,
.courseDetailBanner a::after,
.courseDetailBottomCta a::after {
  content: ">";
}

.courseDetailIntro,
.courseDetailReasons,
.courseDetailDuration,
.courseDetailBanner,
.courseDetailDream,
.courseDetailBottomCta {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.courseDetailIntro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 42px 0 30px;
}

.courseDetailCard {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--cd-pink-line);
  border-radius: 24px;
  box-shadow: var(--cd-shadow);
}

.courseDetailCard h2,
.courseDetailSectionHead h2,
.courseDetailReasons h2 {
  margin: 0;
  color: var(--cd-navy);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.courseDetailCard h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 30px 0;
}

.courseDetailCard h2 span {
  color: var(--cd-pink);
}

.courseDetailCard p,
.courseDetailRecommend li {
  color: var(--cd-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 2;
}

.courseDetailOverview p {
  margin: 18px 30px 0;
}

.courseDetailCard img {
  width: calc(100% - 60px);
  height: 190px;
  display: block;
  margin: 24px 30px 30px;
  object-fit: cover;
  border-radius: 16px;
}

.courseDetailRecommend {
  display: flex;
  flex-direction: column;
}

.courseDetailRecommend ul {
  display: grid;
  gap: 12px;
  margin: 22px 30px 0;
  padding: 0;
  list-style: none;
}

.courseDetailRecommend li {
  position: relative;
  padding-left: 34px;
}

.courseDetailRecommend li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--cd-pink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.courseDetailRecommend img {
  margin-top: auto;
}

.courseDetailReasons {
  padding: 38px 34px 42px;
  background: linear-gradient(180deg, #fff5f8 0%, #fff 100%);
  border: 1px solid var(--cd-pink-line);
  border-radius: 24px;
  box-shadow: var(--cd-shadow);
}

.courseDetailReasons h2,
.courseDetailSectionHead {
  text-align: center;
}

.courseDetailReasons h2::before,
.courseDetailReasons h2::after,
.courseDetailSectionHead h2::before,
.courseDetailSectionHead h2::after {
  content: "♡";
  margin: 0 14px;
  color: #ffadc0;
  font-size: 18px;
}

.courseDetailReasons__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
}

.courseDetailReasons__grid article {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid #ffe0e7;
}

.courseDetailReasons__grid article:last-child {
  border-right: 0;
}

.courseDetailReasons__grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  color: var(--cd-pink);
  background: var(--cd-pink-soft);
  border-radius: 18px;
  font-size: 30px;
  font-weight: 900;
}

.courseDetailReasons__grid strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.courseDetailReasons__grid p {
  margin: 10px 0 0;
  color: var(--cd-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.courseDetailDuration {
  padding: 52px 0 36px;
}

.courseDetailSectionHead p {
  max-width: 840px;
  margin: 14px auto 0;
  color: var(--cd-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.courseDetailDuration__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.courseDetailDuration__grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--cd-pink-line);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(235, 87, 121, 0.11);
}

.courseDetailDuration__head {
  padding: 20px 18px 16px;
  text-align: center;
  background: linear-gradient(180deg, #ffd6e1 0%, #ffe8ee 100%);
}

.courseDetailDuration__head span,
.courseDetailDuration__head strong {
  display: block;
}

.courseDetailDuration__head span {
  color: var(--cd-pink-dark);
  font-size: 22px;
  font-weight: 900;
}

.courseDetailDuration__head strong {
  margin-top: 4px;
  color: var(--cd-navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.courseDetailDuration__grid img {
  width: calc(100% - 28px);
  height: 132px;
  display: block;
  margin: 14px;
  object-fit: cover;
  border-radius: 12px;
}

.courseDetailDuration__grid p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--cd-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
}

.courseDetailDuration__level {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  margin: 0 18px 20px;
  padding: 14px;
  background: var(--cd-pink-soft);
  border-radius: 14px;
}

.courseDetailDuration__level span {
  color: var(--cd-pink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.courseDetailDuration__level strong {
  color: var(--cd-navy);
  font-size: 13px;
  font-weight: 900;
}

.courseDetailBanner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 18px;
  padding: 34px 44px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(100deg, #ffdbe6 0%, #ff91ad 100%);
  border-radius: 24px;
  box-shadow: var(--cd-shadow);
}

.courseDetailBanner img {
  align-self: end;
  width: 100%;
  max-height: 230px;
  object-fit: contain;
}

.courseDetailBanner h2 {
  margin: 0;
  color: var(--cd-navy);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.55;
}

.courseDetailBanner p {
  margin: 12px 0 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.courseDetailBanner a,
.courseDetailBottomCta a {
  color: var(--cd-navy);
  background: linear-gradient(90deg, #ffe66e, #fff18f);
  box-shadow: 0 15px 32px rgba(166, 119, 22, 0.18);
}

.courseDetailDream {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.74fr) minmax(280px, 0.56fr);
  gap: 26px;
  margin-top: 52px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--cd-pink-line);
  border-radius: 24px;
  box-shadow: var(--cd-shadow);
}

.courseDetailDream__copy h2 {
  margin: 0;
  color: var(--cd-pink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.45;
}

.courseDetailDream__copy h3 {
  margin: 12px 0 20px;
  color: var(--cd-navy);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 1.5;
}

.courseDetailDream__copy p,
.courseDetailQuestion p {
  color: var(--cd-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 2;
}

.courseDetailDream__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.courseDetailDream__photos img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
}

.courseDetailDream__photos img:first-child {
  grid-column: 1 / -1;
  height: 190px;
}

.courseDetailQuestion {
  padding: 28px;
  background: #fff8fa;
  border: 1px solid var(--cd-pink-line);
  border-radius: 20px;
}

.courseDetailQuestion h3 {
  margin: 0 0 18px;
  color: var(--cd-pink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.5;
}

.courseDetailQuestion ul {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.courseDetailQuestion li {
  position: relative;
  padding-left: 28px;
  color: var(--cd-navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.courseDetailQuestion li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cd-pink);
}

.courseDetailBottomCta {
  margin-top: 36px;
  margin-bottom: 0;
  padding: 34px 44px;
  text-align: center;
  background: linear-gradient(90deg, var(--cd-pink), #ff6c93);
  border-radius: 22px 22px 0 0;
}

.courseDetailBottomCta p {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .courseDetailHero {
    min-height: 0;
    background-position: 58% top;
  }

  .courseDetailHero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "cta";
    gap: 18px;
    min-height: 0;
    padding-bottom: 32px;
  }

  .courseDetailHero__visual {
    display: none;
  }

  .courseDetailHero__visual img {
    display: none;
  }

  .courseDetailHero__cta {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: stretch;
    width: 100%;
    margin: 0;
  }

  .courseDetailIntro,
  .courseDetailDuration__grid,
  .courseDetailDream {
    grid-template-columns: 1fr;
  }

  .courseDetailReasons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .courseDetailReasons__grid article {
    border-right: 0;
    border-bottom: 1px solid #ffe0e7;
  }
}

@media (max-width: 768px) {
  .courseDetailPage {
    background: linear-gradient(180deg, #fff7fa 0%, #fff 38%, #fff8fa 100%);
  }

  .courseDetailHero {
    padding-top: 198px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.18) 28%, rgba(255, 248, 251, 0.98) 74%),
      var(--course-detail-hero-bg);
    background-size: auto 315px;
    background-position: top right -66px;
  }

  .courseDetailHero__inner,
  .courseDetailIntro,
  .courseDetailReasons,
  .courseDetailDuration,
  .courseDetailBanner,
  .courseDetailDream,
  .courseDetailBottomCta {
    width: min(100% - 28px, 520px);
  }

  .courseDetailHero__copy {
    display: block;
    padding: 0;
  }

  .courseDetailHero__breadcrumb {
    display: none;
  }

  .courseDetailHero__script {
    margin: 0;
    font-size: clamp(34px, 9vw, 48px);
  }

  .courseDetailHero h1 {
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1.15;
  }

  .courseDetailHero__lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.75;
  }

  .courseDetailHero__visual {
    display: none;
  }

  .courseDetailHero__visual img {
    display: none;
  }

  .courseDetailHero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
    margin-top: 22px;
  }

  .courseDetailHero__stats article {
    min-height: 108px;
    padding: 14px 7px;
    border-radius: 22px;
    aspect-ratio: auto;
  }

  .courseDetailHero__stats span {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
    font-size: 20px;
  }

  .courseDetailHero__stats strong {
    font-size: 11px;
  }

  .courseDetailHero__stats p {
    font-size: 9px;
  }

  .courseDetailHero__cta {
    margin: 18px 0 0;
    padding: 22px;
    border-width: 1px;
    border-color: var(--cd-pink-line);
  }

  .courseDetailHero__cta strong {
    font-size: 15px;
  }

  .courseDetailHero__cta a {
    min-height: 54px;
    font-size: 14px;
  }

  .courseDetailIntro {
    gap: 18px;
    padding: 28px 0 20px;
  }

  .courseDetailCard {
    border-radius: 22px;
  }

  .courseDetailCard h2,
  .courseDetailSectionHead h2,
  .courseDetailReasons h2 {
    font-size: 22px;
  }

  .courseDetailCard h2 {
    padding: 24px 22px 0;
  }

  .courseDetailOverview p {
    margin: 14px 22px 0;
  }

  .courseDetailCard p,
  .courseDetailRecommend li {
    font-size: 13px;
    line-height: 1.9;
  }

  .courseDetailCard img {
    width: calc(100% - 44px);
    height: 170px;
    margin: 20px 22px 24px;
  }

  .courseDetailRecommend ul {
    margin: 18px 22px 0;
  }

  .courseDetailReasons {
    padding: 30px 16px;
    border-radius: 22px;
  }

  .courseDetailReasons h2::before,
  .courseDetailReasons h2::after,
  .courseDetailSectionHead h2::before,
  .courseDetailSectionHead h2::after {
    margin: 0 8px;
    font-size: 14px;
  }

  .courseDetailReasons__grid {
    grid-template-columns: 1fr;
  }

  .courseDetailReasons__grid article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 3px 14px;
    padding: 18px;
    text-align: left;
  }

  .courseDetailReasons__grid span {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    margin: 0;
    font-size: 24px;
  }

  .courseDetailReasons__grid p {
    margin-top: 2px;
  }

  .courseDetailDuration {
    padding: 36px 0 24px;
  }

  .courseDetailSectionHead p {
    font-size: 12px;
  }

  .courseDetailDuration__grid {
    display: grid;
    gap: 16px;
    margin-top: 22px;
  }

  .courseDetailDuration__grid article {
    display: block;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
  }

  .courseDetailDuration__head {
    display: block;
    padding: 16px 18px 14px;
    text-align: left;
    border-radius: 0;
  }

  .courseDetailDuration__head span {
    font-size: 18px;
    line-height: 1.25;
  }

  .courseDetailDuration__head strong {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.45;
  }

  .courseDetailDuration__grid img {
    width: calc(100% - 28px);
    height: 150px;
    margin: 14px;
    border-radius: 16px;
  }

  .courseDetailDuration__grid p {
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.9;
  }

  .courseDetailDuration__level {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: space-between;
    margin: 0 18px 18px;
    padding: 12px 14px;
  }

  .courseDetailBanner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 22px 0;
    text-align: center;
    border-radius: 22px;
  }

  .courseDetailBanner img {
    order: 2;
    width: min(70%, 220px);
    margin: 0 auto;
  }

  .courseDetailBanner h2 {
    font-size: 18px;
  }

  .courseDetailBanner p {
    font-size: 12px;
  }

  .courseDetailBanner a,
  .courseDetailBottomCta a {
    width: 100%;
    min-height: 54px;
    padding: 13px 20px;
    font-size: 13px;
  }

  .courseDetailDream {
    gap: 18px;
    margin-top: 36px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .courseDetailDream__copy h2 {
    font-size: 24px;
  }

  .courseDetailDream__copy h3 {
    font-size: 18px;
  }

  .courseDetailDream__copy p,
  .courseDetailQuestion p {
    font-size: 12px;
    line-height: 1.85;
  }

  .courseDetailDream__photos {
    grid-template-columns: 1fr;
  }

  .courseDetailDream__photos img,
  .courseDetailDream__photos img:first-child {
    height: 145px;
  }

  .courseDetailQuestion {
    padding: 22px;
  }

  .courseDetailQuestion h3 {
    font-size: 17px;
  }

  .courseDetailQuestion li {
    font-size: 13px;
  }

  .courseDetailBottomCta {
    width: 100%;
    margin-top: 24px;
    padding: 28px 18px;
    border-radius: 0;
  }

  .courseDetailBottomCta p {
    font-size: 18px;
  }
}

.geCourse {
  --ge-teal: #078d95;
  --ge-teal-dark: #006f79;
  --ge-teal-soft: #e5fbff;
  --ge-sky: #d8f6ff;
  --ge-coral: #f46065;
  --ge-coral-dark: #e3454f;
  --ge-gold: #f8b93a;
  --ge-green: #73b95b;
  --ge-blue: #2b92d4;
  --ge-ink: #12333f;
  --ge-text: #38505c;
  --ge-line: #9edbe3;
  --ge-shadow: 0 18px 46px rgba(21, 126, 144, 0.14);
  color: var(--ge-ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(248, 185, 58, 0.22), transparent 18%),
    radial-gradient(circle at 92% 8%, rgba(244, 96, 101, 0.12), transparent 20%),
    linear-gradient(180deg, #f1fcff 0%, #fffdfa 42%, #effcff 78%, #fff 100%);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  overflow: hidden;
}

.geCourse * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.geCourse a {
  color: inherit;
  text-decoration: none;
}

.geHero {
  position: relative;
  min-height: 690px;
  padding: 38px 0 34px;
  overflow: hidden;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 253, 246, 0.96) 39%, rgba(233, 250, 255, 0.6) 63%, rgba(218, 246, 255, 0.18) 100%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.72), transparent 23%),
    linear-gradient(180deg, #f4fdff 0%, #e3f8ff 100%);
}

.geHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(7, 141, 149, 0.18) 1px, transparent 1px),
    radial-gradient(circle, rgba(248, 185, 58, 0.22) 1px, transparent 1px);
  background-position: 0 0, 11px 13px;
  background-size: 34px 34px, 52px 52px;
  opacity: 0.34;
  pointer-events: none;
}

.geHero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -50px;
  width: 130vw;
  height: 180px;
  transform: translateX(-50%);
  background: #fffdfa;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 -2px 0 rgba(7, 141, 149, 0.15);
}

.geHero__inner,
.gePanel,
.geDuration,
.geAdvice,
.geFinal,
.geBottomBar {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.geHero__inner {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(460px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.geHero__copy {
  min-width: 0;
  padding-top: 18px;
}

.geHero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--ge-teal);
  font-size: clamp(18px, 2.1vw, 27px);
  font-weight: 900;
  line-height: 1.4;
}

.geHero__eyebrow::before,
.geHero__eyebrow::after {
  content: "";
  width: 30px;
  height: 30px;
  background:
    linear-gradient(45deg, transparent 42%, var(--ge-gold) 42% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, var(--ge-gold) 42% 58%, transparent 58%);
}

.geHero__eyebrow span {
  font-size: 0.72em;
}

.geHero h1 {
  margin: 0;
  color: var(--ge-teal-dark);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.geHero__lead {
  margin: 18px 0 0;
  color: #172936;
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 900;
  line-height: 1.62;
  text-wrap: balance;
}

.geHero__text {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--ge-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.95;
}

.geHero__cta {
  position: relative;
  width: min(470px, 100%);
  margin-top: 30px;
  padding: 22px 24px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid #f7cf7c;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(244, 96, 101, 0.2);
}

.geHero__cta::before,
.geHero__cta::after {
  content: "";
  position: absolute;
  top: 26px;
  width: 32px;
  height: 2px;
  background: var(--ge-teal);
}

.geHero__cta::before {
  left: 26px;
  transform: rotate(52deg);
}

.geHero__cta::after {
  right: 26px;
  transform: rotate(-52deg);
}

.geHero__cta span,
.geHero__cta strong {
  display: block;
}

.geHero__cta span {
  color: #80464b;
  font-size: 14px;
  font-weight: 900;
}

.geHero__cta strong {
  margin-top: 5px;
  color: var(--ge-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.geHero__cta a,
.geAdvice a,
.geFinal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 30px;
  color: #fff;
  background: linear-gradient(90deg, var(--ge-coral), var(--ge-coral-dark));
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(244, 96, 101, 0.28);
}

.geHero__cta a {
  width: 100%;
  margin-top: 17px;
}

.geHero__cta a::after,
.geAdvice a::after,
.geFinal a::after {
  content: ">";
}

.geHero__visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  margin: 0;
  display: flex;
  align-items: center;
}

.geHero__visual img {
  width: 100%;
  height: min(560px, 48vw);
  min-height: 430px;
  object-fit: cover;
  object-position: center bottom;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 42px 16px 90px 16px;
  box-shadow: 0 22px 52px rgba(18, 51, 63, 0.18);
}

.geHero__visual figcaption {
  position: absolute;
  top: 78px;
  left: 42px;
  width: 132px;
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--ge-teal-dark);
  background: #fff;
  border: 2px solid #d9b36a;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: var(--ge-shadow);
}

.geHero__globe {
  position: absolute;
  right: -12px;
  bottom: 42px;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  color: var(--ge-teal);
  background: linear-gradient(135deg, #effcff, #fff7d8);
  border: 3px solid rgba(7, 141, 149, 0.28);
  border-radius: 50%;
  font-size: 64px;
  box-shadow: 0 20px 40px rgba(18, 51, 63, 0.16);
}

.gePanel {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding: 26px 30px 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--ge-line);
  border-radius: 18px;
  box-shadow: var(--ge-shadow);
}

.geSectionTitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--ge-teal-dark);
}

.geSectionTitle--center {
  justify-content: center;
  text-align: center;
}

.geSectionTitle span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, var(--ge-teal), #4ebbc1);
  border-radius: 16px;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(7, 141, 149, 0.24);
}

.geSectionTitle h2 {
  margin: 0;
  color: var(--ge-teal-dark);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.35;
}

.geSectionTitle i {
  color: var(--ge-blue);
  font-size: 34px;
}

.geOverview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.geOverview__copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.geOverview__copy p {
  margin: 0;
  color: var(--ge-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.95;
}

.geOverview__visual {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ge-teal-soft);
}

.geOverview__visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.geOverview__visual span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 52px;
  padding: 10px 14px;
  color: var(--ge-teal-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 141, 149, 0.24);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 12px 24px rgba(18, 51, 63, 0.12);
}

.geOverview__visual span:nth-of-type(1) {
  left: 7%;
  top: 14%;
}

.geOverview__visual span:nth-of-type(2) {
  right: 29%;
  top: 9%;
}

.geOverview__visual span:nth-of-type(3) {
  right: 5%;
  top: 22%;
}

.geRecommend {
  margin-top: 24px;
}

.geRecommend__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.geRecommend__grid article,
.geMerits__grid article,
.geFuture__grid article {
  background: #fff;
  border: 2px solid rgba(7, 141, 149, 0.18);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(18, 51, 63, 0.08);
}

.geRecommend__grid article {
  min-height: 176px;
  display: grid;
  grid-template-rows: 132px 1fr;
  align-items: center;
  justify-items: center;
  padding: 14px 18px 20px;
  text-align: center;
}

.geRecommend__grid article:nth-child(1) {
  border-color: #f4bd55;
  background: linear-gradient(180deg, #fff9e8, #fff);
}

.geRecommend__grid article:nth-child(2) {
  border-color: #f7a7a9;
  background: linear-gradient(180deg, #fff3f4, #fff);
}

.geRecommend__grid article:nth-child(3) {
  border-color: #a9d98f;
  background: linear-gradient(180deg, #f5ffef, #fff);
}

.geRecommend__grid article:nth-child(4) {
  border-color: #91ccef;
  background: linear-gradient(180deg, #eff9ff, #fff);
}

.geRecommend__grid img {
  width: 100%;
  height: 128px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.geRecommend__grid p {
  margin: 0;
  color: var(--ge-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.65;
}

.geDuration {
  position: relative;
  z-index: 1;
  padding: 38px 0 24px;
}

.geSectionLead {
  max-width: 880px;
  margin: -10px auto 24px;
  color: var(--ge-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.85;
  text-align: center;
}

.geDuration__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.geDuration__grid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 58px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--ge-blue) 0 9px, transparent 9px 16px);
  opacity: 0.78;
}

.geDuration__card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--ge-line);
  border-radius: 18px;
  box-shadow: var(--ge-shadow);
}

.geDuration__head {
  min-height: 116px;
  padding: 22px 18px 18px;
  text-align: center;
  background: linear-gradient(180deg, #f2fcff, #fff);
}

.geDuration__head::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 auto 8px;
  background: var(--ge-blue);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(43, 146, 212, 0.34);
}

.geDuration__head strong,
.geDuration__head span {
  display: block;
}

.geDuration__head strong {
  color: var(--ge-blue);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  line-height: 1.12;
}

.geDuration__head span {
  margin-top: 7px;
  color: var(--ge-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.geDuration__card--2 .geDuration__head strong {
  color: var(--ge-green);
}

.geDuration__card--2 .geDuration__head::before {
  background: var(--ge-green);
}

.geDuration__card--3 .geDuration__head strong {
  color: var(--ge-gold);
}

.geDuration__card--3 .geDuration__head::before {
  background: var(--ge-gold);
}

.geDuration__card--4 .geDuration__head strong {
  color: var(--ge-coral);
}

.geDuration__card--4 .geDuration__head::before {
  background: var(--ge-coral);
}

.geDuration__card img {
  width: calc(100% - 24px);
  height: 150px;
  display: block;
  margin: 0 12px 14px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.geDuration__card p {
  margin: 0;
  padding: 0 18px 22px;
  color: var(--ge-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.78;
}

.geAdvice {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 16px;
  padding: 26px 38px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 24%, rgba(248, 185, 58, 0.18), transparent 18%),
    linear-gradient(100deg, #f0fdff 0%, #fffaf0 60%, #fff4ee 100%);
  border: 2px solid var(--ge-line);
  border-radius: 18px;
  box-shadow: var(--ge-shadow);
}

.geAdvice img {
  align-self: end;
  width: 100%;
  height: 214px;
  object-fit: cover;
  object-position: center;
  border: 6px solid #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 16px 34px rgba(18, 51, 63, 0.13);
}

.geAdvice h2 {
  margin: 0;
  color: var(--ge-teal-dark);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.geAdvice p {
  margin: 10px 0 18px;
  color: var(--ge-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}

.geAdvice a {
  width: min(610px, 100%);
  margin: 0 auto 28px;
}

.geMerits,
.geFuture {
  margin-top: 28px;
}

.geMerits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.geMerits__grid article {
  min-height: 122px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}

.geMerits__grid img {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
}

.geMerits__grid strong {
  color: var(--ge-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.geFuture__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.geFuture__grid article {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.geFuture__grid article:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ge-green);
  font-size: 40px;
  font-weight: 900;
}

.geFuture__grid img {
  width: 132px;
  height: 102px;
  display: block;
  object-fit: contain;
}

.geFuture__grid strong {
  display: block;
  color: var(--ge-teal-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.geFuture__grid p {
  margin: 8px 0 0;
  color: var(--ge-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.75;
}

.geFinal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr) minmax(240px, 0.58fr);
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 12% 12%, rgba(248, 185, 58, 0.28), transparent 18%),
    linear-gradient(135deg, #e3f8ff 0%, #fffaf0 58%, #fff4f4 100%);
  border-radius: 18px;
  box-shadow: var(--ge-shadow);
}

.geFinal__photo {
  align-self: stretch;
  min-height: 310px;
  overflow: hidden;
  border-radius: 16px;
}

.geFinal__photo img,
.geFinal__collage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.geFinal__copy h2 {
  margin: 0 0 14px;
  color: #0d58a2;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.35;
  text-wrap: balance;
}

.geFinal__copy p {
  margin: 10px 0 0;
  color: var(--ge-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.9;
}

.geFinal__copy a {
  width: min(580px, 100%);
  margin-top: 20px;
}

.geFinal__collage {
  display: grid;
  gap: 12px;
}

.geFinal__collage img {
  height: 96px;
  border: 6px solid #fff;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(18, 51, 63, 0.14);
}

.geFinal__collage img:first-child {
  height: 142px;
  transform: rotate(-3deg);
}

.geFinal__collage img:nth-child(2) {
  transform: rotate(2deg);
}

.geFinal__collage img:nth-child(3) {
  transform: rotate(-1deg);
}

.geBottomBar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 0;
  padding: 16px 22px;
  color: var(--ge-teal-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--ge-line);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: var(--ge-shadow);
}

.geBottomBar span,
.geBottomBar strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  white-space: nowrap;
}

.geBottomBar span {
  font-size: 14px;
}

.geBottomBar i {
  color: var(--ge-teal);
  font-size: 20px;
}

.geBottomBar strong {
  color: var(--ge-teal);
  font-size: 26px;
}

@media (max-width: 1080px) {
  .geHero {
    min-height: 0;
  }

  .geHero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
  }

  .geHero__visual {
    min-height: 0;
  }

  .geHero__visual img {
    height: 420px;
    min-height: 0;
  }

  .geOverview__grid,
  .geAdvice,
  .geFinal {
    grid-template-columns: 1fr;
  }

  .geRecommend__grid,
  .geDuration__grid,
  .geMerits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .geDuration__grid::before {
    display: none;
  }

  .geAdvice {
    padding-top: 28px;
    text-align: center;
  }

  .geAdvice img {
    order: 2;
    width: min(360px, 100%);
    height: 210px;
    margin: 0 auto;
  }

  .geFuture__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .geFuture__grid article:not(:last-child)::after {
    display: none;
  }

  .geFinal__collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .geFinal__collage img,
  .geFinal__collage img:first-child {
    height: 130px;
    transform: none;
  }

  .geBottomBar {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .geHero {
    padding: 26px 0 24px;
  }

  .geHero__inner,
  .gePanel,
  .geDuration,
  .geAdvice,
  .geFinal,
  .geBottomBar {
    width: min(100% - 28px, 560px);
  }

  .geHero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .geHero__lead {
    font-size: 17px;
  }

  .geHero__text,
  .geOverview__copy p,
  .geFinal__copy p {
    font-size: 13px;
  }

  .geHero__cta {
    padding: 20px;
  }

  .geHero__cta::before,
  .geHero__cta::after {
    display: none;
  }

  .geHero__cta a,
  .geAdvice a,
  .geFinal a {
    min-height: 54px;
    padding: 13px 20px;
    font-size: 13px;
  }

  .geHero__visual img {
    height: 300px;
    border-width: 6px;
    border-radius: 22px;
  }

  .geHero__visual figcaption {
    top: 18px;
    left: 16px;
    width: 104px;
    min-height: 62px;
    font-size: 12px;
  }

  .geHero__globe {
    right: 12px;
    bottom: 18px;
    width: 78px;
    height: 78px;
    font-size: 42px;
  }

  .gePanel {
    margin-top: 20px;
    padding: 22px 16px;
  }

  .geSectionTitle {
    gap: 10px;
    margin-bottom: 18px;
  }

  .geSectionTitle span {
    width: 44px;
    height: 44px;
    font-size: 22px;
    border-radius: 14px;
  }

  .geSectionTitle h2 {
    font-size: 24px;
  }

  .geOverview__grid,
  .geRecommend__grid,
  .geDuration__grid,
  .geMerits__grid,
  .geFinal__collage {
    grid-template-columns: 1fr;
  }

  .geOverview__visual,
  .geOverview__visual img {
    min-height: 230px;
  }

  .geOverview__visual span {
    display: none;
  }

  .geDuration {
    padding: 28px 0 18px;
  }

  .geDuration__head {
    min-height: 0;
  }

  .geDuration__head strong {
    font-size: 28px;
  }

  .geAdvice {
    padding: 24px 18px 0;
  }

  .geAdvice h2 {
    font-size: 19px;
  }

  .geAdvice p {
    font-size: 12px;
  }

  .geMerits__grid article,
  .geFuture__grid article {
    grid-template-columns: 88px 1fr;
    padding: 18px;
  }

  .geMerits__grid img,
  .geFuture__grid img {
    width: 82px;
    height: 76px;
  }

  .geFinal {
    padding: 18px;
  }

  .geFinal__photo {
    min-height: 260px;
  }

  .geFinal__copy h2 {
    font-size: 26px;
  }

  .geFinal__collage img,
  .geFinal__collage img:first-child {
    height: 130px;
  }

  .geBottomBar {
    padding: 14px;
  }

  .geBottomBar span {
    width: calc(50% - 8px);
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .geBottomBar strong {
    width: 100%;
    justify-content: center;
    font-size: 24px;
  }
}

@media (max-width: 430px) {
  .courseDetailHero__inner,
  .courseDetailIntro,
  .courseDetailReasons,
  .courseDetailDuration,
  .courseDetailBanner,
  .courseDetailDream {
    width: calc(100% - 24px);
  }

  .courseDetailHero h1 {
    font-size: clamp(36px, 10.4vw, 46px);
  }

  .courseDetailHero__stats article {
    min-height: 100px;
    padding: 12px 5px;
  }

  .courseDetailDuration__grid article {
    display: block;
  }
}

.spCourse {
  --sp-blue: #2f78d6;
  --sp-blue-dark: #174c9a;
  --sp-sky: #dff6ff;
  --sp-teal: #22bbb6;
  --sp-teal-dark: #078b91;
  --sp-coral: #ff6a58;
  --sp-coral-dark: #ef4f46;
  --sp-pink: #ff7595;
  --sp-yellow: #ffc94a;
  --sp-ink: #172947;
  --sp-text: #33445d;
  --sp-line: #b9e7ef;
  --sp-shadow: 0 20px 50px rgba(53, 128, 188, 0.14);
  color: var(--sp-ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 201, 74, 0.16), transparent 18%),
    radial-gradient(circle at 92% 8%, rgba(255, 117, 149, 0.18), transparent 20%),
    linear-gradient(180deg, #eefaff 0%, #fff8ed 34%, #fff 55%, #eaf9ff 78%, #fff 100%);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  overflow: hidden;
}

.spCourse *,
.spCourse *::before,
.spCourse *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.spCourse a {
  color: inherit;
  text-decoration: none;
}

.spHero {
  position: relative;
  min-height: 720px;
  padding: 46px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 23% 23%, rgba(255, 255, 255, 0.9), transparent 15%),
    linear-gradient(110deg, rgba(246, 252, 255, 0.98) 0%, rgba(226, 247, 255, 0.96) 47%, rgba(214, 243, 255, 0.62) 100%);
}

.spHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 117, 149, 0.26) 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 201, 74, 0.3) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(47, 120, 214, 0.16) 1px, transparent 1px);
  background-position: 10px 20px, 30px 70px, 60px 15px;
  background-size: 135px 120px, 150px 126px, 90px 80px;
  opacity: 0.65;
  pointer-events: none;
}

.spHero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -66px;
  width: 130vw;
  height: 170px;
  transform: translateX(-50%);
  background: #fffaf0;
  border-radius: 50% 50% 0 0;
}

.spHero__inner,
.spOverview__inner,
.spRecommend,
.spDuration,
.spAdvice,
.spBreakthrough {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.spHero__inner {
  position: relative;
  z-index: 1;
  min-height: 600px;
}

.spHero__photo {
  position: absolute;
  inset: -46px -12vw -86px auto;
  z-index: 0;
  width: min(760px, 62vw);
  margin: 0;
}

.spHero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(238, 250, 255, 0.96) 0%, rgba(238, 250, 255, 0.56) 22%, transparent 52%);
  pointer-events: none;
}

.spHero__photo img {
  width: 100%;
  height: 100%;
  min-height: 710px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.spHero__photo figcaption {
  position: absolute;
  z-index: 2;
  top: 160px;
  right: 25%;
  min-width: 118px;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  color: var(--sp-blue);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--sp-yellow);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transform: rotate(10deg);
  box-shadow: 0 16px 30px rgba(23, 76, 154, 0.13);
}

.spHero__copy {
  position: relative;
  z-index: 2;
  width: min(690px, 61%);
  padding-top: 34px;
}

.spRibbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 36px;
  padding: 15px 34px;
  color: #fff;
  background: linear-gradient(90deg, #f75f76, #ff8a90);
  border-radius: 5px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(247, 95, 118, 0.25);
}

.spRibbon::before,
.spRibbon::after {
  content: "";
  position: absolute;
  top: 100%;
  border-style: solid;
}

.spRibbon::before {
  left: 0;
  border-width: 0 18px 16px 0;
  border-color: transparent #cc435b transparent transparent;
}

.spRibbon::after {
  right: 0;
  border-width: 16px 18px 0 0;
  border-color: #cc435b transparent transparent transparent;
}

.spRibbon span {
  font-size: 0.62em;
}

.spHero h1 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.28;
  text-shadow: 0 4px 0 rgba(255, 255, 255, 0.75);
}

.spHero h1 span,
.spHero h1 strong {
  display: block;
}

.spHero h1 span {
  font-size: 0.72em;
}

.spHero h1 strong {
  width: fit-content;
  font-size: 1.12em;
  filter: drop-shadow(0 4px 0 rgba(255, 255, 255, 0.82));
}

.spHero h1 strong em,
.spHero h1 strong b {
  font-style: normal;
  font-weight: 900;
}

.spHero h1 strong em {
  color: #ff5e78;
}

.spHero h1 strong b {
  color: var(--sp-blue);
  white-space: nowrap;
}

.spHero__lead {
  display: inline-flex;
  align-items: center;
  margin: 24px 0 0;
  padding: 13px 34px;
  color: var(--sp-ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 12px 26px rgba(23, 76, 154, 0.09);
}

.spHero__features {
  display: flex;
  gap: 22px;
  margin-top: 34px;
}

.spHero__features article {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(47, 120, 214, 0.18);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(23, 76, 154, 0.12);
}

.spHero__features img {
  width: 64px;
  height: 56px;
  object-fit: contain;
}

.spHero__features strong {
  color: var(--sp-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.42;
}

.spHero__cta {
  position: absolute;
  right: 0;
  bottom: 26px;
  z-index: 3;
  width: min(520px, 48%);
  padding: 30px 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid rgba(47, 120, 214, 0.16);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(23, 76, 154, 0.18);
}

.spHero__cta p,
.spHero__cta strong {
  margin: 0;
  display: block;
}

.spHero__cta p {
  color: var(--sp-ink);
  font-size: 18px;
  font-weight: 900;
}

.spHero__cta strong {
  margin-top: 8px;
  color: var(--sp-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.65;
}

.spHero__cta a,
.spAdvice a,
.spBreakthrough__copy > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 30px;
  color: #fff;
  background: linear-gradient(90deg, var(--sp-coral), var(--sp-coral-dark));
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(255, 106, 88, 0.26);
}

.spHero__cta a {
  width: 100%;
  margin-top: 18px;
}

.spHero__cta a::after,
.spAdvice a::after,
.spBreakthrough__copy > a::after {
  content: ">";
  font-size: 20px;
}

.spOverview {
  position: relative;
  z-index: 2;
  padding: 42px 0 56px;
  background:
    radial-gradient(circle at 4% 18%, rgba(255, 201, 74, 0.18), transparent 15%),
    linear-gradient(180deg, #fffaf0, #fff);
}

.spOverview__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.spOverview__copy h2,
.spSectionTitle h2 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.35;
}

.spOverview__copy h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.spOverview__copy h2::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--sp-yellow);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.spOverview__copy h2::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -10px;
  width: 118px;
  height: 4px;
  background: linear-gradient(90deg, var(--sp-coral), var(--sp-yellow));
  border-radius: 999px;
}

.spOverview__copy p {
  margin: 13px 0 0;
  color: var(--sp-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 2;
}

.spOverview__photo {
  position: relative;
  margin: 0;
}

.spOverview__photo img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 16px;
  box-shadow: var(--sp-shadow);
}

.spOverview__photo span {
  position: absolute;
  display: inline-flex;
  min-width: 76px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--sp-pink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  font-weight: 900;
  transform: rotate(-13deg);
  box-shadow: 0 12px 24px rgba(23, 76, 154, 0.1);
}

.spOverview__photo span:nth-of-type(1) {
  left: -34px;
  top: 24px;
}

.spOverview__photo span:nth-of-type(2) {
  right: -24px;
  top: -22px;
}

.spRecommend,
.spDuration,
.spAdvice,
.spBreakthrough {
  position: relative;
  z-index: 2;
}

.spSectionTitle {
  margin: 0 0 28px;
  text-align: center;
}

.spSectionTitle h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.spSectionTitle h2::before,
.spSectionTitle h2::after {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--sp-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 201, 74, 0.15);
}

.spSectionTitle h2 span {
  color: var(--sp-text);
  font-size: 0.48em;
}

.spSectionTitle p {
  margin: 12px auto 0;
  max-width: 840px;
  color: var(--sp-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.spRecommend {
  padding: 42px 0 56px;
}

.spRecommend__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.spRecommend__grid article {
  min-height: 260px;
  display: grid;
  grid-template-rows: 110px 1fr;
  align-items: center;
  justify-items: center;
  padding: 28px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--sp-line);
  border-radius: 18px;
  box-shadow: var(--sp-shadow);
}

.spRecommend__grid article:nth-child(1) {
  border-color: #a7d8ff;
  background: linear-gradient(180deg, #f1f9ff, #fff);
}

.spRecommend__grid article:nth-child(2) {
  border-color: #a8e7da;
  background: linear-gradient(180deg, #effffc, #fff);
}

.spRecommend__grid article:nth-child(3) {
  border-color: #ffc59b;
  background: linear-gradient(180deg, #fff8ef, #fff);
}

.spRecommend__grid article:nth-child(4) {
  border-color: #ffb8c5;
  background: linear-gradient(180deg, #fff4f7, #fff);
}

.spRecommend__grid img {
  width: 104px;
  height: 96px;
  object-fit: contain;
}

.spRecommend__grid p {
  margin: 0;
  color: var(--sp-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.75;
}

.spDuration {
  padding: 42px 0 54px;
}

.spDuration__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.spDuration__card {
  position: relative;
  min-height: 354px;
  display: grid;
  grid-template-columns: 78px 170px 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 24px 24px 24px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid #a8d8ff;
  border-radius: 18px;
  box-shadow: var(--sp-shadow);
}

.spDuration__card--2 {
  border-color: #9ee5d8;
}

.spDuration__period {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #62b8fb, #4294dc);
  border-radius: 0 14px 14px 0;
  text-align: center;
}

.spDuration__card--2 .spDuration__period {
  background: linear-gradient(180deg, #62d6c7, #22aaa1);
}

.spDuration__period strong {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.18;
}

.spDuration__card > img {
  align-self: end;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(23, 76, 154, 0.12);
}

.spDuration__body {
  min-width: 0;
}

.spDuration__body h3 {
  margin: 0 0 14px;
  color: var(--sp-blue);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.45;
}

.spDuration__card--2 .spDuration__body h3 {
  color: var(--sp-teal-dark);
}

.spDuration__body ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--sp-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.spDuration__goal {
  margin-top: 16px;
  padding: 14px 16px;
  background: #f4fbff;
  border-radius: 14px;
}

.spDuration__card--2 .spDuration__goal {
  background: #effdfa;
}

.spDuration__goal b {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 7px 14px;
  color: #fff;
  background: var(--sp-blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.spDuration__card--2 .spDuration__goal b {
  background: var(--sp-teal);
}

.spDuration__goal span {
  display: block;
  position: relative;
  padding-left: 22px;
  color: var(--sp-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.spDuration__goal span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 11px;
  height: 11px;
  background: var(--sp-blue);
  border-radius: 50%;
}

.spDuration__card--2 .spDuration__goal span::before {
  background: var(--sp-teal);
}

.spLongPlan {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding: 22px 30px;
  color: var(--sp-text);
  background: linear-gradient(90deg, #fff8e8, #fff);
  border: 2px solid #f8d992;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(255, 201, 74, 0.16);
}

.spLongPlan i {
  color: var(--sp-yellow);
  font-size: 34px;
}

.spLongPlan strong {
  color: var(--sp-coral);
  font-size: 22px;
  font-weight: 900;
}

.spLongPlan p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.spAdvice {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, #c9f4ff, #fff8e8);
  border-radius: 28px;
  box-shadow: var(--sp-shadow);
}

.spAdvice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(43, 178, 208, 0.22), transparent 38%, rgba(255, 201, 74, 0.18));
  pointer-events: none;
}

.spAdvice img,
.spAdvice__copy {
  position: relative;
  z-index: 1;
}

.spAdvice img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  object-position: center;
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(23, 76, 154, 0.16);
}

.spAdvice__copy {
  padding: 24px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(47, 120, 214, 0.12);
  border-radius: 22px;
}

.spAdvice h2 {
  margin: 0;
  color: var(--sp-blue-dark);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.55;
}

.spAdvice p {
  margin: 10px 0 20px;
  color: var(--sp-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
}

.spAdvice a {
  width: min(620px, 100%);
}

.spBreakthrough {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 58px 0 70px;
}

.spBreakthrough__photo {
  min-height: 420px;
  overflow: hidden;
  border-radius: 0 28px 28px 0;
  box-shadow: var(--sp-shadow);
}

.spBreakthrough__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.spBreakthrough__copy {
  min-width: 0;
  padding: 10px 0 0;
}

.spBreakthrough__copy > p {
  margin: 0 0 8px;
  color: var(--sp-ink);
  font-size: clamp(20px, 2.1vw, 29px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.spBreakthrough__copy h2 {
  margin: 0 0 34px;
  color: var(--sp-blue-dark);
  font-size: clamp(28px, 3.2vw, 43px);
  font-weight: 900;
  line-height: 1.42;
  text-align: center;
}

.spBreakthrough__copy h2 span {
  color: var(--sp-blue);
  background: linear-gradient(transparent 66%, rgba(255, 201, 74, 0.5) 66%);
}

.spBreakthrough__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.spBreakthrough__grid article {
  min-height: 244px;
  padding: 20px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-right: 1px dashed rgba(23, 76, 154, 0.22);
}

.spBreakthrough__grid article:last-child {
  border-right: 0;
}

.spBreakthrough__grid img {
  width: 76px;
  height: 64px;
  object-fit: contain;
}

.spBreakthrough__grid h3 {
  margin: 12px 0 10px;
  color: var(--sp-blue);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.spBreakthrough__grid p {
  margin: 0;
  color: var(--sp-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.85;
}

.spBreakthrough__copy > a {
  width: min(660px, 100%);
  margin: 30px auto 0;
}

@media (max-width: 1100px) {
  .spHero {
    min-height: 0;
  }

  .spHero__copy {
    width: min(650px, 100%);
  }

  .spHero__photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 420px;
    margin-top: 28px;
    border-radius: 24px;
    overflow: hidden;
  }

  .spHero__photo img {
    min-height: 0;
    height: 100%;
  }

  .spHero__photo::before {
    background: linear-gradient(180deg, rgba(238, 250, 255, 0.18), rgba(238, 250, 255, 0.35));
  }

  .spHero__cta {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(620px, 100%);
    margin-top: 24px;
  }

  .spOverview__inner,
  .spAdvice,
  .spBreakthrough {
    grid-template-columns: 1fr;
  }

  .spRecommend__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spDuration__grid {
    grid-template-columns: 1fr;
  }

  .spBreakthrough__photo {
    min-height: 340px;
    border-radius: 28px;
  }
}

@media (max-width: 768px) {
  .spHero {
    padding: 28px 0 42px;
  }

  .spHero__inner,
  .spOverview__inner,
  .spRecommend,
  .spDuration,
  .spAdvice,
  .spBreakthrough {
    width: min(100% - 28px, 560px);
  }

  .spHero__copy {
    padding-top: 0;
  }

  .spRibbon {
    margin-bottom: 22px;
    padding: 12px 20px;
    font-size: 18px;
  }

  .spHero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .spHero__lead {
    padding: 10px 20px;
    font-size: 18px;
  }

  .spHero__features {
    flex-wrap: wrap;
    gap: 12px;
  }

  .spHero__features article {
    width: calc(33.333% - 8px);
    min-width: 98px;
    height: 112px;
    padding: 10px;
  }

  .spHero__features img {
    width: 48px;
    height: 42px;
  }

  .spHero__features strong {
    font-size: 11px;
  }

  .spHero__photo {
    height: 300px;
  }

  .spHero__photo figcaption {
    top: 24px;
    right: 20px;
    min-width: 92px;
    min-height: 58px;
    font-size: 13px;
  }

  .spHero__cta,
  .spAdvice__copy {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .spHero__cta p {
    font-size: 15px;
  }

  .spHero__cta strong,
  .spOverview__copy p,
  .spSectionTitle p,
  .spAdvice p {
    font-size: 13px;
  }

  .spHero__cta a,
  .spAdvice a,
  .spBreakthrough__copy > a {
    min-height: 54px;
    padding: 13px 18px;
    font-size: 13px;
  }

  .spOverview {
    padding: 30px 0 40px;
  }

  .spOverview__inner {
    gap: 24px;
  }

  .spOverview__photo img {
    height: 230px;
    border-width: 5px;
  }

  .spOverview__photo span {
    display: none;
  }

  .spRecommend {
    padding: 32px 0 40px;
  }

  .spRecommend__grid,
  .spBreakthrough__grid {
    grid-template-columns: 1fr;
  }

  .spRecommend__grid article {
    min-height: 0;
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto;
    gap: 14px;
    text-align: left;
  }

  .spRecommend__grid p {
    font-size: 13px;
  }

  .spDuration {
    padding: 30px 0 38px;
  }

  .spDuration__card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 18px 20px;
  }

  .spDuration__period {
    min-height: 74px;
    margin: 0 -18px;
    border-radius: 16px 16px 0 0;
  }

  .spDuration__period strong {
    writing-mode: horizontal-tb;
    font-size: 26px;
  }

  .spDuration__card > img {
    width: min(220px, 100%);
    height: 180px;
    margin: 0 auto;
  }

  .spDuration__body h3 {
    font-size: 20px;
  }

  .spDuration__body ul,
  .spDuration__goal span {
    font-size: 12px;
  }

  .spLongPlan {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
    text-align: center;
  }

  .spLongPlan strong {
    font-size: 18px;
  }

  .spAdvice {
    gap: 18px;
    padding: 22px 16px;
    border-radius: 20px;
  }

  .spAdvice img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .spAdvice h2 {
    font-size: 18px;
  }

  .spBreakthrough {
    gap: 24px;
    padding: 38px 0 44px;
  }

  .spBreakthrough__photo {
    min-height: 280px;
  }

  .spBreakthrough__copy > p {
    font-size: 18px;
  }

  .spBreakthrough__copy h2 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .spBreakthrough__grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px dashed rgba(23, 76, 154, 0.22);
  }
}

.whCourse {
  --wh-blue: #1166c4;
  --wh-blue-dark: #073f91;
  --wh-sky: #e9f6ff;
  --wh-orange: #ff7614;
  --wh-orange-dark: #ef5b00;
  --wh-pink: #f45a82;
  --wh-green: #27a66f;
  --wh-yellow: #ffc247;
  --wh-ink: #122b4b;
  --wh-text: #34516f;
  --wh-line: #b8dcff;
  --wh-shadow: 0 18px 42px rgba(17, 102, 196, 0.13);
  color: var(--wh-ink);
  background:
    linear-gradient(180deg, #edf8ff 0%, #fff 18%, #fff8ee 44%, #eff8ff 72%, #fff 100%);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  overflow: hidden;
}

.whCourse * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.whCourse a {
  color: inherit;
  text-decoration: none;
}

.whHero {
  position: relative;
  padding: 42px 0 34px;
  background:
    linear-gradient(90deg, rgba(238, 248, 255, 0.98) 0%, rgba(248, 252, 255, 0.95) 43%, rgba(255, 255, 255, 0.75) 100%),
    linear-gradient(180deg, #dff2ff 0%, #fff 100%);
}

.whHero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -54px;
  width: 140%;
  height: 118px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50% 50% 0 0;
}

.whHero__inner,
.whFeatureStrip,
.whIntro,
.whRecommend,
.whSuccess,
.whSalary,
.whPlans,
.whCta,
.whFlow {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.whHero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(520px, 1.12fr);
  gap: 34px;
  align-items: center;
}

.whRibbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 12px 28px;
  color: #fff;
  background: linear-gradient(90deg, var(--wh-blue), #2482db);
  border-radius: 6px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(17, 102, 196, 0.22);
}

.whRibbon span {
  font-size: 14px;
}

.whHero h1 {
  margin: 0;
  color: var(--wh-blue-dark);
  font-size: 58px;
  font-weight: 900;
  line-height: 1.25;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.whHero h1 span {
  color: var(--wh-blue);
}

.whHero h1 strong {
  color: var(--wh-orange);
  font-size: 1.1em;
}

.whHero__lead {
  margin: 18px 0 0;
  color: #16253e;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
}

.whHero__text {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--wh-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.9;
}

.whHero__cta {
  width: min(500px, 100%);
  margin-top: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(17, 102, 196, 0.14);
  border-radius: 16px;
  box-shadow: var(--wh-shadow);
}

.whHero__cta span {
  display: block;
  margin-bottom: 12px;
  color: var(--wh-ink);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.whHero__cta a,
.whCta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 62px;
  padding: 14px 26px;
  color: #fff;
  background: linear-gradient(90deg, var(--wh-orange), var(--wh-orange-dark));
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 16px 30px rgba(255, 118, 20, 0.28);
}

.whHero__cta a i,
.whCta a i {
  display: none;
}

.whHero__cta a::before,
.whCta a::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 4px;
  background:
    linear-gradient(currentColor, currentColor) 3px 6px / 10px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 4px 10px / 2px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 10px / 2px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 10px / 2px 2px no-repeat;
}

.whHero__cta a::after,
.whCta a::after {
  content: ">";
  font-weight: 900;
}

.whHero__photo {
  position: relative;
  margin: 0;
}

.whHero__photo::before {
  content: "語学も仕事も、海外生活も。";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 1;
  padding: 10px 16px;
  color: var(--wh-blue);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(17, 102, 196, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(18, 43, 75, 0.12);
}

.whHero__photo img {
  width: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
  border-radius: 0 0 0 74px;
  box-shadow: 0 24px 52px rgba(18, 43, 75, 0.18);
}

.whFeatureStrip {
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.whFeatureStrip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.whFeatureStrip article {
  min-height: 104px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 2px solid rgba(17, 102, 196, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(17, 102, 196, 0.08);
}

.whFeatureStrip img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.whFeatureStrip h2 {
  margin: 0;
  color: var(--wh-blue-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.whFeatureStrip p {
  margin: 4px 0 0;
  color: var(--wh-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.whIntro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 20px;
  margin-top: 34px;
}

.whIntro__about,
.whIntro__gains,
.whRecommend,
.whSuccess,
.whSalary,
.whPlans,
.whFlow {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(17, 102, 196, 0.13);
  border-radius: 18px;
  box-shadow: var(--wh-shadow);
}

.whIntro__about {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 18px;
  align-items: end;
  padding: 28px 28px 0;
}

.whIntro__about h2,
.whIntro__gains h2,
.whJobs h3 {
  margin: 0 0 16px;
  color: var(--wh-blue-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.whIntro__about h2::after,
.whIntro__gains h2::after {
  content: "";
  display: block;
  width: min(340px, 82%);
  margin: 12px auto 0;
  border-bottom: 2px dashed var(--wh-line);
}

.whIntro__about p {
  margin: 0 0 12px;
  color: var(--wh-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.95;
}

.whIntro__about img {
  width: 100%;
  align-self: end;
  object-fit: contain;
}

.whIntro__gains {
  padding: 30px 30px 28px;
}

.whIntro__gains ul,
.whJobs ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.whIntro__gains li,
.whJobs li {
  position: relative;
  padding-left: 34px;
  color: var(--wh-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.whIntro__gains li::before,
.whJobs li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--wh-blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.whRecommend,
.whSuccess,
.whSalary,
.whPlans,
.whFlow {
  margin-top: 34px;
  padding: 30px;
}

.whSectionTitle {
  margin: 0 0 24px;
  text-align: center;
}

.whSectionTitle h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: var(--wh-blue-dark);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.whSectionTitle h2::before,
.whSectionTitle h2::after {
  content: "";
  width: 28px;
  height: 28px;
  background:
    linear-gradient(45deg, transparent 42%, var(--wh-yellow) 42% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, var(--wh-yellow) 42% 58%, transparent 58%);
}

.whSectionTitle span {
  font-size: 0.66em;
}

.whSectionTitle p {
  max-width: 850px;
  margin: 10px auto 0;
  color: var(--wh-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.whRecommend__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.whRecommend__grid article {
  min-height: 180px;
  display: grid;
  grid-template-rows: 76px 1fr;
  place-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: #fff;
  border: 2px solid rgba(17, 102, 196, 0.14);
  border-radius: 16px;
  text-align: center;
}

.whRecommend__grid article:nth-child(1) {
  border-color: rgba(39, 166, 111, 0.34);
}

.whRecommend__grid article:nth-child(2) {
  border-color: rgba(17, 102, 196, 0.3);
}

.whRecommend__grid article:nth-child(3) {
  border-color: rgba(244, 90, 130, 0.28);
}

.whRecommend__grid article:nth-child(4) {
  border-color: rgba(255, 118, 20, 0.26);
}

.whRecommend__grid article:nth-child(5) {
  border-color: rgba(17, 102, 196, 0.2);
}

.whRecommend__grid img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.whRecommend__grid p {
  margin: 0;
  color: var(--wh-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.65;
}

.whSuccess {
  background: linear-gradient(180deg, #f2f9ff, #fff);
}

.whSuccess__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.whSuccess__card {
  min-height: 430px;
  padding: 20px;
  background: #fff;
  border: 2px solid rgba(17, 102, 196, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(18, 43, 75, 0.08);
}

.whSuccess__card--pink {
  border-color: rgba(244, 90, 130, 0.3);
}

.whSuccess__card--orange {
  border-color: rgba(255, 118, 20, 0.3);
}

.whSuccess__head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.whSuccess__head span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--wh-blue);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.whSuccess__card--pink .whSuccess__head span {
  background: var(--wh-pink);
}

.whSuccess__card--orange .whSuccess__head span {
  background: var(--wh-orange);
}

.whSuccess__head h3 {
  margin: 0;
  color: var(--wh-blue-dark);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.42;
}

.whSuccess__card img {
  width: 100%;
  height: 145px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.whSuccess__card p {
  margin: 14px 0 0;
  color: var(--wh-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.whSalary__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
}

.whSalary__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.whSalary__cards article,
.whJobs {
  background: #fff;
  border: 2px solid rgba(17, 102, 196, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(17, 102, 196, 0.08);
}

.whSalary__cards article {
  padding: 18px 14px;
  text-align: center;
}

.whSalary__country {
  min-height: 86px;
  display: grid;
  place-items: center;
  gap: 4px;
}

.whSalary__country img {
  width: 56px;
  height: 38px;
  object-fit: contain;
}

.whSalary__country > span {
  font-size: 38px;
  line-height: 1;
}

.whSalary__country strong {
  color: var(--wh-blue-dark);
  font-size: 20px;
  font-weight: 900;
}

.whSalary__country small {
  color: var(--wh-text);
  font-size: 12px;
  font-weight: 800;
}

.whSalary__cards p {
  margin: 10px 0 14px;
  color: var(--wh-text);
  font-size: 15px;
  font-weight: 900;
}

.whSalary__cards b {
  color: var(--wh-ink);
  font-size: 22px;
}

.whSalary__amounts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.whSalary__amounts span {
  padding: 10px 6px;
  background: #f7fbff;
  border: 1px solid rgba(17, 102, 196, 0.12);
  border-radius: 10px;
  color: var(--wh-text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.55;
}

.whSalary__amounts strong {
  color: var(--wh-orange);
  font-size: 19px;
}

.whJobs {
  padding: 22px 20px;
}

.whJobs h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.whJobs li {
  font-size: 13px;
  line-height: 1.45;
}

.whPlans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.whPlan {
  min-height: 350px;
  padding: 24px 18px 20px;
  background: #fff;
  border: 2px solid rgba(17, 102, 196, 0.18);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 26px rgba(18, 43, 75, 0.08);
}

.whPlan--1 {
  border-color: rgba(39, 166, 111, 0.36);
}

.whPlan--3 {
  border-color: rgba(244, 90, 130, 0.34);
}

.whPlan__mark {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 10px;
  color: #fff;
  background: var(--wh-green);
  border-radius: 14px;
  font-size: 21px;
  font-weight: 900;
}

.whPlan--2 .whPlan__mark {
  background: var(--wh-blue);
}

.whPlan--3 .whPlan__mark {
  background: var(--wh-pink);
}

.whPlan h3 {
  margin: 0;
  color: var(--wh-blue-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

.whPlan > strong {
  display: block;
  margin-top: 4px;
  color: var(--wh-orange);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
}

.whPlan p {
  margin: 12px 0 18px;
  color: var(--wh-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.75;
}

.whPlan__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.whPlan__steps span {
  position: relative;
  min-height: 98px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 8px;
  color: var(--wh-text);
  background: #f7fbff;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
}

.whPlan__steps span:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -9px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: var(--wh-blue);
  font-size: 18px;
  font-weight: 900;
}

.whPlan__steps img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.whCta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr) 230px;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 32px 32px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(232, 247, 255, 0.96), rgba(255, 255, 255, 0.94)),
    linear-gradient(180deg, #e6f5ff, #fff);
  border: 2px solid var(--wh-line);
  border-radius: 18px;
  box-shadow: var(--wh-shadow);
}

.whCta__copy h2 {
  margin: 0;
  color: var(--wh-blue-dark);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.4;
}

.whCta__copy p {
  margin: 14px 0 24px;
  color: var(--wh-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.9;
}

.whCta__question {
  min-width: 0;
  padding-bottom: 28px;
  text-align: center;
}

.whCta__question span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 0 6px 12px;
  padding: 10px 18px;
  color: var(--wh-blue);
  background: #fff;
  border: 2px solid rgba(17, 102, 196, 0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.whCta__question strong {
  display: block;
  margin: 4px 0 18px;
  color: var(--wh-blue-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.whCta > img {
  width: 100%;
  align-self: end;
  object-fit: contain;
}

.whFlow {
  margin-bottom: 44px;
}

.whFlow__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.whFlow__grid article {
  position: relative;
  min-height: 180px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  padding: 18px 12px;
  background: #fff;
  border: 2px solid rgba(17, 102, 196, 0.14);
  border-radius: 16px;
  text-align: center;
}

.whFlow__grid article:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -14px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--wh-blue);
  font-size: 22px;
  font-weight: 900;
}

.whFlow__grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--wh-green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.whFlow__grid article:nth-child(2) span {
  background: var(--wh-blue);
}

.whFlow__grid article:nth-child(3) span {
  background: var(--wh-pink);
}

.whFlow__grid article:nth-child(4) span {
  background: var(--wh-orange);
}

.whFlow__grid article:nth-child(5) span {
  background: #0b7894;
}

.whFlow__grid img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.whFlow__grid h3 {
  margin: 0;
  color: var(--wh-blue-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.whFlow__grid p {
  margin: 0;
  color: var(--wh-text);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .whHero__inner {
    grid-template-columns: 1fr;
  }

  .whHero__photo img {
    min-height: 0;
    height: 420px;
    border-radius: 28px;
  }

  .whFeatureStrip__grid,
  .whRecommend__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whIntro,
  .whSalary__layout,
  .whCta {
    grid-template-columns: 1fr;
  }

  .whCta {
    padding-bottom: 0;
  }

  .whCta > img {
    width: min(260px, 80%);
    margin: 0 auto;
  }

  .whFlow__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .whFlow__grid article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .whHero h1 {
    font-size: 43px;
  }

  .whHero__lead {
    font-size: 24px;
  }

  .whHero__inner,
  .whFeatureStrip,
  .whIntro,
  .whRecommend,
  .whSuccess,
  .whSalary,
  .whPlans,
  .whCta,
  .whFlow {
    width: min(640px, calc(100% - 32px));
  }

  .whIntro__about,
  .whSuccess__grid,
  .whSalary__cards,
  .whPlans__grid {
    grid-template-columns: 1fr;
  }

  .whIntro__about img {
    width: min(190px, 70%);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .whHero {
    padding: 30px 0 28px;
  }

  .whRibbon {
    padding: 10px 18px;
    font-size: 15px;
  }

  .whRibbon span {
    font-size: 12px;
  }

  .whHero h1 {
    font-size: 30px;
  }

  .whHero__lead {
    font-size: 21px;
  }

  .whHero__text,
  .whIntro__about p,
  .whSectionTitle p,
  .whCta__copy p {
    font-size: 13px;
  }

  .whHero__cta,
  .whIntro__about,
  .whIntro__gains,
  .whRecommend,
  .whSuccess,
  .whSalary,
  .whPlans,
  .whCta,
  .whFlow {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .whHero__inner,
  .whHero__copy,
  .whHero__cta {
    max-width: 100%;
    min-width: 0;
  }

  .whHero__copy {
    overflow: hidden;
  }

  .whHero__text {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .whHero__cta {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .whHero__cta a,
  .whCta a {
    min-width: 0;
    min-height: 56px;
    padding: 13px 12px;
    font-size: 13px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .whHero__photo::before {
    display: none;
  }

  .whHero__photo img {
    height: 300px;
  }

  .whFeatureStrip__grid,
  .whRecommend__grid,
  .whFlow__grid {
    grid-template-columns: 1fr;
  }

  .whFeatureStrip article {
    grid-template-columns: 58px 1fr;
    min-height: 0;
  }

  .whIntro__about {
    padding-bottom: 0;
  }

  .whIntro__about h2,
  .whIntro__gains h2,
  .whSectionTitle h2,
  .whCta__copy h2 {
    font-size: 24px;
  }

  .whSectionTitle h2 {
    display: flex;
    flex-wrap: wrap;
  }

  .whSectionTitle h2::before,
  .whSectionTitle h2::after {
    width: 20px;
    height: 20px;
  }

  .whRecommend__grid article {
    min-height: 0;
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto;
    text-align: left;
  }

  .whSuccess__card {
    min-height: 0;
    padding: 18px;
  }

  .whPlan__steps {
    grid-template-columns: 1fr;
  }

  .whPlan__steps span:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(50%) rotate(90deg);
  }

  .whCta {
    padding-bottom: 0;
  }

  .whCta__question {
    padding-bottom: 0;
  }

  .whCta__question span {
    width: 100%;
    margin: 0 0 10px;
  }
}

.jrCourse {
  --jr-blue: #0879c9;
  --jr-blue-soft: #e7f7ff;
  --jr-pink: #f85085;
  --jr-pink-soft: #fff0f5;
  --jr-orange: #ff6f1a;
  --jr-orange-soft: #fff4df;
  --jr-green: #6fbd63;
  --jr-green-soft: #f0fbec;
  --jr-yellow: #fff8df;
  --jr-ink: #342313;
  --jr-text: #594b3e;
  --jr-line: rgba(37, 146, 207, 0.18);
  --jr-shadow: 0 18px 46px rgba(34, 125, 188, 0.13);
  color: var(--jr-ink);
  background:
    radial-gradient(circle at 9% 5%, rgba(207, 238, 255, 0.92), transparent 26%),
    radial-gradient(circle at 94% 9%, rgba(255, 238, 199, 0.75), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 46%, #fff9ec 100%);
  letter-spacing: 0;
}

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

.jrCourse h1,
.jrCourse h2,
.jrCourse h3,
.jrCourse p,
.jrCourse li,
.jrCourse a,
.jrCourse strong,
.jrCourse span {
  overflow-wrap: anywhere;
}

.jrHero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 18px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 249, 255, 0.92) 42%, rgba(255, 255, 255, 0.55) 72%),
    radial-gradient(circle at 14% 16%, rgba(168, 221, 255, 0.7), transparent 22%);
}

.jrHero::before,
.jrHero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.jrHero::before {
  width: 140px;
  height: 140px;
  left: 7%;
  top: 76px;
  background:
    linear-gradient(45deg, transparent 46%, rgba(8, 121, 201, 0.22) 47% 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(8, 121, 201, 0.22) 47% 53%, transparent 54%);
  opacity: 0.45;
  transform: rotate(10deg);
}

.jrHero::after {
  width: 120px;
  height: 120px;
  right: 10%;
  bottom: 36px;
  border: 2px dashed rgba(248, 80, 133, 0.26);
  border-radius: 50%;
}

.jrHero__inner,
.jrFeatureStrip,
.jrSubIndex,
.jrOverview,
.jrRecommend,
.jrProgram,
.jrSupport,
.jrAdvice,
.jrGrowth {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.jrHero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(430px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.jrHero__copy {
  min-width: 0;
  padding: 8px 0 28px;
}

.jrRibbon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 11px 28px;
  color: #fff;
  background: var(--jr-pink);
  clip-path: polygon(0 13%, 87% 13%, 100% 50%, 87% 87%, 0 87%, 7% 50%);
  font-size: 15px;
  font-weight: 900;
}

.jrRibbon span {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 18px;
  font-weight: 700;
}

.jrHero__tagline {
  margin: 0 0 12px;
  color: var(--jr-blue);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
}

.jrHero h1 {
  margin: 0;
  color: var(--jr-ink);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.jrHero h1 strong {
  color: var(--jr-pink);
}

.jrHero__lead {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--jr-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.9;
}

.jrPrimaryCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 66px;
  margin-top: 28px;
  padding: 16px 34px;
  color: #fff;
  background: linear-gradient(90deg, #ff7b22, var(--jr-orange));
  border-radius: 18px;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(255, 111, 26, 0.24);
}

.jrPrimaryCta--pink {
  min-height: 58px;
  margin-top: 14px;
  background: linear-gradient(90deg, #ff6fa4, var(--jr-pink));
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(248, 80, 133, 0.22);
}

.jrHero__visual {
  position: relative;
  margin: 0;
  min-width: 0;
}

.jrHero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
  object-position: center;
  border-radius: 42px 0 0 180px;
  filter: drop-shadow(0 20px 36px rgba(27, 102, 154, 0.16));
}

.jrHero__visual figcaption {
  display: none;
}

.jrFeatureStrip {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.jrFeatureStrip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.jrFeature,
.jrRecommendCard,
.jrSupportCard {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--jr-shadow);
}

.jrFeature {
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 18px 22px;
  border: 2px solid var(--jr-line);
  border-radius: 24px;
}

.jrFeature span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  font-size: 31px;
}

.jrFeature span img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.jrFeature strong,
.jrFeature p {
  margin: 0;
  font-weight: 900;
  line-height: 1.35;
}

.jrFeature strong {
  font-size: 18px;
}

.jrFeature p {
  color: var(--jr-blue);
  font-size: 17px;
}

.jrFeature--pink span {
  color: var(--jr-pink);
  background: var(--jr-pink-soft);
}

.jrFeature--blue span {
  color: var(--jr-blue);
  background: var(--jr-blue-soft);
}

.jrFeature--green span {
  color: var(--jr-green);
  background: var(--jr-green-soft);
}

.jrSubIndex {
  margin-top: 34px;
}

.jrSectionTitle p {
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--jr-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

.jrSubIndex__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.jrSubIndexCard {
  display: grid;
  grid-template-rows: 70px auto 1fr;
  gap: 10px;
  min-height: 188px;
  padding: 20px 18px;
  color: var(--jr-ink);
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--jr-line);
  border-radius: 22px;
  box-shadow: var(--jr-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.jrSubIndexCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(34, 125, 188, 0.17);
}

.jrSubIndexCard span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  border-radius: 22px;
}

.jrSubIndexCard span img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.jrSubIndexCard strong,
.jrSubIndexCard p {
  margin: 0;
}

.jrSubIndexCard strong {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.jrSubIndexCard p {
  color: var(--jr-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.jrSubIndexCard--pink {
  border-color: #ffc9db;
}

.jrSubIndexCard--pink span {
  background: var(--jr-pink-soft);
}

.jrSubIndexCard--blue {
  border-color: #b8defb;
}

.jrSubIndexCard--blue span {
  background: var(--jr-blue-soft);
}

.jrSubIndexCard--green {
  border-color: #bee4b8;
}

.jrSubIndexCard--green span {
  background: var(--jr-green-soft);
}

.jrSubIndexCard--orange {
  border-color: #ffd89b;
}

.jrSubIndexCard--orange span {
  background: var(--jr-orange-soft);
}

.jrOverview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 32px;
  align-items: center;
  margin-top: 28px;
  padding: 30px 38px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 247, 205, 0.95), transparent 34%),
    linear-gradient(135deg, #fffbed, #ffffff 66%);
  border: 1px solid rgba(247, 202, 90, 0.34);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(191, 138, 39, 0.1);
}

.jrOverview h2,
.jrSectionTitle h2,
.jrProgram__card h2 {
  margin: 0;
  color: var(--jr-ink);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
}

.jrOverview h2 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.jrOverview h2 img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.jrOverview p {
  margin: 0;
  color: var(--jr-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.jrOverview p + p {
  margin-top: 10px;
}

.jrOverview__photo {
  margin: 0;
}

.jrOverview__photo img,
.jrProgram__photo img,
.jrSupportCard > img,
.jrAdvice img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.jrOverview__photo img {
  aspect-ratio: 2;
  object-position: center;
  border-radius: 22px;
}

.jrRecommend,
.jrProgram,
.jrSupport,
.jrAdvice,
.jrGrowth {
  margin-top: 34px;
}

.jrSectionTitle {
  position: relative;
  text-align: center;
}

.jrSectionTitle::before,
.jrSectionTitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 46px;
  height: 28px;
  border-top: 3px solid rgba(68, 196, 222, 0.5);
  border-radius: 50%;
}

.jrSectionTitle::before {
  left: 20%;
  transform: rotate(18deg);
}

.jrSectionTitle::after {
  right: 20%;
  transform: rotate(-18deg);
}

.jrRecommend__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.jrRecommendCard {
  display: grid;
  grid-template-rows: 78px 1fr;
  justify-items: center;
  min-height: 190px;
  padding: 22px 18px;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 24px;
}

.jrRecommendCard span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  font-size: 34px;
}

.jrRecommendCard span img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.jrRecommendCard p {
  margin: 8px 0 0;
  color: var(--jr-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.75;
}

.jrRecommendCard--pink {
  border-color: #ffc9db;
}

.jrRecommendCard--pink span {
  color: var(--jr-pink);
  background: var(--jr-pink-soft);
}

.jrRecommendCard--blue {
  border-color: #b8defb;
}

.jrRecommendCard--blue span {
  color: var(--jr-blue);
  background: var(--jr-blue-soft);
}

.jrRecommendCard--green {
  border-color: #bee4b8;
}

.jrRecommendCard--green span {
  color: var(--jr-green);
  background: var(--jr-green-soft);
}

.jrRecommendCard--orange {
  border-color: #ffd89b;
}

.jrRecommendCard--orange span {
  color: var(--jr-orange);
  background: var(--jr-orange-soft);
}

.jrProgram {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.jrProgram__photo,
.jrProgram__card {
  margin: 0;
  border-radius: 24px;
}

.jrProgram__photo {
  overflow: hidden;
  box-shadow: var(--jr-shadow);
}

.jrProgram__photo img {
  height: 100%;
  min-height: 300px;
  object-position: center;
}

.jrProgram__card {
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid #b8e5ff;
  box-shadow: var(--jr-shadow);
}

.jrProgram__card h2 {
  color: var(--jr-blue);
}

.jrProgram__period {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 14px 0 18px;
  padding: 8px 14px;
  border: 2px solid #9fdcff;
  border-radius: 999px;
}

.jrProgram__period strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 4px 18px;
  color: #fff;
  background: linear-gradient(90deg, #128fd4, #0477bd);
  border-radius: 999px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.jrProgram__period strong::after {
  content: "週間";
  font-size: 18px;
}

.jrProgram__period span {
  color: var(--jr-blue);
  font-size: 20px;
  font-weight: 900;
}

.jrProgram__card p {
  margin: 0;
  color: var(--jr-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
}

.jrProgram__card p + p {
  margin-top: 10px;
}

.jrSupport {
  padding: 4px 0 0;
}

.jrSupport__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.jrSupportCard {
  min-width: 0;
  padding: 14px;
  border: 2px solid #ffe0e8;
  border-radius: 20px;
}

.jrSupportCard h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin: 0 0 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.jrSupportCard h3 img {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.jrSupportCard > img {
  aspect-ratio: 1.78;
  object-position: center;
  border-radius: 14px;
}

.jrSupportCard--pink {
  border-color: #ffc6d8;
  color: var(--jr-pink);
}

.jrSupportCard--blue {
  border-color: #b7e0ff;
  color: var(--jr-blue);
}

.jrSupportCard--green {
  border-color: #c7e8bd;
  color: var(--jr-green);
}

.jrSupportCard--orange {
  border-color: #ffd99d;
  color: var(--jr-orange);
}

.jrSupport__text {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--jr-text);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.jrAdvice {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
  background: linear-gradient(135deg, #fff7fa, #ffffff);
  border: 2px solid #ffb8ce;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(248, 80, 133, 0.13);
}

.jrAdvice > img {
  aspect-ratio: 2.16;
  object-position: center;
  border-radius: 18px;
}

.jrAdvice__copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jrAdvice__copy li {
  position: relative;
  padding-left: 30px;
  color: var(--jr-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}

.jrAdvice__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--jr-pink);
  border-radius: 50%;
}

.jrAdvice__copy li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--jr-pink);
  border-bottom: 2px solid var(--jr-pink);
  transform: rotate(42deg);
}

.jrAdvice__copy p {
  margin: 10px 0 0;
  color: var(--jr-pink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
}

.jrGrowth {
  padding: 22px 28px 26px;
  background: linear-gradient(90deg, #fff8df, #effaff);
  border-radius: 24px 24px 0 0;
}

.jrGrowth .jrSectionTitle::before,
.jrGrowth .jrSectionTitle::after {
  display: none;
}

.jrGrowth .jrSectionTitle h2 {
  color: var(--jr-blue);
  font-size: clamp(22px, 2.6vw, 30px);
}

.jrGrowth__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.jrGrowth__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 22px;
  align-items: center;
  margin-top: 20px;
}

.jrGrowth__body .jrGrowth__grid {
  margin-top: 0;
}

.jrGrowth__grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  min-height: 90px;
}

.jrGrowth__grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--jr-blue);
  background: #fff;
  border-radius: 18px;
  font-size: 25px;
  box-shadow: 0 12px 24px rgba(8, 121, 201, 0.1);
}

.jrGrowth__grid span img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.jrGrowth__grid strong,
.jrGrowth__grid p {
  margin: 0;
}

.jrGrowth__grid strong {
  color: var(--jr-ink);
  font-size: 17px;
  font-weight: 900;
}

.jrGrowth__grid p {
  color: var(--jr-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.jrGrowth__photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(8, 121, 201, 0.12);
}

.jrGrowth__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  object-position: center;
}

.jrSubPage {
  padding-bottom: 56px;
}

.jrSubHero,
.jrSubNav,
.jrSubSummary,
.jrSubBlocks,
.jrSubCta {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.jrSubHero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 46px 0 30px;
}

.jrSubHero__copy {
  min-width: 0;
}

.jrSubBreadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 20px;
  color: var(--jr-text);
  font-size: 13px;
  font-weight: 800;
}

.jrSubBreadcrumb a {
  position: relative;
  color: var(--jr-blue);
}

.jrSubBreadcrumb a::after {
  content: "/";
  position: absolute;
  right: -10px;
  color: #b7c6d5;
}

.jrSubBreadcrumb strong {
  color: var(--jr-ink);
}

.jrSubHero h1 {
  margin: 0;
  color: var(--jr-ink);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.jrSubHero__copy > p:not(.jrRibbon) {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--jr-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.9;
}

.jrSubHero__photo {
  min-width: 0;
  margin: 0;
}

.jrSubHero__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: center;
  border-radius: 32px 8px 32px 80px;
  box-shadow: var(--jr-shadow);
}

.jrSubNav {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--jr-line);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(8, 121, 201, 0.1);
}

.jrSubNav a {
  display: grid;
  grid-template-rows: 34px auto;
  place-items: center;
  gap: 7px;
  min-height: 82px;
  padding: 10px 8px;
  color: var(--jr-ink);
  text-align: center;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.jrSubNav a[aria-current="page"] {
  color: var(--jr-blue);
  background: var(--jr-blue-soft);
  border-color: #9bd8ff;
}

.jrSubNav img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.jrSubSummary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.jrSubSummary article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 98px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid #cdeafe;
  border-radius: 22px;
  box-shadow: var(--jr-shadow);
}

.jrSubSummary img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 8px;
  background: var(--jr-blue-soft);
  border-radius: 18px;
}

.jrSubSummary strong {
  color: var(--jr-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.jrSubBlocks {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.jrSubBlock {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(8, 121, 201, 0.16);
  border-radius: 26px;
  box-shadow: var(--jr-shadow);
}

.jrSubBlock--reverse figure {
  order: 2;
}

.jrSubBlock figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.jrSubBlock figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: center;
}

.jrSubBlock div {
  min-width: 0;
}

.jrSubBlock span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--jr-blue), #45bfe3);
  border-radius: 18px;
  font-size: 20px;
  font-weight: 900;
}

.jrSubBlock h2 {
  margin: 0;
  color: var(--jr-ink);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
}

.jrSubBlock p {
  margin: 14px 0 0;
  color: var(--jr-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.9;
}

.jrSubBlock ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.jrSubBlock li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--jr-blue);
  text-align: center;
  background: var(--jr-blue-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.jrSubCta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 28px 32px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 226, 133, 0.42), transparent 28%),
    linear-gradient(135deg, #fff4fa, #effaff);
  border: 2px solid #ffc7da;
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(248, 80, 133, 0.13);
}

.jrSubCta h2,
.jrSubCta p {
  margin: 0;
}

.jrSubCta h2 {
  color: var(--jr-ink);
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.35;
}

.jrSubCta p {
  margin-top: 10px;
  color: var(--jr-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

@media (max-width: 1040px) {
  .jrHero__inner,
  .jrOverview,
  .jrProgram,
  .jrAdvice,
  .jrSubHero,
  .jrSubBlock,
  .jrSubCta {
    grid-template-columns: 1fr;
  }

  .jrHero__copy {
    padding-bottom: 0;
  }

  .jrHero__visual img {
    max-height: 460px;
  }

  .jrFeatureStrip__grid,
  .jrSubIndex__grid,
  .jrRecommend__grid,
  .jrSupport__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jrGrowth__body {
    grid-template-columns: 1fr;
  }

  .jrGrowth__photo {
    max-width: 360px;
    justify-self: center;
  }

  .jrAdvice {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }

  .jrSubNav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .jrSubBlock--reverse figure {
    order: 0;
  }
}

@media (max-width: 760px) {
  .jrHero__inner,
  .jrFeatureStrip,
  .jrSubIndex,
  .jrOverview,
  .jrRecommend,
  .jrProgram,
  .jrSupport,
  .jrAdvice,
  .jrGrowth,
  .jrSubHero,
  .jrSubNav,
  .jrSubSummary,
  .jrSubBlocks,
  .jrSubCta {
    width: min(560px, calc(100% - 32px));
  }

  .jrHero {
    padding-top: 30px;
  }

  .jrHero h1 {
    font-size: 32px;
  }

  .jrHero__lead,
  .jrProgram__card p,
  .jrOverview p,
  .jrSubHero__copy > p:not(.jrRibbon),
  .jrSubBlock p,
  .jrSubCta p {
    font-size: 14px;
  }

  .jrHero__lead {
    max-width: 330px;
  }

  .jrHero__lead,
  .jrOverview p,
  .jrRecommendCard p,
  .jrProgram__card p,
  .jrSupport__text,
  .jrAdvice__copy li,
  .jrAdvice__copy p,
  .jrGrowth__grid p,
  .jrSubHero__copy > p:not(.jrRibbon),
  .jrSubBlock p,
  .jrSubBlock li,
  .jrSubCta p {
    word-break: break-all;
  }

  .jrPrimaryCta {
    width: 100%;
    min-height: 58px;
    padding: 14px 16px;
    font-size: 15px;
    white-space: normal;
    text-align: center;
  }

  .jrHero__visual img {
    border-radius: 28px 0 0 110px;
  }

  .jrFeatureStrip__grid,
  .jrSubIndex__grid,
  .jrRecommend__grid,
  .jrSupport__grid,
  .jrGrowth__grid,
  .jrGrowth__body,
  .jrAdvice {
    grid-template-columns: 1fr;
  }

  .jrOverview,
  .jrProgram__card,
  .jrAdvice,
  .jrGrowth,
  .jrSubBlock,
  .jrSubCta {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .jrFeature {
    min-height: 0;
  }

  .jrSectionTitle::before,
  .jrSectionTitle::after {
    display: none;
  }

  .jrRecommendCard {
    grid-template-columns: 1fr;
    grid-template-rows: 76px auto;
    align-items: center;
    justify-items: center;
    min-height: 0;
    text-align: center;
  }

  .jrRecommendCard p {
    width: 100%;
    margin: 10px 0 0;
  }

  .jrProgram__photo img {
    min-height: 240px;
  }

  .jrProgram__period {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .jrProgram__period strong,
  .jrProgram__period span {
    justify-content: center;
    text-align: center;
  }

  .jrAdvice > img {
    width: min(280px, 100%);
    margin: 0 auto;
  }

  .jrSubHero {
    padding: 28px 0 24px;
  }

  .jrSubHero h1 {
    font-size: 32px;
  }

  .jrSubHero__photo img {
    border-radius: 24px 8px 24px 56px;
  }

  .jrSubNav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }

  .jrSubNav a {
    min-height: 72px;
    font-size: 12px;
  }

  .jrSubSummary {
    grid-template-columns: 1fr;
  }

  .jrSubBlock ul {
    grid-template-columns: 1fr;
  }

  .jrSubBlock figure img {
    aspect-ratio: 1.38;
  }

  .jrSubCta {
    text-align: center;
  }
}
