﻿:root {
  --academy-ink: #07172b;
  --academy-muted: #5e6f85;
  --academy-blue: #0d63b8;
  --academy-blue-dark: #083b70;
  --academy-cyan: #08a8c7;
  --academy-green: #20a86b;
  --academy-red: #c04444;
  --academy-line: #dfe8f3;
  --academy-soft: #f5f8fc;
  --academy-soft-2: #edf6fb;
  --academy-white: #ffffff;
  --academy-shadow: 0 18px 46px rgba(7, 23, 43, .08);
  --academy-radius: 8px;
  --academy-max: 1160px;
  --academy-mincho: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "Sawarabi Mincho", serif;
}

/* Academy typography: headings, emphasis, and point-style labels use Mincho. */
.academy-page h1,
.academy-page h2,
.academy-page h3,
.academy-page .academy-visible-title,
.academy-page .academy-visible-title span,
.academy-page .academy-visible-title em,
.academy-page strong,
.academy-page b,
.academy-page em,
.academy-page mark,
.academy-page .academy-kicker,
.academy-page .academy-pill,
.academy-page .academy-step-card__num,
.academy-page .academy-curriculum-row__num,
.academy-page .academy-curriculum-row__title,
.academy-page .academy-difference-row__label,
.academy-page .academy-top-faq__item summary,
.academy-page .academy-lesson-faq__item summary {
  font-family: var(--academy-mincho);
  font-weight: 700;
  letter-spacing: .018em;
}

/* Final contrast guard for dark CTA buttons. */
.academy-nav__cta,
.academy-button:not(.academy-button--ghost),
.academy-hero__cta--blue,
.academy-hero__cta--green,
.academy-diagnosis__button,
.academy-footer__cta {
  color: #fff;
}

.academy-nav__cta *,
.academy-button:not(.academy-button--ghost) *,
.academy-hero__cta--blue *,
.academy-hero__cta--green *,
.academy-diagnosis__button *,
.academy-footer__cta * {
  color: inherit;
}

.academy-main,
.academy-main [id] {
  scroll-margin-top: 104px;
}

@media (max-width: 760px) {
  .academy-main,
  .academy-main [id] {
    scroll-margin-top: 86px;
  }
}

/* Academy step cards section */
.academy-step-cards {
  position: relative;
  margin: 0;
  padding: 34px 0 48px;
  overflow: hidden;
  background:
    linear-gradient(rgba(222, 211, 187, .42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .42) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px, 22px 22px, auto;
}

.academy-step-cards::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .38), rgba(238, 225, 194, .18));
  content: "";
  pointer-events: none;
}

.academy-step-cards__inner {
  position: relative;
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
}

.academy-step-cards__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.academy-step-cards__plant {
  position: absolute;
  left: -92px;
  bottom: -34px;
  width: 104px;
  height: auto;
  opacity: .86;
  filter: drop-shadow(8px 10px 10px rgba(57, 45, 18, .12));
  pointer-events: none;
}

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

.academy-step-card {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 20px 28px 20px 24px;
  border: 2px solid rgba(8, 42, 78, .22);
  border-radius: 8px;
  background: rgba(255, 252, 244, .74);
  box-shadow:
    0 10px 18px rgba(64, 48, 20, .08),
    inset 0 0 0 1px rgba(255, 255, 255, .62);
}

.academy-step-card::before {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 48px;
  height: 28px;
  border-top: 3px solid rgba(11, 55, 105, .5);
  border-left: 3px solid rgba(11, 55, 105, .18);
  border-radius: 50% 0 0 0;
  transform: rotate(-18deg);
  content: "";
}

.academy-step-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.academy-step-card__img {
  display: block;
  width: 74px;
  height: auto;
}

.academy-step-card__body {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: baseline;
}

.academy-step-card__num {
  margin: 0;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.academy-step-card h3 {
  margin: 0;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .04em;
}

.academy-step-card p:last-child {
  grid-column: 2 / 3;
  margin: 10px 0 0;
  color: #1a2e47;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .academy-step-cards {
    padding: 24px 0 34px;
  }

  .academy-step-cards__inner {
    width: min(100% - 16px, 560px);
  }

  .academy-step-cards__plant {
    left: auto;
    right: -34px;
    bottom: -28px;
    width: 78px;
    opacity: .54;
  }

  .academy-step-cards__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .academy-step-card {
    min-height: 104px;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 18px;
  }

  .academy-step-card__img {
    width: 58px;
  }

  .academy-step-card h3 {
    font-size: 20px;
  }

  .academy-step-card p:last-child {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* Academy MV mock 2026-05-13 */
.academy-hero--sketch .academy-hero__canvas {
  width: min(1680px, 100%);
  min-height: 790px;
  padding: 48px 0 118px;
  overflow: hidden;
}

.academy-hero__operator {
  position: absolute;
  z-index: 7;
  top: 52px;
  right: 150px;
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}

.academy-hero--sketch .academy-hero__edge-strip {
  top: 0;
  left: -14px;
  width: 64px;
  opacity: .78;
  transform: rotate(0deg);
}

.academy-hero--sketch .academy-hero__left {
  z-index: 5;
  width: 48%;
  max-width: 780px;
  padding-top: 0;
}

.academy-hero--sketch .academy-hero__mini-brand {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  margin: 0 0 70px 126px;
}

.academy-hero--sketch .academy-hero__mini-brand-mark {
  width: 74px;
  height: 64px;
}

.academy-hero--sketch .academy-hero__mini-brand-text {
  font-size: clamp(25px, 2vw, 34px);
  letter-spacing: .045em;
}

.academy-hero--sketch .academy-hero__mini-brand-text::after {
  bottom: -15px;
  height: 3px;
}

.academy-hero--sketch .academy-visible-title {
  width: 760px;
  max-width: calc(100vw - 70px);
  margin: 0 0 0 118px;
  font-family: var(--academy-mincho);
  font-size: clamp(62px, 5vw, 86px);
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: .035em;
}

.academy-hero--sketch .academy-visible-title em {
  font-style: normal;
}

.academy-hero--sketch .academy-visible-title .academy-hero__title-blue {
  color: #0d63d9;
}

.academy-hero--sketch .academy-visible-title .academy-hero__title-green {
  color: #2e8c30;
}

.academy-hero--sketch .academy-visible-title span:last-child::after {
  display: none;
}

.academy-hero--sketch .academy-hero__lead {
  max-width: 560px;
  margin: 30px 0 0 120px;
  color: #090909;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.62;
  letter-spacing: .04em;
}

.academy-hero--sketch .academy-hero__tagline,
.academy-hero--sketch .academy-hero__badges,
.academy-hero--sketch .academy-hero__note,
.academy-hero--sketch .academy-hero__doodles {
  display: none;
}

.academy-hero--sketch .academy-hero__asset-stickers {
  gap: 28px;
  max-width: none;
  margin: 24px 0 0 104px;
}

.academy-hero--sketch .academy-hero__asset-sticker {
  width: 285px;
  filter: drop-shadow(12px 14px 12px rgba(45, 30, 10, .18));
}

.academy-hero--sketch .academy-hero__asset-sticker--free {
  transform: rotate(-1.2deg);
}

.academy-hero--sketch .academy-hero__asset-sticker--chapters {
  width: 280px;
  margin-left: -8px;
  transform: rotate(-2.2deg) translateY(-4px);
}

.academy-hero--sketch .academy-hero__diagram {
  z-index: 4;
  top: 78px;
  right: 10px;
  width: min(50vw, 820px);
  min-height: 610px;
}

.academy-hero--sketch .academy-hero__diagram-img {
  position: absolute;
  inset: 0 0 auto auto;
  width: 100%;
  max-width: none;
  transform: rotate(-2.3deg);
  filter: drop-shadow(18px 22px 24px rgba(44, 31, 12, .16));
}

.academy-hero--sketch .academy-hero__diagram-img ~ * {
  display: none;
}

.academy-hero--sketch .academy-hero__cta-row {
  left: 106px;
  right: 430px;
  bottom: 52px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.academy-hero--sketch .academy-hero__cta {
  min-height: 92px;
  grid-template-columns: 1fr auto;
  justify-content: center;
  gap: 18px;
  padding: 16px 32px;
  border: 2px solid #0b3769;
  border-radius: 9px;
  font-size: 23px;
  letter-spacing: .04em;
  box-shadow: 0 8px 14px rgba(28, 22, 12, .16), inset 0 0 0 2px rgba(255, 255, 255, .14);
  transform: rotate(-.3deg);
}

.academy-hero--sketch .academy-hero__cta svg {
  display: none;
}

.academy-hero--sketch .academy-hero__cta span {
  font-size: inherit;
  font-weight: 800;
}

.academy-hero--sketch .academy-hero__cta--blue {
  background: #0757a8;
  color: #fff;
}

.academy-hero--sketch .academy-hero__cta--white {
  background: rgba(255, 252, 246, .9);
  color: #071f43;
}

@media (max-width: 1280px) {
  .academy-hero--sketch .academy-hero__canvas {
    display: flex;
    flex-direction: column;
    width: min(100% - 44px, 980px);
    min-height: auto;
    padding: 44px 0 54px;
  }

  .academy-hero__operator {
    position: relative;
    top: auto;
    right: auto;
    order: 0;
    align-self: flex-end;
    margin: 0 0 18px;
    font-size: 15px;
  }

  .academy-hero--sketch .academy-hero__left,
  .academy-hero--sketch .academy-hero__diagram,
  .academy-hero--sketch .academy-hero__cta-row {
    position: relative;
    inset: auto;
  }

  .academy-hero--sketch .academy-hero__left {
    order: 1;
    width: 100%;
    max-width: none;
  }

  .academy-hero--sketch .academy-hero__mini-brand,
  .academy-hero--sketch .academy-visible-title,
  .academy-hero--sketch .academy-hero__lead,
  .academy-hero--sketch .academy-hero__asset-stickers {
    margin-left: 0;
  }

  .academy-hero--sketch .academy-visible-title {
    width: min(760px, 100%);
  }

  .academy-hero--sketch .academy-hero__cta-row {
    order: 2;
    display: grid;
    margin-top: 32px;
  }

  .academy-hero--sketch .academy-hero__diagram {
    order: 3;
    width: min(760px, 100%);
    min-height: auto;
    margin: 30px auto 0;
  }

  .academy-hero--sketch .academy-hero__diagram-img {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 840px) {
  .academy-hero--sketch .academy-hero__canvas {
    width: min(100% - 16px, 560px);
    padding: 30px 0 38px;
  }

  .academy-hero__operator {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .academy-hero--sketch .academy-hero__mini-brand {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 42px;
  }

  .academy-hero--sketch .academy-hero__mini-brand-mark {
    width: 48px;
    height: 44px;
  }

  .academy-hero--sketch .academy-hero__mini-brand-text {
    font-size: 20px;
    white-space: nowrap;
  }

  .academy-hero--sketch .academy-visible-title {
    max-width: 100%;
    font-size: clamp(33px, 9.2vw, 58px);
    line-height: 1.24;
    letter-spacing: .015em;
  }

  .academy-hero--sketch .academy-hero__lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 0;
  }

  .academy-hero--sketch .academy-hero__asset-stickers {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 24px;
  }

  .academy-hero--sketch .academy-hero__asset-sticker {
    width: min(42vw, 170px);
  }

  .academy-hero--sketch .academy-hero__asset-sticker--chapters {
    width: min(40vw, 160px);
  }

  .academy-hero--sketch .academy-hero__cta-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .academy-hero--sketch .academy-hero__cta {
    min-height: 66px;
    padding: 14px 22px;
    font-size: 18px;
  }

  .academy-hero--sketch .academy-hero__diagram {
    display: block;
    margin-top: 22px;
  }

.academy-hero--sketch .academy-hero__diagram-img {
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 1281px) {
  .academy-hero--sketch .academy-hero__canvas {
    box-sizing: border-box;
    min-height: 900px;
  }

  .academy-hero--sketch .academy-hero__left {
    position: absolute;
    top: 48px;
    left: 0;
  }

  .academy-hero--sketch .academy-visible-title {
    font-size: clamp(58px, 4.4vw, 74px);
    line-height: 1.28;
  }

  .academy-hero--sketch .academy-visible-title span {
    white-space: nowrap;
  }

  .academy-hero--sketch .academy-hero__lead {
    margin-top: 28px;
    font-size: 25px;
  }

  .academy-hero--sketch .academy-hero__asset-stickers {
    margin-top: 14px;
  }

  .academy-hero--sketch .academy-hero__asset-sticker {
    width: 242px;
  }

  .academy-hero--sketch .academy-hero__asset-sticker--chapters {
    width: 238px;
  }

  .academy-hero--sketch .academy-hero__cta-row {
    bottom: 54px;
  }

  .academy-hero--sketch .academy-hero__cta {
    box-sizing: border-box;
    min-height: 86px;
    padding: 14px 28px;
    font-size: 25px;
    line-height: 1.15;
    text-decoration: none;
  }

  .academy-hero--sketch .academy-hero__cta-label {
    text-decoration: none;
  }
}

/* Top page: the pen intentionally extends past the MV paper without clipping. */
.academy-page--top .academy-hero--sketch,
.academy-page--top .academy-hero--sketch .academy-hero__canvas,
.academy-page--top .academy-hero--sketch .academy-hero__diagram {
  overflow: visible;
}

/* Top page: the pen intentionally extends past the right edge. */
.academy-page--top .academy-hero--sketch,
.academy-page--top .academy-hero--sketch .academy-hero__canvas,
.academy-page--top .academy-hero--sketch .academy-hero__diagram {
  overflow: visible;
}

/* Keep the fountain pen position, but let its right edge extend outside the MV canvas. */
.academy-hero--sketch,
.academy-hero--sketch .academy-hero__canvas,
.academy-hero--sketch .academy-hero__diagram {
  overflow: visible;
}

@media (max-width: 840px) {
  .academy-hero--sketch .academy-hero__edge-strip {
    display: none;
  }

  .academy-hero--sketch .academy-hero__canvas {
    padding-top: 12px;
  }

  .academy-hero--sketch .academy-hero__mini-brand {
    margin-bottom: 28px;
  }
}

@media (max-width: 760px) {
  .academy-overview__paper,
  .academy-diagnosis__paper {
    background-image:
      linear-gradient(rgba(222, 211, 187, .28) 1px, transparent 1px),
      linear-gradient(90deg, rgba(222, 211, 187, .28) 1px, transparent 1px);
    background-color: rgba(255, 252, 243, .76);
    background-size: 22px 22px;
    border: 1px solid rgba(203, 184, 145, .38);
    border-radius: 8px;
  }

  .academy-overview__paper::before {
    display: none;
  }
}

/* Refined button interactions */
.academy-nav__cta,
.academy-menu-button,
.academy-button,
.academy-hero__cta,
.academy-curriculum-row__button,
.academy-growth-plan__button,
.academy-diagnosis__button,
.academy-footer__cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  will-change: transform, box-shadow, filter;
  transition:
    transform .42s cubic-bezier(.18, .84, .24, 1),
    box-shadow .42s cubic-bezier(.18, .84, .24, 1),
    border-color .34s ease,
    background-color .34s ease,
    color .34s ease,
    filter .34s ease;
}

.academy-nav__cta::after,
.academy-menu-button::after,
.academy-button::after,
.academy-hero__cta::after,
.academy-curriculum-row__button::after,
.academy-growth-plan__button::after,
.academy-diagnosis__button::after,
.academy-footer__cta::after {
  position: absolute;
  z-index: 0;
  inset: -42% -34%;
  background:
    linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, .24) 48%, transparent 62%),
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .16), transparent 34%);
  opacity: 0;
  transform: translateX(-46%) rotate(3deg);
  transition:
    transform .72s cubic-bezier(.18, .84, .24, 1),
    opacity .42s ease;
  content: "";
  pointer-events: none;
}

.academy-nav__cta:hover,
.academy-nav__cta:focus-visible,
.academy-menu-button:hover,
.academy-menu-button:focus-visible,
.academy-button:hover,
.academy-button:focus-visible,
.academy-curriculum-row__button:hover,
.academy-curriculum-row__button:focus-visible,
.academy-growth-plan__button:hover,
.academy-growth-plan__button:focus-visible,
.academy-diagnosis__button:hover,
.academy-diagnosis__button:focus-visible,
.academy-footer__cta:hover,
.academy-footer__cta:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.04) contrast(1.02);
}

.academy-nav__cta:hover::after,
.academy-nav__cta:focus-visible::after,
.academy-menu-button:hover::after,
.academy-menu-button:focus-visible::after,
.academy-button:hover::after,
.academy-button:focus-visible::after,
.academy-hero__cta:hover::after,
.academy-hero__cta:focus-visible::after,
.academy-curriculum-row__button:hover::after,
.academy-curriculum-row__button:focus-visible::after,
.academy-growth-plan__button:hover::after,
.academy-growth-plan__button:focus-visible::after,
.academy-diagnosis__button:hover::after,
.academy-diagnosis__button:focus-visible::after,
.academy-footer__cta:hover::after,
.academy-footer__cta:focus-visible::after {
  opacity: 1;
  transform: translateX(46%) rotate(3deg);
}

.academy-nav__cta:hover,
.academy-nav__cta:focus-visible,
.academy-button:hover,
.academy-button:focus-visible {
  box-shadow: 0 12px 22px rgba(8, 59, 112, .22);
}

.academy-menu-button:hover,
.academy-menu-button:focus-visible,
.academy-curriculum-row__button:hover,
.academy-curriculum-row__button:focus-visible,
.academy-growth-plan__button:hover,
.academy-growth-plan__button:focus-visible {
  border-color: rgba(12, 95, 170, .78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 12px 22px rgba(49, 64, 83, .14);
}

.academy-diagnosis__button:hover,
.academy-diagnosis__button:focus-visible,
.academy-footer__cta:hover,
.academy-footer__cta:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .24),
    0 14px 24px rgba(22, 41, 67, .22);
}

.academy-hero__cta:hover,
.academy-hero__cta:focus-visible {
  transform: translateY(-4px) rotate(-.6deg);
  filter: saturate(1.06) contrast(1.02);
  box-shadow:
    0 18px 28px rgba(31, 31, 31, .22),
    inset 0 0 0 2px rgba(255, 255, 255, .14);
}

.academy-hero--sketch .academy-hero__cta:hover,
.academy-hero--sketch .academy-hero__cta:focus-visible {
  transform: translateY(-4px) rotate(-.3deg);
  box-shadow:
    0 16px 26px rgba(28, 22, 12, .2),
    inset 0 0 0 2px rgba(255, 255, 255, .18);
}

.academy-hero__cta span,
.academy-growth-plan__button span,
.academy-diagnosis__button span,
.academy-footer__cta span {
  position: relative;
  z-index: 1;
  transition: transform .42s cubic-bezier(.18, .84, .24, 1);
}

.academy-hero__cta-label {
  position: relative;
  z-index: 1;
}

.academy-hero__cta:hover span,
.academy-hero__cta:focus-visible span,
.academy-diagnosis__button:hover span,
.academy-diagnosis__button:focus-visible span,
.academy-footer__cta:hover span,
.academy-footer__cta:focus-visible span {
  transform: translateX(5px);
}

.academy-growth-plan__button:hover span,
.academy-growth-plan__button:focus-visible span {
  transform: translate(5px, -2px);
}

@media (prefers-reduced-motion: reduce) {
  .academy-nav__cta,
  .academy-menu-button,
  .academy-button,
  .academy-hero__cta,
  .academy-curriculum-row__button,
  .academy-growth-plan__button,
  .academy-diagnosis__button,
  .academy-footer__cta,
  .academy-nav__cta::after,
  .academy-menu-button::after,
  .academy-button::after,
  .academy-hero__cta::after,
  .academy-curriculum-row__button::after,
  .academy-growth-plan__button::after,
  .academy-diagnosis__button::after,
  .academy-footer__cta::after,
  .academy-hero__cta span,
  .academy-growth-plan__button span,
  .academy-diagnosis__button span,
  .academy-footer__cta span {
    transition-duration: .01ms;
  }
}

/* Scroll reveal motion */
.academy-reveal {
  opacity: 1;
  filter: none;
  transition:
    opacity .82s cubic-bezier(.2, .76, .18, 1),
    transform .82s cubic-bezier(.2, .76, .18, 1),
    filter .82s cubic-bezier(.2, .76, .18, 1);
  transition-delay: var(--academy-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.academy-reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(.985);
  filter: blur(4px);
}

.academy-reveal.is-visible {
  filter: blur(0);
}

.academy-hero__cta.academy-reveal:not(.is-visible) {
  transform: translate3d(0, 26px, 0) scale(.985) rotate(-.6deg);
}

.academy-hero__cta.academy-reveal.is-visible {
  transform: rotate(-.6deg);
}

.academy-hero--sketch .academy-hero__cta.academy-reveal:not(.is-visible) {
  transform: translate3d(0, 26px, 0) scale(.985) rotate(-.3deg);
}

.academy-hero--sketch .academy-hero__cta.academy-reveal.is-visible {
  transform: rotate(-.3deg);
}

.academy-hero--sketch .academy-hero__diagram.academy-reveal:not(.is-visible) {
  transform: translate3d(0, 28px, 0) scale(.975);
}

.academy-hero--sketch .academy-hero__diagram.academy-reveal.is-visible {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .academy-reveal,
  .academy-reveal.is-visible,
  .academy-hero__cta.academy-reveal,
  .academy-hero__cta.academy-reveal.is-visible,
  .academy-hero--sketch .academy-hero__cta.academy-reveal,
  .academy-hero--sketch .academy-hero__cta.academy-reveal.is-visible,
  .academy-hero--sketch .academy-hero__diagram.academy-reveal,
  .academy-hero--sketch .academy-hero__diagram.academy-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition-duration: .01ms;
    transition-delay: 0ms;
  }
}

/* Lesson pages: notebook-style learning layout */
.academy-lesson-page--sketch {
  position: relative;
  overflow: hidden;
}

.academy-lesson-page--sketch::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(222, 211, 187, .46) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .46) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
  content: "";
}

.academy-lesson-hero--notebook {
  width: min(1240px, calc(100% - 16px));
  margin: 0 auto;
  padding: 38px 0 22px;
}

.academy-lesson-hero__paper {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(203, 184, 145, .65);
  border-radius: 8px;
  background:
    linear-gradient(rgba(222, 211, 187, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .22) 1px, transparent 1px),
    rgba(255, 251, 241, .94);
  background-size: 22px 22px;
  box-shadow: 0 18px 34px rgba(53, 38, 15, .13);
}

.academy-lesson-hero__paper::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 22px;
  background:
    radial-gradient(circle at 50% 16px, rgba(185, 163, 123, .42) 0 4px, transparent 5px) 0 0 / 22px 36px repeat-y;
  content: "";
  opacity: .75;
}

.academy-lesson-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-top: 26px;
}

.academy-lesson-hero__copy {
  position: relative;
  z-index: 2;
}

.academy-lesson-hero--notebook .academy-kicker {
  width: fit-content;
  margin: 0 0 16px;
  padding: 4px 12px;
  color: #0b4f91;
  font-family: "Shippori Mincho", "Yu Mincho", "Sawarabi Mincho", serif;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(transparent 62%, rgba(93, 170, 224, .38) 0);
}

.academy-lesson-hero--notebook h1,
.academy-lesson-hero--notebook .academy-visible-title {
  margin: 0;
  color: #06284c;
  font-family: "Shippori Mincho", "Yu Mincho", "Sawarabi Mincho", serif;
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.academy-lesson-hero--notebook .academy-lesson-hero__lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: #102d4d;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 800;
  line-height: 1.95;
}

.academy-lesson-hero__art {
  position: relative;
  min-height: 250px;
}

.academy-lesson-hero__image {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(33, 24, 10, .16));
}

.academy-lesson-hero__pen {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: 2;
  width: min(42%, 132px);
  transform: rotate(-10deg);
  filter: drop-shadow(0 12px 16px rgba(33, 24, 10, .18));
}

.academy-lesson-body--sketch {
  width: min(1240px, calc(100% - 16px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 306px;
  gap: 32px;
}

.academy-content--lesson {
  display: grid;
  gap: 26px;
}

.academy-content--lesson > * {
  margin-top: 0;
}

.academy-summary-box--lesson,
.academy-important--lesson,
.academy-lesson-paper,
.academy-checklist--lesson,
.academy-lesson-faq,
.academy-cta--lesson,
.academy-lesson-visual,
.academy-toc--lesson,
.academy-side-cta--lesson {
  border: 1px solid rgba(166, 185, 195, .85);
  border-radius: 8px;
  background:
    linear-gradient(rgba(222, 211, 187, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .18) 1px, transparent 1px),
    rgba(255, 253, 247, .94);
  background-size: 22px 22px;
  box-shadow: 0 10px 22px rgba(30, 48, 64, .07);
}

.academy-summary-box--lesson,
.academy-important--lesson,
.academy-lesson-paper,
.academy-checklist--lesson,
.academy-lesson-faq,
.academy-cta--lesson,
.academy-lesson-visual {
  padding: clamp(20px, 3vw, 34px);
}

.academy-summary-box--lesson h2,
.academy-important--lesson h2,
.academy-checklist--lesson h2,
.academy-lesson-faq h2,
.academy-lesson-visual h2 {
  width: fit-content;
  margin: 0 0 18px;
  padding: 0 0 3px;
  border: 0;
  color: #063260;
  font-family: "Shippori Mincho", "Yu Mincho", "Sawarabi Mincho", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  background: linear-gradient(transparent 72%, rgba(92, 168, 216, .44) 0);
}

.academy-summary-box--lesson ul,
.academy-checklist--lesson ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-summary-box--lesson li,
.academy-checklist--lesson li {
  position: relative;
  padding-left: 32px;
  color: #0b2f54;
  font-weight: 800;
  line-height: 1.85;
}

.academy-summary-box--lesson li::before,
.academy-checklist--lesson li::before {
  position: absolute;
  left: 0;
  top: .48em;
  width: 18px;
  height: 18px;
  border: 2px solid #0b559b;
  border-radius: 4px;
  color: #0b559b;
  content: "";
}

.academy-checklist--lesson li::after {
  position: absolute;
  left: 4px;
  top: .42em;
  color: #0b559b;
  content: "\2713";
  font-size: 17px;
  font-weight: 900;
}

.academy-important--lesson {
  border-left: 0;
}

.academy-lesson-conclusion__image {
  display: block;
  width: 90%;
  max-width: 1000px;
  height: auto;
  margin: 10px auto 22px;
  border: 1px solid rgba(11, 95, 179, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.academy-lesson-figure {
  width: min(90%, 1000px);
  margin: 18px auto 30px;
  text-align: center;
}

.academy-lesson-figure__button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: zoom-in;
}

.academy-lesson-figure__button:hover .academy-lesson-section__image,
.academy-lesson-figure__button:focus-visible .academy-lesson-section__image {
  transform: translateY(-2px);
  border-color: rgba(11, 95, 179, .36);
  box-shadow: 0 14px 34px rgba(7, 23, 43, .12);
}

.academy-lesson-figure__button:focus-visible {
  outline: 3px solid rgba(13, 99, 184, .36);
  outline-offset: 6px;
}

.academy-lesson-section__image {
  display: block;
  width: 90%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 1400 / 788;
  object-fit: contain;
  margin: 14px auto 24px;
  border: 1px solid rgba(11, 95, 179, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.academy-lesson-figure .academy-lesson-section__image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.academy-lesson-figure__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45em;
  margin-top: 10px;
  color: #31516c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.academy-lesson-figure__hint::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1f8f5a;
  box-shadow: 9px 0 0 #0b65b9;
}

.academy-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5vh 2.5vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .24s ease,
    visibility .24s ease;
}

.academy-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.academy-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 38, .84);
  backdrop-filter: blur(4px);
}

.academy-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95vw;
  height: 95vh;
  transform: scale(.975);
  transition: transform .24s ease;
}

.academy-lightbox.is-open .academy-lightbox__dialog {
  transform: scale(1);
}

.academy-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

.academy-lightbox__close {
  position: absolute;
  top: max(10px, 2vh);
  right: max(10px, 2vw);
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: #082f57;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.academy-lightbox-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .academy-lesson-figure {
    width: calc(100% - 16px);
    margin: 16px auto 24px;
  }

  .academy-lesson-figure__button:hover .academy-lesson-section__image,
  .academy-lesson-figure__button:focus-visible .academy-lesson-section__image {
    transform: none;
  }

  .academy-lesson-figure__hint {
    font-size: 12px;
  }

  .academy-lightbox {
    padding: 2.5vh 2.5vw;
  }

  .academy-lightbox__close {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }
}

.academy-important--lesson p,
.academy-lesson-section p,
.academy-cta--lesson p,
.academy-lesson-faq p {
  color: #173653;
  font-size: 17px;
  font-weight: 650;
  line-height: 2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.academy-lesson-section h3,
.academy-lesson-section h4 {
  margin: 26px 0 10px;
  color: #07325d;
  font-weight: 900;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.academy-lesson-section h3 {
  font-size: clamp(20px, 2.2vw, 26px);
}

.academy-lesson-section h4 {
  font-size: clamp(18px, 2vw, 22px);
}

.academy-lesson-section ul,
.academy-lesson-section ol,
.academy-important--points ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 1.35em;
  color: #173653;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.academy-lesson-section li::marker,
.academy-important--points li::marker {
  color: #0b5fb3;
  font-weight: 900;
}

.academy-lesson-section strong,
.academy-lesson-section b {
  color: #06284c;
  font-weight: 900;
}

.academy-lesson-section table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  margin: 18px 0 4px;
  color: #173653;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  background: rgba(255, 255, 255, .82);
}

.academy-lesson-section th,
.academy-lesson-section td {
  padding: 13px 14px;
  border: 1px solid rgba(11, 95, 179, .22);
  vertical-align: top;
}

.academy-lesson-section th {
  color: #06284c;
  background: rgba(92, 168, 216, .12);
  font-weight: 900;
}

.academy-table-scroll {
  overflow-x: auto;
  margin: 18px 0;
  -webkit-overflow-scrolling: touch;
}

.academy-note,
.academy-definition,
.academy-lesson-section .academy-summary-box,
.academy-lesson-section .academy-important,
.academy-official-update {
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(11, 95, 179, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.academy-definition {
  border-left: 5px solid #249363;
}

.academy-note {
  border-left: 5px solid #0b5fb3;
}

.academy-official-update {
  position: relative;
  padding: 22px 24px 22px 26px;
  border: 2px solid rgba(8, 168, 199, .44);
  border-left: 7px solid var(--academy-cyan);
  background:
    linear-gradient(135deg, rgba(8, 168, 199, .16), rgba(255, 255, 255, .94) 42%),
    var(--academy-white);
  box-shadow: 0 16px 36px rgba(7, 23, 43, .08);
}

.academy-official-update::before {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #073b63;
  color: #fff;
  content: "Google公式見解";
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.academy-official-update p {
  margin: 0;
}

.academy-official-update p + p {
  margin-top: 8px;
}

.academy-official-update__label {
  color: #073b63;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.academy-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.academy-mini-card {
  padding: 16px;
  border: 1px solid rgba(11, 95, 179, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
}

.academy-important--points ul {
  margin: 0;
}

.academy-lesson-paper {
  display: grid;
  gap: 30px;
}

.academy-lesson-section {
  padding-top: 0;
}

.academy-lesson-section + .academy-lesson-section {
  padding-top: 28px;
  border-top: 1px dashed rgba(12, 67, 112, .24);
}

.academy-lesson-section h2 {
  position: relative;
  margin: 0 0 14px;
  padding: 0 0 0 20px;
  border: 0;
  color: #06284c;
  font-family: "Shippori Mincho", "Yu Mincho", "Sawarabi Mincho", serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.academy-lesson-section h2::before {
  position: absolute;
  top: .42em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #249363;
  box-shadow: 0 13px 0 #0b5fb3;
  content: "";
}

.academy-lesson-visual {
  position: relative;
  overflow: hidden;
}

.academy-lesson-visual::after {
  position: absolute;
  right: -24px;
  bottom: -22px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(53, 146, 100, .12), transparent 70%);
  content: "";
}

.academy-lesson-visual-image {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
}

.academy-lesson-visual-image__img {
  display: block;
  width: 90%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 1400 / 788;
  object-fit: contain;
  margin-inline: auto;
  border: 1px solid rgba(11, 95, 179, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.academy-lesson-visual__head p {
  margin: 0 0 6px;
  color: #2b8060;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.academy-visual-triad,
.academy-visual-compare,
.academy-visual-answer,
.academy-visual-decision {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.academy-visual-node,
.academy-visual-compare div,
.academy-visual-answer article,
.academy-visual-decision div,
.academy-visual-plan-mini {
  min-height: 130px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 2px solid #0b5fb3;
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #07325d;
  text-align: center;
}

.academy-visual-node strong,
.academy-visual-compare b,
.academy-visual-answer b,
.academy-visual-decision b {
  font-size: 25px;
  color: #0b5fb3;
}

.academy-visual-node span,
.academy-visual-compare span,
.academy-visual-answer span,
.academy-visual-decision span,
.academy-visual-plan-mini span,
.academy-visual-plan-mini small {
  display: block;
  color: #173653;
  font-weight: 800;
  line-height: 1.55;
}

.academy-visual-node--green,
.academy-visual-node--green strong {
  border-color: #249363;
  color: #249363;
}

.academy-visual-node--orange,
.academy-visual-node--orange strong {
  border-color: #d88724;
  color: #d88724;
}

.academy-visual-result {
  grid-column: 1 / -1;
  width: min(520px, 100%);
  margin: 6px auto 0;
  padding: 13px 18px;
  border: 2px solid #0b5fb3;
  border-radius: 999px;
  color: #0b2f54;
  font-family: "Shippori Mincho", "Yu Mincho", "Sawarabi Mincho", serif;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, .7);
}

.academy-visual-stack,
.academy-visual-template {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-visual-stack li,
.academy-visual-template li {
  display: grid;
  grid-template-columns: 58px minmax(0, .45fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(11, 95, 179, .35);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
}

.academy-visual-stack span {
  color: #0b5fb3;
  font-weight: 900;
}

.academy-visual-stack b,
.academy-visual-template li {
  color: #0b2f54;
  font-weight: 900;
}

.academy-visual-stack em {
  color: #36556f;
  font-style: normal;
  font-weight: 700;
}

.academy-visual-linkmap {
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.academy-visual-linkmap div,
.academy-visual-industry span,
.academy-visual-cycle span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(11, 95, 179, .42);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: #0b2f54;
  font-weight: 900;
}

.academy-visual-linkmap .center {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 150px;
  border-color: #249363;
  color: #249363;
  font-size: 24px;
}

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

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

.academy-visual-metrics {
  display: grid;
  gap: 16px;
}

.academy-visual-metrics p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 14px;
  align-items: center;
  margin: 0;
}

.academy-visual-metrics span {
  position: relative;
  height: 28px;
  border-radius: 999px;
  background: rgba(11, 95, 179, .12);
  overflow: hidden;
}

.academy-visual-metrics span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, #0b5fb3, #249363);
  content: "";
}

.academy-visual-metrics b {
  color: #0b2f54;
}

.academy-visual-template {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.academy-visual-template li {
  grid-template-columns: 1fr;
  min-height: 96px;
  text-align: center;
}

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

.academy-visual-plan-mini {
  width: min(620px, 100%);
  min-height: 0;
  margin: 18px auto 0;
  border-radius: 8px;
  border-color: #249363;
}

.academy-diff-grid--lesson {
  margin: 0;
}

.academy-diff-grid--lesson .academy-diff-card {
  border: 1px solid rgba(11, 95, 179, .24);
  background: rgba(255, 255, 255, .72);
}

.academy-diff-grid--lesson h3 {
  margin-top: 0;
  color: #063260;
}

.academy-cta--lesson {
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
}

.academy-cta__link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.academy-cta__link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(11, 95, 179, .35);
  border-radius: 999px;
  color: #0b2f54;
  background: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.academy-lesson-faq__item {
  overflow: hidden;
  border-top: 1px solid rgba(11, 95, 179, .2);
  padding: 0;
}

.academy-lesson-faq__item:first-of-type {
  border-top: 0;
}

.academy-lesson-faq__item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  list-style: none;
  cursor: pointer;
}

.academy-lesson-faq__item summary::-webkit-details-marker {
  display: none;
}

.academy-lesson-faq__item summary::after {
  width: 10px;
  height: 10px;
  border-right: 3px solid #0b4f91;
  border-bottom: 3px solid #0b4f91;
  content: "";
  transform: translateY(-3px) rotate(45deg);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.academy-lesson-faq__item[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.academy-lesson-faq__item p {
  overflow: hidden;
  margin: 0;
  padding: 0 0 18px;
}

.academy-lesson-faq__item:not([open]) p {
  padding-bottom: 0;
}

.academy-sidebar--lesson {
  gap: 18px;
}

.academy-toc--lesson,
.academy-side-cta--lesson {
  padding: 18px;
}

.academy-toc--lesson h2,
.academy-side-cta--lesson h2 {
  color: #063260;
  font-family: "Shippori Mincho", "Yu Mincho", "Sawarabi Mincho", serif;
  font-size: 20px;
}

.academy-toc--lesson a {
  display: block;
  padding: 7px 0;
}

.academy-side-cta__plant,
.academy-side-cta__glass {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: -4px 0 8px auto;
}

.academy-side-cta__glass {
  width: 110px;
}

.academy-lesson-nav--sketch {
  width: min(1240px, calc(100% - 16px));
  margin: 0 auto;
}

.academy-lesson-nav--sketch a {
  position: relative;
  overflow: hidden;
  border-color: rgba(11, 95, 179, .28);
  background:
    linear-gradient(rgba(222, 211, 187, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .16) 1px, transparent 1px),
    rgba(255, 253, 247, .94);
  background-size: 22px 22px;
  transition: transform .42s cubic-bezier(.16, 1, .3, 1), border-color .42s, box-shadow .42s;
}

.academy-lesson-nav--sketch a::after {
  position: absolute;
  right: 18px;
  top: 50%;
  color: #0b4f91;
  content: "›";
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-53%);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1);
}

.academy-lesson-nav--sketch a:hover {
  border-color: rgba(11, 95, 179, .6);
  box-shadow: 0 14px 28px rgba(11, 69, 122, .12);
  transform: translateY(-3px);
}

.academy-lesson-nav--sketch a:hover::after {
  transform: translate(4px, -53%);
}

@media (max-width: 1080px) {
  .academy-lesson-hero__layout,
  .academy-lesson-body--sketch {
    grid-template-columns: 1fr;
  }

  .academy-content--lesson {
    order: 1;
  }

  .academy-sidebar--lesson {
    position: static;
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-toc--lesson {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .academy-lesson-hero--notebook,
  .academy-lesson-body--sketch,
  .academy-lesson-nav--sketch {
    width: calc(100% - 16px);
  }

  .academy-lesson-hero--notebook {
    padding-top: 22px;
  }

  .academy-lesson-hero__paper {
    padding: 22px 16px;
  }

  .academy-lesson-hero__paper::before {
    display: none;
  }

  .academy-lesson-hero__art {
    min-height: 210px;
    display: grid;
    place-items: center;
  }

  .academy-lesson-hero__image {
    max-height: 220px;
  }

  .academy-lesson-hero__pen {
    right: 4px;
    bottom: 0;
    width: 86px;
  }

  .academy-lesson-body--sketch {
    gap: 20px;
    padding-top: 10px;
  }

  .academy-summary-box--lesson,
  .academy-important--lesson,
  .academy-lesson-paper,
  .academy-checklist--lesson,
  .academy-lesson-faq,
  .academy-cta--lesson,
  .academy-lesson-visual {
    padding: 18px 14px;
  }

  .academy-visual-triad,
  .academy-visual-compare,
  .academy-visual-answer,
  .academy-visual-decision,
  .academy-visual-cycle,
  .academy-visual-industry,
  .academy-visual-template,
  .academy-sidebar--lesson,
  .academy-cta--lesson,
  .academy-lesson-nav--sketch {
    grid-template-columns: 1fr;
  }

  .academy-visual-linkmap {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .academy-visual-linkmap .center {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 96px;
  }

  .academy-visual-stack li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .academy-visual-stack em {
    grid-column: 2;
  }

  .academy-visual-metrics p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .academy-cta--lesson .academy-cta__actions {
    width: 100%;
  }

  .academy-lesson-nav--sketch a {
    padding-right: 44px;
  }
}

.academy-hero--sketch .academy-hero__cta,
.academy-hero--sketch .academy-hero__cta:hover,
.academy-hero--sketch .academy-hero__cta:focus,
.academy-hero--sketch .academy-hero__cta-label {
  text-decoration: none !important;
}

.academy-hero--sketch .academy-hero__cta--white {
  grid-template-columns: 1fr;
}

.academy-hero--sketch .academy-hero__diagram-img ~ .academy-hero__pen-img {
  display: block;
  opacity: 1;
}

.academy-hero--sketch .academy-hero__pen-img {
  position: absolute;
  z-index: 6;
  right: -138px;
  bottom: -190px;
  width: min(26vw, 360px);
  height: auto;
  filter: drop-shadow(16px 18px 18px rgba(18, 12, 8, .24));
  pointer-events: none;
}

@media (max-width: 1280px) {
  .academy-hero--sketch .academy-hero__pen-img {
    right: -46px;
    bottom: -78px;
    width: min(34vw, 260px);
  }
}

@media (max-width: 840px) {
  .academy-hero--sketch .academy-hero__pen-img {
    right: -24px;
    bottom: -52px;
    width: min(42vw, 170px);
  }
}

html.academy-menu-open {
  overflow: hidden;
}

.academy-page {
  margin: 0;
  color: var(--academy-ink);
  background: var(--academy-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
}

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

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

.academy-page img {
  max-width: 100%;
  height: auto;
}

.academy-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--academy-ink);
  color: var(--academy-white);
  border-radius: 6px;
}

.academy-skip:not(:focus):not(:focus-visible) {
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.academy-skip:focus,
.academy-skip:focus-visible {
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  outline: 3px solid rgba(8, 168, 199, .8);
  outline-offset: 2px;
}

.academy-inline-shell ~ .skip-link:not(:focus):not(:focus-visible),
.skip-link:not(:focus):not(:focus-visible) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  transform: none !important;
}

.skip-link:focus,
.skip-link:focus-visible {
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  clip-path: none !important;
  transform: none !important;
}

.academy-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(223, 232, 243, .9);
  backdrop-filter: blur(16px);
}

.academy-header__inner {
  max-width: var(--academy-max);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.academy-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.academy-brand__logo {
  display: block;
  width: min(340px, 38vw);
  height: auto;
  object-fit: contain;
}

.academy-brand__mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--academy-ink);
  color: var(--academy-white);
  font-weight: 800;
}

.academy-brand__text {
  display: grid;
  gap: 0;
  color: var(--academy-ink);
  font-size: 12px;
  line-height: 1.2;
}

.academy-brand__text strong {
  font-size: 16px;
  letter-spacing: 0;
}

.academy-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2f425a;
  font-size: 14px;
  font-weight: 700;
}

.academy-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.academy-nav a:hover,
.academy-nav a:focus-visible {
  color: var(--academy-blue);
  border-bottom-color: var(--academy-cyan);
}

.academy-nav__cta {
  padding: 10px 16px !important;
  border: 1px solid var(--academy-blue) !important;
  border-radius: 8px;
  background: var(--academy-blue);
  color: var(--academy-white) !important;
}

.academy-nav__cta:hover,
.academy-nav__cta:focus-visible {
  background: var(--academy-blue-dark);
  border-color: var(--academy-blue-dark) !important;
}

.academy-menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--academy-line);
  border-radius: 8px;
  background: var(--academy-white);
  color: var(--academy-ink);
  padding: 9px 12px;
  font: inherit;
  font-weight: 700;
}

.academy-menu-button__line,
.academy-menu-button__line::before,
.academy-menu-button__line::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.academy-menu-button__line {
  position: relative;
}

.academy-menu-button__line::before,
.academy-menu-button__line::after {
  position: absolute;
  left: 0;
}

.academy-menu-button__line::before {
  top: -6px;
}

.academy-menu-button__line::after {
  top: 6px;
}

.academy-menu-button__text {
  font-size: 13px;
}

.academy-reading-progress {
  height: 3px;
  background: transparent;
}

.academy-reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--academy-blue), var(--academy-cyan), var(--academy-green));
}

.academy-main {
  min-height: 64vh;
}

.academy-section,
.academy-band,
.academy-hero,
.academy-lesson-hero,
.academy-lesson-body,
.academy-lesson-nav,
.academy-footer__inner {
  width: min(var(--academy-max), calc(100% - 44px));
  margin-inline: auto;
}

.academy-hero {
  padding: 70px 0 54px;
}

.academy-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 42px;
  align-items: center;
}

.academy-kicker,
.academy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--academy-soft-2);
  color: var(--academy-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.academy-kicker::before,
.academy-pill::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--academy-cyan);
  content: "";
}

.academy-hero h1,
.academy-lesson-hero h1,
.academy-visible-title {
  display: block;
  margin: 18px 0 18px;
  color: var(--academy-ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 900;
}

.academy-hero__lead,
.academy-lesson-hero__lead {
  max-width: 720px;
  margin: 0;
  color: #40566f;
  font-size: 18px;
  line-height: 1.95;
}

.academy-hero__actions,
.academy-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.academy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--academy-blue);
  background: var(--academy-blue);
  color: var(--academy-white);
  font-weight: 800;
  line-height: 1.2;
}

.academy-button:hover,
.academy-button:focus-visible {
  background: var(--academy-blue-dark);
  border-color: var(--academy-blue-dark);
}

.academy-nav__cta,
.academy-button:not(.academy-button--ghost),
.academy-hero__cta--blue,
.academy-hero__cta--green,
.academy-diagnosis__button,
.academy-footer__cta {
  color: var(--academy-white) !important;
}

.academy-nav__cta *,
.academy-button:not(.academy-button--ghost) *,
.academy-hero__cta--blue *,
.academy-hero__cta--green *,
.academy-diagnosis__button *,
.academy-footer__cta * {
  color: inherit !important;
}

.academy-button--ghost {
  background: var(--academy-white);
  color: var(--academy-blue-dark);
  border-color: var(--academy-line);
}

.academy-button--ghost:hover,
.academy-button--ghost:focus-visible {
  background: var(--academy-soft);
  color: var(--academy-blue-dark);
  border-color: var(--academy-cyan);
}

.academy-hero__visual {
  position: relative;
  padding: 24px;
  border: 1px solid var(--academy-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 168, 199, .12), transparent 36%),
    linear-gradient(180deg, #ffffff, #f6f9fd);
  box-shadow: var(--academy-shadow);
}

.academy-map {
  display: grid;
  gap: 12px;
}

.academy-map__row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
}

.academy-map__num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--academy-ink);
  color: var(--academy-white);
  font-weight: 900;
}

.academy-map__box {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--academy-line);
  border-radius: 8px;
  background: var(--academy-white);
}

.academy-map__box strong,
.academy-map__box span {
  display: block;
}

.academy-map__box strong {
  line-height: 1.35;
}

.academy-map__box span {
  color: var(--academy-muted);
  font-size: 13px;
  line-height: 1.5;
}

.academy-section {
  padding: 62px 0;
}

.academy-band {
  padding: 62px 0;
}

.academy-section__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.academy-section__head h2,
.academy-content h2,
.academy-sidebar h2 {
  margin: 0 0 12px;
  color: var(--academy-ink);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.35;
  letter-spacing: 0;
}

.academy-section__head p {
  margin: 0;
  color: var(--academy-muted);
}

.academy-card-grid,
.academy-feature-grid,
.academy-plan-grid,
.academy-diff-grid {
  display: grid;
  gap: 18px;
}

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

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

.academy-plan-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.academy-card,
.academy-feature,
.academy-diff-card,
.academy-plan-card,
.academy-note,
.academy-important,
.academy-cta,
.academy-checklist,
.academy-faq,
.academy-definition,
.academy-flow,
.academy-summary-box {
  border: 1px solid var(--academy-line);
  border-radius: 8px;
  background: var(--academy-white);
}

.academy-card,
.academy-feature,
.academy-diff-card,
.academy-plan-card {
  padding: 22px;
}

.academy-card:hover,
.academy-plan-card:hover {
  border-color: rgba(8, 168, 199, .55);
  box-shadow: 0 14px 34px rgba(7, 23, 43, .08);
}

.academy-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.academy-card__num {
  color: var(--academy-blue);
  font-weight: 900;
  font-size: 13px;
}

.academy-card__time {
  color: var(--academy-muted);
  font-size: 12px;
  font-weight: 700;
}

.academy-card h3,
.academy-feature h3,
.academy-diff-card h3,
.academy-plan-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0;
}

.academy-card p,
.academy-feature p,
.academy-diff-card p,
.academy-plan-card p {
  margin: 0;
  color: var(--academy-muted);
  font-size: 15px;
}

.academy-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--academy-blue-dark);
  font-weight: 800;
}

.academy-diff-table-wrap,
.academy-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--academy-line);
  border-radius: 8px;
  background: var(--academy-white);
}

.academy-page table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.academy-page th,
.academy-page td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--academy-line);
  vertical-align: top;
  text-align: left;
}

.academy-page th {
  background: #eef5fb;
  color: var(--academy-blue-dark);
  font-weight: 900;
}

.academy-page tr:last-child td {
  border-bottom: 0;
}

.academy-lesson-hero {
  padding: 42px 0 34px;
}

.academy-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--academy-muted);
  font-size: 13px;
}

.academy-breadcrumb a {
  color: var(--academy-blue-dark);
  font-weight: 700;
}

.academy-breadcrumb span + span::before,
.academy-breadcrumb a + span::before,
.academy-breadcrumb a + a::before {
  margin-right: 8px;
  color: #9caabd;
  content: "/";
}

.academy-lesson-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.academy-progress {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
  margin-top: 28px;
}

.academy-progress__step {
  height: 8px;
  border-radius: 999px;
  background: #d9e4ef;
}

.academy-progress__step.is-complete,
.academy-progress__step.is-current {
  background: var(--academy-blue);
}

.academy-progress__step.is-current {
  box-shadow: 0 0 0 4px rgba(8, 168, 199, .14);
}

.academy-lesson-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 44px;
  align-items: start;
  padding: 18px 0 70px;
}

.academy-content {
  min-width: 0;
}

.academy-content > *:first-child {
  margin-top: 0;
}

.academy-content h2 {
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid var(--academy-line);
}

.academy-content h3 {
  margin: 34px 0 10px;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0;
}

.academy-content p,
.academy-content li {
  color: #273c54;
}

.academy-content p {
  margin: 0 0 18px;
}

.academy-content ul,
.academy-content ol {
  margin: 0 0 22px;
  padding-left: 1.35em;
}

.academy-content li + li {
  margin-top: 8px;
}

.academy-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.academy-toc,
.academy-side-cta {
  border: 1px solid var(--academy-line);
  border-radius: 8px;
  background: var(--academy-white);
  padding: 18px;
}

.academy-toc h2,
.academy-side-cta h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.academy-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.academy-toc a {
  color: #465b73;
  font-size: 14px;
  font-weight: 700;
}

.academy-toc a[aria-current="true"] {
  color: var(--academy-blue);
}

.academy-side-cta p {
  margin: 0 0 14px;
  color: var(--academy-muted);
  font-size: 14px;
  line-height: 1.7;
}

.academy-note,
.academy-important,
.academy-definition,
.academy-summary-box,
.academy-official-update {
  padding: 22px;
  margin: 26px 0;
}

.academy-note {
  background: var(--academy-soft);
}

.academy-important {
  border-left: 5px solid var(--academy-cyan);
  background: #f4fbfd;
}

.academy-important h2,
.academy-important h3,
.academy-note h2,
.academy-note h3,
.academy-definition h2,
.academy-definition h3,
.academy-summary-box h2,
.academy-summary-box h3 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.academy-checklist {
  padding: 22px;
  margin: 30px 0;
}

.academy-checklist h2,
.academy-faq h2,
.academy-cta h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.academy-checklist ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-checklist li {
  position: relative;
  padding-left: 30px;
}

.academy-checklist li::before {
  position: absolute;
  top: .45em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--academy-green);
  color: var(--academy-white);
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.academy-faq {
  padding: 22px;
  margin: 34px 0;
}

.academy-faq details {
  border-top: 1px solid var(--academy-line);
  padding: 14px 0;
}

.academy-faq details:first-of-type {
  border-top: 0;
}

.academy-faq summary {
  cursor: pointer;
  color: var(--academy-ink);
  font-weight: 900;
}

.academy-faq p {
  margin: 12px 0 0;
}

.academy-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  margin: 40px 0;
  background:
    linear-gradient(135deg, rgba(13, 99, 184, .08), transparent 48%),
    var(--academy-white);
}

.academy-cta p {
  margin: 0;
  color: var(--academy-muted);
}

.academy-lesson-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 70px;
}

.academy-lesson-nav a {
  min-height: 86px;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--academy-line);
  border-radius: 8px;
  background: var(--academy-white);
}

.academy-lesson-nav span {
  color: var(--academy-muted);
  font-size: 13px;
  font-weight: 700;
}

.academy-lesson-nav strong {
  color: var(--academy-ink);
  line-height: 1.35;
}

.academy-footer {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: #0b2748;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
  border-top: 2px solid rgba(12, 95, 170, .16);
}

.academy-footer__inner {
  width: min(1280px, calc(100% - 16px));
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-inline: auto;
  padding: 24px 0 12px;
}

.academy-footer__brand {
  display: grid;
  gap: 6px;
  justify-self: start;
  color: #0b3769;
}

.academy-footer__label,
.academy-footer__name,
.academy-footer__copy {
  margin: 0;
}

.academy-footer__label {
  color: rgba(21, 59, 99, .74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.academy-footer__name {
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.25;
}

.academy-footer__copy {
  max-width: 560px;
  color: #153b63;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.academy-footer__logo {
  display: block;
  width: min(260px, 68vw);
  height: auto;
  object-fit: contain;
}

.academy-footer__mark {
  display: block;
  width: 52px;
  height: 52px;
}

.academy-footer__mark svg,
.academy-footer__cta svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-footer__brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.academy-footer__brand-text strong {
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.25;
}

.academy-footer__brand-text small {
  color: #153b63;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.academy-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: flex-start;
  color: #17385a;
  font-size: 14px;
  font-weight: 900;
}

.academy-footer__nav a {
  position: relative;
  color: #17385a;
  line-height: 1.35;
}

.academy-footer__nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 99px;
  background: rgba(12, 95, 170, .32);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
  content: "";
}

.academy-footer__nav a:hover::after,
.academy-footer__nav a:focus-visible::after {
  transform: scaleX(1);
}

.academy-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  justify-self: stretch;
  min-height: 54px;
  padding: 12px 18px;
  border: 2px solid rgba(28, 123, 74, .72);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, .08), transparent),
    #248752;
  color: #fffdf3;
  font-family: var(--academy-mincho);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.2;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .18),
    0 7px 13px rgba(22, 41, 67, .16);
}

.academy-footer__cta svg {
  width: 28px;
  height: 28px;
}

.academy-footer__cta span {
  margin-left: auto;
  color: inherit;
  font-size: 28px;
  line-height: 1;
}

.academy-footer__operator {
  width: min(1280px, calc(100% - 16px));
  margin: 0 auto;
  padding: 0 0 12px;
  color: rgba(23, 56, 90, .66);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

@media (min-width: 760px) {
  .academy-footer__inner {
    width: min(1280px, calc(100% - 44px));
    grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
    gap: 22px;
    padding: 22px 0 8px;
  }

  .academy-footer__brand {
    display: grid;
  }

  .academy-footer__logo {
    width: 280px;
  }

  .academy-footer__nav {
    justify-content: center;
    gap: 12px 24px;
    font-size: 14px;
  }

  .academy-footer__cta {
    justify-self: end;
    width: 164px;
  }

  .academy-footer__operator {
    width: min(1280px, calc(100% - 44px));
    padding-bottom: 10px;
  }
}

@media (min-width: 1180px) {
  .academy-footer__inner {
    min-height: 78px;
    grid-template-columns: minmax(360px, 560px) minmax(0, 1fr);
    gap: 28px;
    padding: 18px 0 4px;
  }

  .academy-footer__nav {
    justify-content: flex-end;
  }

  .academy-footer__brand-text strong {
    font-size: 20px;
  }

  .academy-footer__logo {
    width: 300px;
  }

  .academy-footer__nav {
    gap: 28px;
    font-size: 15px;
  }

  .academy-footer__cta {
    width: 174px;
    min-height: 54px;
  }
}

@media (max-width: 1024px) {
  .academy-menu-button {
    display: inline-flex;
  }

  .academy-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 18px 22px 28px;
    border-bottom: 1px solid var(--academy-line);
    background: var(--academy-white);
    box-shadow: 0 24px 40px rgba(7, 23, 43, .12);
  }

  .academy-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .academy-nav a {
    padding: 12px 0;
  }

  .academy-hero__grid,
  .academy-lesson-body {
    grid-template-columns: 1fr;
  }

  .academy-sidebar {
    position: static;
    order: -1;
  }

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

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

@media (max-width: 760px) {
  .academy-section,
  .academy-band,
  .academy-hero,
  .academy-lesson-hero,
  .academy-lesson-body,
  .academy-lesson-nav,
  .academy-footer__inner {
    width: min(100% - 16px, var(--academy-max));
  }

  .academy-header__inner {
    min-height: 64px;
    padding-inline: 8px;
  }

  .academy-nav {
    inset: 64px 0 auto 0;
  }

  .academy-brand__text span {
    display: none;
  }

  .academy-hero {
    padding: 46px 0 34px;
  }

  .academy-hero h1,
  .academy-lesson-hero h1,
  .academy-visible-title {
    font-size: 34px;
  }

  .academy-hero__lead,
  .academy-lesson-hero__lead {
    font-size: 16px;
  }

  .academy-hero__visual {
    padding: 16px;
  }

  .academy-card-grid,
  .academy-feature-grid,
  .academy-diff-grid,
  .academy-plan-grid,
  .academy-lesson-nav,
  .academy-footer__inner,
  .academy-footer__nav,
  .academy-cta {
    grid-template-columns: 1fr;
  }

  .academy-card,
  .academy-feature,
  .academy-diff-card,
  .academy-plan-card,
  .academy-note,
  .academy-important,
  .academy-checklist,
  .academy-faq,
  .academy-cta {
    padding: 18px;
  }

  .academy-progress {
    gap: 4px;
  }

  .academy-map__row {
    grid-template-columns: 38px 1fr;
  }

  .academy-map__num {
    width: 38px;
    height: 38px;
  }
}

/* Notebook-style academy header and first-view MV. */
.academy-header--sketch {
  background:
    linear-gradient(rgba(231, 219, 191, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 219, 191, .35) 1px, transparent 1px),
    rgba(250, 244, 230, .92);
  background-size: 22px 22px;
  border-bottom-color: rgba(8, 42, 78, .16);
  box-shadow: none;
}

.academy-header--sketch .academy-header__inner {
  max-width: 1540px;
  min-height: 74px;
}

.academy-header--sketch .academy-brand {
  gap: 16px;
}

.academy-brand__mark--book {
  width: 66px;
  height: 54px;
  border-radius: 0;
  background: transparent;
  color: #0b3769;
}

.academy-brand__mark--book svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-header--sketch .academy-brand__text {
  display: flex;
  align-items: baseline;
  gap: 0;
  min-width: max-content;
}

.academy-header--sketch .academy-brand__text span,
.academy-header--sketch .academy-brand__text strong {
  position: relative;
  color: #0b3769;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.3;
}

.academy-header--sketch .academy-brand__text strong::after {
  position: absolute;
  left: -4px;
  right: -8px;
  bottom: -8px;
  height: 2px;
  background: #0b3769;
  opacity: .75;
  transform: rotate(-.6deg);
  content: "";
}

.academy-header--sketch .academy-nav {
  color: #0b2748;
  font-size: 15px;
  gap: 20px;
}

.academy-header--sketch .academy-nav a {
  border-bottom-color: transparent;
}

.academy-header--sketch .academy-nav__cta {
  background: #0b5592;
  border-color: #0b5592 !important;
  box-shadow: 0 5px 0 rgba(9, 39, 71, .16);
}

.academy-header--top-reveal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(-112%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .56s cubic-bezier(.16, 1, .3, 1),
    opacity .38s ease,
    box-shadow .38s ease;
  will-change: transform, opacity;
}

.academy-header--top-reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(25, 38, 51, .08);
}

.academy-hero--sketch {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #07172b;
  background:
    radial-gradient(circle at 6% 100%, rgba(65, 119, 160, .12), transparent 13%),
    radial-gradient(circle at 100% 100%, rgba(54, 126, 94, .12), transparent 12%),
    linear-gradient(rgba(222, 211, 187, .46) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .46) 1px, transparent 1px),
    #fbf3df;
  background-size: auto, auto, 22px 22px, 22px 22px, auto;
  border-bottom: 1px solid rgba(8, 42, 78, .12);
}

.academy-hero--sketch::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 54px;
  background:
    linear-gradient(178deg, transparent 0 38%, rgba(209, 192, 156, .26) 39% 48%, transparent 49%),
    linear-gradient(2deg, rgba(143, 112, 72, .2), transparent 64%);
  content: "";
  pointer-events: none;
}

.academy-hero__canvas {
  position: relative;
  width: min(1620px, calc(100% - 72px));
  min-height: 866px;
  margin: 0 auto;
  padding: 58px 0 112px;
}

.academy-hero__edge-strip {
  position: absolute;
  z-index: 1;
  top: 96px;
  left: -64px;
  width: 70px;
  height: auto;
  opacity: .58;
  filter: drop-shadow(10px 14px 13px rgba(49, 34, 16, .12));
  pointer-events: none;
  transform: rotate(-1.5deg);
}

.academy-hero__left {
  position: relative;
  z-index: 3;
  width: 52%;
  max-width: 720px;
  padding-top: 6px;
}

.academy-hero__mini-brand {
  display: inline-grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 0 0 56px 16px;
  color: #0b3769;
}

.academy-hero__mini-brand-mark {
  display: block;
  width: 76px;
  height: 66px;
}

.academy-hero__mini-brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-hero__mini-brand-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, .72)) saturate(1.04);
}

.academy-hero__mini-brand-text {
  position: relative;
  display: inline-block;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: 29px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.25;
  white-space: nowrap;
}

.academy-hero__mini-brand-text::after {
  position: absolute;
  left: -4px;
  right: -10px;
  bottom: -14px;
  height: 2px;
  background: rgba(11, 55, 105, .76);
  transform: rotate(-.5deg);
  content: "";
}

.academy-hero__tagline {
  position: relative;
  display: inline-block;
  margin: 0 0 30px 96px;
  color: #111;
  font-family: var(--academy-mincho);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.5;
  transform: rotate(-2deg);
}

.academy-hero__tagline::after {
  position: absolute;
  left: -8px;
  right: -24px;
  bottom: -10px;
  height: 8px;
  background: linear-gradient(90deg, #0d63b8, #0d63b8 70%, transparent);
  border-radius: 99px;
  transform: rotate(-.5deg);
  content: "";
}

.academy-hero--sketch .academy-visible-title {
  margin: 0 0 0 48px;
  color: #050505;
  font-family: var(--academy-mincho);
  font-size: clamp(54px, 4.2vw, 72px);
  font-weight: 900;
  letter-spacing: .015em;
  line-height: 1.25;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .55);
}

.academy-hero--sketch .academy-visible-title span {
  display: block;
}

.academy-hero--sketch .academy-visible-title .academy-hero__title-blue {
  color: #0b3769;
}

.academy-hero--sketch .academy-visible-title span:last-child {
  position: relative;
}

.academy-hero--sketch .academy-visible-title span:last-child::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 32%;
  height: 7px;
  background: rgba(43, 103, 179, .45);
  border-radius: 99px;
  transform: rotate(-1deg);
  content: "";
}

.academy-hero--sketch .academy-hero__lead {
  max-width: 600px;
  margin: 32px 0 18px 48px;
  color: #162944;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.65;
}

.academy-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 0 48px;
}

.academy-hero__badges span {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1.6px solid rgba(8, 42, 78, .58);
  border-radius: 7px;
  background: rgba(255, 251, 240, .72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .68);
  color: #0b2748;
  font-size: 17px;
  font-weight: 900;
}

.academy-hero__badges svg,
.academy-hero__cta svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-hero__asset-stickers {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  max-width: 440px;
  margin: 14px 0 0 66px;
  pointer-events: none;
}

.academy-hero__asset-sticker {
  display: block;
  width: 134px;
  height: auto;
  filter: drop-shadow(8px 10px 12px rgba(55, 39, 17, .18));
}

.academy-hero__asset-sticker--free {
  transform: rotate(-4deg);
}

.academy-hero__asset-sticker--chapters {
  width: 126px;
  margin-left: -16px;
  transform: rotate(5deg) translateY(6px);
}

.academy-hero__note {
  position: absolute;
  z-index: 4;
  top: 62px;
  left: 50.5%;
  width: 388px;
  min-height: 508px;
  padding: 58px 38px 34px;
  transform: rotate(-3.4deg);
  border: 1px solid rgba(199, 161, 64, .45);
  background:
    repeating-linear-gradient(180deg, transparent 0 39px, rgba(123, 115, 94, .25) 40px),
    linear-gradient(90deg, rgba(255, 247, 192, .82), rgba(255, 245, 180, .96));
  box-shadow:
    22px 24px 0 rgba(238, 211, 117, .58),
    36px 40px 24px rgba(70, 48, 22, .18);
}

.academy-hero__note-paper {
  position: absolute;
  z-index: 0;
  inset: -36px -44px -28px -32px;
  width: calc(100% + 76px);
  height: calc(100% + 64px);
  object-fit: cover;
  opacity: .14;
  pointer-events: none;
}

.academy-hero__note > :not(.academy-hero__note-paper) {
  position: relative;
  z-index: 2;
}

.academy-hero__note::before {
  position: absolute;
  inset: -12px auto auto -16px;
  width: 100%;
  height: 100%;
  background: rgba(255, 236, 153, .55);
  border: 1px solid rgba(204, 174, 83, .25);
  transform: rotate(-2deg);
  content: "";
  z-index: -1;
}

.academy-hero__tape {
  position: absolute;
  top: -25px;
  left: 142px;
  width: 134px;
  height: 46px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, .18) 9% 15%, transparent 16%),
    rgba(20, 96, 158, .75);
  transform: rotate(-1deg);
}

.academy-hero__clip {
  position: absolute;
  top: -4px;
  left: 46px;
  width: 42px;
  height: 94px;
  border: 5px solid rgba(37, 37, 37, .8);
  border-bottom-color: transparent;
  border-radius: 22px 22px 0 0;
  transform: rotate(12deg);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .45);
}

.academy-hero__note-title {
  margin: 0 0 24px;
  color: #0d0d0d;
  font-family: var(--academy-mincho);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.academy-hero__note-title::after {
  display: block;
  width: 220px;
  height: 5px;
  margin: 5px auto 0;
  background: #dcae21;
  border-radius: 99px;
  content: "";
}

.academy-hero__note ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #171717;
  font-family: var(--academy-mincho);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.academy-hero__note li span {
  display: inline-block;
  min-width: 88px;
  color: #0b0b0b;
}

.academy-hero__ellipsis {
  padding-left: 120px;
  letter-spacing: .4em;
}

.academy-hero__diagram {
  position: absolute;
  z-index: 3;
  top: 82px;
  right: 8px;
  width: 400px;
  min-height: 595px;
  color: #0d4d8b;
}

.academy-hero__diagram-img {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 3;
  display: block;
  width: 430px;
  max-width: none;
  height: auto;
  filter: drop-shadow(12px 16px 18px rgba(50, 34, 15, .14));
  pointer-events: none;
  transform: rotate(1.5deg);
}

.academy-hero__diagram-img ~ * {
  opacity: 0;
}

.academy-hero__diagram-copy {
  margin: 0 0 12px 105px;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
  transform: rotate(-4deg);
}

.academy-hero__circle {
  position: absolute;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 251, 240, .4);
  transform: rotate(-5deg);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .45) inset;
}

.academy-hero__circle strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
}

.academy-hero__circle small {
  display: block;
  margin-top: 8px;
  color: #1d2940;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.academy-hero__circle--seo {
  top: 134px;
  left: 32px;
  width: 138px;
  height: 138px;
}

.academy-hero__circle--llmo {
  top: 86px;
  left: 174px;
  width: 158px;
  height: 158px;
  color: #2b7a57;
}

.academy-hero__circle--aio {
  top: 210px;
  right: 5px;
  width: 132px;
  height: 132px;
}

.academy-hero__circle::after {
  position: absolute;
  width: 3px;
  height: 85px;
  background: currentColor;
  transform-origin: top center;
  content: "";
}

.academy-hero__circle--seo::after {
  bottom: -74px;
  right: 34px;
  transform: rotate(-34deg);
}

.academy-hero__circle--llmo::after {
  bottom: -86px;
  left: 70px;
  transform: rotate(8deg);
}

.academy-hero__circle--aio::after {
  bottom: -64px;
  left: 30px;
  transform: rotate(33deg);
}

.academy-hero__chosen {
  position: absolute;
  top: 335px;
  left: 78px;
  width: 260px;
  min-height: 104px;
  display: grid;
  place-items: center;
  border: 5px double #0d63b8;
  border-radius: 50%;
  background: rgba(255, 252, 243, .56);
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-5deg);
}

.academy-hero__mini-labels {
  position: absolute;
  z-index: 2;
  top: 472px;
  left: 22px;
  display: flex;
  gap: 14px;
}

.academy-hero__mini-labels span {
  padding: 8px 13px;
  border: 2px dashed currentColor;
  background: rgba(255, 252, 243, .46);
  color: #17385a;
  font-family: var(--academy-mincho);
  font-size: 18px;
  font-weight: 900;
  transform: rotate(-2deg);
}

.academy-hero__mini-labels span:first-child {
  color: #3b8060;
}

.academy-hero__mini-labels span:last-child {
  color: #9b7a21;
}

.academy-hero__check {
  position: absolute;
  z-index: 1;
  right: -2px;
  bottom: -82px;
  width: 316px;
  padding: 18px 22px 17px 62px;
  background: rgba(243, 224, 178, .7);
  box-shadow: 0 8px 18px rgba(77, 53, 17, .12);
  transform: rotate(-2deg);
}

.academy-hero__check::before,
.academy-hero__check::after {
  position: absolute;
  left: 26px;
  width: 22px;
  height: 22px;
  border: 3px solid #0d4d8b;
  content: "";
}

.academy-hero__check::before {
  top: 22px;
}

.academy-hero__check::after {
  top: 62px;
}

.academy-hero__check p {
  margin: 0;
  color: #17385a;
  font-family: var(--academy-mincho);
  font-size: 16px;
  font-weight: 900;
}

.academy-hero__check p + p {
  margin-top: 13px;
}

.academy-hero__doodles {
  position: absolute;
  z-index: 1;
  fill: none;
  stroke: rgba(9, 48, 90, .72);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .85;
}

.academy-hero__doodles--left {
  left: -20px;
  bottom: 84px;
  width: 240px;
  height: 140px;
}

.academy-hero__doodles--right {
  right: -18px;
  bottom: 82px;
  width: 220px;
  height: 150px;
}

.academy-hero__cta-row {
  position: absolute;
  z-index: 6;
  left: 150px;
  right: 38px;
  bottom: 116px;
  display: grid;
  grid-template-columns: 1.02fr 1.1fr .85fr;
  gap: 26px;
}

.academy-hero__cta {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 26px;
  border-radius: 8px;
  border: 2px solid rgba(7, 23, 43, .18);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 10px 18px rgba(31, 31, 31, .18), inset 0 0 0 2px rgba(255, 255, 255, .1);
  transform: rotate(-.6deg);
}

.academy-hero__cta span {
  font-size: 38px;
  font-weight: 400;
}

.academy-hero__cta--blue {
  background: #0b4d86;
}

.academy-hero__cta--green {
  background: #3b9b63;
}

.academy-hero__cta--white {
  background: rgba(255, 252, 246, .88);
  color: #0b2748;
}

.academy-hero__cta:hover,
.academy-hero__cta:focus-visible {
  transform: translateY(-2px) rotate(-.6deg);
  filter: saturate(1.06);
}

.academy-overview {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px 8px 42px;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
}

.academy-overview__paper {
  position: relative;
  isolation: isolate;
  max-width: 560px;
  margin: 0 auto;
  padding: 44px 22px 24px 34px;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: var(--academy-overview-paper-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-shadow:
    0 18px 28px rgba(69, 49, 19, .1);
}

.academy-overview__paper::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  content: "";
  pointer-events: none;
}

.academy-overview__clip {
  display: none;
}

.academy-overview__edge {
  display: none;
}

.academy-overview__edge span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(203, 184, 142, .5);
  box-shadow: 8px 0 0 rgba(255, 249, 231, .9);
}

.academy-overview__copy,
.academy-overview__illustration {
  position: relative;
  z-index: 2;
}

.academy-overview__copy h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: clamp(25px, 8vw, 34px);
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.25;
}

.academy-overview__copy h2::after {
  position: absolute;
  left: -4px;
  right: -8px;
  bottom: -8px;
  height: 4px;
  background: rgba(12, 95, 170, .42);
  border-radius: 99px;
  transform: rotate(-1.2deg);
  content: "";
}

.academy-overview__copy p {
  margin: 0;
  color: #203047;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.9;
}

.academy-overview__illustration {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
  width: min(100%, 310px);
  margin: 24px 0 0 auto;
}

.academy-overview__laptop-img,
.academy-overview__plant-img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: saturate(.96) contrast(1.16) brightness(.94);
}

.academy-overview__laptop-img {
  width: min(68%, 220px);
  margin-bottom: 2px;
}

.academy-overview__plant-img {
  width: min(27%, 86px);
  margin-left: -8px;
}

.academy-overview__laptop-img[src^="data:image"],
.academy-overview__plant-img[src^="data:image"] {
  height: auto;
}

.academy-learning {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px 8px 50px;
  overflow: hidden;
  color: #0b2748;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
}

.academy-learning__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.academy-learning h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto 24px;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: clamp(25px, 7.3vw, 34px);
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.25;
  text-align: center;
}

.academy-learning h2::after {
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -9px;
  height: 4px;
  background: rgba(12, 95, 170, .42);
  border-radius: 99px;
  transform: rotate(-.8deg);
  content: "";
}

.academy-learning__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.academy-learning-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 138px;
  padding: 20px 18px;
  border: 1.8px solid rgba(19, 45, 73, .26);
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 255, 255, .34), rgba(255, 255, 255, .12)),
    rgba(255, 249, 231, .72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.academy-learning-card__icon {
  width: 62px;
  height: 62px;
  color: #174c7f;
}

.academy-learning-card__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.08);
}

.academy-learning-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-learning__tools svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-learning-card h3 {
  margin: 0 0 9px;
  color: #123459;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.45;
}

.academy-learning-card p {
  margin: 0;
  color: #334a63;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.85;
}

.academy-learning__tools {
  position: absolute;
  z-index: 1;
  color: rgba(16, 55, 90, .52);
  pointer-events: none;
}

.academy-learning__tool-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: .64;
  filter: saturate(.88) contrast(1.04);
}

.academy-learning__tool-img--plant {
  opacity: .5;
  filter: saturate(.88) contrast(1.02);
}

.academy-learning__tools--top {
  top: -18px;
  left: -4px;
  width: 118px;
  height: auto;
  opacity: .58;
}

.academy-learning__tools--left,
.academy-learning__tools--right {
  display: none;
}

.academy-difference {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px 8px 50px;
  overflow: hidden;
  color: #0b2748;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
}

.academy-difference__inner {
  max-width: 560px;
  margin: 0 auto;
}

.academy-difference h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto 26px;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.25;
  text-align: center;
}

.academy-difference h2::after {
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -9px;
  height: 4px;
  background: rgba(12, 95, 170, .42);
  border-radius: 99px;
  transform: rotate(-.7deg);
  content: "";
}

.academy-difference__layout {
  display: grid;
  gap: 22px;
}

.academy-difference__table {
  display: grid;
  gap: 12px;
}

.academy-difference-row {
  --diff-color: #0d63b8;
  --diff-soft: rgba(13, 99, 184, .08);
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1.8px solid rgba(19, 45, 73, .2);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, .32), rgba(255, 255, 255, .12)),
    repeating-linear-gradient(180deg, transparent 0 30px, rgba(42, 77, 113, .05) 31px),
    rgba(255, 249, 231, .72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.academy-difference-row--llmo {
  --diff-color: #2f8a61;
  --diff-soft: rgba(47, 138, 97, .1);
}

.academy-difference-row__label {
  width: min(100%, 184px);
  padding: 11px 14px;
  border: 2.5px solid var(--diff-color);
  border-radius: 7px;
  background: color-mix(in srgb, var(--diff-color) 9%, transparent);
  color: var(--diff-color);
  text-align: center;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, .55) inset,
    0 2px 0 rgba(7, 23, 43, .08);
}

@supports not (background: color-mix(in srgb, #000 10%, transparent)) {
  .academy-difference-row__label {
    background: var(--diff-soft);
  }
}

.academy-difference-row__label strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}

.academy-difference-row__label span {
  display: block;
  margin-top: 7px;
  color: #17385a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.academy-difference-row p {
  margin: 0;
  color: #21384f;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.8;
}

.academy-difference-row ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.25em;
  color: #21384f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.academy-difference-row li::marker {
  color: #17385a;
}

.academy-difference__diagram {
  position: relative;
  width: min(100%, 330px);
  margin: 0 auto;
  color: #0d63b8;
}

.academy-difference__diagram-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.04);
}

.academy-difference__arrows {
  position: absolute;
  inset: 6px 20px auto 20px;
  width: calc(100% - 40px);
  height: 208px;
  fill: none;
  overflow: visible;
}

.academy-difference__arrow {
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: url(#academy-arrow-blue);
}

.academy-difference__arrow--blue {
  stroke: #0d63b8;
}

.academy-difference__arrow--green {
  stroke: #2f8a61;
  marker-start: url(#academy-arrow-green);
  marker-end: url(#academy-arrow-green);
}

#academy-arrow-blue path {
  fill: #0d63b8;
}

#academy-arrow-green path {
  fill: #2f8a61;
}

.academy-difference__circle {
  position: absolute;
  display: grid;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 252, 243, .66);
  color: #0d63b8;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .5) inset;
}

.academy-difference__circle--seo {
  top: 0;
  left: calc(50% - 43px);
  width: 86px;
  height: 86px;
}

.academy-difference__circle--llmo {
  top: 128px;
  left: 18px;
  width: 92px;
  height: 92px;
  color: #2f8a61;
  font-size: 21px;
}

.academy-difference__circle--aio {
  top: 128px;
  right: 18px;
  width: 92px;
  height: 92px;
}

.academy-difference__diagram p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  min-height: 54px;
  margin: 0;
  border: 4px double rgba(23, 56, 90, .55);
  border-radius: 50%;
  background: rgba(255, 252, 243, .6);
  color: #17385a;
  font-family: var(--academy-mincho);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  transform: rotate(-1.8deg);
}

.academy-curriculum {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px 8px 50px;
  overflow: hidden;
  color: #0b2748;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
}

.academy-curriculum__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.academy-curriculum h2 {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 0 auto 26px;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.25;
  text-align: center;
}

.academy-curriculum h2::after {
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -9px;
  height: 4px;
  background: rgba(12, 95, 170, .42);
  border-radius: 99px;
  transform: rotate(-.7deg);
  content: "";
}

.academy-curriculum__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.academy-curriculum-row {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 13px 13px 14px;
  border: 1px solid rgba(210, 178, 101, .45);
  border-radius: 5px;
  background:
    linear-gradient(rgba(255, 255, 255, .28), rgba(255, 255, 255, .08)),
    repeating-linear-gradient(180deg, transparent 0 26px, rgba(137, 111, 58, .08) 27px),
    rgba(250, 230, 167, .82);
  box-shadow:
    6px 6px 0 rgba(230, 199, 111, .35),
    0 8px 16px rgba(73, 53, 20, .08);
}

.academy-curriculum-row::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(123, 99, 51, .12);
  content: "";
}

.academy-curriculum-row__main {
  display: grid;
  grid-template-columns: 26px auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #123459;
}

.academy-curriculum-row__book {
  width: 24px;
  height: 24px;
  color: #174c7f;
}

.academy-curriculum-row__book svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-curriculum-row__num {
  white-space: nowrap;
  color: #17385a;
  font-size: 14px;
  font-weight: 900;
}

.academy-curriculum-row__title {
  min-width: 0;
  color: #1b2e44;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.academy-curriculum-row__button {
  justify-self: start;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 2px solid rgba(23, 56, 90, .34);
  border-radius: 7px;
  background: rgba(255, 252, 243, .54);
  color: #17385a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
}

.academy-curriculum-row__main:hover .academy-curriculum-row__title,
.academy-curriculum-row__main:focus-visible .academy-curriculum-row__title,
.academy-curriculum-row__button:hover,
.academy-curriculum-row__button:focus-visible {
  color: #0d63b8;
}

.academy-curriculum__decor {
  position: absolute;
  z-index: 1;
  color: rgba(16, 55, 90, .52);
  pointer-events: none;
}

.academy-curriculum__decor svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-curriculum__decor-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: .68;
  filter: saturate(.9) contrast(1.04);
}

.academy-curriculum__decor--tools {
  top: -30px;
  left: -24px;
  width: 112px;
  height: auto;
  opacity: 1;
}

.academy-curriculum__tape {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 24px;
  background: rgba(215, 187, 138, .52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
  pointer-events: none;
}

.academy-curriculum__tape--left {
  left: -9px;
  bottom: -7px;
  transform: rotate(-38deg);
}

.academy-curriculum__tape--right {
  top: 46px;
  right: -14px;
  transform: rotate(47deg);
}

.academy-decision {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px 8px 50px;
  overflow: hidden;
  color: #0b2748;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
}

.academy-decision__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.academy-decision h2 {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 26px;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: clamp(24px, 7.2vw, 34px);
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.35;
  text-align: center;
}

.academy-decision h2::after {
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -9px;
  height: 4px;
  background: rgba(12, 95, 170, .42);
  border-radius: 99px;
  transform: rotate(-.7deg);
  content: "";
}

.academy-decision__layout {
  display: grid;
  gap: 14px;
  align-items: center;
}

.academy-decision-card {
  position: relative;
  min-height: 292px;
  padding: 24px 18px 120px;
  overflow: hidden;
  border: 2px solid rgba(19, 45, 73, .22);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, .36), rgba(255, 255, 255, .12)),
    repeating-linear-gradient(180deg, transparent 0 30px, rgba(42, 77, 113, .05) 31px),
    rgba(255, 249, 231, .72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .58),
    0 10px 18px rgba(73, 53, 20, .08);
}

.academy-decision-card h3 {
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
  color: #17385a;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.academy-decision-card h3::after {
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -7px;
  height: 4px;
  border-radius: 99px;
  background: rgba(47, 138, 97, .45);
  transform: rotate(-1deg);
  content: "";
}

.academy-decision-card--outsourcing h3::after {
  background: rgba(12, 95, 170, .42);
}

.academy-decision-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-decision-card li {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #21384f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
}

.academy-decision-card li span {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border: 2.2px solid rgba(23, 56, 90, .55);
  border-radius: 2px;
  background: rgba(255, 252, 243, .56);
}

.academy-decision-card li span::after {
  position: absolute;
  left: 4px;
  top: -3px;
  width: 9px;
  height: 16px;
  border-right: 3px solid #0d63b8;
  border-bottom: 3px solid #0d63b8;
  transform: rotate(42deg);
  content: "";
}

.academy-decision-card__illust {
  position: absolute;
  right: 10px;
  bottom: 2px;
  width: 142px;
  height: 98px;
  color: rgba(23, 56, 90, .58);
}

.academy-decision-card__illust-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(.95) contrast(1.04);
}

.academy-decision-card__illust--desk {
  right: 8px;
  bottom: 6px;
  width: 142px;
  height: auto;
}

.academy-decision-card__illust svg,
.academy-decision__switch svg,
.academy-decision__doodle {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-decision-card__illust--meeting {
  right: -8px;
  bottom: -8px;
  width: 164px;
  height: auto;
  color: rgba(23, 56, 90, .56);
}

.academy-decision__switch {
  justify-self: center;
  align-self: center;
  width: 72px;
  height: 48px;
  color: rgba(23, 56, 90, .64);
  transform: rotate(90deg);
}

.academy-decision__doodle {
  display: none;
}

.academy-growth-plan {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px 8px 160px;
  overflow: hidden;
  color: #0b2748;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
}

.academy-growth-plan__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.academy-growth-plan h2 {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 28px;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.35;
  text-align: center;
}

.academy-growth-plan h2::after {
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -8px;
  height: 4px;
  border-radius: 99px;
  background: rgba(12, 95, 170, .45);
  transform: rotate(-.7deg);
  content: "";
}

.academy-growth-plan__grid {
  display: grid;
  gap: 14px;
}

.academy-growth-plan-card {
  position: relative;
  display: grid;
  grid-template-rows: 48px 96px 52px 90px minmax(0, 1fr);
  align-items: start;
  min-height: 304px;
  padding: 30px 18px 22px;
  overflow: hidden;
  border: 2px solid rgba(187, 151, 87, .32);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, .38), rgba(255, 255, 255, .16)),
    repeating-linear-gradient(180deg, transparent 0 29px, rgba(42, 77, 113, .045) 30px),
    rgba(255, 249, 231, .78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .64),
    0 10px 18px rgba(73, 53, 20, .08);
  text-align: center;
}

.academy-growth-plan-card::after {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(187, 151, 87, .5);
  border-bottom: 2px solid rgba(187, 151, 87, .5);
  border-radius: 0 0 3px 0;
  content: "";
}

.academy-growth-plan-card--recommended {
  border-color: rgba(44, 135, 91, .72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .7),
    0 0 0 3px rgba(44, 135, 91, .12),
    0 12px 20px rgba(42, 88, 56, .12);
}

.academy-growth-plan-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  min-width: 118px;
  padding: 7px 16px 8px;
  background: #248752;
  color: #fffdf3;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
  box-shadow: 0 5px 10px rgba(16, 75, 42, .2);
}

.academy-growth-plan-card h3 {
  min-height: 0;
  margin: 0;
  display: grid;
  place-items: center;
  color: #14375b;
  font-family: var(--academy-mincho);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.academy-growth-plan-card--recommended h3 {
  margin-top: 0;
}

.academy-growth-plan-card__icon {
  width: 64px;
  height: 64px;
  margin: 4px auto 14px;
  color: rgba(23, 56, 90, .48);
}

.academy-growth-plan-card__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.academy-growth-plan-card__icon--scope {
  width: 58px;
  height: 58px;
  margin-top: 0;
  margin-bottom: 20px;
}

.academy-growth-plan-card__icon svg,
.academy-growth-plan__leaf svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-growth-plan-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin: 0;
  color: #0b3769;
  line-height: 1;
}

.academy-growth-plan-card__price span {
  display: block;
  margin-right: 2px;
  font-size: 13px;
  font-weight: 900;
}

.academy-growth-plan-card__price strong {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .02em;
}

.academy-growth-plan-card__price em {
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
}

.academy-growth-plan-card__amount {
  display: grid;
  place-items: center;
  align-self: center;
  min-height: 54px;
  margin: 0;
  padding: 9px 12px;
  border: 2px solid rgba(191, 168, 127, .44);
  border-radius: 5px;
  background: rgba(255, 253, 244, .55);
  color: #203a55;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.32;
}

.academy-growth-plan-card__note {
  margin: 0;
  align-self: start;
  padding-top: 0;
  color: #243c55;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
}

.academy-growth-plan__button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(100%, 360px);
  min-height: 56px;
  margin: 22px auto 0;
  padding: 0 18px 0 24px;
  border: 2px solid rgba(12, 95, 170, .58);
  border-radius: 7px;
  background: rgba(255, 253, 247, .82);
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .06em;
  text-align: left;
  text-decoration: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .64),
    0 8px 14px rgba(49, 64, 83, .1);
}

.academy-growth-plan__button span {
  display: inline-grid;
  place-items: center;
  color: #0b3769;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-2px);
}

.academy-growth-plan__leaf {
  position: absolute;
  right: -44px;
  bottom: -108px;
  display: none;
  width: 118px;
  height: 152px;
  pointer-events: none;
}

.academy-growth-plan__leaf-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .9;
}

@media (min-width: 760px) {
  .academy-growth-plan {
    padding: 54px 22px 160px;
  }

  .academy-growth-plan__inner {
    max-width: 1080px;
  }

  .academy-growth-plan h2 {
    margin-bottom: 34px;
    font-size: 34px;
  }

  .academy-growth-plan__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .academy-growth-plan-card--recommended {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    justify-self: center;
  }

  .academy-growth-plan__button {
    margin-top: 28px;
  }

  .academy-growth-plan__leaf {
    display: block;
  }
}

@media (min-width: 1180px) {
  .academy-growth-plan {
    padding: 44px 22px 160px;
  }

  .academy-growth-plan__inner {
    max-width: 1240px;
  }

  .academy-growth-plan h2 {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .academy-growth-plan__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .academy-growth-plan-card {
    grid-template-rows: 54px 92px 52px 86px minmax(0, 1fr);
    min-height: 354px;
    padding: 30px 16px 22px;
  }

  .academy-growth-plan-card--recommended {
    grid-column: auto;
    width: auto;
  }

  .academy-growth-plan-card h3 {
    font-size: 21px;
  }

  .academy-growth-plan-card__icon {
    width: 60px;
    height: 60px;
  }

  .academy-growth-plan-card__icon--scope {
    width: 54px;
    height: 54px;
  }

  .academy-growth-plan-card__price strong {
    font-size: 31px;
  }

  .academy-growth-plan-card__amount {
    min-height: 56px;
    font-size: 18px;
  }

  .academy-growth-plan__button {
    margin-top: 24px;
    width: 380px;
  }

  .academy-growth-plan__leaf {
    right: -14px;
    bottom: -112px;
    width: 112px;
    height: 144px;
  }
}

.academy-diagnosis-app-page {
  min-height: 100vh;
  padding: 34px 8px 52px;
  color: #0b2748;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
}

.academy-diagnosis-hero,
.academy-diagnosis-tool,
.academy-diagnosis-result,
.academy-diagnosis-explain,
.academy-diagnosis-app-page .academy-faq {
  width: min(1120px, calc(100% - 16px));
  margin-right: auto;
  margin-left: auto;
}

.academy-diagnosis-hero {
  display: grid;
  gap: 20px;
  align-items: stretch;
  padding: 22px 0 24px;
}

.academy-diagnosis-hero__copy,
.academy-diagnosis-hero__note,
.academy-diagnosis-tool,
.academy-diagnosis-result__summary,
.academy-diagnosis-result-card,
.academy-diagnosis-explain,
.academy-diagnosis-app-page .academy-faq {
  border: 1px solid rgba(166, 185, 195, .85);
  border-radius: 8px;
  background:
    linear-gradient(rgba(222, 211, 187, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .16) 1px, transparent 1px),
    rgba(255, 253, 247, .96);
  background-size: 22px 22px;
  box-shadow: 0 10px 22px rgba(30, 48, 64, .07);
}

.academy-diagnosis-hero__copy {
  padding: 26px 22px;
}

.academy-diagnosis-hero .academy-kicker,
.academy-diagnosis-tool .academy-kicker,
.academy-diagnosis-result .academy-kicker {
  margin-top: 0;
}

.academy-diagnosis-hero .academy-visible-title,
.academy-diagnosis-hero h1 {
  margin: 10px 0 0;
  color: #06284c;
  font-family: var(--academy-mincho);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.28;
}

.academy-diagnosis-hero__lead {
  max-width: 700px;
  margin: 16px 0 0;
  color: #173653;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.9;
}

.academy-diagnosis-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.academy-diagnosis-hero__points li {
  padding: 7px 12px;
  border: 1px solid rgba(11, 79, 145, .2);
  border-radius: 999px;
  color: #0b4f91;
  background: rgba(233, 247, 255, .78);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}

.academy-diagnosis-hero__note {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 170px;
  padding: 24px;
  color: #173653;
  background:
    linear-gradient(135deg, rgba(11, 79, 145, .12), rgba(36, 135, 82, .12)),
    rgba(255, 253, 247, .96);
}

.academy-diagnosis-hero__note strong {
  color: #0b4f91;
  font-family: var(--academy-mincho);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.academy-diagnosis-hero__note span {
  color: #092c52;
  font-size: 19px;
  font-weight: 900;
}

.academy-diagnosis-hero__note small {
  color: #52667b;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.6;
}

.academy-diagnosis-tool,
.academy-diagnosis-result,
.academy-diagnosis-explain,
.academy-diagnosis-app-page .academy-faq {
  margin-top: 24px;
}

.academy-diagnosis-tool {
  padding: 22px;
}

.academy-diagnosis-tool__head h2,
.academy-diagnosis-result__summary h2,
.academy-diagnosis-result-card h2,
.academy-diagnosis-explain h2 {
  width: fit-content;
  margin: 0;
  color: #063260;
  font-family: var(--academy-mincho);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.38;
  background: linear-gradient(transparent 72%, rgba(92, 168, 216, .44) 0);
}

.academy-diagnosis-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.academy-diagnosis-question {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(12, 67, 112, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
}

.academy-diagnosis-question.is-missing {
  border-color: rgba(190, 70, 48, .72);
  box-shadow: 0 0 0 3px rgba(190, 70, 48, .12);
}

.academy-diagnosis-question legend {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
  color: #0b2748;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.academy-diagnosis-question legend span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: #0b4f91;
  font-size: 13px;
  line-height: 1;
}

.academy-diagnosis-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 79, 145, .16);
  border-radius: 8px;
  color: #173653;
  background: rgba(255, 253, 247, .9);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.academy-diagnosis-option:hover {
  border-color: rgba(11, 79, 145, .42);
  transform: translateY(-1px);
}

.academy-diagnosis-option::before {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 2px solid rgba(11, 79, 145, .42);
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  content: "";
}

.academy-diagnosis-option:has(input:checked) {
  border-color: rgba(36, 135, 82, .78);
  background: rgba(232, 247, 239, .9);
}

.academy-diagnosis-option:has(input:checked)::before {
  border-color: #248752;
  background:
    radial-gradient(circle, #248752 0 5px, transparent 6px),
    #fff;
}

.academy-diagnosis-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.academy-diagnosis-option span {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.academy-diagnosis-form__actions,
.academy-diagnosis-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.academy-diagnosis-result[hidden] {
  display: none !important;
}

.academy-diagnosis-result {
  display: grid;
  gap: 18px;
}

.academy-diagnosis-result__summary {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.academy-diagnosis-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #0b4f91;
  font-family: var(--academy-mincho);
  line-height: 1;
}

.academy-diagnosis-score span {
  font-size: 64px;
  font-weight: 900;
}

.academy-diagnosis-score small {
  color: #53677b;
  font-size: 20px;
  font-weight: 900;
}

.academy-diagnosis-result__summary p:not(.academy-kicker),
.academy-diagnosis-result-card p,
.academy-diagnosis-explain p,
.academy-diagnosis-result__note {
  margin: 0;
  color: #173653;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
}

.academy-diagnosis-result__grid {
  display: grid;
  gap: 16px;
}

.academy-diagnosis-result-card {
  padding: 22px;
}

.academy-diagnosis-result-card--plan {
  border-color: rgba(36, 135, 82, .38);
  background:
    linear-gradient(rgba(36, 135, 82, .08), rgba(255, 255, 255, 0)),
    rgba(255, 253, 247, .96);
}

.academy-diagnosis-result-card ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.academy-diagnosis-result-card li {
  position: relative;
  padding-left: 28px;
  color: #173653;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.75;
}

.academy-diagnosis-result-card li::before {
  position: absolute;
  left: 0;
  top: .46em;
  width: 16px;
  height: 16px;
  border: 2px solid #248752;
  border-radius: 4px;
  content: "";
}

.academy-diagnosis-result-card li::after {
  position: absolute;
  left: 5px;
  top: .73em;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #248752;
  border-left: 2px solid #248752;
  content: "";
  transform: rotate(-45deg);
  transform-origin: center;
}

.academy-diagnosis-next-offers {
  display: grid;
  gap: 14px;
}

.academy-diagnosis-offer-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(12, 67, 112, .16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(222, 211, 187, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .16) 1px, transparent 1px),
    rgba(255, 253, 247, .97);
  background-size: 22px 22px;
  box-shadow: 0 10px 22px rgba(30, 48, 64, .07);
}

.academy-diagnosis-offer-card--test {
  border-color: rgba(36, 135, 82, .36);
}

.academy-diagnosis-offer-card--standard {
  border-color: rgba(11, 79, 145, .34);
}

.academy-diagnosis-offer-card__label {
  width: fit-content;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  color: #0b4f91;
  background: rgba(233, 247, 255, .9);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.academy-diagnosis-offer-card--test .academy-diagnosis-offer-card__label {
  color: #16653c;
  background: rgba(232, 247, 239, .95);
}

.academy-diagnosis-offer-card h3 {
  margin: 0;
  color: #063260;
  font-family: var(--academy-mincho);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
}

.academy-diagnosis-offer-card p {
  margin: 0;
  color: #173653;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.8;
}

.academy-diagnosis-offer-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-diagnosis-offer-card li {
  position: relative;
  padding-left: 24px;
  color: #173653;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.academy-diagnosis-offer-card li::before {
  position: absolute;
  left: 0;
  top: .58em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #248752;
  content: "";
}

.academy-diagnosis-offer-card--standard li::before {
  background: #0b4f91;
}

.academy-diagnosis-offer-card .academy-button {
  width: fit-content;
  margin-top: 2px;
}

.academy-diagnosis-result__actions {
  padding: 4px 0;
}

.academy-diagnosis-result__note {
  color: #56697a;
  font-size: 13px;
}

.academy-diagnosis-explain {
  padding: 24px;
}

.academy-diagnosis-explain__grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.academy-diagnosis-explain article {
  padding: 16px;
  border: 1px solid rgba(12, 67, 112, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
}

.academy-diagnosis-explain h3 {
  margin: 0 0 8px;
  color: #0b4f91;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.academy-diagnosis-app-page .academy-faq {
  padding: 22px;
}

@media (min-width: 760px) {
  .academy-diagnosis-app-page {
    padding-top: 42px;
  }

  .academy-diagnosis-hero {
    grid-template-columns: minmax(0, 1fr) 280px;
    padding-top: 34px;
  }

  .academy-diagnosis-hero__copy {
    padding: 34px;
  }

  .academy-diagnosis-hero .academy-visible-title,
  .academy-diagnosis-hero h1 {
    font-size: 46px;
  }

  .academy-diagnosis-tool {
    padding: 30px;
  }

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

  .academy-diagnosis-form__actions {
    grid-column: 1 / -1;
  }

  .academy-diagnosis-next-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-diagnosis-result__summary {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .academy-diagnosis-result__summary .academy-kicker,
  .academy-diagnosis-result__summary h2,
  .academy-diagnosis-result__summary p {
    grid-column: 1;
  }

  .academy-diagnosis-score {
    grid-column: 2;
    grid-row: 1 / 4;
  }

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

@media (min-width: 1080px) {
  .academy-diagnosis-hero .academy-visible-title,
  .academy-diagnosis-hero h1 {
    font-size: 54px;
  }

}

@media (max-width: 520px) {
  .academy-diagnosis-app-page {
    padding: 14px 0 38px;
  }

  .academy-diagnosis-hero,
  .academy-diagnosis-tool,
  .academy-diagnosis-result,
  .academy-diagnosis-explain,
  .academy-diagnosis-app-page .academy-faq {
    width: min(100% - 32px, 1120px);
  }

  .academy-diagnosis-hero {
    gap: 10px;
    padding: 10px 0 12px;
  }

  .academy-diagnosis-hero__copy {
    padding: 18px 16px;
  }

  .academy-diagnosis-hero .academy-visible-title,
  .academy-diagnosis-hero h1 {
    margin-top: 8px;
    font-size: 27px;
    line-height: 1.22;
  }

  .academy-diagnosis-hero__lead {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.65;
  }

  .academy-diagnosis-hero__points {
    gap: 6px;
    margin-top: 12px;
  }

  .academy-diagnosis-hero__points li {
    padding: 6px 10px;
    font-size: 12px;
  }

  .academy-diagnosis-hero__note {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    padding: 14px 16px;
  }

  .academy-diagnosis-hero__note strong {
    grid-row: 1 / 3;
    font-size: 42px;
  }

  .academy-diagnosis-hero__note span {
    font-size: 16px;
  }

  .academy-diagnosis-hero__note small {
    font-size: 12px;
    line-height: 1.45;
  }

  .academy-diagnosis-tool,
  .academy-diagnosis-result,
  .academy-diagnosis-explain,
  .academy-diagnosis-app-page .academy-faq {
    margin-top: 14px;
  }

  .academy-diagnosis-tool {
    padding: 16px;
  }

  .academy-diagnosis-tool__head h2,
  .academy-diagnosis-result__summary h2,
  .academy-diagnosis-result-card h2,
  .academy-diagnosis-explain h2 {
    font-size: 20px;
  }

  .academy-diagnosis-form {
    gap: 12px;
    margin-top: 16px;
  }

  .academy-diagnosis-question {
    padding: 13px;
  }

  .academy-diagnosis-question legend {
    font-size: 15px;
  }

  .academy-diagnosis-option {
    min-height: 44px;
    padding: 10px 12px;
  }

  .academy-diagnosis-option span {
    font-size: 14px;
  }

  .academy-diagnosis-form__actions .academy-button,
  .academy-diagnosis-result__actions .academy-button,
  .academy-diagnosis-offer-card .academy-button {
    width: 100%;
  }

  .academy-diagnosis-offer-card {
    padding: 16px;
  }

  .academy-diagnosis-offer-card h3 {
    font-size: 20px;
  }

  .academy-diagnosis-score span {
    font-size: 52px;
  }
}

.academy-diagnosis {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px 8px 54px;
  overflow: hidden;
  color: #0b2748;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
}

.academy-diagnosis__paper {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
  padding: 50px 30px 52px;
  border: 0;
  border-radius: 0;
  background: var(--academy-diagnosis-paper-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-shadow: none;
}

.academy-diagnosis__tape {
  position: absolute;
  top: -18px;
  left: -14px;
  width: 48px;
  height: 30px;
  background: rgba(85, 148, 205, .38);
  transform: rotate(-34deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .38);
}

.academy-diagnosis__edge {
  display: none;
}

.academy-diagnosis__edge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(195, 163, 107, .32);
}

.academy-diagnosis__lead h2 {
  display: grid;
  gap: 7px;
  margin: 0;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: clamp(24px, 6.8vw, 34px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.45;
}

.academy-diagnosis__lead h2 span {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.academy-diagnosis__lead h2 span::after {
  position: absolute;
  left: -4px;
  right: -6px;
  bottom: -3px;
  height: 4px;
  border-radius: 99px;
  background: rgba(12, 95, 170, .46);
  transform: rotate(-.8deg);
  content: "";
}

.academy-diagnosis__body {
  color: #1d3550;
  font-weight: 800;
}

.academy-diagnosis__body p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.85;
}

.academy-diagnosis__body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-diagnosis__body li {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  font-size: 15px;
  line-height: 1.65;
}

.academy-diagnosis__body li span {
  position: relative;
  width: 19px;
  height: 19px;
  margin-top: 3px;
  border: 2.2px solid rgba(23, 56, 90, .58);
  border-radius: 2px;
  background: rgba(255, 252, 243, .58);
}

.academy-diagnosis__body li span::after {
  position: absolute;
  left: 4px;
  top: -3px;
  width: 8px;
  height: 15px;
  border-right: 3px solid #0d63b8;
  border-bottom: 3px solid #0d63b8;
  transform: rotate(42deg);
  content: "";
}

.academy-diagnosis__clipboard {
  justify-self: center;
  width: 126px;
  height: 142px;
  color: rgba(23, 56, 90, .52);
}

.academy-diagnosis__clipboard-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.academy-diagnosis__clipboard svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-diagnosis__actions {
  display: grid;
  gap: 12px;
}

.academy-diagnosis__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 7px;
  color: #fffdf3;
  font-family: var(--academy-mincho);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.2;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .18),
    0 8px 15px rgba(22, 41, 67, .16);
}

.academy-diagnosis__button--green {
  border: 2px solid rgba(28, 123, 74, .72);
  background:
    linear-gradient(rgba(255, 255, 255, .07), transparent),
    #248752;
}

.academy-diagnosis__button--blue {
  border: 2px solid rgba(8, 58, 104, .72);
  background:
    linear-gradient(rgba(255, 255, 255, .07), transparent),
    #0b4d86;
}

.academy-diagnosis__button span {
  margin-left: auto;
  color: inherit;
  font-size: 32px;
  line-height: .8;
}

@media (min-width: 760px) {
  .academy-diagnosis {
    padding: 54px 22px 62px;
  }

  .academy-diagnosis__paper {
    max-width: 1080px;
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.1fr) 150px;
    grid-template-areas:
      "lead body clip"
      "actions actions clip";
    align-items: center;
    gap: 22px 34px;
    padding: 58px 70px 60px 82px;
  }

  .academy-diagnosis__lead {
    grid-area: lead;
  }

  .academy-diagnosis__body {
    grid-area: body;
  }

  .academy-diagnosis__clipboard {
    grid-area: clip;
    width: 148px;
    height: 162px;
  }

  .academy-diagnosis__actions {
    grid-area: actions;
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: center;
    gap: 28px;
  }

  .academy-diagnosis__button {
    min-height: 60px;
    font-size: 20px;
  }
}

@media (min-width: 1180px) {
  .academy-diagnosis {
    padding: 28px 22px 36px;
  }

  .academy-diagnosis__paper {
    max-width: 1240px;
    grid-template-columns: minmax(0, 458px) minmax(0, 420px) 158px;
    min-height: 268px;
    gap: 16px 34px;
    padding: 58px 86px 64px 98px;
  }

  .academy-diagnosis__lead h2 {
    font-size: 26px;
    line-height: 1.42;
  }

  .academy-diagnosis__body p {
    font-size: 16px;
    line-height: 1.72;
    margin-bottom: 12px;
  }

  .academy-diagnosis__body li {
    font-size: 16px;
  }

  .academy-diagnosis__clipboard {
    width: 154px;
    height: 166px;
  }

  .academy-diagnosis__actions {
    grid-template-columns: 320px 320px;
  }
}

.academy-top-faq {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px 8px 44px;
  overflow: hidden;
  color: #0b2748;
  background:
    linear-gradient(rgba(222, 211, 187, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .38) 1px, transparent 1px),
    #fbf3df;
  background-size: 22px 22px;
}

.academy-top-faq__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: 28px;
}

.academy-top-faq h2 {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 22px;
  color: #0b3769;
  font-family: var(--academy-mincho);
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.35;
  text-align: center;
}

.academy-top-faq h2::after {
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -8px;
  height: 4px;
  border-radius: 99px;
  background: rgba(12, 95, 170, .44);
  transform: rotate(-.6deg);
  content: "";
}

.academy-top-faq__list {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0 auto;
  border: 2px solid rgba(19, 45, 73, .2);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 252, 242, .72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .62),
    0 10px 18px rgba(73, 53, 20, .08);
}

.academy-top-faq__item {
  border-bottom: 2px solid rgba(19, 45, 73, .16);
  background:
    linear-gradient(rgba(255, 255, 255, .22), rgba(255, 255, 255, .06)),
    rgba(255, 249, 231, .58);
}

.academy-top-faq__item:last-child {
  border-bottom: 0;
}

.academy-top-faq__item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 13px 16px 13px 18px;
  color: #16385c;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  list-style: none;
}

.academy-top-faq__item summary::-webkit-details-marker {
  display: none;
}

.academy-top-faq__item summary span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.academy-top-faq__item summary span::before,
.academy-top-faq__item summary span::after {
  position: absolute;
  top: 10px;
  width: 13px;
  height: 3px;
  border-radius: 99px;
  background: #0b3769;
  content: "";
  transition: transform .48s cubic-bezier(.22, 1, .36, 1);
}

.academy-top-faq__item summary span::before {
  left: 2px;
  transform: rotate(45deg);
}

.academy-top-faq__item summary span::after {
  right: 2px;
  transform: rotate(-45deg);
}

.academy-top-faq__item[open] summary span::before {
  transform: rotate(-45deg);
}

.academy-top-faq__item[open] summary span::after {
  transform: rotate(45deg);
}

.academy-top-faq__item p {
  box-sizing: border-box;
  margin: 0;
  padding: 0 18px 18px;
  overflow: hidden;
  color: #243c55;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  transition:
    height .72s cubic-bezier(.22, 1, .36, 1),
    opacity .52s ease,
    transform .72s cubic-bezier(.22, 1, .36, 1);
  will-change: height, opacity, transform;
}

.academy-top-faq__item:not([open]) p {
  height: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-6px);
}

.academy-top-faq__item[open] p {
  opacity: 1;
  transform: translateY(0);
}

.academy-top-faq__bubble {
  position: absolute;
  top: -18px;
  right: 12px;
  display: none;
  width: 82px;
  height: 58px;
  color: rgba(23, 56, 90, .54);
}

.academy-top-faq__bubble svg,
.academy-top-faq__plant svg,
.academy-top-faq__pen svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.academy-top-faq__bubble-img,
.academy-top-faq__plant-img,
.academy-top-faq__pen-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.academy-top-faq__bubble span {
  position: absolute;
  top: 19px;
  left: 26px;
  color: #0b3769;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  transform: rotate(10deg);
}

.academy-top-faq__plant,
.academy-top-faq__pen {
  position: absolute;
  z-index: 3;
  display: none;
  color: rgba(69, 116, 81, .58);
  pointer-events: none;
}

.academy-top-faq__pen {
  color: rgba(23, 56, 90, .58);
}

@media (min-width: 760px) {
  .academy-top-faq {
    padding: 48px 22px 46px;
  }

  .academy-top-faq__inner {
    max-width: 1080px;
  }

  .academy-top-faq h2 {
    margin-bottom: 26px;
    font-size: 32px;
  }

  .academy-top-faq__list {
    width: min(100%, 820px);
  }

  .academy-top-faq__item summary {
    min-height: 52px;
    padding: 10px 22px;
    font-size: 17px;
  }

  .academy-top-faq__bubble,
  .academy-top-faq__plant,
  .academy-top-faq__pen {
    display: block;
  }

  .academy-top-faq__plant {
    left: -12px;
    bottom: 18px;
    width: 116px;
    height: 148px;
  }

  .academy-top-faq__pen {
    right: 58px;
    bottom: 8px;
    width: 146px;
    height: 188px;
  }
}

@media (min-width: 1180px) {
  .academy-top-faq {
    padding: 36px 22px 38px;
  }

  .academy-top-faq__inner {
    max-width: 1240px;
    min-height: 270px;
  }

  .academy-top-faq h2 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .academy-top-faq__list {
    width: 900px;
  }

  .academy-top-faq__item summary {
    min-height: 47px;
    padding: 8px 24px;
    font-size: 18px;
  }

  .academy-top-faq__item p {
    padding: 0 24px 14px;
  }

  .academy-top-faq__bubble {
    top: -16px;
    right: 208px;
    width: 72px;
    height: 54px;
  }

  .academy-top-faq__plant {
    left: 6px;
    bottom: 22px;
    width: 125px;
    height: 158px;
  }

  .academy-top-faq__pen {
    right: 92px;
    bottom: 10px;
    width: 162px;
    height: 210px;
  }
}

@media (min-width: 760px) {
  .academy-overview {
    padding: 44px 22px 54px;
  }

  .academy-overview__paper {
    max-width: 1180px;
    min-height: 220px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 34px;
    padding: 44px 48px 40px 82px;
  }

  .academy-overview__clip {
    left: 32px;
  }

  .academy-overview__edge {
    left: 16px;
  }

  .academy-overview__copy p {
    font-size: 17px;
    line-height: 1.82;
  }

  .academy-overview__illustration {
    width: 330px;
    margin: 0;
  }

  .academy-learning {
    padding: 54px 22px 62px;
  }

  .academy-learning__inner {
    max-width: 1080px;
  }

  .academy-learning h2 {
    margin-bottom: 32px;
  }

  .academy-learning__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 2px solid rgba(19, 45, 73, .25);
    border-radius: 5px;
    background: rgba(255, 249, 231, .64);
  }

  .academy-learning-card {
    min-height: 178px;
    border: 0;
    border-right: 2px solid rgba(19, 45, 73, .22);
    border-bottom: 2px solid rgba(19, 45, 73, .22);
    border-radius: 0;
    background: rgba(255, 251, 240, .5);
    box-shadow: none;
  }

  .academy-learning-card:nth-child(2n) {
    border-right: 0;
  }

  .academy-learning-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .academy-difference {
    padding: 54px 22px 62px;
  }

  .academy-difference__inner {
    max-width: 1080px;
  }

  .academy-difference h2 {
    margin-bottom: 34px;
    font-size: 34px;
  }

  .academy-difference__layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    gap: 28px;
  }

  .academy-difference__table {
    gap: 0;
    overflow: hidden;
    border: 1.8px solid rgba(19, 45, 73, .18);
    border-radius: 6px;
    background: rgba(255, 249, 231, .58);
  }

  .academy-difference-row {
    grid-template-columns: 172px minmax(0, 1fr);
    align-items: center;
    min-height: 100px;
    gap: 18px;
    padding: 12px 18px;
    border: 0;
    border-bottom: 1.8px solid rgba(19, 45, 73, .16);
    border-radius: 0;
    box-shadow: none;
  }

  .academy-difference-row:last-child {
    border-bottom: 0;
  }

  .academy-difference-row__label {
    width: 160px;
  }

  .academy-difference-row ul {
    grid-column: 2;
    padding-top: 8px;
    border-top: 1.5px solid rgba(19, 45, 73, .13);
  }

  .academy-difference__diagram {
    width: 300px;
  }

  .academy-curriculum {
    padding: 54px 22px 62px;
  }

  .academy-curriculum__inner {
    max-width: 1080px;
  }

  .academy-curriculum h2 {
    margin-bottom: 34px;
    font-size: 34px;
  }

  .academy-curriculum__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    gap: 12px 28px;
  }

  .academy-curriculum-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 62px;
    gap: 12px;
    padding: 10px 12px 10px 16px;
  }

  .academy-curriculum-row__button {
    justify-self: end;
  }

  .academy-curriculum__decor--tools {
    top: -44px;
    left: -26px;
    width: 150px;
    height: auto;
    opacity: 1;
  }

  .academy-decision {
    padding: 54px 22px 62px;
  }

  .academy-decision__inner {
    max-width: 1080px;
  }

  .academy-decision h2 {
    margin-bottom: 34px;
    font-size: 30px;
  }

  .academy-decision__layout {
    grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
  }

  .academy-decision-card {
    min-height: 242px;
    padding: 24px 28px 78px;
  }

  .academy-decision-card li {
    font-size: 16px;
  }

  .academy-decision-card__illust {
    right: 14px;
    width: 128px;
    height: 90px;
  }

  .academy-decision-card__illust--desk {
    right: 10px;
    bottom: 8px;
    width: 138px;
    height: auto;
  }

  .academy-decision-card__illust--meeting {
    right: -8px;
    bottom: -8px;
    width: 154px;
    height: auto;
  }

  .academy-decision__switch {
    width: 62px;
    height: 52px;
    transform: none;
  }

  .academy-decision__doodle {
    position: absolute;
    z-index: 1;
    display: block;
    top: 76px;
    right: -22px;
    width: 116px;
    height: 56px;
    color: rgba(23, 56, 90, .42);
    pointer-events: none;
  }
}

@media (min-width: 1180px) {
  .academy-decision {
    padding: 46px 22px 50px;
  }

  .academy-overview__paper {
    max-width: 1220px;
    grid-template-columns: minmax(0, 1fr) 390px;
    padding: 42px 62px 38px 94px;
  }

  .academy-overview__illustration {
    width: 390px;
  }

  .academy-learning__inner {
    max-width: 1140px;
  }

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

  .academy-learning-card {
    grid-template-columns: 84px minmax(0, 1fr);
    min-height: 184px;
    gap: 20px;
    padding: 28px 30px 26px;
  }

  .academy-learning-card__icon {
    width: 74px;
    height: 74px;
  }

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

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

  .academy-learning-card:nth-child(2n) {
    border-right: 2px solid rgba(19, 45, 73, .22);
  }

  .academy-learning-card:nth-child(3n) {
    border-right: 0;
  }

  .academy-learning-card:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .academy-learning__tools--top {
    top: -42px;
    left: -20px;
    width: 178px;
    opacity: .82;
  }

  .academy-learning__tools--left,
  .academy-learning__tools--right {
    display: block;
  }

  .academy-learning__tools--left {
    left: -76px;
    bottom: -26px;
    width: 94px;
    height: auto;
  }

  .academy-learning__tools--right {
    right: -88px;
    bottom: -26px;
    width: 124px;
    height: auto;
    color: rgba(69, 116, 81, .66);
  }

  .academy-difference__inner {
    max-width: 1140px;
  }

  .academy-difference__layout {
    grid-template-columns: minmax(0, 790px) 310px;
    gap: 38px;
  }

  .academy-difference-row {
    grid-template-columns: 190px minmax(0, 1fr) 270px;
    min-height: 96px;
    gap: 20px;
    padding: 12px 22px;
  }

  .academy-difference-row p {
    padding-right: 18px;
    border-right: 1.8px solid rgba(19, 45, 73, .16);
  }

  .academy-difference-row ul {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }

  .academy-difference-row__label {
    width: 176px;
  }

  .academy-difference__diagram {
    width: 310px;
  }

  .academy-curriculum__inner {
    max-width: 1140px;
  }

  .academy-curriculum__grid {
    gap: 12px 32px;
  }

  .academy-curriculum-row {
    min-height: 58px;
    padding: 9px 13px 9px 18px;
  }

  .academy-curriculum-row__main {
    grid-template-columns: 28px 58px minmax(0, 1fr);
    gap: 9px;
  }

  .academy-curriculum-row__num {
    font-size: 15px;
  }

  .academy-curriculum-row__title {
    font-size: 16px;
  }

  .academy-curriculum-row__button {
    min-width: 118px;
    min-height: 34px;
    padding: 7px 13px;
  }

  .academy-curriculum__tape--right {
    top: 38px;
    right: -28px;
  }

  .academy-decision__inner {
    max-width: 1140px;
  }

  .academy-decision h2 {
    margin-bottom: 28px;
  }

  .academy-decision__layout {
    grid-template-columns: minmax(0, 498px) 56px minmax(0, 498px);
    justify-content: center;
    align-items: start;
    gap: 28px;
  }

  .academy-decision-card {
    min-height: 222px;
    padding: 18px 30px 46px;
  }

  .academy-decision-card h3 {
    margin-bottom: 17px;
    font-size: 19px;
  }

  .academy-decision-card ul {
    gap: 9px;
  }

  .academy-decision-card li {
    font-size: 15px;
    line-height: 1.55;
  }

  .academy-decision-card__illust {
    right: 12px;
    bottom: -2px;
    width: 118px;
    height: 78px;
  }

  .academy-decision-card__illust--desk {
    right: 8px;
    bottom: 4px;
    width: 132px;
    height: auto;
  }

  .academy-decision-card__illust--meeting {
    right: -8px;
    bottom: -8px;
    width: 146px;
    height: auto;
  }

  .academy-decision__doodle {
    right: -6px;
  }
}

@media (max-width: 1280px) {
  .academy-hero__canvas {
    width: min(1160px, calc(100% - 44px));
    min-height: auto;
    padding: 64px 0 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 26px;
  }

  .academy-hero__left,
  .academy-hero__note,
  .academy-hero__diagram,
  .academy-hero__cta-row,
  .academy-hero__doodles {
    position: relative;
    inset: auto;
  }

  .academy-hero__left {
    width: auto;
    max-width: none;
    grid-column: 1 / 2;
  }

  .academy-hero__mini-brand {
    margin-left: 0;
  }

  .academy-hero__note {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
    width: 100%;
    min-height: 500px;
    left: auto;
    top: auto;
  }

  .academy-hero__diagram {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 360px;
  }

  .academy-hero__diagram-img {
    inset: -22px calc(50% - 285px) auto auto;
    width: 570px;
  }

  .academy-hero__circle--seo {
    left: 12%;
  }

  .academy-hero__circle--llmo {
    left: 38%;
  }

  .academy-hero__circle--aio {
    right: 12%;
  }

  .academy-hero__chosen {
    left: calc(50% - 130px);
  }

  .academy-hero__mini-labels {
    left: 11%;
  }

  .academy-hero__check {
    right: 7%;
  }

  .academy-hero__cta-row {
    grid-column: 1 / -1;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 10px;
  }

  .academy-hero__doodles--left,
  .academy-hero__doodles--right {
    display: none;
  }
}

@media (max-width: 1024px) {
  .academy-header--sketch .academy-header__inner {
    min-height: 64px;
  }

  .academy-header--sketch .academy-brand {
    gap: 8px;
  }

  .academy-brand__logo {
    width: min(220px, 56vw);
  }

  .academy-brand__mark--book {
    width: 34px;
    height: 34px;
    background: #07172b;
    border-radius: 7px;
    color: #fff;
    padding: 6px;
  }

  .academy-header--sketch .academy-brand__text {
    display: block;
    min-width: 0;
  }

  .academy-header--sketch .academy-brand__text span {
    display: none;
  }

  .academy-header--sketch .academy-brand__text strong {
    font-size: 14px;
    letter-spacing: 0;
  }

  .academy-header--sketch .academy-brand__text strong::after {
    display: none;
  }

  .academy-header--sketch .academy-nav {
    background:
      linear-gradient(rgba(231, 219, 191, .45) 1px, transparent 1px),
      linear-gradient(90deg, rgba(231, 219, 191, .45) 1px, transparent 1px),
      #fbf3df;
    background-size: 22px 22px;
  }
}

@media (max-width: 840px) {
  .academy-hero__canvas {
    width: min(100% - 16px, 560px);
    padding: 34px 0 36px;
    display: flex;
    flex-direction: column;
  }

  .academy-hero__left {
    order: 1;
  }

  .academy-hero__cta-row {
    order: 2;
  }

  .academy-hero__note {
    order: 3;
  }

  .academy-hero__diagram {
    order: 4;
  }

  .academy-hero__tagline {
    margin: 0 0 22px;
    font-size: 17px;
    transform: rotate(-1deg);
  }

  .academy-hero__mini-brand {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    margin: 0 0 32px;
  }

  .academy-hero__edge-strip {
    display: none;
  }

  .academy-hero__mini-brand-mark {
    width: 48px;
    height: 44px;
  }

  .academy-hero__mini-brand-text {
    font-size: 20px;
    white-space: normal;
  }

  .academy-hero--sketch .academy-visible-title {
    margin-left: 0;
    font-size: clamp(38px, 13vw, 56px);
    line-height: 1.18;
  }

  .academy-hero--sketch .academy-hero__lead {
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 800;
  }

  .academy-hero__badges {
    display: grid;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .academy-hero__asset-stickers {
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
  }

  .academy-hero__asset-sticker {
    width: min(36vw, 132px);
  }

  .academy-hero__asset-sticker--chapters {
    width: min(34vw, 124px);
  }

  .academy-hero__badges span {
    min-height: 54px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .academy-hero__badges svg {
    width: 26px;
    height: 26px;
  }

  .academy-hero__note {
    width: 94%;
    min-height: auto;
    margin: 28px auto 0;
    padding: 48px 28px 32px;
    transform: rotate(-2deg);
  }

  .academy-hero__note-paper {
    inset: -24px -24px -18px -20px;
    width: calc(100% + 44px);
    height: calc(100% + 42px);
  }

  .academy-hero__note-title {
    font-size: 24px;
  }

  .academy-hero__note ul {
    gap: 12px;
    font-size: 18px;
  }

  .academy-hero__note li span {
    min-width: 70px;
  }

  .academy-hero__ellipsis {
    padding-left: 86px;
  }

  .academy-hero__clip {
    width: 30px;
    height: 68px;
    border-width: 4px;
  }

  .academy-hero__tape {
    left: 112px;
    width: 100px;
    height: 34px;
  }

  .academy-hero__diagram {
    display: none;
  }

  .academy-hero__cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .academy-hero__cta {
    min-height: 62px;
    padding: 13px 18px;
    font-size: 17px;
    gap: 12px;
  }

  .academy-hero__cta svg {
    width: 28px;
    height: 28px;
  }

  .academy-hero__cta span {
    font-size: 30px;
  }
}

/* Final MV overrides: moc.mv 2026-05-13 */
.academy-hero--sketch .academy-hero__canvas {
  display: block;
  width: min(1680px, 100%);
  min-height: 790px;
  padding: 48px 0 118px;
  overflow: hidden;
}

.academy-hero__operator {
  position: absolute;
  z-index: 7;
  top: 52px;
  right: 150px;
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}

.academy-hero--sketch .academy-hero__edge-strip {
  display: block;
  top: 0;
  left: -14px;
  width: 64px;
  opacity: .78;
  transform: rotate(0deg);
}

.academy-hero--sketch .academy-hero__left {
  position: relative;
  z-index: 5;
  width: 48%;
  max-width: 780px;
  padding-top: 0;
}

.academy-hero--sketch .academy-hero__mini-brand {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  margin: 0 0 70px 126px;
}

.academy-hero--sketch .academy-hero__mini-brand-mark {
  width: 74px;
  height: 64px;
}

.academy-hero--sketch .academy-hero__mini-brand-text {
  font-size: clamp(25px, 2vw, 34px);
  letter-spacing: .045em;
  white-space: nowrap;
}

.academy-hero--sketch .academy-visible-title {
  width: 760px;
  max-width: calc(100vw - 70px);
  margin: 0 0 0 118px;
  font-family: var(--academy-mincho);
  font-size: clamp(62px, 5vw, 86px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: .035em;
}

.academy-hero--sketch .academy-visible-title em {
  font-style: normal;
}

.academy-hero--sketch .academy-visible-title .academy-hero__title-blue {
  color: #0d63d9;
}

.academy-hero--sketch .academy-visible-title .academy-hero__title-green {
  color: #2e8c30;
}

.academy-hero--sketch .academy-visible-title span:last-child::after {
  display: none;
}

.academy-hero--sketch .academy-hero__lead {
  max-width: 560px;
  margin: 30px 0 0 120px;
  color: #090909;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.62;
  letter-spacing: .04em;
}

.academy-hero--sketch .academy-hero__tagline,
.academy-hero--sketch .academy-hero__badges,
.academy-hero--sketch .academy-hero__note,
.academy-hero--sketch .academy-hero__doodles {
  display: none;
}

.academy-hero--sketch .academy-hero__asset-stickers {
  display: flex;
  gap: 28px;
  max-width: none;
  margin: 24px 0 0 104px;
}

.academy-hero--sketch .academy-hero__asset-sticker {
  width: 285px;
  filter: drop-shadow(12px 14px 12px rgba(45, 30, 10, .18));
}

.academy-hero--sketch .academy-hero__asset-sticker--free {
  transform: rotate(-1.2deg);
}

.academy-hero--sketch .academy-hero__asset-sticker--chapters {
  width: 280px;
  margin-left: -8px;
  transform: rotate(-2.2deg) translateY(-4px);
}

.academy-hero--sketch .academy-hero__diagram {
  position: absolute;
  z-index: 4;
  top: 78px;
  right: 10px;
  width: min(48vw, 790px);
  min-height: 610px;
  display: block;
}

.academy-hero--sketch .academy-hero__diagram-img {
  position: absolute;
  inset: 0 0 auto auto;
  width: 100%;
  max-width: none;
  transform: rotate(-2.3deg);
  filter: drop-shadow(18px 22px 24px rgba(44, 31, 12, .16));
}

.academy-hero--sketch .academy-hero__diagram-img ~ * {
  display: none;
}

.academy-hero--sketch .academy-hero__cta-row {
  position: absolute;
  z-index: 6;
  left: 106px;
  right: 430px;
  bottom: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.academy-hero--sketch .academy-hero__cta {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: center;
  gap: 18px;
  padding: 16px 32px;
  border: 2px solid #0b3769;
  border-radius: 9px;
  font-size: 23px;
  letter-spacing: .04em;
  box-shadow: 0 8px 14px rgba(28, 22, 12, .16), inset 0 0 0 2px rgba(255, 255, 255, .14);
  transform: rotate(-.3deg);
}

.academy-hero--sketch .academy-hero__cta svg {
  display: none;
}

.academy-hero--sketch .academy-hero__cta span {
  font-size: inherit;
  font-weight: 900;
}

.academy-hero--sketch .academy-hero__cta--blue {
  background: #0757a8;
  color: #fff;
}

.academy-hero--sketch .academy-hero__cta--white {
  background: rgba(255, 252, 246, .9);
  color: #071f43;
}

@media (max-width: 1280px) {
  .academy-hero--sketch .academy-hero__canvas {
    display: flex;
    flex-direction: column;
    width: min(100% - 44px, 980px);
    min-height: auto;
    padding: 44px 0 54px;
  }

  .academy-hero__operator {
    position: relative;
    top: auto;
    right: auto;
    order: 0;
    align-self: flex-end;
    margin: 0 0 18px;
    font-size: 15px;
  }

  .academy-hero--sketch .academy-hero__left,
  .academy-hero--sketch .academy-hero__diagram,
  .academy-hero--sketch .academy-hero__cta-row {
    position: relative;
    inset: auto;
  }

  .academy-hero--sketch .academy-hero__left {
    order: 1;
    width: 100%;
    max-width: none;
  }

  .academy-hero--sketch .academy-hero__mini-brand,
  .academy-hero--sketch .academy-visible-title,
  .academy-hero--sketch .academy-hero__lead,
  .academy-hero--sketch .academy-hero__asset-stickers {
    margin-left: 0;
  }

  .academy-hero--sketch .academy-visible-title {
    width: min(760px, 100%);
  }

  .academy-hero--sketch .academy-hero__cta-row {
    order: 2;
    display: grid;
    margin-top: 32px;
  }

  .academy-hero--sketch .academy-hero__diagram {
    order: 3;
    width: min(760px, 100%);
    min-height: auto;
    margin: 30px auto 0;
  }

  .academy-hero--sketch .academy-hero__diagram-img {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 840px) {
  .academy-hero--sketch .academy-hero__canvas {
    width: min(100% - 16px, 560px);
    padding: 30px 0 38px;
  }

  .academy-hero__operator {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .academy-hero--sketch .academy-hero__mini-brand {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 42px;
  }

  .academy-hero--sketch .academy-hero__mini-brand-mark {
    width: 48px;
    height: 44px;
  }

  .academy-hero--sketch .academy-hero__mini-brand-text {
    font-size: 20px;
    white-space: nowrap;
  }

  .academy-hero--sketch .academy-visible-title {
    max-width: 100%;
    font-size: clamp(33px, 9.2vw, 58px);
    line-height: 1.24;
    letter-spacing: .015em;
  }

  .academy-hero--sketch .academy-hero__lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 0;
  }

  .academy-hero--sketch .academy-hero__asset-stickers {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 24px;
  }

  .academy-hero--sketch .academy-hero__asset-sticker {
    width: min(42vw, 170px);
  }

  .academy-hero--sketch .academy-hero__asset-sticker--chapters {
    width: min(40vw, 160px);
  }

  .academy-hero--sketch .academy-hero__cta-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .academy-hero--sketch .academy-hero__cta {
    min-height: 66px;
    padding: 14px 22px;
    font-size: 18px;
  }

  .academy-hero--sketch .academy-hero__diagram {
    display: block;
    margin-top: 22px;
  }

  .academy-hero--sketch .academy-hero__diagram-img {
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 1281px) {
  .academy-hero--sketch .academy-hero__canvas {
    box-sizing: border-box;
    min-height: 900px;
  }

  .academy-hero--sketch .academy-hero__left {
    position: absolute;
    top: 48px;
    left: 0;
  }

  .academy-hero--sketch .academy-visible-title {
    font-size: clamp(58px, 4.4vw, 74px);
    line-height: 1.28;
  }

  .academy-hero--sketch .academy-visible-title span {
    white-space: nowrap;
  }

  .academy-hero--sketch .academy-hero__lead {
    margin-top: 28px;
    font-size: 25px;
  }

  .academy-hero--sketch .academy-hero__asset-stickers {
    margin-top: 14px;
  }

  .academy-hero--sketch .academy-hero__asset-sticker {
    width: 242px;
  }

  .academy-hero--sketch .academy-hero__asset-sticker--chapters {
    width: 238px;
  }

  .academy-hero--sketch .academy-hero__cta-row {
    bottom: 54px;
  }

  .academy-hero--sketch .academy-hero__cta {
    box-sizing: border-box;
    min-height: 86px;
    padding: 14px 28px;
    font-size: 25px;
    line-height: 1.15;
    text-decoration: none;
  }

  .academy-hero--sketch .academy-hero__cta-label {
    text-decoration: none;
  }
}

.academy-page--top .academy-hero--sketch,
.academy-page--top .academy-hero--sketch .academy-hero__canvas,
.academy-page--top .academy-hero--sketch .academy-hero__diagram {
  overflow: visible;
}

.academy-page--top .academy-hero--sketch .academy-hero__pen-img {
  right: -18px;
  bottom: -320px;
}

.academy-page--top .academy-top-faq {
  padding-bottom: 105px;
}

.academy-page--top .academy-top-faq__inner {
  min-height: 0;
  padding-bottom: 0;
}

.academy-page--top .academy-top-faq__plant {
  bottom: -18px;
}

.academy-page--top .academy-top-faq__pen {
  bottom: -30px;
}

.academy-page--top .academy-footer {
  overflow: visible;
  border-top: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    #0b2748;
  background-size: 22px 22px;
  color: #fffdf3;
}

.academy-page--top .academy-footer__inner {
  width: min(1240px, calc(100% - 44px));
  min-height: 0;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 34px 0 26px;
}

.academy-page--top .academy-footer__brand,
.academy-page--top .academy-footer__label,
.academy-page--top .academy-footer__name,
.academy-page--top .academy-footer__copy,
.academy-page--top .academy-footer__nav,
.academy-page--top .academy-footer__nav a {
  color: inherit;
}

.academy-page--top .academy-footer__label {
  opacity: .74;
}

.academy-page--top .academy-footer__copy {
  color: rgba(255, 253, 243, .78);
}

.academy-page--top .academy-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  opacity: 1;
  visibility: visible;
  transform: none;
  filter: none;
}

.academy-page--top .academy-footer .academy-reveal,
.academy-page--top .academy-footer .academy-reveal:not(.is-visible),
.academy-page--top .academy-footer .academy-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.academy-page--top .academy-footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 243, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  color: #fffdf3;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.academy-page--top .academy-footer__nav a::after {
  background: #8fc4e8;
}

@media (max-width: 1024px) {
  .academy-page--top .academy-footer__inner {
    width: min(100% - 28px, 560px);
    grid-template-columns: 1fr;
    padding: 30px 0 24px;
  }

  .academy-page--top .academy-footer__nav {
    justify-content: flex-start;
  }
}

/* Growth TODO board */
.academy-page--growth-todo {
  background:
    linear-gradient(rgba(252, 249, 239, .9), rgba(252, 249, 239, .96)),
    repeating-linear-gradient(0deg, rgba(16, 76, 112, .08) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(16, 76, 112, .06) 0 1px, transparent 1px 28px);
  color: #0d3154;
}

.academy-growth-todo-page {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: clamp(92px, 12vw, 150px) 0 96px;
}

.academy-growth-todo-hero,
.academy-growth-todo-status,
.academy-growth-todo-board,
.academy-growth-todo-roadmap,
.academy-growth-todo-final-cta {
  position: relative;
  margin: 0 0 28px;
  border: 1px solid rgba(33, 86, 126, .16);
  border-radius: 8px;
  background: rgba(255, 253, 246, .92);
  box-shadow: 0 18px 48px rgba(28, 61, 92, .12);
}

.academy-growth-todo-hero {
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
}

.academy-growth-todo-hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 6vw, 70px);
  bottom: -32px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(44, 123, 151, .22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 197, 218, .2), rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.academy-growth-todo-hero h1 {
  max-width: 900px;
  margin: 10px 0 18px;
  color: #073763;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

.academy-growth-todo-hero__lead {
  max-width: 820px;
  margin: 0;
  color: #294c68;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.95;
}

.academy-growth-todo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.academy-growth-todo-status {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.academy-growth-todo-status__summary h2,
.academy-growth-todo-toolbar h2,
.academy-growth-todo-roadmap h2,
.academy-growth-todo-final-cta h2 {
  margin: 6px 0 12px;
  color: #073763;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.academy-growth-progress {
  height: 14px;
  overflow: hidden;
  border: 1px solid rgba(40, 109, 140, .2);
  border-radius: 999px;
  background: #eef6f8;
}

.academy-growth-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1a7fa4, #58b39c);
  transition: width .28s ease;
}

.academy-growth-todo-status__summary p:not(.academy-kicker) {
  margin: 12px 0 0;
  color: #385a72;
  font-weight: 800;
  line-height: 1.7;
}

.academy-growth-todo-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.academy-growth-todo-metrics div {
  min-height: 116px;
  padding: 18px 14px;
  border: 1px solid rgba(33, 86, 126, .14);
  border-radius: 8px;
  background: #f7fbfb;
}

.academy-growth-todo-metrics strong {
  display: block;
  color: #073763;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.academy-growth-todo-metrics span {
  display: block;
  margin-top: 10px;
  color: #47667a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.academy-growth-todo-board {
  padding: clamp(18px, 3vw, 28px);
}

.academy-growth-todo-toolbar {
  position: sticky;
  top: 78px;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: -6px -6px 22px;
  padding: 14px;
  border: 1px solid rgba(33, 86, 126, .13);
  border-radius: 8px;
  background: rgba(255, 253, 246, .95);
  backdrop-filter: blur(12px);
}

.academy-growth-todo-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.academy-growth-todo-toolbar__actions button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(17, 68, 105, .2);
  border-radius: 999px;
  background: #fffef8;
  color: #173b57;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.academy-growth-todo-toolbar__actions button:hover,
.academy-growth-todo-toolbar__actions button:focus-visible,
.academy-growth-todo-toolbar__actions button.is-active {
  border-color: #16789c;
  background: #0d5f86;
  color: #fff;
  outline: none;
}

.academy-growth-todo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.academy-growth-todo-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(33, 86, 126, .15);
  border-radius: 8px;
  background: #fffdf7;
}

.academy-growth-todo-card[data-growth-section="week"] {
  grid-column: 1 / -1;
  border-color: rgba(20, 125, 128, .34);
  background: linear-gradient(180deg, #f4fbf9, #fffdf7);
}

.academy-growth-todo-card__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(33, 86, 126, .12);
}

.academy-growth-todo-card__head span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e9f4f7;
  color: #0d5f86;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.academy-growth-todo-card__head h3 {
  margin: 0;
  color: #073763;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
  line-height: 1.35;
}

.academy-growth-todo-card__head p {
  margin: 0;
  color: #4a687c;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.academy-growth-todo-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-growth-todo-list li {
  border-top: 1px solid rgba(33, 86, 126, .08);
}

.academy-growth-todo-list li:first-child {
  border-top: 0;
}

.academy-growth-todo-list li[hidden] {
  display: none;
}

.academy-growth-todo-list label {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 56px;
  padding: 15px 18px;
  color: #203f58;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.72;
}

.academy-growth-todo-list label:hover {
  background: rgba(223, 242, 244, .55);
}

.academy-growth-todo-list input {
  width: 22px;
  height: 22px;
  margin: 3px 0 0;
  accent-color: #0d7d8a;
}

.academy-growth-todo-list li.is-done label {
  color: #6f8797;
  background: rgba(236, 244, 241, .8);
}

.academy-growth-todo-list li.is-done span {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(19, 125, 138, .52);
}

.academy-growth-todo-roadmap,
.academy-growth-todo-final-cta {
  padding: clamp(22px, 4vw, 36px);
}

.academy-growth-roadmap-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(33, 86, 126, .14);
  border-radius: 8px;
}

.academy-growth-roadmap-table > div {
  display: grid;
  grid-template-columns: 120px 90px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px 18px;
  border-top: 1px solid rgba(33, 86, 126, .1);
  background: #fffef8;
}

.academy-growth-roadmap-table > div:first-child {
  border-top: 0;
}

.academy-growth-roadmap-table strong,
.academy-growth-roadmap-table span {
  color: #073763;
  font-weight: 900;
}

.academy-growth-roadmap-table p {
  margin: 0;
  color: #385a72;
  font-weight: 800;
  line-height: 1.7;
}

.academy-growth-todo-final-cta {
  text-align: center;
}

.academy-growth-todo-final-cta p {
  max-width: 820px;
  margin: 0 auto;
  color: #385a72;
  font-weight: 800;
  line-height: 1.9;
}

.academy-growth-todo-final-cta .academy-growth-todo-hero__actions {
  justify-content: center;
}

@media (max-width: 1024px) {
  .academy-growth-todo-status,
  .academy-growth-todo-grid {
    grid-template-columns: 1fr;
  }

  .academy-growth-todo-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-growth-todo-toolbar {
    grid-template-columns: 1fr;
    position: static;
  }

  .academy-growth-todo-toolbar__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .academy-growth-todo-page {
    width: min(100% - 22px, 560px);
    padding-top: 82px;
  }

  .academy-growth-todo-hero,
  .academy-growth-todo-board,
  .academy-growth-todo-roadmap,
  .academy-growth-todo-final-cta {
    border-radius: 6px;
  }

  .academy-growth-todo-hero__actions,
  .academy-growth-todo-toolbar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .academy-growth-todo-hero__actions .academy-button,
  .academy-growth-todo-toolbar__actions button {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .academy-growth-todo-metrics {
    grid-template-columns: 1fr;
  }

  .academy-growth-todo-card__head {
    grid-template-columns: 1fr;
  }

  .academy-growth-todo-card__head p {
    white-space: normal;
  }

  .academy-growth-todo-list label {
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 14px;
    font-size: 14px;
  }

  .academy-growth-roadmap-table > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Route and industry entry */
.academy-route-choice,
.academy-industry-entry,
.academy-industry-page,
.academy-test-offer-page {
  padding: 64px 20px;
}

.academy-route-choice,
.academy-industry-entry {
  background:
    linear-gradient(rgba(222, 211, 187, .34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .34) 1px, transparent 1px),
    #fbf6e8;
  background-size: 22px 22px, 22px 22px, auto;
}

.academy-route-choice__inner,
.academy-industry-entry__inner,
.academy-industry-page,
.academy-test-offer-page {
  width: min(var(--academy-max), 100%);
  margin: 0 auto;
}

.academy-route-choice__grid,
.academy-industry-grid,
.academy-test-flow,
.academy-test-next-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.academy-route-card,
.academy-industry-card,
.academy-test-flow article,
.academy-test-next-grid article,
.academy-industry-topic-grid article {
  border: 1px solid rgba(13, 99, 184, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--academy-shadow);
}

.academy-route-card,
.academy-industry-card {
  padding: 24px;
}

.academy-route-card > span,
.academy-industry-card__label,
.academy-test-flow article > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(32, 168, 107, .12);
  color: var(--academy-green);
  font-size: .86rem;
  font-weight: 700;
}

.academy-route-card h3,
.academy-industry-card h3,
.academy-test-flow h3,
.academy-test-next-grid h3 {
  margin: 14px 0 8px;
  color: var(--academy-blue-dark);
  line-height: 1.45;
}

.academy-route-card p,
.academy-industry-card p,
.academy-test-flow p,
.academy-test-next-grid p {
  margin: 0 0 18px;
  color: var(--academy-muted);
  line-height: 1.85;
}

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

.academy-industry-entry__grid a {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(13, 99, 184, .18);
  border-radius: 8px;
  background: #fff;
  color: var(--academy-ink);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 23, 43, .06);
}

.academy-industry-entry__actions,
.academy-industry-hero__actions,
.academy-test-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.academy-industry-hero,
.academy-test-hero {
  padding: 56px;
  border: 1px solid rgba(13, 99, 184, .16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(8, 168, 199, .14), transparent 26%),
    linear-gradient(135deg, #fff, #f5fbff 58%, #fff8e8);
  box-shadow: var(--academy-shadow);
}

.academy-industry-hero h1,
.academy-test-hero h1 {
  margin: 8px 0 16px;
  color: var(--academy-blue-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.25;
}

.academy-industry-hero p,
.academy-test-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--academy-muted);
  font-size: 1.05rem;
  line-height: 1.95;
}

.academy-industry-section,
.academy-test-section {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(13, 99, 184, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--academy-shadow);
}

.academy-industry-section h2,
.academy-test-section h2 {
  margin: 0 0 16px;
  color: var(--academy-blue-dark);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.academy-industry-section ul,
.academy-test-section ul {
  margin: 0;
  padding-left: 1.25em;
  color: var(--academy-ink);
  line-height: 1.9;
}

.academy-industry-section--split,
.academy-test-section--split,
.academy-test-section--intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.academy-test-section--intro aside {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  background: var(--academy-soft-2);
  color: var(--academy-blue-dark);
}

.academy-industry-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.academy-industry-checklist li {
  padding: 16px;
  border-radius: 8px;
  background: var(--academy-soft);
}

.academy-industry-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.academy-industry-topic-grid article {
  padding: 18px;
  color: var(--academy-ink);
  font-weight: 700;
  line-height: 1.7;
}

.academy-industry-faq-list {
  display: grid;
  gap: 10px;
}

.academy-test-flow article,
.academy-test-next-grid article {
  padding: 22px;
}

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

.academy-test-next-grid a {
  color: var(--academy-blue);
  font-weight: 700;
}

.academy-test-copy {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.academy-test-copy p {
  margin: 0;
  color: var(--academy-muted);
  line-height: 1.8;
}

.academy-test-copy__box {
  display: grid;
  gap: 12px;
}

.academy-test-copy__box textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  padding: 16px;
  border: 1px solid rgba(13, 99, 184, .18);
  border-radius: 8px;
  background: #f7fbff;
  color: var(--academy-ink);
  font: inherit;
  line-height: 1.75;
}

.academy-test-copy__box .academy-button {
  justify-self: start;
}

/* Manga room */
.academy-page--manga .academy-main,
.academy-manga-entry,
.academy-hearing-page,
.academy-fukuoka-page {
  padding: 64px 20px;
  background:
    linear-gradient(rgba(222, 211, 187, .3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 211, 187, .3) 1px, transparent 1px),
    #fbf6e8;
  background-size: 22px 22px, 22px 22px, auto;
}

.academy-manga-page {
  padding: 0;
}

.academy-manga-entry__inner,
.academy-manga-page,
.academy-hearing-page,
.academy-fukuoka-page {
  width: min(var(--academy-max), calc(100% - 40px));
  margin: 0 auto;
}

.academy-manga-entry__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.academy-manga-entry__copy,
.academy-manga-hero,
.academy-manga-intro,
.academy-manga-summary,
.academy-manga-deep-link,
.academy-hearing-hero,
.academy-hearing-note,
.academy-hearing-form,
.academy-hearing-result,
.academy-fukuoka-hero,
.academy-fukuoka-section {
  border: 1px solid rgba(13, 99, 184, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--academy-shadow);
}

.academy-manga-entry__copy,
.academy-manga-hero,
.academy-manga-intro,
.academy-manga-summary,
.academy-manga-deep-link,
.academy-hearing-hero,
.academy-hearing-note,
.academy-hearing-form,
.academy-hearing-result,
.academy-fukuoka-hero,
.academy-fukuoka-section {
  padding: 32px;
}

.academy-manga-entry__copy h2,
.academy-manga-hero h1,
.academy-manga-intro h2,
.academy-manga-grid-section h2,
.academy-manga-summary h2,
.academy-manga-deep-link h2,
.academy-hearing-hero h1,
.academy-hearing-note h2,
.academy-hearing-result h2,
.academy-fukuoka-hero h1,
.academy-fukuoka-section h2 {
  margin: 0 0 14px;
  color: var(--academy-blue-dark);
  line-height: 1.35;
}

.academy-manga-entry__copy p,
.academy-manga-hero p,
.academy-manga-intro p,
.academy-manga-card p,
.academy-manga-note p,
.academy-manga-deep-link p,
.academy-hearing-hero p,
.academy-hearing-note li,
.academy-hearing-result p,
.academy-fukuoka-hero p,
.academy-fukuoka-section p {
  color: var(--academy-muted);
  line-height: 1.9;
}

.academy-manga-entry__actions,
.academy-manga-hero__actions,
.academy-hearing-hero__actions,
.academy-hearing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.academy-manga-entry__preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.academy-manga-entry__preview img,
.academy-manga-card img,
.academy-manga-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.academy-manga-entry__preview img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(13, 99, 184, .16);
  box-shadow: 0 16px 32px rgba(7, 23, 43, .14);
}

.academy-curriculum__manga-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(32, 168, 107, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
}

.academy-curriculum__manga-link p {
  margin: 0;
  color: var(--academy-ink);
  font-weight: 700;
  line-height: 1.7;
}

.academy-lesson-manga-bridge {
  padding: 24px 20px 0;
  background: #fbf6e8;
}

.academy-lesson-manga-bridge__inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(var(--academy-max), 100%);
  margin: 0 auto;
  padding: 20px 24px;
  border: 1px solid rgba(32, 168, 107, .22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 23, 43, .08);
}

.academy-lesson-manga-bridge h2 {
  margin: 0 0 6px;
  color: var(--academy-blue-dark);
  font-size: 1.35rem;
}

.academy-lesson-manga-bridge p {
  margin: 0;
  color: var(--academy-muted);
  line-height: 1.75;
}

.academy-manga-page {
  display: grid;
  gap: 28px;
}

.academy-hearing-page {
  display: grid;
  gap: 28px;
}

.academy-manga-hero h1 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.academy-hearing-hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.academy-hearing-note ul {
  margin: 0;
  padding-left: 1.25em;
  line-height: 1.9;
}

.academy-hearing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 22px;
  align-items: start;
}

.academy-hearing-form,
.academy-hearing-result {
  display: grid;
  gap: 16px;
}

.academy-hearing-result {
  position: sticky;
  top: 96px;
}

.academy-hearing-field {
  display: grid;
  gap: 8px;
}

.academy-hearing-field label {
  color: var(--academy-blue-dark);
  font-weight: 800;
}

.academy-hearing-field input,
.academy-hearing-field textarea,
.academy-hearing-result textarea {
  width: 100%;
  border: 1px solid rgba(13, 99, 184, .18);
  border-radius: 8px;
  background: #f7fbff;
  color: var(--academy-ink);
  font: inherit;
  line-height: 1.75;
}

.academy-hearing-field input {
  min-height: 48px;
  padding: 10px 14px;
}

.academy-hearing-field textarea,
.academy-hearing-result textarea {
  padding: 14px;
  resize: vertical;
}

.academy-hearing-result__status {
  margin: 0;
  color: var(--academy-green);
  font-weight: 800;
}

.academy-manga-intro,
.academy-manga-deep-link {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

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

.academy-manga-card a {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(13, 99, 184, .16);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--academy-shadow);
}

.academy-manga-card span,
.academy-manga-note span {
  color: var(--academy-green);
  font-weight: 800;
}

.academy-manga-card h3 {
  margin: 0;
  color: var(--academy-blue-dark);
  font-size: 1rem;
  line-height: 1.5;
}

.academy-manga-card p {
  margin: 0;
  font-size: .92rem;
}

.academy-manga-story {
  display: grid;
  gap: 18px;
}

.academy-manga-panel {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(13, 99, 184, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--academy-shadow);
}

.academy-manga-note {
  position: relative;
  margin: 0 auto;
  width: min(860px, 100%);
  padding: 20px 24px;
  border-left: 5px solid var(--academy-green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 23, 43, .08);
}

.academy-manga-note p {
  margin: 8px 0 0;
}

.academy-manga-summary ul,
.academy-fukuoka-section ul {
  margin: 0;
  padding-left: 1.25em;
  color: var(--academy-ink);
  line-height: 1.9;
}

.academy-manga-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.academy-manga-nav a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(13, 99, 184, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--academy-blue-dark);
  text-decoration: none;
}

.academy-manga-nav span {
  color: var(--academy-green);
  font-size: .86rem;
  font-weight: 800;
}

/* Fukuoka entry */
.academy-fukuoka-page {
  display: grid;
  gap: 28px;
}

.academy-fukuoka-hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.academy-fukuoka-hero__actions,
.academy-fukuoka-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.academy-fukuoka-section--split,
.academy-fukuoka-offer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.academy-fukuoka-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.academy-fukuoka-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(13, 99, 184, .14);
  border-radius: 8px;
  background: #fff;
}

.academy-fukuoka-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--academy-ink);
  line-height: 1.75;
}

.academy-fukuoka-table th,
.academy-fukuoka-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(13, 99, 184, .12);
  text-align: left;
  vertical-align: top;
}

.academy-fukuoka-table thead th {
  background: rgba(13, 99, 184, .08);
  color: var(--academy-blue-dark);
  font-weight: 800;
}

.academy-fukuoka-table tbody th {
  width: 120px;
  color: var(--academy-green);
  font-weight: 800;
}

.academy-fukuoka-table tr:last-child th,
.academy-fukuoka-table tr:last-child td {
  border-bottom: 0;
}

.academy-fukuoka-checkgrid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.academy-fukuoka-steps article,
.academy-fukuoka-checkgrid article,
.academy-fukuoka-offer {
  padding: 20px;
  border: 1px solid rgba(13, 99, 184, .14);
  border-radius: 8px;
  background: var(--academy-soft);
}

.academy-fukuoka-steps span,
.academy-fukuoka-checkgrid span {
  color: var(--academy-green);
  font-weight: 800;
}

.academy-fukuoka-steps h3,
.academy-fukuoka-checkgrid h3,
.academy-fukuoka-offer h3 {
  margin: 8px 0;
  color: var(--academy-blue-dark);
}

.academy-fukuoka-checkgrid p {
  margin: 0;
  font-size: .94rem;
}

@media (max-width: 900px) {
  .academy-route-choice__grid,
  .academy-manga-grid,
  .academy-fukuoka-steps,
  .academy-fukuoka-checkgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-industry-entry__grid,
  .academy-industry-topic-grid,
  .academy-test-next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-industry-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .academy-route-choice,
  .academy-industry-entry,
  .academy-industry-page,
  .academy-test-offer-page {
    padding: 44px 16px;
  }

  .academy-route-choice__grid,
  .academy-industry-grid,
  .academy-test-flow,
  .academy-test-next-grid,
  .academy-test-copy,
  .academy-manga-entry__inner,
  .academy-manga-entry__preview,
  .academy-manga-intro,
  .academy-manga-grid,
  .academy-manga-deep-link,
  .academy-manga-nav,
  .academy-hearing-layout,
  .academy-fukuoka-section--split,
  .academy-fukuoka-steps,
  .academy-fukuoka-checkgrid,
  .academy-fukuoka-offer,
  .academy-industry-entry__grid,
  .academy-industry-topic-grid,
  .academy-industry-section--split,
  .academy-test-section--split,
  .academy-test-section--intro {
    grid-template-columns: 1fr;
  }

  .academy-industry-hero,
  .academy-test-hero,
  .academy-industry-section,
  .academy-test-section,
  .academy-manga-entry__copy,
  .academy-manga-hero,
  .academy-manga-intro,
  .academy-manga-summary,
  .academy-manga-deep-link,
  .academy-hearing-hero,
  .academy-hearing-note,
  .academy-hearing-form,
  .academy-hearing-result,
  .academy-fukuoka-hero,
  .academy-fukuoka-section {
    padding: 24px;
  }

  .academy-hearing-result {
    position: static;
  }

  .academy-lesson-manga-bridge__inner {
    display: grid;
  }

  .academy-industry-hero__actions .academy-button,
  .academy-test-hero__actions .academy-button,
  .academy-industry-entry__actions .academy-button,
  .academy-manga-entry__actions .academy-button,
  .academy-manga-hero__actions .academy-button,
  .academy-hearing-hero__actions .academy-button,
  .academy-hearing-actions .academy-button,
  .academy-fukuoka-hero__actions .academy-button,
  .academy-fukuoka-offer__actions .academy-button,
  .academy-lesson-manga-bridge .academy-button {
    width: 100%;
    justify-content: center;
  }
}
