:root {
  --blue: #0057c8;
  --navy: #081f3f;
  --teal: #00a7a7;
  --green: #16a34a;
  --shadow: 0 14px 34px rgba(8,31,63,.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--navy);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "Hiragino Sans", "Noto Sans JP", Arial, sans-serif;
  letter-spacing: .04em;
}

a { color: inherit; text-decoration: none; }
.sp-only { display: inline; }

.phone-frame {
  min-height: 100vh;
  background: #fff;
}

.lp-header {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(232,238,247,.9);
  position: relative;
  z-index: 5;
}

.logo { display: inline-flex; align-items: center; height: 30px; }
.logo img { display: block; width: auto; height: 22px; }

.site-top-link {
  color: var(--navy);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  height: 242px;
  overflow: hidden;
  background: #f7fbff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-price-mobile.webp");
  background-size: cover;
  background-position: right center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.90) 45%, rgba(255,255,255,.42) 74%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 72%, rgba(255,255,255,0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 67%;
  padding: 18px 0 18px 20px;
  text-align: left;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--teal);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 900;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 7px;
  background: var(--teal);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.28;
  font-weight: 900;
}

.lead {
  width: 100%;
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 10.5px;
  line-height: 1.65;
  font-weight: 900;
}

.main-cta,
.white-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  font-weight: 900;
}

.main-cta {
  width: 206px;
  height: 40px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  box-shadow: 0 12px 26px rgba(22,163,74,.30);
}

.main-cta::after,
.white-cta::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
}

.base-section,
.option-section,
.recommend-section,
.system-section,
.trial-section {
  padding: 34px 18px 0;
  background: #fff;
}

.section-title {
  display: block;
  margin: 0 0 18px;
  color: var(--navy);
  text-align: center;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .08em;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 9px auto 0;
  background: var(--teal);
  border-radius: 999px;
}

.price-main-card {
  overflow: hidden;
  border: 1px solid rgba(0,87,200,.28);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(8,31,63,.12);
  text-align: center;
}

.course-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 38px;
  margin: 22px auto 14px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a63d2, #1686de);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .1em;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--blue);
}

.price-prefix {
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.price-line strong {
  font-size: 58px;
  line-height: 1;
  letter-spacing: .02em;
}

.price-unit {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.tax {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.grade-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin: 0 0 22px;
  padding: 0 18px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px dashed rgba(0,87,200,.32);
}

.included-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  text-align: left;
}

.included-item + .included-item {
  border-top: 1px solid rgba(232,238,247,.9);
}

.included-icon,
.option-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef9fb;
}

.included-icon svg,
.option-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.included-item h3 {
  margin: 0 0 3px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.included-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
}

.option-list {
  display: grid;
  gap: 10px;
}

.option-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px 16px;
  border: 1px solid rgba(22,163,74,.24);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,31,63,.08);
}

.option-icon--green {
  color: #fff;
  background: #52b847;
}

.option-icon--blue {
  color: #fff;
  background: var(--blue);
}

.option-card h3 {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 900;
}

.option-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 800;
}

.recommend-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.recommend-card {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 18px 16px 18px 64px;
  border: 1px solid rgba(0,87,200,.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,31,63,.08);
}

.recommend-icon {
  position: absolute;
  top: 18px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #eef9fb;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.recommend-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 900;
}

.recommend-card p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 800;
}

.recommend-card strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.system-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.system-card {
  min-height: 74px;
  padding: 14px 12px 12px;
  border: 1px solid rgba(232,238,247,.95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,31,63,.08);
}

.system-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.system-card h3 {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 900;
}

.trial-list {
  display: grid;
  gap: 10px;
}

.trial-card {
  position: relative;
  min-height: 64px;
  padding: 18px 16px 16px 58px;
  border: 1px solid rgba(232,238,247,.95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,31,63,.08);
}

.trial-number {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.trial-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 900;
}

.bottom-cta {
  margin-top: 36px;
  padding: 34px 20px 36px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0057c8 0%, #00a7c8 100%);
}

.bottom-cta p {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.65;
  font-weight: 900;
}

.bottom-cta .white-cta {
  width: min(100%, 300px);
  height: 52px;
  background: #fff;
  color: var(--blue);
  font-size: 15px;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}

/* footer base + common footer */
.lp-footer {
  padding: 24px 18px 30px;
  background: #f8fbff;
  border-top: 1px solid rgba(232,238,247,.9);
}

.footer-logo,
.footer-brand { display: flex; justify-content: center; margin-bottom: 16px; }
.footer-logo img,
.footer-brand img { width: auto; height: 22px; display: block; }

.footer-links,
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 18px; margin-bottom: 14px; }

.footer-links a,
.footer-nav a { font-size: 12px; line-height: 1.5; font-weight: 800; white-space: nowrap; }

.footer-copy { margin: 0; color: #7b8794; text-align: center; font-size: 10px; line-height: 1.6; font-weight: 700; }

@media (min-width: 900px) {
  .sp-only { display: none; }

  .lp-header {
    height: 64px;
    padding: 0 clamp(28px, 4vw, 56px);
  }

  .logo { height: 34px; }
  .logo img { height: 22px; }
  .site-top-link { font-size: 13px; }

  .hero {
    height: 440px;
  }

  .hero::before {
    background-image: url("../assets/hero-price.webp");
    background-size: cover;
    background-position: center right;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 31%, rgba(255,255,255,.38) 54%, rgba(255,255,255,0) 78%);
  }

  .hero-copy {
    width: 540px;
    padding: 78px 0 70px;
    margin-left: clamp(44px, 6vw, 86px);
  }

  .eyebrow {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .eyebrow::after {
    width: 42px;
    margin-top: 14px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.34;
  }

  .lead {
    width: 430px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.8;
  }

  .main-cta {
    width: 300px;
    height: 54px;
    font-size: 15px;
  }

  .base-section,
  .option-section,
  .recommend-section,
  .system-section,
  .trial-section {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
  }

  .base-section {
    padding-top: 46px;
  }

  .section-title {
    margin-bottom: 28px;
    font-size: 25px;
  }

  .section-title::after {
    width: 64px;
    margin-top: 10px;
  }

  .price-main-card {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px;
  }

  .course-label {
    min-width: 260px;
    height: 44px;
    margin-top: 28px;
    font-size: 18px;
  }

  .price-line strong {
    font-size: 86px;
  }

  .price-prefix,
  .price-unit {
    font-size: 24px;
  }

  .tax {
    font-size: 15px;
  }

  .grade-note {
    height: 34px;
    font-size: 15px;
  }

  .included-list {
    grid-template-columns: 1fr 1fr;
  }

  .included-item {
    padding: 24px 36px;
  }

  .included-item + .included-item {
    border-top: 0;
    border-left: 1px solid rgba(232,238,247,.9);
  }

  .included-icon,
  .option-icon {
    width: 68px;
    height: 68px;
  }

  .included-icon svg,
  .option-icon svg {
    width: 42px;
    height: 42px;
  }

  .included-item h3 {
    font-size: 20px;
  }

  .included-item p {
    font-size: 14px;
  }

  .option-section,
  .recommend-section,
  .system-section,
  .trial-section {
    padding-top: 54px;
  }

  .option-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .option-card {
    min-height: 138px;
    grid-template-columns: 78px 1fr;
    padding: 28px 28px;
  }

  .option-card h3 {
    font-size: 22px;
  }

  .option-card p {
    font-size: 15px;
  }

  .recommend-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .recommend-card {
    min-height: 194px;
    padding: 26px 22px 22px;
    text-align: center;
  }

  .recommend-icon {
    position: static;
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
  }

  .recommend-card h3 {
    font-size: 19px;
  }

  .recommend-card p {
    font-size: 14px;
  }

  .recommend-card strong {
    min-height: 34px;
    padding: 0 22px;
    font-size: 14px;
  }

  .system-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .system-card {
    min-height: 88px;
    text-align: center;
    padding: 18px 12px 16px;
  }

  .system-card h3 {
    font-size: 15px;
  }

  .trial-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .trial-card {
    min-height: 112px;
    padding: 24px 18px 20px;
    text-align: center;
  }

  .trial-number {
    position: static;
    margin: 0 auto 12px;
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .trial-card h3 {
    font-size: 17px;
  }

  .bottom-cta {
    position: relative;
    max-width: 1120px;
    margin: 48px auto 52px;
    padding: 0 34px;
    min-height: 102px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 28px;
    overflow: hidden;
    background: linear-gradient(90deg, #1a63d2 0%, #12a9cf 100%);
  }

  .bottom-cta p {
    margin: 0;
    font-size: 22px;
    line-height: 1.65;
    text-align: left;
  }

  .bottom-cta .white-cta {
    justify-self: end;
    width: 100%;
    max-width: 360px;
    height: 48px;
    font-size: 14px;
  }

  .lp-footer {
    padding: 34px 28px 38px;
  }
}

/* Common Footer */
.common-footer {
  padding: 32px 22px 34px;
  background: #f8fbff;
  border-top: 1px solid rgba(232, 238, 247, .9);
}

.common-footer .footer-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.common-footer .footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.common-footer .footer-brand img {
  display: block;
  width: auto;
  height: 24px;
}

.common-footer .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}

.common-footer .footer-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.common-footer .footer-heading {
  margin: 0 0 2px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: .08em;
}

.common-footer .footer-group a {
  color: #516173;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: .04em;
}

.common-footer .footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 300px);
  height: 48px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--green, #16a34a);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(22, 163, 74, .24);
}

.common-footer .footer-cta::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.common-footer .footer-copy {
  margin: 0;
  color: #7b8794;
  text-align: center;
  font-size: 10px;
  line-height: 1.6;
  font-weight: 700;
}

@media (min-width: 900px) {
  .common-footer {
    padding: 42px 28px 44px;
  }

  .common-footer .footer-inner {
    display: grid;
    grid-template-columns: 180px 1fr 300px;
    grid-template-areas:
      "brand nav cta"
      "copy copy copy";
    align-items: start;
    column-gap: 42px;
    row-gap: 26px;
  }

  .common-footer .footer-brand {
    grid-area: brand;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-top: 2px;
  }

  .common-footer .footer-brand img {
    height: 26px;
  }

  .common-footer .footer-nav {
    grid-area: nav;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 34px;
    margin-bottom: 0;
  }

  .common-footer .footer-heading {
    font-size: 14px;
  }

  .common-footer .footer-group a {
    font-size: 13px;
  }

  .common-footer .footer-cta {
    grid-area: cta;
    width: 300px;
    height: 50px;
    margin: 0;
    justify-self: end;
    font-size: 14px;
  }

  .common-footer .footer-copy {
    grid-area: copy;
    text-align: center;
  }
}



/* ===== Price page refinement: 9,800 yen main card ===== */
.price-main-card {
  border: 1.5px solid rgba(0, 87, 200, .44);
  box-shadow: 0 18px 46px rgba(0,87,200,.13);
}

.price-catch {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: .06em;
}

.price-line {
  margin-bottom: 6px;
}

.price-line strong {
  font-size: 68px;
  color: var(--blue);
  text-shadow: 0 8px 24px rgba(0,87,200,.10);
}

.tax-note {
  width: fit-content;
  margin: 0 auto 12px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #516173;
  background: #f5f8fc;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 900;
}

.grade-note {
  margin-bottom: 8px;
}

.included-list {
  margin-top: 16px;
  border-top: 2px dotted rgba(0,87,200,.22);
}

.included-item {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.option-card {
  border-color: rgba(22,163,74,.34);
  background: linear-gradient(180deg, #fff 0%, #fbfff9 100%);
}

.recommend-card {
  border-color: rgba(0,87,200,.28);
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.recommend-card strong {
  min-width: 150px;
  justify-content: center;
}

@media (min-width: 900px) {
  .price-main-card {
    max-width: 940px;
  }

  .price-catch {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .price-line strong {
    font-size: 98px;
  }

  .tax-note {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .grade-note {
    margin-bottom: 10px;
  }

  .included-list {
    margin-top: 18px;
  }

  .recommend-card strong {
    min-width: 170px;
  }
}




/* ===== mock-closer price layout ===== */
.page-price-mock .base-section--price,
.page-price-mock .option-section--price,
.page-price-mock .recommend-section--price,
.page-price-mock .trial-section--price {
  padding-top: 34px;
}

.page-price-mock .section-title {
  margin-bottom: 16px;
}

.page-price-mock .price-main-card--mock {
  padding: 18px 14px 14px;
  border: 1px solid rgba(0,87,200,.18);
  box-shadow: 0 18px 42px rgba(8,31,63,.10);
}

.page-price-mock .price-head {
  padding: 10px 12px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.page-price-mock .course-label {
  min-width: 178px;
  height: 34px;
  margin: 0 auto 12px;
  font-size: 14px;
}

.page-price-mock .price-line--main {
  gap: 6px;
  margin-bottom: 8px;
}

.page-price-mock .price-line--main strong {
  font-size: 60px;
}

.page-price-mock .price-prefix,
.page-price-mock .price-unit {
  font-size: 18px;
}

.page-price-mock .tax {
  font-size: 12px;
}

.page-price-mock .grade-note {
  margin: 0 auto;
}

.page-price-mock .contains-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #f8fbff;
}

.page-price-mock .contains-label {
  margin: 0 0 10px;
  color: var(--blue);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: .08em;
}

.page-price-mock .included-list--compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-top: 0;
  margin-top: 0;
}

.page-price-mock .included-item--compact {
  grid-template-columns: 46px 1fr;
  gap: 10px;
  padding: 12px;
  min-height: 76px;
  border: 1px solid rgba(0,87,200,.12);
  border-radius: 12px;
  background: #fff;
}

.page-price-mock .included-item--compact + .included-item--compact {
  border-top: 1px solid rgba(0,87,200,.12);
}

.page-price-mock .included-icon {
  width: 42px;
  height: 42px;
}

.page-price-mock .included-icon svg {
  width: 25px;
  height: 25px;
}

.page-price-mock .included-item h3 {
  margin: 0 0 2px;
  font-size: 14px;
}

.page-price-mock .included-item p {
  font-size: 11px;
  line-height: 1.6;
}

.page-price-mock .option-list--price {
  gap: 10px;
}

.page-price-mock .option-card--price {
  min-height: 92px;
  padding: 16px 14px;
  border: 1px solid rgba(8,31,63,.10);
  box-shadow: 0 10px 24px rgba(8,31,63,.07);
}

.page-price-mock .option-card--price h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.page-price-mock .option-card--price p {
  font-size: 12px;
  line-height: 1.6;
}

.page-price-mock .recommend-list--price {
  gap: 10px;
}

.page-price-mock .recommend-card--price {
  min-height: 110px;
  padding: 16px 14px;
  border: 1px solid rgba(0,87,200,.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,31,63,.07);
  text-align: left;
}

.page-price-mock .plan-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 24px;
  margin: 0 0 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.page-price-mock .recommend-card--price h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 900;
}

.page-price-mock .recommend-card--price p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 800;
}

.page-price-mock .trial-list--price {
  gap: 10px;
}

.page-price-mock .trial-card {
  min-height: 64px;
}

@media (min-width: 900px) {
  .page-price-mock .base-section--price,
  .page-price-mock .option-section--price,
  .page-price-mock .recommend-section--price,
  .page-price-mock .trial-section--price {
    padding-top: 54px;
  }

  .page-price-mock .section-title {
    margin-bottom: 22px;
  }

  .page-price-mock .price-main-card--mock {
    max-width: 860px;
    margin: 0 auto;
    padding: 22px 22px 22px;
  }

  .page-price-mock .price-head {
    padding: 18px 18px 20px;
  }

  .page-price-mock .course-label {
    min-width: 230px;
    height: 40px;
    margin-bottom: 14px;
    font-size: 17px;
  }

  .page-price-mock .price-line--main strong {
    font-size: 88px;
  }

  .page-price-mock .price-prefix,
  .page-price-mock .price-unit {
    font-size: 24px;
  }

  .page-price-mock .tax {
    font-size: 15px;
  }

  .page-price-mock .contains-box {
    margin-top: 18px;
    padding: 18px;
  }

  .page-price-mock .contains-label {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .page-price-mock .included-list--compact {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .page-price-mock .included-item--compact {
    min-height: 96px;
    grid-template-columns: 56px 1fr;
    padding: 16px;
    border-top: 1px solid rgba(0,87,200,.12) !important;
  }

  .page-price-mock .included-icon {
    width: 50px;
    height: 50px;
  }

  .page-price-mock .included-icon svg {
    width: 30px;
    height: 30px;
  }

  .page-price-mock .included-item h3 {
    font-size: 17px;
  }

  .page-price-mock .included-item p {
    font-size: 13px;
  }

  .page-price-mock .option-list--price {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .page-price-mock .option-card--price {
    min-height: 124px;
    padding: 20px 20px;
  }

  .page-price-mock .option-card--price h3 {
    font-size: 21px;
  }

  .page-price-mock .option-card--price p {
    font-size: 14px;
  }

  .page-price-mock .recommend-list--price {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .page-price-mock .recommend-card--price {
    min-height: 170px;
    padding: 22px 18px;
  }

  .page-price-mock .recommend-card--price h3 {
    font-size: 20px;
  }

  .page-price-mock .recommend-card--price p {
    font-size: 14px;
  }

  .page-price-mock .trial-list--price {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
