:root {
  --ink: #14223a;
  --ink-soft: #263750;
  --paper: #fffdf8;
  --paper-warm: #fff5e8;
  --cloud: #f2f7f8;
  --line: #d6e0e5;
  --orange: #ff7a1a;
  --orange-dark: #c74b00;
  --cyan: #08a9c2;
  --green: #18965d;
  --yellow: #ffd64a;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(20, 34, 58, 0.08);
  --shadow-md: 0 24px 70px rgba(20, 34, 58, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --content: 1180px;
  --narrow: 850px;
  --font-ja: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Space Grotesk", var(--font-ja);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.025em;
  overflow-x: clip;
}

body.is-menu-open {
  overscroll-behavior: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

figure,
p,
ul,
ol,
dl {
  margin-top: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.pc-br {
  display: inline;
}

.sp-br {
  display: none;
}

.always-br {
  display: inline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(20, 34, 58, 0.1);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-compact {
  box-shadow: 0 8px 28px rgba(20, 34, 58, 0.09);
  background: rgba(255, 253, 248, 0.98);
}

.site-header__inner {
  width: min(calc(100% - 40px), 1360px);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  text-decoration: none;
}

.site-header__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-header__brand-text {
  display: grid;
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.15;
}

.site-header__brand-text small {
  margin-top: 5px;
  color: var(--orange-dark);
  font-family: var(--font-en);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header__nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-header__nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 12px;
  border: 2px solid var(--ink);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button,
.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 rgba(20, 34, 58, 0.12);
}

.button--primary,
.button--primary:visited {
  color: var(--ink);
  background: var(--orange);
}

.button--primary:hover {
  background: #ff913f;
}

.button--secondary,
.button--secondary:visited {
  color: var(--ink);
  background: var(--white);
}

.button--secondary:hover {
  background: var(--paper-warm);
}

.button--light,
.button--light:visited {
  color: var(--ink);
  background: var(--yellow);
}

.site-header__cta {
  min-height: 46px;
  padding: 9px 18px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 214, 74, 0.3) 0 10%, transparent 11%),
    linear-gradient(135deg, #fffdf8 0%, #fff9ef 52%, #eefafd 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 9%;
  right: -8%;
  width: 34vw;
  height: 34vw;
  border: 2px dashed rgba(8, 169, 194, 0.35);
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.hero::after {
  right: 22%;
  bottom: 8%;
  width: 140px;
  height: 24px;
  background: var(--orange);
  transform: rotate(-6deg);
  opacity: 0.85;
}

.hero__inner {
  width: min(calc(100% - 48px), 1360px);
  margin: 0 auto;
  padding: clamp(54px, 5vw, 76px) 0 clamp(72px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
  animation: hero-in 0.7s ease-out both;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 11px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__title,
.section-heading h2,
.workshop__content h2,
.no-homepage__content h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.65rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero__title {
  position: relative;
  max-width: 13em;
}

.hero__title::after {
  display: block;
  width: 150px;
  height: 10px;
  margin-top: 24px;
  content: "";
  background: linear-gradient(90deg, var(--orange) 0 48%, var(--cyan) 48% 75%, var(--green) 75%);
  border-radius: 999px;
}

.hero__lead {
  max-width: 42em;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero__lead p {
  margin-bottom: 8px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.hero__badges li {
  padding: 7px 13px;
  border: 1px solid var(--ink);
  background: var(--white);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero__badges li:nth-child(1) {
  background: #e5f8fb;
}

.hero__badges li:nth-child(4) {
  background: #fff0df;
}

.hero__actions,
.final-cta__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__action-note,
.hero__boundary {
  max-width: 46em;
  margin: 14px 0 0;
  font-size: 0.83rem;
  line-height: 1.65;
}

.hero__boundary {
  padding-left: 12px;
  border-left: 4px solid var(--orange);
  color: #48556a;
}

.hero__visual {
  position: relative;
  margin: 0;
  transform: rotate(1.2deg);
}

.hero__visual--mobile {
  display: none;
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: 18px;
  bottom: 16px;
  left: -18px;
  content: "";
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  transform: rotate(-2.4deg);
}

.hero__visual img {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

figure figcaption {
  margin-top: 10px;
  color: #526177;
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero__visual figcaption {
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 142px) 0;
}

.section__inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.section__inner--narrow {
  width: min(calc(100% - 48px), var(--narrow));
}

.section--tint {
  background: var(--cloud);
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(8, 169, 194, 0.2), transparent 26%),
    radial-gradient(circle at 90% 70%, rgba(255, 122, 26, 0.18), transparent 30%),
    var(--ink);
}

.section-heading {
  max-width: 830px;
  margin: 0 auto clamp(44px, 6vw, 74px);
}

.section-heading--center {
  text-align: center;
}

.section-heading h2,
.workshop__content h2,
.no-homepage__content h2,
.final-cta h2 {
  font-size: clamp(2rem, 3.5vw, 3.75rem);
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 22px auto 0;
  color: #4a5b70;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.section--dark .section-heading > p:last-child,
.section--dark figure figcaption {
  color: #c9d5e3;
}

.empathy {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 122, 26, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 122, 26, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.empathy__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 940px;
  margin: 0 auto 48px;
  padding: 0;
  list-style: none;
}

.empathy__list li {
  position: relative;
  padding: 18px 20px 18px 52px;
  border: 1px solid #e3d6c6;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.empathy__list li::before {
  position: absolute;
  top: 19px;
  left: 18px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  content: "!";
  background: var(--orange-dark);
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 900;
  line-height: 1;
}

.empathy__message {
  max-width: 820px;
  margin: 0 auto 58px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--orange);
}

.empathy__message p {
  margin-bottom: 14px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.empathy__message p:last-child {
  margin-bottom: 0;
}

.empathy__comic {
  width: min(100%, 700px);
  margin: 0 auto;
}

.empathy__comic img {
  width: 100%;
  border: 3px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.transformation__flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: flow;
}

.transformation__step {
  position: relative;
  min-height: 236px;
  padding: 24px 20px;
  border: 2px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
}

.transformation__step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  content: "→";
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 900;
  transform: translateY(-50%);
}

.transformation__step--skills {
  color: var(--white);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
}

.transformation__number {
  display: block;
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 900;
}

.transformation__step--skills .transformation__number {
  color: var(--yellow);
}

.transformation__step h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.transformation__step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
}

.transformation__outputs {
  margin-top: 48px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.transformation__outputs h3 {
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

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

.transformation__outputs li {
  position: relative;
  padding-left: 28px;
}

.transformation__outputs li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.notice {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: var(--radius-sm);
}

.notice--important {
  border: 2px solid var(--orange-dark);
  background: #fff0e2;
}

.notice h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.notice p {
  margin: 0;
}

.business-effects__visual,
.weekly-topics__visual {
  max-width: 1060px;
  margin: 0 auto clamp(44px, 6vw, 72px);
}

.business-effects__visual img,
.weekly-topics__visual img,
.no-homepage__visual img,
.workshop__visual img {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

.business-effects__card {
  position: relative;
  padding: 34px 28px 30px;
  border-top: 8px solid var(--cyan);
  background: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.business-effects__card:nth-child(2) {
  border-color: var(--orange);
}

.business-effects__card:nth-child(3) {
  border-color: var(--green);
}

.business-effects__number {
  color: #8d99a8;
  font-family: var(--font-en);
  font-size: 0.83rem;
  font-weight: 900;
}

.business-effects__card h3 {
  margin: 12px 0 6px;
  font-size: 1.45rem;
  line-height: 1.45;
}

.business-effects__term {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 10px;
  background: var(--cloud);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.business-effects__result {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px dashed #aeb9c4;
  font-weight: 800;
}

.featured-steps__grid {
  display: grid;
  gap: clamp(34px, 5vw, 62px);
  max-width: 1080px;
  margin: 0 auto;
}

.featured-steps__visual {
  margin: 0;
}

.featured-steps__visual picture,
.featured-steps__visual img {
  display: block;
  width: 100%;
}

.featured-steps__visual img {
  height: auto;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.featured-steps__visual figcaption {
  margin-top: 14px;
  color: #556276;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.featured-steps__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  max-width: 1080px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  padding: 24px 28px;
  border: 2px dashed var(--cyan-dark);
  background: var(--white);
  border-radius: var(--radius-sm);
}

.featured-steps__note p {
  max-width: 690px;
  margin: 0;
}

.featured-steps__note .button {
  flex: 0 0 auto;
}

.capabilities .eyebrow {
  color: var(--yellow);
}

.capabilities__group {
  margin-top: 42px;
}

.capabilities__group > h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.capabilities__group > h3::before {
  width: 38px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
}

.capabilities__group:nth-of-type(2) > h3::before,
.capabilities__group:nth-of-type(5) > h3::before {
  background: var(--cyan);
}

.capabilities__group:nth-of-type(3) > h3::before {
  background: var(--green);
}

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

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

.capability-card {
  min-height: 220px;
  padding: 24px 22px;
  color: var(--ink);
  background: #fffefb;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.18);
}

.capability-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 900;
}

.capability-card h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.capability-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
}

.capabilities__update {
  margin: 48px 0 26px;
  padding: 22px 26px;
  color: var(--white);
  border: 1px dashed #7890aa;
  border-radius: var(--radius-sm);
  text-align: center;
}

.section-actions {
  justify-content: center;
}

.month-plan__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.month-plan__timeline::before {
  position: absolute;
  top: 29px;
  right: 8%;
  left: 8%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--orange), var(--green));
}

.month-plan__week {
  position: relative;
  padding: 78px 24px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.month-plan__week > span {
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 4px solid var(--paper);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.month-plan__week h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  line-height: 1.45;
}

.month-plan__week p {
  font-size: 0.9rem;
}

.month-plan__example {
  margin: 20px 0 0;
  padding-top: 15px;
  border-top: 1px dashed #aab5c0;
  color: #405268;
  font-weight: 700;
}

.month-plan__note {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 18px 22px;
  color: #526177;
  background: var(--cloud);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-align: center;
}

.weekly-topics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.weekly-topics__grid li {
  position: relative;
  padding: 26px 24px 24px 70px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.weekly-topics__grid span {
  position: absolute;
  top: 24px;
  left: 22px;
  color: var(--orange-dark);
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 900;
}

.weekly-topics__grid h3 {
  margin: 0 0 7px;
  font-size: 1.04rem;
  line-height: 1.45;
}

.weekly-topics__grid p {
  margin: 0;
  color: #526177;
  font-size: 0.86rem;
  line-height: 1.7;
}

.weekly-topics__visual {
  margin-bottom: 0;
}

.no-homepage {
  background:
    linear-gradient(120deg, transparent 0 63%, rgba(255, 214, 74, 0.22) 63% 100%),
    var(--paper);
}

.no-homepage__inner,
.workshop__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
}

.no-homepage__content p {
  color: #405268;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.text-link::after {
  content: "→";
}

.no-homepage__visual,
.workshop__visual {
  margin: 0;
}

.workshop__content .eyebrow {
  color: var(--yellow);
}

.workshop__content > p:not(.eyebrow) {
  color: #d5e0eb;
}

.workshop__schedule {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.workshop__schedule > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-sm);
}

.workshop__schedule dt {
  font-weight: 900;
}

.workshop__schedule dd {
  margin: 0;
}

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

.workshop__schedule strong {
  font-size: 1.13rem;
}

.workshop__schedule span {
  color: #536176;
  font-size: 0.78rem;
}

.workshop__attendance {
  padding: 18px 20px;
  border: 1px solid #627791;
  border-radius: var(--radius-sm);
}

.workshop__tasks-title {
  margin: 56px 0 20px;
  text-align: center;
}

.workshop__tasks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workshop__tasks li {
  padding: 9px 14px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
}

.pricing {
  background:
    radial-gradient(circle at 90% 10%, rgba(8, 169, 194, 0.12), transparent 24%),
    var(--paper);
}

.pricing__card {
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--ink);
}

.pricing__summary {
  padding: 32px 24px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.pricing__summary p {
  margin-bottom: 4px;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.pricing__price strong {
  color: var(--yellow);
  font-family: var(--font-en);
  font-size: 5.6rem;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing__price span {
  font-weight: 800;
}

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

.pricing__included,
.pricing__excluded {
  padding: clamp(28px, 5vw, 50px);
}

.pricing__included {
  background: #effaf4;
  border-right: 1px solid var(--line);
}

.pricing__excluded {
  background: #fff5ed;
}

.pricing__included h3,
.pricing__excluded h3,
.pricing__review h3 {
  margin: 0 0 22px;
  font-size: 1.45rem;
}

.pricing__included h3 {
  color: #0d6f43;
}

.pricing__excluded h3 {
  color: #a43b00;
}

.pricing__boundaries ul,
.pricing__review ul,
.fit__column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing__boundaries li,
.pricing__review li,
.fit__column li {
  position: relative;
  padding-left: 28px;
}

.pricing__included li::before,
.fit__column--yes li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.pricing__excluded li::before,
.fit__column--other li::before {
  position: absolute;
  left: 0;
  color: var(--orange-dark);
  content: "—";
  font-weight: 900;
}

.pricing__review {
  margin: 30px clamp(28px, 5vw, 50px) 0;
  padding: 28px;
  border: 2px dashed var(--cyan);
  border-radius: var(--radius-md);
}

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

.pricing__review li::before {
  position: absolute;
  left: 0;
  color: var(--cyan);
  content: "□";
  font-weight: 900;
}

.pricing__plain-summary {
  margin: 30px clamp(28px, 5vw, 50px) 0;
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-sm);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  text-align: center;
}

.pricing__action {
  padding: 30px 24px 38px;
  text-align: center;
}

.pricing__action p {
  margin: 12px 0 0;
  color: #57667a;
  font-size: 0.82rem;
}

.fit__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 22px;
}

.fit__column {
  padding: clamp(28px, 5vw, 46px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.fit__column--yes {
  border-top: 8px solid var(--green);
}

.fit__column--other {
  border-top: 8px solid var(--orange);
}

.fit__column h3 {
  margin: 0 0 24px;
  font-size: 1.4rem;
}

.fit__column--other > p {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px dashed #aeb9c4;
  font-weight: 700;
}

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

.public-proof__card {
  position: relative;
  display: block;
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.public-proof__card::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--orange-dark);
  content: "↗";
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
}

.public-proof__card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--ink);
}

.public-proof__card > span {
  display: inline-block;
  padding: 4px 9px;
  color: var(--white);
  background: var(--cyan);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.public-proof__card:nth-child(2) > span,
.public-proof__card:nth-child(4) > span {
  background: var(--green);
}

.public-proof__card h3 {
  margin: 18px 0 10px;
  font-size: 1.3rem;
  line-height: 1.45;
}

.public-proof__card p {
  color: #526177;
}

.public-proof__card strong {
  color: var(--orange-dark);
}

.public-proof__disclaimer {
  margin: 28px 0 0;
  color: #5a687a;
  font-size: 0.82rem;
  text-align: center;
}

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

.faq__item {
  overflow: clip;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 20px 62px 20px 22px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.55;
  list-style: none;
}

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

.faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  color: var(--orange-dark);
  content: "+";
  font-family: var(--font-en);
  font-size: 1.8rem;
  text-align: center;
  transform: translateY(-50%);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item summary span {
  flex: 0 0 auto;
  color: var(--cyan);
  font-family: var(--font-en);
  font-size: 0.78rem;
}

.faq__answer {
  padding: 0 62px 24px 58px;
  color: #43546a;
}

.faq__answer p {
  margin: 0;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 169, 194, 0.2), transparent 40%),
    linear-gradient(315deg, rgba(255, 122, 26, 0.24), transparent 40%),
    var(--ink);
  text-align: center;
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.final-cta__copy {
  max-width: 720px;
  margin: 28px auto;
  color: #d7e2ec;
}

.final-cta__actions {
  justify-content: center;
}

.final-cta__note {
  margin: 24px 0 0;
  color: var(--yellow);
  font-weight: 900;
}

.site-footer {
  color: #d7e0e9;
  background: #0d1829;
}

.site-footer__inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 70px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
  gap: 70px;
}

.site-footer__brand > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.site-footer__brand img {
  width: 54px;
  height: 54px;
}

.site-footer__brand small {
  display: block;
  color: var(--orange);
  font-family: var(--font-en);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.site-footer__brand p {
  max-width: 420px;
  margin: 20px 0 0;
  color: #aebccb;
  font-size: 0.85rem;
}

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

.site-footer__nav h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.site-footer__nav a {
  display: block;
  margin-top: 9px;
  color: #c8d3de;
  font-size: 0.84rem;
}

.site-footer__nav a:hover {
  color: var(--yellow);
}

.site-footer__bottom {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #2a394c;
  color: #8292a5;
  font-size: 0.74rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }

  .section-heading--center {
    text-align: left;
  }
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .site-header__toggle {
    display: block;
    grid-column: 3;
  }

  .site-header__cta {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header__nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    max-height: calc(100svh - 82px);
    width: 100vw;
    max-width: none;
    justify-self: stretch;
    grid-column: 1 / -1;
    padding: 24px max(24px, calc((100vw - 1120px) / 2));
    display: grid;
    gap: 0;
    overflow-y: auto;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(20, 34, 58, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header__nav a {
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 44px;
  }

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

  .transformation__step:nth-child(3)::after {
    display: none;
  }

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

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

  .month-plan__timeline::before {
    display: none;
  }

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

@media (max-width: 900px) {
  .hero::after {
    display: none;
  }

  .hero__inner,
  .no-homepage__inner,
  .workshop__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__visual--desktop {
    display: none;
  }

  .hero__visual--mobile {
    display: block;
    width: min(100%, 720px);
    margin: 30px auto 0;
  }

  .hero__visual--desktop {
    width: min(100%, 720px);
    margin: 20px auto 0;
  }

  .business-effects__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .business-effects__card {
    border-top-width: 6px;
  }

  .featured-steps__note {
    align-items: stretch;
    flex-direction: column;
  }

  .featured-steps__note .button {
    width: 100%;
  }

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

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

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
    line-height: 1.85;
  }

  html {
    scroll-padding-top: 74px;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }

  .site-header__inner {
    width: min(calc(100% - 24px), 1360px);
    min-height: 70px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .site-header__logo {
    width: 40px;
    height: 40px;
  }

  .site-header__brand-text {
    font-size: 0.9rem;
  }

  .site-header__brand-text small {
    font-size: 0.54rem;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__toggle {
    grid-column: 2;
    width: 44px;
    height: 44px;
  }

  .site-header__nav {
    top: 70px;
    max-height: calc(100svh - 70px);
    padding: 18px 20px 26px;
  }

  .hero__inner,
  .section__inner,
  .site-footer__inner,
  .site-footer__bottom {
    width: min(calc(100% - 28px), var(--content));
  }

  .section__inner--narrow {
    width: min(calc(100% - 28px), var(--narrow));
  }

  .hero__inner {
    padding: 52px 0 78px;
    gap: 30px;
  }

  .hero__title {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
    line-height: 1.18;
  }

  .hero__title::after {
    width: 110px;
    height: 8px;
    margin-top: 18px;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero__badges {
    gap: 7px;
  }

  .hero__badges li {
    padding: 6px 9px;
    box-shadow: 2px 2px 0 var(--ink);
    font-size: 0.72rem;
  }

  .hero__actions,
  .final-cta__actions {
    display: grid;
  }

  .hero__actions .button,
  .final-cta__actions .button,
  .pricing__action .button {
    width: 100%;
  }

  .hero__visual {
    transform: none;
  }

  .hero__visual::before {
    top: -9px;
    right: 8px;
    bottom: 8px;
    left: -8px;
    border-radius: var(--radius-md);
  }

  .hero__visual img {
    border-radius: var(--radius-md);
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading--center {
    text-align: left;
  }

  .section-heading > p:last-child {
    margin-top: 17px;
  }

  .section-heading h2,
  .workshop__content h2,
  .no-homepage__content h2,
  .final-cta h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.25;
  }

  .empathy__list,
  .transformation__outputs ul,
  .pricing__boundaries,
  .pricing__review ul,
  .public-proof__grid,
  .site-footer__nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .empathy__list li {
    padding: 16px 16px 16px 48px;
  }

  .empathy__message {
    padding: 26px 22px;
    box-shadow: 7px 7px 0 var(--orange);
  }

  .transformation__flow {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .transformation__step {
    min-height: 0;
  }

  .transformation__step:not(:last-child)::after,
  .transformation__step:nth-child(3)::after {
    top: auto;
    right: auto;
    bottom: -28px;
    left: 50%;
    display: grid;
    content: "↓";
    transform: translateX(-50%);
  }

  .business-effects__visual,
  .weekly-topics__visual,
  .featured-steps__visual {
    margin-right: -4px;
    margin-left: -4px;
  }

  .featured-steps__visual figcaption {
    padding: 0 4px;
    text-align: left;
  }

  .capability-grid,
  .capabilities__grid--two,
  .month-plan__timeline,
  .weekly-topics__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .capability-card {
    min-height: 0;
  }

  .month-plan__week {
    padding-top: 26px;
  }

  .month-plan__week > span {
    position: static;
    display: inline-grid;
    width: auto;
    height: auto;
    margin-bottom: 16px;
    padding: 5px 10px;
    border: 0;
    border-radius: 999px;
    transform: none;
  }

  .month-plan__note {
    text-align: left;
  }

  .weekly-topics__grid li {
    padding-left: 64px;
  }

  .no-homepage {
    background: var(--paper);
  }

  .workshop__schedule > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .pricing__card {
    border-radius: var(--radius-md);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .pricing__included {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing__review {
    margin: 24px 18px 0;
    padding: 22px 18px;
  }

  .pricing__plain-summary {
    margin: 24px 18px 0;
    text-align: left;
  }

  .public-proof__card {
    min-height: 0;
    padding: 24px;
  }

  .faq__item summary {
    min-height: 66px;
    padding: 17px 50px 17px 16px;
  }

  .faq__item summary span {
    display: none;
  }

  .faq__item summary::after {
    right: 16px;
  }

  .faq__answer {
    padding: 0 18px 20px;
  }

  .site-footer__inner {
    padding-top: 54px;
  }

  .site-footer__nav {
    gap: 30px;
  }

  .site-footer__bottom {
    display: grid;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero__actions,
  .final-cta__actions {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .hero {
    padding: 28px 0;
    color: #000;
    background: #fff !important;
  }
}
