/* ============================================================
   School Page Styles
   神戸足の治療院 SCHOOL ランディングページ
   ============================================================ */

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }
}

:root {
  --sc-bg-cream: #fdf9f0;
  --sc-bg-cream-2: #faf5ea;
  --sc-bg-cream-3: #f5ecd6;
  --sc-gold: #c9a96a;
  --sc-gold-dark: #b8944a;
  --sc-gold-light: #e8d5a8;
  --sc-pink: #c5536b;
  --sc-pink-light: #e89aab;
  --sc-pink-soft: #f4d4dc;
  --sc-text: #3d3530;
  --sc-text-sub: #7a6f65;
  --sc-text-light: #9b9189;
  --sc-border: #e8dfc9;
  --sc-border-soft: #efe6d2;
  --sc-white: #ffffff;
}

/* Reset for school page */
html,
body {
  margin: 0;
  padding: 0;
}

.school-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.school-page {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--sc-text);
  background: var(--sc-bg-cream);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 70px;
}

/* ---- Header ---- */
.sc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 123px;
  width: 100%;
  min-height: 70px;
  padding: 0 60px;
  background: var(--sc-white);
  z-index: 1000;
}

.sc-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 180px;
  height: 70px;
  line-height: 0;
}

.sc-logo img {
  width: 190px;
  height: auto;
  display: block;
  transform: translateX(-12px);
}

.sc-nav {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.sc-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.sc-nav-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sc-nav a {
  flex-shrink: 0;
  color: #333;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.sc-nav a:hover {
  color: var(--sc-gold-dark);
}

.sc-nav .sc-btn-trial,
.sc-btn-trial {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 236px;
  height: 49px;
  background: var(--sc-pink);
  border: 1px solid var(--sc-pink);
  color: #fff;
  padding: 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.sc-btn-trial-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.2;
}

.sc-btn-trial small,
.sc-nav .sc-btn-trial small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.sc-btn-trial-arrow {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
}

.sc-btn-trial-arrow::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--sc-pink);
  border-right: 1.5px solid var(--sc-pink);
  transform: rotate(45deg);
}

.sc-btn-trial:hover,
.sc-nav .sc-btn-trial:hover {
  background: #fff;
  color: var(--sc-pink);
}

.sc-btn-trial:hover .sc-btn-trial-arrow,
.sc-nav .sc-btn-trial:hover .sc-btn-trial-arrow {
  background: var(--sc-pink);
}

.sc-btn-trial:hover .sc-btn-trial-arrow::before,
.sc-nav .sc-btn-trial:hover .sc-btn-trial-arrow::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.sc-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #333;
  white-space: nowrap;
}

.sc-lang-switch a {
  color: #333;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}

.sc-lang-switch a:hover {
  color: var(--sc-gold-dark);
}

.sc-lang-current,
.sc-lang-sep {
  color: #aaa;
}

.sc-nav .sc-btn-apply,
.sc-btn-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #c49a3a;
  border: 1px solid #c49a3a;
  color: white;
  width: 172px;
  height: 49px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.sc-nav .sc-btn-apply:hover,
.sc-btn-apply:hover {
  background: #fff;
  color: #c49a3a;
}

.sc-btn-apply-arrow {
  width: 23px;
  height: 23px;
  object-fit: contain;
  flex-shrink: 0;
}

.sc-btn-apply-arrow-circle {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
}

.sc-btn-apply-arrow-circle::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #c49a3a;
  border-right: 1.5px solid #c49a3a;
  transform: rotate(45deg);
}

.sc-nav .sc-btn-apply:hover .sc-btn-apply-arrow-circle,
.sc-btn-apply:hover .sc-btn-apply-arrow-circle {
  background: #c49a3a;
}

.sc-nav .sc-btn-apply:hover .sc-btn-apply-arrow-circle::before,
.sc-btn-apply:hover .sc-btn-apply-arrow-circle::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.sc-nav .sc-btn-tel,
.sc-btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #c49a3a;
  border: 1px solid #c49a3a;
  color: white;
  width: 172px;
  height: 49px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.sc-nav .sc-btn-tel:hover,
.sc-btn-tel:hover {
  background: #fff;
  color: #c49a3a;
}

.sc-btn-tel-icon {
  flex-shrink: 0;
  color: #fff;
}

.sc-nav .sc-btn-tel:hover .sc-btn-tel-icon,
.sc-btn-tel:hover .sc-btn-tel-icon {
  color: #c49a3a;
}

.sc-nav .sc-btn-line,
.sc-btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 210px;
  height: 52px;
  background: #00C300;
  border: 1px solid #00C300;
  color: #fff;
  padding: 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.sc-btn-line:hover,
.sc-nav .sc-btn-line:hover {
  background: #fff;
  border-color: #00C300;
  color: #00C300;
}

.sc-btn-line-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.sc-menu-toggle {
  display: none;
}

.sc-mobile-menu {
  display: none;
}

/* ---- Hero ---- */
.sc-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sc-hero-left {
  position: relative;
  padding: 28px 60px 60px 60px;
  z-index: 2;
}

.sc-hero-left > * {
  position: relative;
  z-index: 2;
}

/* Petals */
.sc-petal {
  position: absolute;
  width: 18px;
  height: 12px;
  background: rgba(244, 212, 220, 0.5);
  border-radius: 0 100% 0 100%;
  pointer-events: none;
}
.sc-petal.p1 { top: 18%; left: 4%; transform: rotate(-30deg); }
.sc-petal.p2 { top: 38%; left: 1%; transform: rotate(45deg); width: 12px; height: 8px; opacity: 0.6; }
.sc-petal.p3 { top: 78%; left: 3%; transform: rotate(15deg); }
.sc-petal.p4 { bottom: 6%; left: 50%; transform: rotate(60deg); opacity: 0.7; }

/* Ribbon */
.sc-ribbon {
  display: block;
  margin-top: 6px;
  width: 100%;
  max-width: 360px;
}

.sc-ribbon img {
  width: 100%;
  height: auto;
  display: block;
}

/* Breadcrumb */
.sc-breadcrumb {
  margin: 30px 0 0;
  font-size: 13px;
  color: var(--sc-text-sub);
  letter-spacing: 0.05em;
}

.sc-breadcrumb .sc-b-school {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--sc-text);
}

/* Headline */
.sc-headline {
  font-family: "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.55;
  margin-top: 22px;
  color: var(--sc-text);
  letter-spacing: 0.01em;
}

.sc-headline .sc-pink {
  color: var(--sc-pink);
}

/* Lead */
.sc-lead {
  margin-top: 32px;
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--sc-text);
}

/* Features */
.sc-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 36px;
  padding: 28px;
  width: 640px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid var(--sc-border-soft);
  border-bottom: 1px solid var(--sc-border-soft);
}

.sc-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sc-feature-icon {
  width: 64px;
  height: 64px;
  background: var(--sc-white);
  border: 1.2px solid var(--sc-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(201, 169, 106, 0.12);
  overflow: hidden;
}

.sc-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.sc-feature-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--sc-text);
  font-weight: 500;
}

/* CTAs */
.sc-cta-row {
  display: flex;
  gap: 18px;
  margin-top: 36px;
}

.sc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  flex: 1;
  font-family: inherit;
  transition: all 0.2s;
}

.sc-cta-primary {
  background: var(--sc-gold);
  color: white;
}

.sc-cta-primary:hover {
  background: var(--sc-gold-dark);
  color: white;
}

.sc-cta-secondary {
  background: var(--sc-white);
  color: var(--sc-text);
  border: 1.2px solid var(--sc-border);
}

.sc-cta-secondary:hover {
  border-color: var(--sc-gold);
  color: var(--sc-text);
}

.sc-cta-arrow {
  font-size: 18px;
  font-weight: 300;
}


/* Hero Right */
.sc-hero-right {
  position: relative;
  width: 854px;
  overflow: visible;
}

.sc-hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.sc-hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 115%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Badge round */
.sc-badge-round {
  position: absolute;
  bottom: 130px;
  right: 80px;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--sc-pink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  font-size: 13.5px;
  color: var(--sc-text);
  z-index: 5;
  backdrop-filter: blur(4px);
}

.sc-badge-round .sc-pink-mid {
  color: var(--sc-pink);
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 500;
  margin: 2px 0;
}

.sc-badge-round .sc-ornament {
  color: var(--sc-pink-light);
  font-size: 14px;
  margin-top: 6px;
  letter-spacing: 0.1em;
}

/* Bottom strip */
.sc-bottom-strip {
  background: var(--sc-bg-cream);
  padding: 26px 36px 36px;
}

.sc-bottom-card {
  background: var(--sc-white);
  border: 1px solid var(--sc-border-soft);
  padding: 28px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  max-width: 900px;
  margin: -37px auto 0;
}

.sc-check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 12px;
  border-right: 1px solid var(--sc-border-soft);
  text-align: center;
}

.sc-check-item:last-child {
  border-right: none;
}

.sc-check-icon {
  color: var(--sc-pink-light);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.sc-check-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--sc-text);
  font-weight: 500;
}

/* ---- School Footer ---- */
.sc-footer {
  position: relative;
  overflow: hidden;
  background: #212121;
  color: #ccc;
  padding: 49px 60px 30px;
}

.sc-footer-grid {
  position: relative;
  z-index: 1;
  max-width: 1092px;
  height: 255px;
  margin: 0 auto;
}

.sc-footer-info {
  position: absolute;
  left: 65px;
  top: 0;
  width: 370px;
}

.sc-footer-logo {
  display: block;
  width: 251px;
  height: 74px;
  margin-left: 23px;
  text-decoration: none;
}

.sc-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.sc-footer-address {
  display: grid;
  gap: 2px;
  margin-top: 23px;
  margin-left: 33px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.63;
  color: #ccc;
}

.sc-footer-col {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 253px;
}

.sc-footer-col:nth-of-type(1) {
  left: 656px;
}

.sc-footer-heading {
  margin: 0 0 16px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}

.sc-footer-links {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sc-footer-links li,
.sc-footer-links a {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 2.2;
}

.sc-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.sc-footer-links a:not(.sc-footer-top-link)::before {
  content: "›";
  font-size: 14px;
  color: var(--sc-gold);
  flex-shrink: 0;
}

.sc-footer-links a:hover {
  color: #fff;
}

.sc-footer-top-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  transition: background 0.2s, border-color 0.2s !important;
}

.sc-footer-top-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff !important;
}

.sc-footer-option {
  margin-top: 7px;
  color: #999;
  font-size: 11px !important;
}

.sc-footer-deco {
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.sc-footer-deco--left {
  left: 0;
  top: 172px;
  width: 108px;
  height: 132px;
  background-image: url("../img/school/footer-branch-left.webp");
}

.sc-footer-deco--top-right {
  right: 10px;
  top: 65px;
  width: 104px;
  height: 127px;
  background-image: url("../img/school/footer-branch-top-right.webp");
}

.sc-footer-deco--bottom-right {
  right: 0;
  top: 211px;
  width: 123px;
  height: 110px;
  background-image: url("../img/school/footer-branch-bottom-right.webp");
}

.sc-footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1091px;
  margin: 31px auto 0;
  padding-top: 27px;
  border-top: 1px solid #444;
  text-align: center;
}

.sc-footer-bottom p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
}

/* ---- Responsive (tablet/SP) ---- */
@media (max-width: 1024px) {
  .sc-header {
    gap: 40px;
  }

  .sc-nav-links {
    display: none;
  }

  .sc-nav-btns {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .sc-header {
    justify-content: space-between;
    padding: 14px 16px;
    gap: 16px;
    overflow: hidden;
    min-height: 70px;
  }

  .sc-logo {
    display: flex;
    align-items: center;
    width: 140px;
    height: 42px;
  }

  .sc-logo img {
    width: 180px;
    transform: none;
  }

  .sc-nav {
    display: none;
  }

  .sc-menu-toggle {
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #c49a3a;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
  }

  .sc-menu-toggle span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    background: #c49a3a;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
  }

  .sc-menu-toggle span:nth-child(1) {
    top: 14px;
  }

  .sc-menu-toggle span:nth-child(2) {
    top: 21px;
  }

  .sc-menu-toggle span:nth-child(3) {
    top: 28px;
  }

  body.school-menu-open .sc-menu-toggle span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  body.school-menu-open .sc-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.school-menu-open .sc-menu-toggle span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .sc-mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    display: grid;
    gap: 0;
    padding: 8px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #efe6d2;
    box-shadow: 0 12px 24px rgba(61, 53, 48, 0.12);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  body.school-menu-open .sc-mobile-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sc-mobile-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #efe6d2;
    color: #333;
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .sc-mobile-menu .sc-mobile-menu-line,
  .sc-mobile-menu .sc-mobile-menu-trial,
  .sc-mobile-menu .sc-mobile-menu-apply,
  .sc-mobile-menu .sc-mobile-menu-lang {
    min-height: 44px;
    margin-top: 14px;
    border-bottom: 0;
    font-family: "Noto Sans JP", sans-serif;
  }

  .sc-mobile-menu .sc-mobile-menu-lang {
    border: 1px solid #c49a3a;
    color: #c49a3a;
  }

  .sc-mobile-lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    margin-top: 8px;
    color: #333;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .sc-mobile-menu .sc-mobile-lang-switch a {
    display: inline-flex;
    min-height: auto;
    border-bottom: 0;
    color: #333;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
    letter-spacing: inherit;
    text-decoration: none;
  }

  .sc-mobile-menu .sc-mobile-lang-switch a:hover {
    color: var(--sc-gold-dark);
  }

  .sc-mobile-menu .sc-mobile-menu-line {
    border: 1px solid #00C300;
    background: #00C300;
    color: #fff;
  }

  .sc-mobile-menu .sc-mobile-menu-trial {
    border: 1px solid var(--sc-pink);
    background: var(--sc-pink);
    color: #fff;
  }

  .sc-mobile-menu .sc-mobile-menu-apply {
    margin-top: 10px;
    background: #c49a3a;
    color: #fff;
  }

  .sc-mobile-menu .sc-mobile-menu-top {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-bottom: none !important;
    font-size: 11px !important;
    color: #888 !important;
    justify-content: center;
    min-height: auto !important;
  }

  .sc-mobile-menu .sc-mobile-menu-top:hover {
    color: #aaa !important;
  }

  .sc-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sc-hero-left {
    padding: 24px 20px 40px;
  }

  .sc-headline {
    font-size: 26px;
  }

  .sc-features {
    width: 100%;
    gap: 24px;
    flex-wrap: wrap;
  }

  .sc-hero-right {
    width: 100%;
    height: 320px;
  }

  .sc-hero-img {
    width: 100%;
    position: relative;
    right: auto;
    bottom: auto;
    object-position: top center;
  }

  .sc-badge-round {
    display: none;
  }

  .sc-cta-row {
    flex-direction: column;
  }

  .sc-bottom-card {
    grid-template-columns: 1fr;
    margin: 0 auto;
    gap: 0;
  }

  .sc-check-item {
    border-right: none;
    border-bottom: 1px solid var(--sc-border-soft);
    padding: 16px 0;
    justify-content: flex-start;
  }

  .sc-check-item:last-child {
    border-bottom: none;
  }

  .sc-footer {
    padding: 48px 28px 30px;
  }

  .sc-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 28px;
    height: auto;
    max-width: 360px;
  }

  .sc-footer-info,
  .sc-footer-col {
    position: static;
    width: auto;
    transform: none;
  }

  .sc-footer-info {
    padding-left: 0;
  }

  .sc-footer-logo {
    margin: 0 auto;
  }

  .sc-footer-address,
  .sc-footer-col {
    margin-left: 0;
    text-align: center;
  }

  .sc-footer-deco {
    opacity: 0.45;
  }

  .sc-footer-deco--left {
    top: auto;
    bottom: 78px;
  }

  .sc-footer-deco--top-right {
    right: -22px;
    top: 36px;
  }

  .sc-footer-deco--bottom-right {
    display: none;
  }
}

/* ============================================================
   お悩みセクション (sc-worries)
   ============================================================ */

.sc-worries {
  background: rgba(253, 245, 242, 0.51);
  padding: 80px 24px;
}

.sc-worries-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ---- Head ---- */
.sc-worries-head {
  text-align: center;
  margin-bottom: 48px;
}

.sc-worries-title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111;
  line-height: 1.45;
  margin-bottom: 16px;
}

.sc-worries-em-wrap {
  position: relative;
  display: inline-block;
}

.sc-worries-dots {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  color: #e06b72;
  letter-spacing: 0.15em;
  line-height: 1.2;
  white-space: nowrap;
}

.sc-worries-em {
  font-style: normal;
  color: #e06b72;
  font-size: 40px;
  font-weight: 600;
}

.sc-worries-sub {
  font-size: 20px;
  color: #555;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.sc-worries-sep {
  display: flex;
  justify-content: center;
}

.sc-worries-sep img {
  width: 140px;
  height: auto;
  display: block;
}

/* ---- Card Grid ---- */
.sc-worries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 48px;
}

.sc-worry-card {
  box-sizing: border-box;
  background: var(--sc-white);
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  width: 344px;
  height: 138px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 29px 23px;
  flex-shrink: 0;
}

.sc-worry-icon {
  flex-shrink: 0;
  width: 81px;
  height: 80px;
}

.sc-worry-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sc-worry-text {
  flex: 1;
  min-width: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

/* ---- CTA Box ---- */
.sc-worries-cta-box {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1.111px solid #ccc;
  border-radius: 0;
  width: 978px;
  max-width: 100%;
  margin: 0 auto;
  background:
    radial-gradient(circle at 21px 21px, #e3bf76 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 21px) 21px, #e3bf76 0 2px, transparent 2.5px),
    radial-gradient(circle at 21px calc(100% - 21px), #e3bf76 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 21px) calc(100% - 21px), #e3bf76 0 2px, transparent 2.5px),
    #fff;
  overflow: hidden;
  padding: 0 41px;
}

.sc-worries-cta-deco {
  flex-shrink: 0;
  width: 85px;
  height: 135px;
  object-fit: contain;
}

.sc-worries-cta-text {
  flex: 1;
  text-align: center;
  line-height: 1.8;
  padding: 20px 0;
}

.sc-worries-cta-text p {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  color: #222;
}

.sc-worries-cta-em {
  font-style: normal;
  font-weight: 700;
  color: #e06b72;
  font-size: 30px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .sc-worries-grid {
    gap: 16px;
  }

  .sc-worry-card {
    width: calc(50% - 8px);
    height: auto;
    min-height: 138px;
  }
}

@media (max-width: 768px) {
  .sc-worries {
    padding: 56px 16px;
  }

  .sc-worries-title {
    font-size: 26px;
  }

  .sc-worries-em {
    font-size: 30px;
  }

  .sc-worries-dots {
    margin-bottom: -10px;
  }

  .sc-worries-sub {
    font-size: 15px;
  }

  .sc-worries-grid {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .sc-worry-card {
    width: 100%;
    max-width: 100%;
    flex-shrink: 1;
    height: auto;
    min-height: 116px;
    padding: 18px 16px;
  }

  .sc-worry-text {
    font-size: 15px;
  }

  .sc-worries-cta-box {
    flex-direction: column;
    padding: 24px 20px;
    width: 100%;
  }

  .sc-worries-cta-deco {
    display: none;
  }

  .sc-worries-cta-text p {
    font-size: 18px;
  }

  .sc-worries-cta-em {
    font-size: 22px;
  }
}

/* ============================================================
   選ばれる理由セクション (sc-reason)
   ============================================================ */

.sc-reason {
  background: var(--sc-white);
  padding: 80px 24px 96px;
}

.sc-reason-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

/* ---- 見出し ---- */
.sc-reason-midashi {
  text-align: center;
  margin-bottom: 64px;
}

.sc-reason-midashi-en {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--sc-gold);
}

.sc-reason-midashi-line {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.sc-reason-midashi-line img {
  width: 226px;
  height: auto;
  display: block;
}

.sc-reason-midashi-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 18px;
}

.sc-reason-midashi-em {
  font-style: normal;
  color: var(--sc-pink);
}

.sc-reason-midashi-sub1,
.sc-reason-midashi-sub2 {
  font-size: 16px;
  color: #555;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* ---- 装飾 ---- */
.sc-reason-deco {
  position: absolute;
  width: 102px;
  height: auto;
  top: 80px;
  pointer-events: none;
}

.sc-reason-deco--r {
  right: 70px;
  transform: scaleX(-1);
}

.sc-reason-deco--l {
  left: 70px;
}

/* ---- REASONアイテム共通 ---- */
.sc-reason-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 60px;
  min-height: 354px;
}

.sc-reason-item:last-child {
  margin-bottom: 0;
}

/* ---- 写真エリア ---- */
.sc-reason-item-photo {
  position: relative;
  flex-shrink: 0;
  width: 393px;
  z-index: 1;
}

.sc-reason-item-photo img {
  position: relative;
  z-index: 2;
  width: 393px;
  height: 279px;
  object-fit: cover;
  display: block;
}

.sc-reason-item-bg {
  position: absolute;
  width: 189px;
  height: 187px;
  background: var(--sc-bg-cream);
  top: 0;
  z-index: 0;
}

.sc-reason-item--odd .sc-reason-item-bg {
  left: -24px;
  top: 12px;
}

.sc-reason-item--even .sc-reason-item-bg {
  right: -24px;
  top: 12px;
}

/* ---- 本文エリア ---- */
.sc-reason-item-body {
  flex: 1;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.sc-reason-item--odd .sc-reason-item-body {
  padding-left: 56px;
  padding-right: 80px;
}

.sc-reason-item--even .sc-reason-item-body {
  padding-left: 0;
  padding-right: 56px;
}

.sc-reason-item-label {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--sc-gold);
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}

.sc-reason-item-title {
  margin-bottom: 20px;
}

.sc-reason-item-line {
  display: block;
  width: 102px;
  height: auto;
  margin-bottom: 10px;
}

.sc-reason-item-title p {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  line-height: 1.8;
}

.sc-reason-pink {
  color: var(--sc-pink);
  font-style: normal;
}

.sc-reason-item-text {
  font-size: 16px;
  line-height: 1.875;
  color: #555;
}

/* ---- 番号装飾 ---- */
.sc-reason-item-num {
  position: absolute;
  width: 113px;
  height: auto;
  pointer-events: none;
  z-index: 3;
}

.sc-reason-item--odd .sc-reason-item-num {
  right: 0;
  top: -21px;
}

.sc-reason-item--even .sc-reason-item-num {
  left: 393px;
  top: 8px;
}

/* ---- Responsive (tablet) ---- */
@media (max-width: 1024px) {
  .sc-reason-deco {
    display: none;
  }

  .sc-reason-item-num {
    display: none;
  }

  .sc-reason-item--odd .sc-reason-item-body {
    padding-left: 36px;
    padding-right: 16px;
  }

  .sc-reason-item--even .sc-reason-item-body {
    padding-right: 36px;
  }
}

/* ---- Responsive (SP) ---- */
@media (max-width: 768px) {
  .sc-reason {
    padding: 56px 16px 72px;
  }

  .sc-reason-midashi-ja {
    font-size: 26px;
  }

  .sc-reason-midashi-sub1,
  .sc-reason-midashi-sub2 {
    font-size: 14px;
  }

  .sc-reason-item {
    flex-direction: column;
    margin-bottom: 48px;
  }

  .sc-reason-item--even {
    flex-direction: column-reverse;
  }

  .sc-reason-item-photo {
    width: 100%;
  }

  .sc-reason-item-photo img {
    width: 100%;
    height: 220px;
  }

  .sc-reason-item-bg {
    display: none;
  }

  .sc-reason-item--odd .sc-reason-item-body,
  .sc-reason-item--even .sc-reason-item-body {
    padding: 24px 0 0;
  }

  .sc-reason-item-title p {
    font-size: 20px;
  }

  .sc-reason-item-text {
    font-size: 15px;
  }
}

/* ============================================================
   Instructor section (sc-instructor)
   ============================================================ */

.sc-instructor {
  background: #fffbf9;
  padding: 52px 24px 90px;
}

.sc-instructor-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.sc-instructor-head {
  text-align: center;
  margin-bottom: 62px;
}

.sc-instructor-head-en {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.08;
  letter-spacing: 0.1em;
  color: #c49a3a;
}

.sc-instructor-head-line {
  display: flex;
  justify-content: center;
  margin: -3px 0 15px;
}

.sc-instructor-head-line img {
  display: block;
  width: 226px;
  height: auto;
}

.sc-instructor-head-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 31px;
}

.sc-instructor-head-ja em {
  color: #e06b72;
  font-style: normal;
}

.sc-instructor-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.3;
  color: #555;
  letter-spacing: 0.01em;
}

.sc-instructor-profile {
  display: grid;
  grid-template-columns: 318px minmax(0, 1fr);
  gap: 55px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.sc-instructor-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 11px 11px 25px;
}

.sc-instructor-photo {
  overflow: hidden;
  border-radius: 8px;
}

.sc-instructor-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 296 / 275;
  object-fit: cover;
  border-radius: 8px;
}

.sc-instructor-card-body {
  padding-top: 17px;
  text-align: center;
}

.sc-instructor-name {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
  color: #222;
}

.sc-instructor-role {
  margin-top: 11px;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  line-height: 1.48;
  color: #777;
}

.sc-instructor-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
}

.sc-instructor-badge-row {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.sc-instructor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 4px 12px;
  background: #fdf5f2;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.6;
  color: #c49a3a;
  white-space: nowrap;
}

.sc-instructor-badge--main {
  position: relative;
  width: 232px;
  min-height: 30px;
  background: #fff;
  border: 1px solid #c49a3a;
  padding: 4px 28px;
  font-weight: 500;
}

.sc-instructor-badge-deco {
  position: absolute;
  top: 2px;
  width: 15px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
}

.sc-instructor-badge-deco--left {
  left: 7px;
}

.sc-instructor-badge-deco--right {
  right: 7px;
}

.sc-instructor-content {
  padding-top: 18px;
}

.sc-instructor-message {
  position: relative;
  padding: 0 32px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.61;
  letter-spacing: 0.05em;
  color: #e06b72;
}

.sc-instructor-quote {
  position: absolute;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #e06b72;
}

.sc-instructor-quote--open {
  left: 0;
  top: -18px;
}

.sc-instructor-quote--close {
  right: 0;
  bottom: -13px;
}

.sc-instructor-text {
  margin-top: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  color: #444;
}

.sc-instructor-text p + p {
  margin-top: 5px;
}

.sc-instructor-divider {
  border-top: 1px dashed #ccc;
  margin: 17px 0 22px;
}

.sc-instructor-career-title {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075em;
  color: #c49a3a;
}

.sc-instructor-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 16px;
  padding-left: 50px;
  list-style: none;
}

.sc-instructor-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 11px;
  bottom: 11px;
  width: 1px;
  background: #c49a3a;
}

.sc-instructor-timeline li {
  position: relative;
  min-height: 45px;
}

.sc-instructor-timeline li::before,
.sc-instructor-timeline li::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.sc-instructor-timeline li::before {
  left: -42px;
  top: 3px;
  width: 14px;
  height: 14px;
  border: 1px solid #c49a3a;
  background: transparent;
}

.sc-instructor-timeline li::after {
  left: -40px;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  background: #c49a3a;
}

.sc-instructor-timeline h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}

.sc-instructor-timeline p {
  margin-top: 3px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.37;
  letter-spacing: 0.05em;
  color: #777;
}

/* ============================================================
   Course section (sc-course)
   ============================================================ */

.sc-course {
  background: #fff;
  padding: 60px 24px 82px;
}

.sc-course-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.sc-course-head {
  text-align: center;
}

.sc-course-head-en,
.sc-course-option-head > p:first-child,
.sc-course-table-box h3 span {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #c49a3a;
}

.sc-course-head-line {
  width: 226px;
  height: 13px;
  margin: 2px auto 13px;
  overflow: hidden;
}

.sc-course-head-line img {
  display: block;
  width: 292px;
  max-width: none;
  transform: translate(-32px, -45px);
}

.sc-course-head-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.05em;
  color: #111;
}

.sc-course-lead {
  margin-top: 34px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.58;
  color: #555;
}

.sc-course-tax {
  margin-top: 14px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #888;
}

.sc-course-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.sc-course-flow span {
  display: grid;
  place-items: center;
  min-width: 70px;
  height: 39px;
  padding: 0 14px;
  border: 1px solid #d4aa50;
  border-radius: 4px;
  background: #f3f3f3;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #222;
  white-space: nowrap;
}

.sc-course-flow span:first-child,
.sc-course-flow .is-gold,
.sc-course-flow .is-premium {
  min-width: 107px;
}

.sc-course-flow-break {
  display: none;
}

.sc-course-flow b {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #c49a3a;
}

.sc-course-flow .is-gold {
  background: #c49a3a;
  color: #fff;
}

.sc-course-flow .is-premium {
  background: #2a1f14;
  color: #d4aa50;
}

.sc-course-grid {
  display: grid;
  gap: 12px;
}

.sc-course-grid--main {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.sc-course-card {
  display: flex;
  flex-direction: column;
  min-height: 605px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sc-course-card-head {
  position: relative;
  min-height: 157px;
  padding: 18px 16px 0;
  text-align: center;
}

.sc-course-type {
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #c49a3a;
}

.sc-course-card h3 {
  margin-top: 11px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}

.sc-course-tagline {
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  letter-spacing: 0.05em;
  color: #e06b72;
}

.sc-course-card-line {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 10px;
  overflow: hidden;
}

.sc-course-card-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/school/course-card-divider_v2.webp") center / 100% 100% no-repeat;
}

.sc-course-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 16px 32px;
}

.sc-course-grid--main .sc-course-card-body {
  padding-left: 14px;
  padding-right: 14px;
}

.sc-course-block + .sc-course-block {
  margin-top: 18px;
}

.sc-course-block h4 {
  margin-bottom: 7px;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.47;
  color: #333;
}

.sc-course-block ul {
  display: grid;
  gap: 6px;
  list-style: none;
}

.sc-course-block li {
  position: relative;
  padding-left: 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
}

.sc-course-block li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #e06b72;
}

.sc-course-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.sc-course-price-list li::before,
.sc-course-dot-list li::before {
  content: "・";
  color: #666;
  font-family: inherit;
  font-size: inherit;
  top: 0;
}

.sc-course-price-list em {
  flex-shrink: 0;
  font-style: normal;
}

.sc-course-grid--main .sc-course-block h4 {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.sc-course-grid--main .sc-course-block ul {
  gap: 5px;
}

.sc-course-grid--main .sc-course-block li {
  padding-left: 13px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.sc-course-grid--main .sc-course-price-list li {
  gap: 5px;
}

.sc-course-grid--main .sc-course-card:nth-child(2) .sc-course-block + .sc-course-block {
  margin-top: 14px;
}

.sc-course-grid--main .sc-course-card:nth-child(2) .sc-course-block:nth-of-type(3) {
  margin-bottom: 18px;
}

.sc-course-price {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #e06b72;
  text-align: right;
}

.sc-course-grid--main .sc-course-price {
  min-height: 92px;
}

.sc-course-price p {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.6;
  color: #777;
}

.sc-course-price strong {
  display: block;
  margin-top: 6px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #333;
}

.sc-course-price small {
  display: block;
  margin-top: 2px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  color: #c49a3a;
}

.sc-course-card--gold {
  border: 1px solid #d4aa50;
  background: #fffaf0;
}

.sc-course-card--premium {
  background: #2a1f14;
  color: #fff;
}

.sc-course-card--premium .sc-course-type,
.sc-course-card--premium .sc-course-tagline,
.sc-course-card--premium .sc-course-price small {
  color: #d4aa50;
}

.sc-course-card--premium h3,
.sc-course-card--premium .sc-course-block h4,
.sc-course-card--premium .sc-course-price strong {
  color: #fff;
}

.sc-course-card--premium .sc-course-block li,
.sc-course-card--premium .sc-course-price p {
  color: #eee;
}

.sc-course-card--premium .sc-course-price {
  border-top-color: rgba(212, 170, 80, 0.55);
}

.sc-course-table-box {
  margin-top: 40px;
  padding: 31px 32px 37px;
  border-radius: 8px;
  background: #F9F7F4;
  text-align: center;
}

.sc-course-table-box h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #c79a34;
}

.sc-course-table-box h3 span {
  font-size: inherit;
}

.sc-course-table-box > p {
  margin-top: 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: #777;
}

.sc-course-table {
  width: 860px;
  max-width: 100%;
  margin: 28px auto 0;
  border-collapse: collapse;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #333;
}

.sc-course-table th,
.sc-course-table td {
  border: 2px solid #d7d0c6;
  padding: 13px 16px;
  line-height: 1.5;
}

.sc-course-table thead th {
  background: #e4d9ca;
  font-weight: 700;
}

.sc-course-table thead th:first-child,
.sc-course-table tbody th {
  text-align: left;
}

.sc-course-table thead th:first-child {
  width: 62%;
}

.sc-course-table thead th:nth-child(2) {
  width: 20%;
}

.sc-course-table thead th:nth-child(3) {
  width: 18%;
  text-align: right;
}

.sc-course-table tbody th {
  background: #fff;
  font-weight: 700;
}

.sc-course-table td {
  background: #fff;
  text-align: center;
}

.sc-course-table td:last-child {
  text-align: right;
}

.sc-course-table th span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #999;
}

.sc-course-option {
  margin-top: 49px;
}

.sc-course-option-head {
  text-align: center;
}

.sc-course-option-head h3 {
  margin-top: 2px;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #111;
}

.sc-course-option-line {
  width: 101px;
  height: 25px;
  margin: 4px auto 11px;
  overflow: hidden;
}

.sc-course-option-line img {
  display: block;
  width: 163px;
  max-width: none;
  transform: translate(-31px, -36px);
}

.sc-course-option-head > p:not(:first-child) {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #777;
}

.sc-course-grid--option {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
  margin-top: 80px;
}

.sc-option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  border: 1px solid #ccc;
  border-radius: 16px;
  background: #fafafa;
}

.sc-option-card header {
  min-height: 118px;
  padding: 28px 18px 15px;
  border-radius: 15px 15px 0 0;
  text-align: center;
  color: #fff;
}

.sc-option-card header p {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.sc-option-card h4 {
  margin-top: 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.44;
}

.sc-option-card header span {
  display: block;
  margin-top: 6px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.sc-option-card--green header {
  background: #66846e;
}

.sc-option-card--purple header {
  background: #6a6a8a;
}

.sc-option-card--brown header {
  background: #7b6b5b;
}

.sc-option-icon {
  position: absolute;
  left: 50%;
  top: -42px;
  z-index: 2;
  width: 60px;
  height: 60px;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 1px rgba(196, 154, 58, 0.35);
}

.sc-option-icon--a {
  background-image: url("../img/school/course-option-icon-a-bg.svg");
}

.sc-option-icon--b {
  background-image: url("../img/school/course-option-icon-b-bg.svg");
}

.sc-option-icon--c {
  background-image: url("../img/school/course-option-icon-c-bg.svg");
}

.sc-option-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sc-option-icon--a::after {
  background-image: url("../img/school/course-option-icon-a.webp");
}

.sc-option-icon--b::after {
  background-image: url("../img/school/course-option-icon-b.webp");
}

.sc-option-icon--c::after {
  background-image: url("../img/school/course-option-icon-c.webp");
}

.sc-option-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px 18px 24px;
}

.sc-option-card h5 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: #888;
}

.sc-option-card h5:first-child {
  margin-top: 0;
}

.sc-option-card ul {
  display: grid;
  gap: 4px;
  list-style: none;
}

.sc-option-card li {
  position: relative;
  padding-left: 14px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}

.sc-option-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #333;
}

.sc-option-card-body > ul:last-of-type {
  margin-bottom: 28px;
}

.sc-option-card .sc-course-price {
  margin-top: auto;
  min-height: 82px;
  padding-top: 10px;
  border-top-color: #ccc;
}

.sc-course-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 49px;
}

.sc-course-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 260px;
  min-height: 68px;
  padding: 0 54px 0 30px;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.sc-course-btn--primary {
  background: #c49a3a;
  border: 1.111px solid #c49a3a;
  color: #fff;
}

.sc-course-btn--primary:hover {
  background: #fff;
  color: #c49a3a;
}

.sc-course-btn--primary:hover .sc-course-btn-icon {
  background: #c49a3a;
}

.sc-course-btn--primary:hover .sc-course-btn-icon::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.sc-course-btn--secondary {
  width: 200px;
  min-height: 51px;
  align-self: center;
  background: #fff;
  border: 1.111px solid #c49a3a;
  color: #c49a3a;
}

.sc-course-btn-icon {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
}

.sc-course-btn-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #c49a3a;
  border-right: 1.5px solid #c49a3a;
  transform: rotate(45deg);
}

.sc-course-btn--secondary .sc-course-btn-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #c49a3a;
}

.sc-course-btn--secondary .sc-course-btn-icon::before {
  left: 6px;
  top: 5px;
  width: 6px;
  height: 6px;
}

/* ---- Trial Lesson Box ---- */
.sc-trial-box {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  margin-top: 38px;
  padding: 32px 40px;
  border: 1.5px solid var(--sc-pink);
  border-radius: 12px;
  background:
    radial-gradient(circle at 16px 16px, var(--sc-pink-light) 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 16px) 16px, var(--sc-pink-light) 0 2px, transparent 2.5px),
    radial-gradient(circle at 16px calc(100% - 16px), var(--sc-pink-light) 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 16px) calc(100% - 16px), var(--sc-pink-light) 0 2px, transparent 2.5px),
    #fdf4f5;
  box-shadow: 0 4px 20px rgba(197, 83, 107, 0.1);
}

.sc-trial-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 18px;
  border-radius: 3px;
  background: var(--sc-pink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.sc-trial-badge-deco {
  font-style: normal;
  font-size: 11px;
  opacity: 0.85;
}

.sc-trial-content {
  flex: 1;
}

.sc-trial-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  color: #222;
}

.sc-trial-content h3 em {
  font-style: normal;
  color: var(--sc-pink);
}

.sc-trial-desc {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.sc-trial-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
}

.sc-trial-meta-item {
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.sc-trial-meta-item b {
  margin-right: 10px;
  padding: 3px 12px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid var(--sc-pink);
  font-size: 13px;
  font-weight: 700;
  color: var(--sc-pink);
}

.sc-trial-meta-item strong {
  margin-right: 2px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--sc-pink);
}

.sc-trial-steps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 20px;
  padding: 18px 0 10px;
  border-top: 1px dashed var(--sc-pink-light);
  overflow-x: auto;
}

.sc-trial-steps::before {
  content: "❃";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 8px;
  background: #fdf4f5;
  font-size: 13px;
  color: var(--sc-pink);
}

.sc-trial-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  width: auto;
  text-align: left;
}

.sc-trial-step-num {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sc-pink);
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.sc-trial-step-num::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px dashed var(--sc-pink-light);
  border-radius: 50%;
}

.sc-trial-step p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  white-space: nowrap;
}

.sc-trial-step-arrow {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--sc-pink-light);
}

.sc-trial-btn {
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 300px;
  min-height: 68px;
  padding: 0 54px 0 30px;
  border-radius: 4px;
  background: var(--sc-pink);
  border: 1.111px solid var(--sc-pink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s;
  white-space: nowrap;
}

.sc-trial-btn:hover {
  background: #fff;
  color: var(--sc-pink);
}

.sc-trial-btn-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
}

.sc-trial-btn-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--sc-pink);
  border-right: 1.5px solid var(--sc-pink);
  transform: rotate(45deg);
}

.sc-trial-btn:hover .sc-trial-btn-icon {
  background: var(--sc-pink);
}

.sc-trial-btn:hover .sc-trial-btn-icon::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media (max-width: 768px) {
  .sc-trial-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 20px 24px;
    background: #fdf4f5;
  }

  .sc-trial-badge {
    left: 20px;
  }

  .sc-trial-content h3 {
    font-size: 22px;
  }

  .sc-trial-meta {
    flex-direction: column;
    gap: 8px;
  }

  .sc-trial-steps {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-x: visible;
  }

  .sc-trial-btn {
    width: 100%;
  }
}

/* ============================================================
   Voice section (sc-voice)
   ============================================================ */

.sc-voice {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-image: url("../img/school/voice-petals-branches.webp");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 70px 24px 57px;
}

.sc-voice-inner {
  position: relative;
  max-width: 1128px;
  margin: 0 auto;
}

.sc-voice-head {
  text-align: center;
}

.sc-voice-head-en {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #c49a3a;
}

.sc-voice-head-line {
  width: 226px;
  height: 13px;
  margin: 0 auto 14px;
  overflow: hidden;
}

.sc-voice-head-line img {
  display: block;
  width: 292px;
  max-width: none;
  transform: translate(-32px, -45px);
}

.sc-voice-head h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.05em;
  color: #111;
}

.sc-voice-head h2 span {
  color: #e06b72;
}

.sc-voice-head > p:last-child {
  margin-top: 19px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.3;
  color: #555;
}

.sc-voice-slider {
  position: relative;
  margin: -5px -44px -44px;
  padding: 44px 30px;
  overflow: visible;
}

.sc-voice-viewport {
  margin: -44px;
  padding: 44px;
  overflow: hidden;
}

.sc-voice-cards {
  display: flex;
  gap: 13px;
  overflow: visible;
  transition: transform 0.35s ease;
  will-change: transform;
}

.sc-voice-card {
  position: relative;
  flex: 0 0 calc((100% - 26px) / 3);
  min-height: 455px;
  padding: 17px 17px 19px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(80, 55, 35, 0.12), 0 0 0 1px rgba(196, 154, 58, 0.08);
}

.sc-voice-card-head {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 108px;
}

.sc-voice-avatar {
  position: relative;
  display: block;
  width: 104px;
  height: 104px;
  overflow: hidden;
  border-radius: 50%;
  background: #fbf5f1 url("../img/school/voice-avatar-bg.png") center / cover no-repeat;
}

.sc-voice-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: none;
}

.sc-voice-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.49;
  letter-spacing: 0.05em;
  color: #555;
  padding-top: 16px;
  padding-bottom: 24px;
  border-bottom: 2px dotted rgba(244, 167, 181, 0.65);
}

.sc-voice-em {
  color: #e06b72;
  font-weight: 600;
}

.sc-voice-body {
  position: relative;
  margin-top: 14px;
  padding: 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.74;
  color: #555;
}

.sc-voice-body p + p {
  margin-top: 0;
}

.sc-voice-tag {
  position: absolute;
  left: 19px;
  bottom: 19px;
  display: grid;
  place-items: center;
  width: 150px;
  min-height: 27px;
  border: 1px solid #bbb;
  background: #eee;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.46;
  color: #555;
}

.sc-voice-arrow {
  position: absolute;
  top: 240px;
  z-index: 20;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #c49a3a;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.sc-voice-arrow::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 13px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #c49a3a;
  border-right: 2px solid #c49a3a;
}

.sc-voice-arrow--prev {
  left: -56px;
}

.sc-voice-arrow--prev::before {
  transform: rotate(-135deg);
}

.sc-voice-arrow--next {
  right: -56px;
}

.sc-voice-arrow--next::before {
  left: 12px;
  transform: rotate(45deg);
}

.sc-voice-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.sc-voice-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.sc-voice-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9ad55;
  opacity: 0.35;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sc-voice-dots span.is-active {
  opacity: 1;
  transform: scale(1.15);
}

.sc-voice-note {
  margin-top: 25px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  color: #666;
}

/* ============================================================
   FAQ section (sc-faq)
   ============================================================ */

.sc-faq {
  background: #fdfaf6;
  padding: 49px 24px 111px;
}

.sc-faq-inner {
  max-width: 830px;
  margin: 0 auto;
}

.sc-faq-head {
  text-align: center;
}

.sc-faq-head-en {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #c49a3a;
}

.sc-faq-head-line {
  width: 226px;
  height: 13px;
  margin: 0 auto 14px;
  overflow: hidden;
}

.sc-faq-head-line img {
  display: block;
  width: 292px;
  max-width: none;
  transform: translate(-32px, -45px);
}

.sc-faq-head h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.05em;
  color: #111;
}

.sc-faq-head h2 + p {
  margin-top: 28px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.625;
  color: #555;
}

.sc-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 41px;
}

.sc-faq-item {
  overflow: hidden;
  border: 1px solid rgba(212, 170, 80, 0.3);
  border-radius: 8px;
  background: #fff;
}

.sc-faq-q,
.sc-faq-a {
  position: relative;
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr) 26px;
  align-items: center;
  column-gap: 16px;
  padding: 18px 31px 18px 24px;
}

.sc-faq-q {
  min-height: 92px;
  cursor: pointer;
}

.sc-faq-a {
  display: none;
}

.sc-faq-item.is-open .sc-faq-a {
  display: grid;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px dashed rgba(42, 31, 20, 0.3);
}

.sc-faq-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sc-faq-mark--q {
  background-image: url("../img/faq/ico_q.webp");
  color: transparent;
}

.sc-faq-mark--a {
  background-image: url("../img/faq/ico_a.webp");
  color: transparent;
}

.sc-faq-q h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.12;
  color: #2a1f14;
}

.sc-faq-toggle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--sc-text-sub);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: inline-block;
}

.sc-faq-toggle.is-open {
  transform: rotate(180deg);
}

.sc-faq-a p {
  grid-column: 2 / 4;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.78;
  color: #2a1f14;
}

.sc-faq-link {
  color: var(--sc-gold-dark);
  font-weight: 700;
  text-decoration: underline;
}

.sc-faq-link:hover {
  color: var(--sc-pink);
}

.sc-faq-contact {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 28px;
  min-height: 140px;
  margin-top: 62px;
  padding: 20px 36px 20px 40px;
  border-radius: 8px;
  background: #fff;
}

.sc-faq-contact img {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.sc-faq-contact-text {
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
}

.sc-faq-contact-text p:first-child {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.sc-faq-contact-text p:last-child {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 600;
  color: #e06b72;
}

.sc-faq-btn {
  width: 220px;
  height: 54px;
  font-size: 16px;
  border-radius: 4px;
}

.sc-faq-btn .sc-btn-line-icon {
  width: 40px;
  height: 40px;
}

/* ============================================================
   Flow section (sc-flow)
   ============================================================ */

.sc-flow {
  position: relative;
  overflow: hidden;
  background: #FFF;
  padding: 63px 24px 86px;
}

.sc-flow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 422px;
  background: url("../img/school/flow-cta-bg.webp") center bottom / 100% auto no-repeat;
  pointer-events: none;
}

.sc-flow-inner {
  position: relative;
  z-index: 1;
  max-width: 1128px;
  margin: 0 auto;
}

.sc-flow-head {
  text-align: center;
}

.sc-flow-head-en {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #c49a3a;
}

.sc-flow-head-line {
  width: 226px;
  height: 13px;
  margin: 0 auto 14px;
  overflow: hidden;
}

.sc-flow-head-line img {
  display: block;
  width: 226px;
}

.sc-flow-head h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.05em;
  color: #111;
}

.sc-flow-head h2 + p {
  margin-top: 31px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

.sc-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 237px);
  justify-content: center;
  gap: 29px;
  margin-top: 88px;
}

.sc-flow-step {
  position: relative;
  min-height: 335px;
  padding: 31px 16px 24px;
  border: 1px solid rgba(196, 154, 58, 0.3);
  border-radius: 4px;
  text-align: center;
}

.sc-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 144px;
  right: -26px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #c49a3a;
}

.sc-flow-num {
  position: absolute;
  left: 50%;
  top: -35px;
  width: 56px;
  height: 56px;
  transform: translateX(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.sc-flow-num--01 {
  background-image: url("../img/school/flow-num-sprite_01.webp");
}

.sc-flow-num--02 {
  background-image: url("../img/school/flow-num-sprite_02.webp");
}

.sc-flow-num--03 {
  background-image: url("../img/school/flow-num-sprite_03.webp");
}

.sc-flow-num--04 {
  background-image: url("../img/school/flow-num-sprite_04.webp");
}

.sc-flow-step-en {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: 0.08em;
  color: #e06b72;
}

.sc-flow-step h3 {
  min-height: 56px;
  margin-top: 14px;
  display: grid;
  place-items: center;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
}

.sc-flow-step-br-sp {
  display: none;
}

.sc-flow-icon {
  display: block;
  width: 78px;
  height: 78px;
  margin: 24px auto 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.sc-flow-icon--form {
  background-image: url("../img/school/flow-icon-sprite_a.webp");
}

.sc-flow-icon--mail {
  background-image: url("../img/school/flow-icon-sprite_b.webp");
}

.sc-flow-icon--card {
  background-image: url("../img/school/flow-icon-sprite_c.webp");
}

.sc-flow-icon--calendar {
  background-image: url("../img/school/flow-icon-sprite_d.webp");
}

.sc-flow-step > p:last-child {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #777;
}

.sc-flow-note {
  display: grid;
  grid-template-columns: 53px minmax(0, auto);
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 764px;
  max-width: 100%;
  min-height: 92px;
  margin: 56px auto 0;
  background: #fdf5f2;
}

.sc-flow-note-icon {
  display: block;
  width: 53px;
  height: 56px;
  background: url("../img/school/flow-icon-sprite_e.webp") center / contain no-repeat;
}

.sc-flow-note p {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.82;
  color: #555;
}

.sc-flow-private {
  position: relative;
  margin-top: 61px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.05em;
  text-align: center;
  color: #444;
}

.sc-flow-private::before,
.sc-flow-private::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 43px;
  height: 68px;
  background: center / contain no-repeat;
}

.sc-flow-private::before {
  left: calc(50% - 335px);
  background-image: url("../img/school/flow-leaf-left.webp");
}

.sc-flow-private::after {
  right: calc(50% - 335px);
  background-image: url("../img/school/flow-leaf-right.webp");
}

.sc-flow-contact {
  width: 759px;
  max-width: 100%;
  min-height: 258px;
  margin: 55px auto 0;
  padding: 21px 40px 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.sc-flow-contact-line {
  width: 110px;
  height: 27px;
  margin: 0 auto 12px;
  overflow: hidden;
}

.sc-flow-contact-line img {
  display: block;
  width: 110px;
}

.sc-flow-contact > p:nth-of-type(1) {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.05em;
  color: #c49a3a;
}

.sc-flow-contact > p:nth-of-type(2) {
  margin-top: 13px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.16;
  color: #777;
}

.sc-flow-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 35px;
}

.sc-flow-btn {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 55px;
  border-radius: 4px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.sc-flow-btn--primary {
  width: 220px;
  padding: 0 43px 0 27px;
  background: #c49a3a;
  color: #fff;
  font-size: 16px;
}

.sc-flow-btn--tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 245px;
  min-height: 54px;
  padding: 0 53px 0 17px;
  border: 1.111px solid #c49a3a;
  background: #c49a3a;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  white-space: nowrap;
  transition: all 0.2s;
}

.sc-flow-btn--tel:hover {
  background: #fff;
  color: #c49a3a;
}

.sc-flow-btn-tel-icon {
  flex-shrink: 0;
  color: #fff;
}

.sc-flow-btn--tel:hover .sc-flow-btn-tel-icon {
  color: #c49a3a;
}

.sc-flow-btn--tel .sc-flow-btn-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  background: #fff;
}

.sc-flow-btn--tel .sc-flow-btn-icon::before {
  left: 6px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-top-color: #c49a3a;
  border-right-color: #c49a3a;
}

.sc-flow-btn--tel:hover .sc-flow-btn-icon {
  background: #c49a3a;
}

.sc-flow-btn--tel:hover .sc-flow-btn-icon::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.sc-flow-btn--secondary {
  width: 200px;
  min-height: 51px;
  align-self: center;
  padding: 0 38px 0 18px;
  border: 1.111px solid #c49a3a;
  background: #fff;
  color: #c49a3a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

.sc-flow-btn-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
}

.sc-flow-btn-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #c49a3a;
  border-right: 1.5px solid #c49a3a;
  transform: rotate(45deg);
}

.sc-flow-btn--secondary .sc-flow-btn-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #c49a3a;
}

.sc-flow-btn--secondary .sc-flow-btn-icon::before {
  left: 6px;
  top: 5px;
  width: 6px;
  height: 6px;
}

.sc-flow-btn--line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 245px;
  min-height: 54px;
  align-self: center;
  padding: 0 48px 0 8px;
  border: 1.111px solid #00C300;
  background: #00C300;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  transition: all 0.2s;
}

.sc-flow-btn--line:hover {
  background: #fff;
  color: #00C300;
}

.sc-flow-btn--line .sc-flow-btn-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #00C300;
}

.sc-flow-btn--line .sc-flow-btn-icon::before {
  left: 6px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #00C300;
  border-right: 1.5px solid #00C300;
}

.sc-flow-btn--line:hover .sc-flow-btn-icon {
  background: #00C300;
}

.sc-flow-btn--line:hover .sc-flow-btn-icon::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

/* ============================================================
   Before & After section (sc-beforeafter)
   ============================================================ */

.sc-beforeafter {
  position: relative;
  overflow: hidden;
  background: #fdf8f5 url("../img/school/ba-bg.webp") center top / 1206px auto no-repeat;
  padding: 60px 24px 66px;
}

.sc-beforeafter-inner {
  max-width: 1128px;
  margin: 0 auto;
}

.sc-ba-head {
  text-align: center;
}

.sc-ba-head-en,
.sc-ba-course-en,
.sc-ba-single-head > p {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #c49a3a;
}

.sc-ba-head-line {
  width: 226px;
  height: 13px;
  margin: 1px auto 16px;
  overflow: hidden;
}

.sc-ba-head-line img {
  display: block;
  width: 292px;
  max-width: none;
  transform: translate(-32px, -45px);
}

.sc-ba-head-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.05em;
  color: #111;
}

.sc-ba-head-sub {
  margin-top: 18px;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  color: #222;
}

.sc-ba-head-sub em {
  color: #e06b72;
  font-style: normal;
}

.sc-ba-lead {
  margin-top: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.3;
  color: #777;
}

.sc-ba-basic {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  max-width: 1073px;
  min-height: 369px;
  margin: 35px auto 0;
  padding: 38px 24px 35px;
  border: 1.111px solid rgba(212, 170, 80, 0.5);
  border-radius: 8px;
  background: #fff;
}

.sc-ba-basic-text {
  padding-left: 8px;
}

.sc-ba-course-en {
  font-size: 16px;
  line-height: 1.1;
}

.sc-ba-basic h3 {
  margin-top: 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.16;
  color: #333;
}

.sc-ba-basic-note {
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  color: #666;
}

.sc-ba-skill {
  margin-top: 62px;
}

.sc-ba-skill h4 {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.07em;
  color: #c49a3a;
}

.sc-ba-skill ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
}

.sc-ba-skill li {
  position: relative;
  padding-left: 18px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.15;
  color: #444;
}

.sc-ba-skill li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
}

.sc-ba-basic-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 319px));
  gap: 30px;
  justify-content: end;
}

.sc-ba-pair {
  position: relative;
  min-height: 286px;
  padding: 32px 12px 17px;
  border: 1px solid rgba(212, 170, 80, 0.5);
  border-radius: 8px;
  background: #fff;
}

.sc-ba-case-label {
  position: absolute;
  left: 50%;
  top: -11px;
  width: 80px;
  transform: translateX(-50%);
  background: #fff;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.1;
  color: #c49a3a;
}

.sc-ba-pair-images {
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  grid-template-rows: auto auto;
  column-gap: 2px;
  max-width: 296px;
  margin: 0 auto;
}

.sc-ba-pair figure {
  display: contents;
}

.sc-ba-pair figure:first-child figcaption {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
}

.sc-ba-pair figure:first-child img {
  grid-column: 1;
  grid-row: 2;
  margin: 0 auto;
}

.sc-ba-pair figure:last-child figcaption {
  grid-column: 3;
  grid-row: 1;
  text-align: center;
}

.sc-ba-pair figure:last-child img {
  grid-column: 3;
  grid-row: 2;
  margin: 0 auto;
}

.sc-ba-pair figcaption {
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.25;
  color: #888;
}

.sc-ba-pair figure:last-child figcaption {
  color: #e06b72;
}

.sc-ba-pair img {
  display: block;
  width: 135px;
  height: 166px;
  object-fit: cover;
  border-radius: 6px;
}

.sc-ba-arrow,
.sc-ba-card-images span {
  display: block;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #c49a3a;
}

.sc-ba-arrow {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
}

.sc-ba-caption {
  margin-top: 13px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.15;
  color: #888;
}

.sc-ba-single {
  margin-top: 51px;
}

.sc-ba-single-head {
  text-align: center;
}

.sc-ba-single-head > p {
  font-size: 16px;
  line-height: 1.3;
}

.sc-ba-single-head h3 {
  margin-top: 11px;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: #666;
}

.sc-ba-single-head h3 span {
  font-size: 24px;
}

.sc-ba-small-line {
  width: 90px;
  height: 22px;
  margin: 7px auto 0;
  overflow: hidden;
}

.sc-ba-small-line img {
  display: block;
  width: 145px;
  max-width: none;
  transform: translate(-27px, -32px);
}

.sc-ba-single-grid {
  display: grid;
  grid-template-columns: repeat(5, 215px);
  gap: 12px;
  justify-content: center;
  margin-top: 37px;
}

.sc-ba-card {
  position: relative;
  min-height: 440px;
  padding: 61px 13px 16px;
  overflow: hidden;
  border: 1.111px solid rgba(212, 170, 80, 0.5);
  border-radius: 8px;
  background: #fff;
}

.sc-ba-card-num {
  position: absolute;
  left: 50%;
  top: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 50%;
  color: transparent;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  overflow: visible;
}

.sc-ba-card-num::before,
.sc-ba-card-num::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 73px;
  height: 53px;
  transform: translate(-50%, -50%);
  background: center / contain no-repeat;
  pointer-events: none;
}

.sc-ba-card-num::before {
  display: none;
}

.sc-ba-card-num--01::after {
  width: 72px;
  height: 50px;
  background-image: url("../img/school/ba-single-num-01.webp");
}

.sc-ba-card-num--02::after {
  width: 72px;
  height: 53px;
  background-image: url("../img/school/ba-single-num-02.webp");
}

.sc-ba-card-num--03::after {
  background-image: url("../img/school/ba-single-num-03.webp");
}

.sc-ba-card-num--04::after {
  width: 73px;
  height: 51px;
  background-image: url("../img/school/ba-single-num-04.webp");
}

.sc-ba-card-num--05::after {
  width: 73px;
  height: 51px;
  background-image: url("../img/school/ba-single-num-05.webp");
}

.sc-ba-card h4 {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
}

.sc-ba-card-skill {
  margin-top: 10px;
  min-height: 110px;
}

.sc-ba-card-skill h5 {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.14;
  color: #c49a3a;
}

.sc-ba-card-skill ul {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  list-style: none;
}

.sc-ba-card-skill li {
  position: relative;
  padding-left: 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.8;
  color: #555;
}

.sc-ba-card-skill li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #c49a3a;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.sc-ba-card-images {
  text-align: center;
}

.sc-ba-card-images p {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.33;
  color: #888;
}

.sc-ba-card-images p:last-child {
  margin-top: 5px;
  color: #e06b72;
}

.sc-ba-card-images img {
  display: block;
  width: 179px;
  height: 134px;
  margin: 4px auto 0;
  object-fit: cover;
  border-radius: 6px;
}

.sc-ba-card-images span {
  margin: 4px auto 0;
  transform: rotate(90deg);
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 12px;
}

.sc-ba-note {
  margin-top: 41px;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.25;
  color: #999;
}

/* OPTION COURSE A */
.sc-ba-option {
  margin-top: 51px;
}

.sc-ba-option-head {
  text-align: center;
}

.sc-ba-option-label {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #66846e;
}

.sc-ba-option-head h3 {
  margin-top: 11px;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: #666;
}

.sc-ba-option-sub {
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #777;
}

.sc-ba-option-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  max-width: 1073px;
  min-height: 369px;
  margin: 35px auto 0;
  padding: 38px 24px 35px;
  border: 1.111px solid rgba(102, 132, 110, 0.5);
  border-top: 4px solid #66846e;
  border-radius: 8px;
  background: #fff;
}

.sc-ba-option-skills {
  padding-left: 8px;
}

.sc-ba-option-skills h4 {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.07em;
  color: #c49a3a;
}

.sc-ba-option-skills ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
}

.sc-ba-option-skills li {
  position: relative;
  padding-left: 18px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #444;
}

.sc-ba-option-skills li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #66846e;
}

.sc-ba-option-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 319px));
  gap: 30px;
  justify-content: center;
}

.sc-ba-option-cases .sc-ba-pair {
  border-color: rgba(102, 132, 110, 0.5);
}

.sc-ba-option-cases .sc-ba-arrow {
  border-left-color: #66846e;
}

.sc-ba-option-cases .sc-ba-case-label {
  color: #66846e;
}

@media (max-width: 1024px) {
  .sc-instructor-profile {
    max-width: 900px;
    grid-template-columns: minmax(280px, 318px) minmax(0, 1fr);
    gap: 40px;
  }

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

  .sc-course-grid--option {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .sc-option-card {
    min-height: auto;
  }

  .sc-option-card-body {
    min-height: 0;
  }

  .sc-voice-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .sc-voice-card {
    min-height: 0;
    padding-bottom: 70px;
    flex-basis: 100%;
  }

  .sc-voice-arrow {
    display: block;
  }

  .sc-faq-contact {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .sc-faq-btn {
    grid-column: 2;
    width: 220px;
  }

  .sc-flow-steps {
    grid-template-columns: repeat(2, 237px);
    row-gap: 64px;
  }

  .sc-flow-step:nth-child(2)::after {
    display: none;
  }

  .sc-flow-private::before,
  .sc-flow-private::after {
    display: none;
  }

  .sc-ba-basic {
    grid-template-columns: 1fr;
  }

  .sc-ba-basic-cases {
    justify-content: center;
  }

  .sc-ba-option-card {
    grid-template-columns: 1fr;
  }

  .sc-ba-option-cases {
    justify-content: center;
  }

  .sc-ba-single-grid {
    grid-template-columns: repeat(3, 207px);
  }
}

@media (max-width: 768px) {
  .sc-instructor {
    padding: 56px 16px 72px;
  }

  .sc-instructor-head {
    margin-bottom: 36px;
  }

  .sc-instructor-head-ja {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .sc-instructor-lead {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }

  .sc-instructor-profile {
    display: block;
    max-width: 420px;
  }

  .sc-instructor-card {
    margin: 0 auto 36px;
  }

  .sc-instructor-role {
    font-size: 15px;
  }

  .sc-instructor-badge {
    font-size: 14px;
  }

  .sc-instructor-content {
    padding-top: 0;
  }

  .sc-instructor-message {
    padding: 0 24px;
    font-size: 18px;
    line-height: 1.5;
  }

  .sc-instructor-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .sc-instructor-timeline {
    padding-left: 42px;
  }

  .sc-instructor-timeline::before {
    left: 8px;
  }

  .sc-instructor-timeline p {
    font-size: 13px;
  }

  .sc-course {
    padding: 52px 16px 64px;
  }

  .sc-course-head-ja {
    font-size: 28px;
  }

  .sc-course-lead {
    font-size: 14px;
    text-align: left;
  }

  .sc-course-flow {
    flex-wrap: wrap;
    gap: 8px;
  }

  .sc-course-grid--main {
    grid-template-columns: 1fr;
  }

  .sc-course-grid--option {
    gap: 40px;
    margin-top: 50px;
  }

  .sc-course-card {
    min-height: auto;
  }

  .sc-course-card-body {
    min-height: 420px;
  }

  .sc-course-table-box {
    padding: 28px 14px 32px;
  }

  .sc-course-table-box h3 {
    font-size: 22px;
  }

  .sc-course-table {
    font-size: 11px;
  }

  .sc-course-table th,
  .sc-course-table td {
    padding: 8px 6px;
  }

  .sc-course-option-head h3 {
    font-size: 25px;
  }

  .sc-course-cta {
    flex-direction: column;
    align-items: center;
  }

  .sc-course-btn,
  .sc-course-btn--secondary {
    width: min(100%, 260px);
  }

  .sc-voice {
    padding: 52px 16px 56px;
    background-image: url("../img/school/voice_bg_sp.webp");
    background-size: cover;
  }

  .sc-voice-head h2 {
    font-size: 28px;
  }

  .sc-voice-head > p:last-child,
  .sc-voice-note {
    font-size: 14px;
  }

  .sc-voice-card-head {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .sc-voice-slider {
    overflow: visible;
    margin: -5px -16px -32px;
    padding: 32px;
  }

  .sc-voice-viewport {
    margin: -32px -48px;
    padding: 32px 48px;
    overflow: hidden;
  }

  .sc-voice-cards {
    gap: 8px;
    align-items: center;
  }

  .sc-voice-card {
    flex-basis: 78vw;
    max-width: 320px;
    transform: scale(0.9);
    opacity: 0.72;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
  }

  .sc-voice-card.is-active {
    transform: scale(1);
    opacity: 1;
  }

  .sc-voice-arrow {
    display: block;
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
  }

  .sc-voice-arrow::before {
    left: 13px;
    top: 10px;
    width: 9px;
    height: 9px;
  }

  .sc-voice-arrow--prev {
    left: 8px;
  }

  .sc-voice-arrow--next {
    right: 8px;
  }

  .sc-voice-arrow--next::before {
    left: 10px;
  }

  .sc-voice-avatar {
    width: 82px;
    height: 82px;
  }

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

  .sc-faq {
    padding: 52px 16px 64px;
  }

  .sc-faq-head h2 {
    font-size: 28px;
  }

  .sc-faq-head h2 + p {
    font-size: 14px;
    line-height: 1.8;
  }

  .sc-faq-q,
  .sc-faq-a {
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    gap: 14px;
  }

  .sc-faq-q {
    min-height: 82px;
    padding: 16px 18px;
  }

  .sc-faq-a {
    min-height: 0;
    align-items: start;
    padding: 0 18px;
  }

  .sc-faq-item.is-open .sc-faq-a {
    padding: 16px 18px;
  }

  .sc-faq-mark {
    width: 32px;
    height: 32px;
    font-size: 25px;
  }

  .sc-faq-q h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .sc-faq-toggle {
    font-size: 14px;
  }

  .sc-faq-a p {
    font-size: 14px;
    line-height: 1.9;
  }

  .sc-faq-contact {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    margin-top: 42px;
    padding: 28px 18px;
    text-align: center;
  }

  .sc-faq-contact-text p:first-child {
    font-size: 14px;
    line-height: 1.7;
  }

  .sc-faq-contact-text p:last-child {
    font-size: 18px;
    line-height: 1.5;
  }

  .sc-faq-btn {
    grid-column: auto;
    width: min(100%, 300px);
    height: 56px;
    font-size: 17px;
  }

  .sc-flow {
    padding: 52px 16px 64px;
  }

  .sc-flow::after {
    height: 330px;
    background-size: 100% auto;
  }

  .sc-flow-head h2 {
    font-size: 28px;
  }

  .sc-flow-head h2 + p {
    font-size: 14px;
    line-height: 1.8;
  }

  .sc-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
    column-gap: 10px;
    row-gap: 52px;
    margin-left: auto;
    margin-right: auto;
  }

  .sc-flow-step {
    min-height: auto;
    padding: 31px 12px 24px;
  }

  .sc-flow-step h3 {
    font-size: 18px;
  }

  .sc-flow-icon {
    margin: 10px auto 15px;
  }

  .sc-flow-step-br-sp {
    display: block;
  }

  .sc-flow-step-br-pc {
    display: none;
  }

  .sc-flow-step:not(:last-child)::after {
    display: none;
  }

  .sc-flow-step:nth-child(2)::after {
    display: none;
  }

  .sc-flow-note {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 18px;
    text-align: center;
    margin-top: 30px;
  }

  .sc-flow-note p {
    font-size: 14px;
    line-height: 1.8;
  }

  .sc-flow-private {
    font-size: 16px;
    line-height: 1.65;
  }

  .sc-flow-contact {
    padding: 24px 18px 30px;
  }

  .sc-flow-contact > p:nth-of-type(1) {
    font-size: 20px;
    line-height: 1.45;
  }

  .sc-flow-contact > p:nth-of-type(2) {
    font-size: 16px;
  }

  .sc-flow-btns {
    flex-direction: column;
    align-items: center;
  }

  .sc-flow-btn--primary,
  .sc-flow-btn--secondary {
    width: min(100%, 240px);
  }

  .sc-flow-btn--tel,
  .sc-flow-btn--line {
    width: min(100%, 300px);
    font-size: 17px;
  }

  .sc-beforeafter {
    padding: 52px 16px 58px;
    background-size: 900px auto;
  }

  .sc-ba-head-ja {
    font-size: 26px;
  }

  .sc-ba-head-sub {
    font-size: 22px;
    line-height: 1.35;
  }

  .sc-ba-lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .sc-ba-basic {
    padding: 30px 16px;
  }

  .sc-ba-basic-text {
    padding-left: 0;
  }

  .sc-ba-skill {
    margin-top: 25px;
  }

  .sc-ba-basic-cases {
    grid-template-columns: 1fr;
  }

  .sc-ba-pair {
    max-width: 319px;
    margin: 0 auto;
  }

  .sc-ba-option-head h3 {
    font-size: 22px;
  }

  .sc-ba-option-card {
    padding: 30px 16px;
  }

  .sc-ba-option-skills {
    padding-left: 0;
  }

  .sc-ba-option-cases {
    grid-template-columns: 1fr;
  }

  .sc-ba-single-head h3 {
    font-size: 26px;
  }

  .sc-ba-single-head h3 span {
    font-size: 18px;
  }

  .sc-ba-single-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sc-ba-card {
    width: 100%;
    margin: 0 auto;
    min-height: 0;
    padding: 54px 9px 12px;
  }

  .sc-ba-single-grid .sc-ba-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 10px) / 2);
  }

  .sc-ba-card-num {
    top: 10px;
    transform: translateX(-50%) scale(0.82);
  }

  .sc-ba-card h4 {
    min-height: 34px;
    font-size: 18px;
  }

  .sc-ba-card-skill {
    margin-top: 8px;
    min-height: 70px;
  }

  .sc-ba-card-skill h5 {
    font-size: 12px;
  }

  .sc-ba-card-skill ul {
    gap: 1px;
    margin-top: 6px;
  }

  .sc-ba-card-skill li {
    padding-left: 10px;
    font-size: 10px;
    line-height: 1.65;
  }

  .sc-ba-card-skill li::before {
    font-size: 12px;
  }

  .sc-ba-card-images {
    position: static;
    margin-top: 12px;
  }

  .sc-ba-card-images p {
    font-size: 10px;
  }

  .sc-ba-card-images img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}

/* ============================================================
   Responsive hardening for school content
   ============================================================ */
@media (max-width: 768px) {
  .school-page {
    width: 100%;
    overflow-x: hidden;
  }

  .sc-worries-title,
  .sc-reason-midashi-ja,
  .sc-instructor-head-ja,
  .sc-course-head-ja,
  .sc-course-option-head h3,
  .sc-voice-head h2,
  .sc-faq-head h2,
  .sc-flow-head h2,
  .sc-ba-head-ja,
  .sc-ba-single-head h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.45;
  }

  .sc-worries-sub,
  .sc-reason-midashi-sub1,
  .sc-reason-midashi-sub2,
  .sc-instructor-lead,
  .sc-course-lead,
  .sc-voice-head > p:last-child,
  .sc-faq-head h2 + p,
  .sc-flow-head h2 + p,
  .sc-ba-lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .sc-reason-item-photo,
  .sc-reason-item-photo img,
  .sc-instructor-photo,
  .sc-instructor-photo img,
  .sc-ba-basic,
  .sc-ba-basic-cases,
  .sc-ba-single,
  .sc-ba-single-grid {
    max-width: 100%;
  }

  .sc-reason-item-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 393 / 260;
    object-fit: cover;
  }

  .sc-instructor-card,
  .sc-course-card,
  .sc-option-card,
  .sc-voice-card,
  .sc-faq-item,
  .sc-flow-step,
  .sc-ba-card {
    width: 100%;
    max-width: 100%;
  }

  .sc-course-flow {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-x: visible;
    padding-bottom: 0;
    gap: 8px;
  }

  .sc-course-flow span {
    flex: 0 0 auto;
  }

  .sc-course-flow-break {
    display: block;
    width: 100%;
    height: 0;
  }

  .sc-course-flow .is-gold {
    margin-left: auto;
  }

  .sc-course-table-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sc-course-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 14px;
  }

  .sc-course-table th,
  .sc-course-table td {
    padding: 10px 7px;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .sc-course-table thead th:first-child {
    width: 52%;
    text-align: center;
  }

  .sc-course-table thead th:nth-child(2) {
    width: 22%;
  }

  .sc-course-table thead th:nth-child(3) {
    width: 26%;
    text-align: center;
  }

  .sc-course-table tbody th,
  .sc-course-table tbody td {
    text-align: left;
  }

  .sc-course-table td:last-child {
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .sc-course-table th span {
    font-size: 12px;
  }

  .sc-course-card-body,
  .sc-option-card-body {
    min-height: 0;
  }

  .sc-course-type,
  .sc-option-card header p {
    font-size: 13px;
  }

  .sc-course-card h3 {
    margin-top: 8px;
  }

  .sc-course-tagline,
  .sc-option-card header span {
    font-size: 15px;
  }

  .sc-course-grid--main .sc-course-block h4,
  .sc-option-card h5 {
    font-size: 16px;
  }

  .sc-course-grid--main .sc-course-block li,
  .sc-option-card li {
    font-size: 15px;
  }

  .sc-course-price p,
  .sc-option-card .sc-course-price p {
    font-size: 14px;
  }

  .sc-course-price strong,
  .sc-option-card .sc-course-price strong {
    font-size: 30px;
  }

  .sc-course-grid--main .sc-course-card:not(:nth-child(2)) .sc-course-price {
    margin-top: 24px;
  }

  .sc-option-card {
    margin-top: 26px;
  }

  .sc-voice-cards,
  .sc-flow-steps,
  .sc-ba-basic-cases,
  .sc-ba-single-grid {
    width: 100%;
    max-width: 100%;
  }

  .sc-flow-note,
  .sc-flow-contact,
  .sc-faq-contact {
    width: 100%;
    max-width: 100%;
  }

  .sc-ba-basic {
    grid-template-columns: 1fr;
  }

  .sc-ba-single-grid {
    justify-items: center;
  }
}

/* ============================================================
   Hero section - Figma alignment
   ============================================================ */

.school-page .sc-hero {
  position: relative;
  display: block;
  min-height: 715px;
  overflow: hidden;
  background-color: #fffbf9;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.school-page .sc-hero-left {
  position: relative;
  width: 770px;
  max-width: calc(100% - 40px);
  padding: 50px 0 0 72px;
  z-index: 3;
}

@media (min-width: 1200px) {
  .school-page .sc-hero-left {
    padding-left: clamp(97px, 8.8vw, 143px);
  }
}

.school-page .sc-breadcrumb {
  display: none;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.49;
  letter-spacing: 0;
  color: #000;
}

.school-page .sc-breadcrumb .sc-b-school {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0;
  color: inherit;
}

.school-page .sc-main-kicker {
  display: flex;
  align-items: center;
  width: 486px;
  max-width: 100%;
  margin: 0 0 0 2px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #7d5925;
  white-space: nowrap;
}

.school-page .sc-main-kicker span {
  flex-shrink: 0;
  margin-top: -4px;
}

.school-page .sc-main-kicker-img {
  display: block;
  min-width: 0;
  height: 20px;
  object-fit: contain;
}

.school-page .sc-main-kicker-img--left,
.school-page .sc-main-kicker-img--right {
  flex: 1 1 0;
}

.school-page .sc-headline {
  margin-top: 10px;
  max-width: 650px;
  font-family: "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #111;
  text-align: left;
}

.school-page .sc-headline-line {
  display: block;
}

.school-page .sc-headline .sc-pink {
  font-size: 48px;
  color: #e06b72;
}

.school-page .sc-headline .sc-gold {
  font-size: 48px;
  color: var(--sc-gold);
}

.school-page .sc-hero-divider {
  width: 371px;
  margin: 18px 0 0 73px;
  overflow: hidden;
}

.school-page .sc-hero-divider img {
  display: block;
  width: 371px;
  height: 22px;
  object-fit: cover;
}

.school-page .sc-lead {
  margin-top: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #555;
}

.school-page .sc-lead .sc-pink {
  color: #e06b72;
}

.school-page .sc-sp-lead-br {
  display: none;
}

.school-page .sc-features {
  width: 550px;
  max-width: 100%;
  height: 83px;
  margin-top: 31px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: stretch;
  gap: 11px;
  background: rgba(255, 255, 255, 0.65);
  border: 0;
}

.school-page .sc-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.school-page .sc-feature-icon {
  position: relative;
  flex-shrink: 0;
  width: 57px;
  height: 57px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.school-page .sc-feature-icon img {
  position: absolute;
  display: block;
  max-width: none;
  border-radius: 0;
  object-fit: initial;
}

.school-page .sc-feature-icon--1 {
  width: 53px;
  height: 54px;
}

.school-page .sc-feature-icon--1 img {
  width: 398.35%;
  height: 168.06%;
  left: -21.49%;
  top: -31.99%;
}

.school-page .sc-feature-icon--2 img {
  width: 385.6%;
  height: 162.72%;
  left: -142.4%;
  top: -29.38%;
}

.school-page .sc-feature-icon--3 {
  width: 58px;
  height: 58px;
}

.school-page .sc-feature-icon--3 img {
  width: 395.08%;
  height: 168.06%;
  left: -273.77%;
  top: -32.8%;
}

.school-page .sc-feature-text {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  white-space: nowrap;
}

.school-page .sc-cta-row {
  width: 528px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 200px 260px;
  gap: 18px;
  margin-top: 36px;
}

.school-page .sc-cta {
  position: relative;
  min-height: 61px;
  padding: 0 47px 0 30px;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

.school-page .sc-cta-primary {
  background: #c49a3a;
  border: 1.111px solid #c49a3a;
  color: #fff;
}

.school-page .sc-cta-primary:hover {
  background: #fff;
  color: #c49a3a;
}

.school-page .sc-cta-primary:hover .sc-cta-arrow-circle {
  background: #c49a3a;
}

.school-page .sc-cta-primary:hover .sc-cta-arrow-circle::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.school-page .sc-cta-secondary {
  min-height: 56px;
  align-self: center;
  background: #fff;
  border: 1.111px solid #c49a3a;
  color: #c49a3a;
}

.school-page .sc-cta-trial {
  background: var(--sc-pink);
  border: 1.111px solid var(--sc-pink);
  color: #fff;
}

.school-page .sc-cta-trial:hover {
  background: #fff;
  color: var(--sc-pink);
}

.school-page .sc-cta-trial small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.school-page .sc-cta-trial .sc-cta-arrow-circle::before {
  border-top-color: var(--sc-pink);
  border-right-color: var(--sc-pink);
}

.school-page .sc-cta-trial:hover .sc-cta-arrow-circle {
  background: var(--sc-pink);
}

.school-page .sc-cta-trial:hover .sc-cta-arrow-circle::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.school-page .sc-cta-arrow-circle {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
}

.school-page .sc-cta-arrow-circle::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 9.5px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #c49a3a;
  border-right: 1.5px solid #c49a3a;
  transform: rotate(45deg);
}

.school-page .sc-cta-arrow-circle--outline {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #c49a3a;
}

.school-page .sc-cta-arrow-circle--outline::before {
  left: 7px;
  top: 6px;
  width: 7px;
  height: 7px;
}

.school-page .sc-hero-right {
  position: absolute;
  left: calc(50% - 134px);
  right: 0;
  top: -36px;
  width: auto;
  height: 692px;
  z-index: 2;
  overflow: visible;
}

.school-page .sc-hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.school-page .sc-hero-img {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  width: 109%;
  height: 100.07%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
}

.school-page .sc-badge-round {
  position: absolute;
  right: 54px;
  bottom: 60px;
  width: 191px;
  height: 191px;
  padding-top: 7px;
  border-radius: 50%;
  border: 1px solid #c49a3a;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.62;
  color: #333;
  z-index: 5;
}

.school-page .sc-badge-round::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid #f1dede;
  pointer-events: none;
}

.school-page .sc-badge-round .sc-pink-mid {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #e06b72;
}

.school-page .sc-badge-star {
  position: relative;
  width: 47px;
  height: 22px;
  margin-top: 7px;
  overflow: hidden;
}

.school-page .sc-badge-star img {
  position: absolute;
  display: block;
  width: 148.98%;
  height: 217.2%;
  max-width: none;
  left: -23.62%;
  top: -54.14%;
}

.school-page .sc-stats-bar {
  position: relative;
  z-index: 4;
  width: calc(100% - 141px);
  max-width: 1179px;
  min-height: 102px;
  margin: -60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.school-page .sc-stat-item {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  padding: 19px 26px;
}

.school-page .sc-stats-sep + .sc-stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 58px;
  background: #d8b35b;
  transform: translateY(-50%);
}

.school-page .sc-stat-icon-wrap {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.school-page .sc-stat-icon-wrap img {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: initial;
}

.school-page .sc-stat-icon-wrap--1 {
  width: 66px;
  height: 64px;
}

.school-page .sc-stat-icon-wrap--1 img {
  width: 450.35%;
  height: 202.7%;
  left: -16.08%;
  top: -42.75%;
}

.school-page .sc-stat-icon-wrap--2 {
  width: 41px;
  height: 61px;
}

.school-page .sc-stat-icon-wrap--2 img {
  width: 595.31%;
  height: 171.87%;
  left: -190.63%;
  top: -33.75%;
}

.school-page .sc-stat-icon-wrap--3 {
  width: 40px;
  height: 55px;
}

.school-page .sc-stat-icon-wrap--3 img {
  width: 580.79%;
  height: 182.52%;
  left: -317.68%;
  top: -33.63%;
}

.school-page .sc-stat-icon-wrap--4 {
  width: 40px;
  height: 55px;
}

.school-page .sc-stat-icon-wrap--4 img {
  width: 610.58%;
  height: 191.86%;
  left: -478.21%;
  top: -40%;
}

.school-page .sc-stat-text {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  white-space: nowrap;
}

.school-page .sc-stats-sep {
  display: none;
}

/* English page hero adjustments */
@media (min-width: 769px) {
  .school-page--en .sc-hero-left {
    width: 820px;
  }

  .school-page--en .sc-main-kicker {
    width: 620px;
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .school-page--en .sc-headline {
    max-width: 690px;
    font-size: 34px;
    line-height: 1.36;
  }

  .school-page--en .sc-headline .sc-gold,
  .school-page--en .sc-headline .sc-pink {
    font-size: 40px;
    line-height: 1.28;
  }

  .school-page--en .sc-hero-divider {
    margin-top: 14px;
  }

  .school-page--en .sc-lead {
    max-width: 560px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
  }

  .school-page--en .sc-lead .sc-sp-lead-br {
    display: block;
  }

  .school-page--en .sc-badge-round {
    padding: 18px 18px 0;
    font-size: 16px;
    line-height: 1.48;
  }

  .school-page--en .sc-badge-round .sc-pink-mid {
    font-size: 18px;
    line-height: 1.35;
  }

  .school-page--en .sc-nav .sc-btn-apply {
    width: 198px;
    padding: 0 16px;
    gap: 12px;
  }

  .school-page--en .sc-features {
    width: 620px;
    height: 91px;
    margin-top: 24px;
    padding: 0 26px;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 18px;
  }

  .school-page--en .sc-feature {
    gap: 10px;
  }

  .school-page--en .sc-feature-text {
    font-size: 14px;
    line-height: 1.45;
    white-space: normal;
  }

  .school-page--en .sc-cta-row {
    margin-top: 28px;
  }

  .school-page--en .sc-course-grid--main {
    gap: 14px;
  }

  .school-page--en .sc-course-card {
    min-height: 735px;
  }

  .school-page--en .sc-course-card-head {
    min-height: 170px;
    padding: 18px 20px 0;
  }

  .school-page--en .sc-course-card h3 {
    margin-top: 8px;
    font-size: 25px;
  }

  .school-page--en .sc-course-tagline {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0.03em;
  }

  .school-page--en .sc-course-grid--main .sc-course-card-body {
    padding: 18px 16px 28px;
  }

  .school-page--en .sc-course-block + .sc-course-block {
    margin-top: 16px;
  }

  .school-page--en .sc-course-grid--main .sc-course-block h4 {
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.35;
  }

  .school-page--en .sc-course-grid--main .sc-course-block ul {
    gap: 4px;
  }

  .school-page--en .sc-course-grid--main .sc-course-block li {
    padding-left: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .school-page--en .sc-course-block li::before {
    font-size: 14px;
    top: 0;
  }

  .school-page--en .sc-course-grid--main .sc-course-price-list li {
    gap: 6px;
  }

  .school-page--en .sc-course-price {
    padding-top: 13px;
  }

  .school-page--en .sc-course-grid--main .sc-course-price {
    min-height: 104px;
  }

  .school-page--en .sc-course-price p {
    font-size: 11px;
    line-height: 1.45;
  }

  .school-page--en .sc-course-price strong {
    margin-top: 7px;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 0.03em;
  }

  .school-page--en .sc-course-price small {
    font-size: 10px;
    line-height: 1.45;
  }

  .school-page--en .sc-voice-card {
    min-height: 540px;
    padding-bottom: 56px;
  }

  .school-page--en .sc-flow-private {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .school-page--en .sc-flow-private::before {
    left: 0;
  }

  .school-page--en .sc-flow-private::after {
    right: 0;
  }

  .school-page--en .sc-ba-card {
    min-height: 540px;
  }

  .school-page--en .sc-ba-card h4 {
    min-height: 70px;
    font-size: 17px;
    line-height: 1.25;
  }

  .school-page--en .sc-ba-card-skill {
    min-height: 150px;
    margin-top: 8px;
  }

  .school-page--en .sc-ba-card-skill ul {
    gap: 3px;
  }

  .school-page--en .sc-ba-card-skill li {
    font-size: 11.5px;
    line-height: 1.55;
  }
}

@media (max-width: 1100px) {
  .school-page .sc-hero-left {
    padding-left: 40px;
  }

  .school-page .sc-hero-right {
    left: 42%;
  }

  .school-page .sc-stats-bar {
    width: calc(100% - 48px);
  }
}

@media (max-width: 768px) {
  .school-page .sc-hero {
    width: 100vw;
    max-width: 100vw;
    height: 758px;
    min-height: 758px;
    padding-bottom: 0;
    background-image: url("../img/school/sp/school-hero-bg_sp.webp") !important;
    background-size: cover;
    background-position: center top;
  }

  .school-page .sc-hero-left {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 0;
  }

  .school-page .sc-breadcrumb {
    position: absolute;
    top: 11px;
    left: 50vw;
    transform: translateX(-50%);
    font-family: "Noto Serif JP", serif;
    font-size: 10px;
    line-height: 20.8px;
    color: #000;
    text-align: left;
    white-space: nowrap;
  }

  .school-page .sc-main-kicker {
    position: absolute;
    top: 30px;
    left: 50vw;
    width: min(320px, 86vw);
    margin: 0;
    transform: translateX(-50%);
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.06em;
    justify-content: center;
  }

  .school-page .sc-main-kicker span {
    padding: 0 11px;
  }

  .school-page .sc-main-kicker-img {
    height: 10px;
  }

  .school-page .sc-headline {
    position: absolute;
    top: 55px;
    left: 50vw;
    width: min(360px, 90vw);
    margin-top: 0;
    transform: translateX(-50%);
    font-size: 26px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: 0;
    text-align: center;
  }

  .school-page .sc-headline .sc-pink {
    font-size: 28px;
    line-height: 38px;
  }

  .school-page .sc-headline .sc-gold {
    font-size: 28px;
    line-height: 38px;
  }

  .school-page .sc-hero-divider {
    position: absolute;
    top: 187px;
    left: 50vw;
    width: 225px;
    height: 13px;
    margin: 0;
    transform: translateX(-50%);
  }

  .school-page .sc-hero-divider img {
    width: 225px;
    height: 13px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .school-page .sc-lead {
    position: absolute;
    top: 206px;
    left: 50vw;
    width: 330px;
    margin-top: 0;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .school-page .sc-lead br {
    display: none;
  }

  .school-page .sc-lead .sc-sp-lead-br {
    display: block;
  }

  .school-page .sc-features {
    position: absolute;
    left: 50vw;
    bottom: 129px;
    width: min(calc(100vw - 48px), 345px);
    height: 95px;
    margin-top: 0;
    padding: 0px;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 12px;
    transform: translateX(-50%);
  }

  .school-page .sc-feature {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 8px;
  }

  .school-page .sc-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 17px;
    right: 0;
    width: 1px;
    height: 60px;
    background: #d8b35b;
  }

  .school-page .sc-feature-icon,
  .school-page .sc-feature-icon--1,
  .school-page .sc-feature-icon--3 {
    width: 42px;
    height: 42px;
  }

  .school-page .sc-feature-icon--1 img {
    width: 398.35%;
    height: 168.06%;
    left: -21.49%;
    top: -31.99%;
  }

  .school-page .sc-feature-icon--2 img {
    width: 385.6%;
    height: 162.72%;
    left: -142.4%;
    top: -29.38%;
  }

  .school-page .sc-feature-icon--3 img {
    width: 395.08%;
    height: 168.06%;
    left: -273.77%;
    top: -32.8%;
  }

  .school-page .sc-feature-text {
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    white-space: nowrap;
  }

  .school-page .sc-cta-row {
    position: absolute;
    left: 50vw;
    bottom: 14px;
    width: 295px;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 0;
    transform: translateX(-50%);
  }

  .school-page .sc-cta {
    width: 100%;
    min-height: 47px;
    padding: 0 52px 0 22px;
    font-size: 14px;
    letter-spacing: 0;
  }

  .school-page .sc-cta-secondary {
    min-height: 45px;
    font-size: 13px;
  }

  .school-page .sc-cta-trial {
    font-size: 13px;
  }

  .school-page .sc-cta-trial small {
    font-size: 10px;
  }

  .school-page .sc-cta-arrow-circle {
    right: 22px;
    width: 25px;
    height: 25px;
  }

  .school-page .sc-cta-arrow-circle::before {
    left: 8px;
    top: 7px;
    width: 7px;
    height: 7px;
    border-width: 1px;
  }

  .school-page .sc-cta-arrow-circle--outline {
    right: 22px;
    width: 20px;
    height: 20px;
  }

  .school-page .sc-cta-arrow-circle--outline::before {
    left: 6px;
    top: 5px;
    width: 6px;
    height: 6px;
  }

  .school-page .sc-hero-right {
    position: absolute;
    left: calc(50vw - 221.5px);
    top: 232px;
    width: 418px;
    height: 364px;
    margin-top: 0;
  }

  .school-page .sc-hero-img-wrap {
    inset: 0;
    overflow: hidden;
  }

  .school-page .sc-hero-img {
    left: 0;
    top: -0.04%;
    width: 109%;
    height: 100.07%;
    object-fit: cover;
  }

  .school-page .sc-badge-round {
    display: flex;
    right: 14px;
    bottom: 86px;
    width: 104px;
    height: 104px;
    padding-top: 3px;
    font-size: 10px;
    line-height: 15px;
  }

  .school-page .sc-badge-round::before {
    inset: 3px;
  }

  .school-page .sc-badge-round .sc-pink-mid {
    font-size: 10px;
    line-height: 15px;
  }

  .school-page .sc-badge-star {
    width: 26px;
    height: 12px;
    margin-top: 4px;
  }

  .school-page .sc-stats-bar {
    width: 100vw;
    max-width: 100vw;
    min-height: 104px;
    margin: 30px auto 0;
    grid-template-columns: 1fr 0 1fr 0 1fr 0 1fr;
    align-items: stretch;
    border-radius: 0;
    overflow: hidden;
  }

  .school-page .sc-stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    padding: 14px 2px 20px;
    border-bottom: 0;
  }

  .school-page .sc-stats-sep + .sc-stat-item::before {
    content: none;
  }

  .school-page .sc-stat-icon-wrap--1 {
    width: 38px;
    height: 37px;
  }

  .school-page .sc-stat-icon-wrap--2 {
    width: 24px;
    height: 37px;
    margin-top: 1px;
  }

  .school-page .sc-stat-icon-wrap--3 {
    width: 24px;
    height: 36px;
    margin-top: 2px;
  }

  .school-page .sc-stat-icon-wrap--4 {
    width: 25px;
    height: 34px;
    margin-top: 2px;
  }

  .school-page .sc-stats-sep {
    display: block;
    width: 1px;
    height: 66px;
    margin-top: 25px;
    background: #d8b35b;
  }

  .school-page .sc-stat-text {
    font-size: 11px;
    line-height: 16px;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 374px) {
  .sc-flow-steps {
    grid-template-columns: 1fr;
    max-width: 320px;
    row-gap: 52px;
  }
}

/* ============================================================
   Apply Page
   ============================================================ */

.sc-apply {
  padding: 60px 24px 120px;
  background: #faf9f7;
  min-height: calc(100vh - 70px);
}

.sc-apply-inner {
  max-width: 680px;
  margin: 0 auto;
}

.sc-apply-head {
  text-align: center;
  margin-bottom: 56px;
}

.sc-apply-head-en {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--sc-gold);
  margin: 0 0 10px;
}

.sc-apply-head-line {
  width: 226px;
  height: 13px;
  margin: 0 auto 14px;
  overflow: hidden;
}

.sc-apply-head-line img {
  display: block;
  width: 292px;
  max-width: none;
  transform: translate(-32px, -45px);
}

.sc-apply-title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.sc-apply-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* CF7 フォームスタイル */
.sc-apply-form-wrap .wpcf7 {
  margin: 0;
}

.sc-apply-form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sc-apply-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.sc-apply-field label .wpcf7-form-control-wrap {
  display: block;
  margin-top: 4px;
}

.sc-apply-date-row .wpcf7-form-control-wrap {
  margin-top: 0;
}

.sc-apply-field label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.03em;
}

.sc-apply-field-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
}

.sc-apply-field label .required {
  display: inline-block;
  margin-left: 6px;
  margin-bottom: 3px;
  padding: 1px 6px;
  background: #c49a3a;
  color: #fff;
  font-size: 10px;
  border-radius: 2px;
  vertical-align: middle;
}

.sc-apply-field label .optional {
  display: inline-block;
  margin-left: 6px;
  margin-bottom: 3px;
  padding: 1px 6px;
  background: #bbb;
  color: #fff;
  font-size: 10px;
  border-radius: 2px;
  vertical-align: middle;
}

.sc-apply-form-wrap .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 4px;
}

.sc-apply-form-wrap .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.sc-apply-form-wrap .wpcf7-checkbox .wpcf7-list-item-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}

.sc-apply-form-wrap .wpcf7-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 6px 0 0;
  border: 2px solid #c49a3a;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.sc-apply-form-wrap .wpcf7-checkbox input[type="checkbox"]:checked {
  background: #c49a3a;
  border-color: #c49a3a;
}

.sc-apply-form-wrap .wpcf7-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.sc-apply-form-wrap input[type="text"],
.sc-apply-form-wrap input[type="email"],
.sc-apply-form-wrap input[type="tel"],
.sc-apply-form-wrap input[type="date"],
.sc-apply-form-wrap select,
.sc-apply-form-wrap textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
  appearance: none;
}

.sc-apply-form-wrap input[type="text"]:focus,
.sc-apply-form-wrap input[type="email"]:focus,
.sc-apply-form-wrap input[type="tel"]:focus,
.sc-apply-form-wrap input[type="date"]:focus,
.sc-apply-form-wrap select:focus,
.sc-apply-form-wrap textarea:focus {
  outline: none;
  border-color: var(--sc-gold);
}

.sc-apply-form-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.sc-apply-form-wrap textarea {
  resize: vertical;
  min-height: 120px;
}

.sc-apply-form-wrap .wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 16px auto 0;
  padding: 16px 24px;
  background: #c49a3a;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.sc-apply-form-wrap .wpcf7-submit:hover {
  background: #a8832e;
}

.sc-apply-form-wrap .wpcf7-not-valid-tip {
  display: none;
  font-size: 12px;
  color: #d9534f;
  margin-top: 4px;
}

.sc-apply-form-wrap .wpcf7-form.invalid .wpcf7-not-valid-tip {
  display: block;
}

.sc-apply-form-wrap .wpcf7-response-output {
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
}

.sc-apply-field-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
}

.sc-apply-field-label .required {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  background: #c49a3a;
  color: #fff;
  font-size: 10px;
  border-radius: 2px;
  vertical-align: middle;
}

.sc-apply-date-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.sc-apply-date-row:last-child {
  margin-bottom: 0;
}

.sc-apply-date-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  min-width: 52px;
}

.sc-apply-date-row p {
  display: contents;
}

.sc-apply-date-row .wpcf7-form-control-wrap {
  display: block;
  flex: 1;
  min-width: 0;
}

.sc-apply-date-row input[type="date"],
.sc-apply-date-row select {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.sc-apply-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #999;
  line-height: 1.8;
  text-align: center;
}

.sc-apply-field-hint {
  margin: 8px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

.sc-apply-form-wrap .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 4px;
}

.sc-apply-form-wrap .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.sc-apply-form-wrap .wpcf7-radio .wpcf7-list-item-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}

.sc-apply-form-wrap .wpcf7-radio input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 6px 0 0;
  border: 2px solid #c49a3a;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.sc-apply-form-wrap .wpcf7-radio input[type="radio"]:checked {
  border-color: #c49a3a;
}

.sc-apply-form-wrap .wpcf7-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c49a3a;
}

@media (max-width: 768px) {
  .sc-apply {
    padding: 40px 20px 80px;
  }

  .sc-apply-title {
    font-size: 22px;
  }

  .sc-apply-lead {
    font-size: 13px;
  }

  .sc-apply-date-row {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    margin-left: 0;
  }

  .sc-apply-date-label {
    width: 100%;
    flex: 0 0 100%;
    min-width: 100%;
    margin-bottom: 0;
  }

  .sc-apply-date-row br {
    display: none;
  }

  .sc-apply-date-row [data-name="date-first"],
  .sc-apply-date-row [data-name="date-second"] {
    flex: 4 1 0;
    min-width: 0;
  }

  .sc-apply-date-row [data-name="time-first"],
  .sc-apply-date-row [data-name="time-second"] {
    flex: 6 1 0;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .school-page--en .sc-course-grid--main .sc-course-block li {
    font-size: 13px;
  }

  .school-page--en .sc-hero {
    height: 845px;
    min-height: 845px;
  }

  .school-page--en .sc-main-kicker {
    top: 30px;
    width: calc(100vw - 56px);
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.03em;
    white-space: normal;
  }

  .school-page--en .sc-main-kicker span {
    min-width: 0;
    padding: 0 7px;
    text-align: center;
  }

  .school-page--en .sc-main-kicker-img {
    flex: 0 1 46px;
    height: 8px;
  }

  .school-page--en .sc-headline {
    top: 48px;
    width: min(360px, calc(100vw - 48px));
    font-size: 24px;
    line-height: 1.34;
  }

  .school-page--en .sc-headline .sc-gold,
  .school-page--en .sc-headline .sc-pink {
    font-size: 29px;
    line-height: 1.25;
  }

  .school-page--en .sc-hero-divider {
    top: 268px;
  }

  .school-page--en .sc-lead {
    top: 292px;
    width: min(340px, calc(100vw - 56px));
    max-width: none;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0.02em;
  }

  .school-page--en .sc-lead br {
    display: block;
  }

  .school-page--en .sc-hero-right {
    top: 350px;
    left: 50%;
    width: min(418px, 100vw);
    height: 320px;
    transform: translateX(-50%);
  }

  .school-page--en .sc-badge-round {
    right: 16px;
    bottom: 82px;
    width: 100px;
    height: 100px;
    padding: 12px 10px 0;
    font-size: 9px;
    line-height: 1.35;
  }

  .school-page--en .sc-badge-round .sc-pink-mid {
    font-size: 10px;
    line-height: 1.3;
  }

  .school-page--en .sc-features {
    bottom: 118px;
    height: 102px;
  }

  .school-page--en .sc-feature-text {
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
  }

  .school-page--en .sc-ba-card h4 {
    min-height: 50px;
    font-size: 17px;
    line-height: 1.25;
  }

  .school-page--en .sc-ba-card-skill {
    min-height: 94px;
    margin-top: 6px;
  }

  .school-page--en .sc-ba-card-skill li {
    font-size: 9.5px;
    line-height: 1.55;
  }

  .school-page--en .sc-ba-card-images {
    margin-top: 8px;
  }
}
