:root {
  --cream: #fdf8f4;
  --shell: #ffffff;
  --rose: #d866a1;
  --rose-deep: #c65d91;
  --terracotta: #c67a5c;
  --gold: #c9a77a;
  --brown: #6f6860;
  --brown-soft: #8f8b81;
  --sage: #7e9a8b;
  --sage-light: #eef5f1;
  --plum: #9c74b8;
  --ink: #5f5a54;
  --white: #ffffff;
  --line: rgba(143, 139, 129, 0.22);
  --shadow: 0 24px 54px rgba(143, 139, 129, 0.16);
  --radius: 4px;
  --content: 1100px;
}

body {
  color: var(--brown-soft);
  background:
    radial-gradient(circle at 12% 4%, rgba(216, 102, 161, 0.09), transparent 22%),
    radial-gradient(circle at 90% 18%, rgba(126, 154, 139, 0.12), transparent 26%),
    linear-gradient(180deg, #fff 0%, var(--cream) 42%, #fff 100%);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(143, 139, 129, 0.06) 50%, transparent 50.1%),
    linear-gradient(180deg, transparent 0 49.9%, rgba(143, 139, 129, 0.04) 50%, transparent 50.1%);
  background-size: 180px 180px;
  opacity: 0.42;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 36px rgba(143, 139, 129, 0.08);
  backdrop-filter: blur(18px);
}

.site-header .brand {
  min-width: auto;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 74px;
  height: 74px;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.brand-name,
h1,
h2,
.feature-card h3,
.curriculum-card h3,
.support-card h3,
.voice-card h3,
.profile-copy h3,
.faq-item h3,
.card h3 {
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: none;
}

.brand-sub,
.nav a:hover,
.nav .current {
  color: var(--rose-deep);
}

.brand-sub {
  letter-spacing: 0;
}

.nav {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.menu-toggle {
  display: none;
}

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

.nav a:hover,
.nav .current {
  border-bottom-color: rgba(216, 102, 161, 0.42);
}

.section-text,
.feature-card p,
.curriculum-card p,
.support-card p,
.voice-card p,
.profile-copy p,
.faq-item p,
.card p,
.card li {
  overflow-wrap: anywhere;
}

.nav-cta,
.button,
.button.primary,
.button.secondary {
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: none;
  text-shadow: none;
  transition: transform 0.35s ease, border-color 0.35s ease, color 0.35s ease, background-color 0.35s ease;
}

.nav-cta,
.button.primary,
.button:not(.secondary) {
  background: var(--white);
  color: var(--rose-deep);
  border-color: rgba(216, 102, 161, 0.34);
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.button::after,
.nav-cta::after,
.tile-cta::after {
  content: "";
  width: 11px;
  height: 8px;
  margin-left: 14px;
  background: currentColor;
  clip-path: polygon(0 38%, 70% 38%, 70% 0, 100% 50%, 70% 100%, 70% 62%, 0 62%);
  transition: transform 0.35s ease;
}

.button:hover,
.nav-cta:hover,
.tile-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 102, 161, 0.55);
  background: var(--white);
  color: var(--rose);
  box-shadow: none;
}

.button:hover::after,
.nav-cta:hover::after,
.tile-cta:hover::after {
  transform: translateX(6px);
}

.page-hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.76) 38%, rgba(255, 255, 255, 0.1) 72%),
    url("hero-daifuku-portrait.png") center right / cover no-repeat;
}

.hero {
  color: var(--ink);
  background: url("hero-daifuku-firstview-text.png") center right / cover no-repeat;
  min-height: min(820px, 88vh);
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20viewBox%3D%220%200%201366%2030%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20fill%3D%22%23fdf8f4%22%20d%3D%22M0%200c0%2030%20683%2029%20683%2029s683%201%20683-29v30H0V0Z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 100%;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(96px, 11vw, 150px) 0 clamp(120px, 12vw, 176px);
}

.hero .eyebrow,
.eyebrow,
.section-label {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: none;
}

.hero .eyebrow::before,
.eyebrow::before,
.section-label::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.52;
}

.hero h1,
.hero h1 .line {
  color: var(--ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero h1 {
  max-width: 650px;
  line-height: 1.18;
}

.hero .eyebrow,
.hero h1 {
  opacity: 0;
  pointer-events: none;
}

.hero-lead,
.lead {
  color: var(--ink);
  text-shadow: none;
}

.hero-copy,
.section-text,
.feature-card p,
.curriculum-card p,
.support-card p,
.voice-card p,
.faq-item p,
.profile-copy p,
.card p,
.card li {
  color: var(--brown-soft);
}

.hero-keywords li,
.chip,
.tag {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--brown-soft);
  box-shadow: none;
  text-shadow: none;
}

.section {
  position: relative;
  padding: clamp(96px, 12vw, 158px) 0;
}

.section.white,
.section.sage {
  background: transparent;
  isolation: isolate;
}

.section.white::before,
.section.sage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.9) 0 7%, transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(253, 248, 244, 0.86) 100%);
}

.section.sage::before {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.85) 0 8%, transparent 20%),
    linear-gradient(180deg, rgba(238, 245, 241, 0.76) 0%, rgba(253, 248, 244, 0.92) 100%);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.section-head h2 {
  line-height: 1.42;
}

.feature-grid,
.curriculum-grid,
.voice-grid,
.grid,
.two-grid {
  gap: clamp(18px, 2.5vw, 32px);
}

.feature-card,
.curriculum-card,
.support-card,
.voice-card,
.faq-item,
.detail-card,
.result-card,
.timeline-card,
.card,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(143, 139, 129, 0.08);
}

.feature-card,
.curriculum-card,
.support-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.curriculum-card::after,
.support-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(216, 102, 161, 0.08);
}

.feature-card:nth-child(2) {
  transform: translateY(34px);
}

.feature-no,
.step-no {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(216, 102, 161, 0.28);
  background: rgba(255, 255, 255, 0.88);
  color: var(--rose-deep);
  box-shadow: none;
  text-shadow: none;
}

.story-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(126, 154, 139, 0.16), transparent 34%),
    linear-gradient(135deg, var(--shell) 0%, var(--cream) 58%, #fff 100%);
}

.story-section::before {
  top: 82px;
  right: -120px;
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
  filter: blur(34px);
}

.story-copy {
  max-width: 580px;
  gap: 22px;
}

.story-copy h2 {
  max-width: 560px;
}

.program-title-line {
  display: block;
}

.story-copy p {
  max-width: 560px;
}

.voice-card h3 {
  color: var(--rose-deep);
}

.curriculum-map {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(143, 139, 129, 0.08);
}

.curriculum-map img {
  display: block;
  width: 100%;
  height: auto;
}

.curriculum-map + .section-actions {
  display: flex;
  justify-content: center;
}

.section-actions {
  margin-top: 32px;
}

.story-photo img,
.visual-stack img,
.tile-image {
  border-radius: 72px 0 72px 0;
  box-shadow: var(--shadow);
}

.story-photo::after {
  border-radius: 72px 0 72px 0;
  border-color: rgba(255, 255, 255, 0.72);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: start;
}

.support-gallery {
  display: grid;
  gap: 16px;
}

.support-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-photo-main,
.support-photo-small {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.support-photo-main img,
.support-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.support-photo-main {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.support-photo-small {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.support-photo-small:nth-child(2) {
  border-radius: 8px;
}

.support-panel {
  position: relative;
  min-height: 0;
}

.support-layout .support-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-layout .support-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.support-layout .support-list li:first-child {
  border-top: 1px solid var(--line);
}

.support-layout .support-list h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
}

.support-layout .support-list p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 13px;
  line-height: 1.75;
}

.lecture-item,
.voice-card.video-card,
.card.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(143, 139, 129, 0.09);
}

.voice-card .tile-image,
.card .tile-image {
  border-radius: 0;
  box-shadow: none;
}

.tile-cta,
.voice-card .tile-cta,
.card .tile-cta {
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(216, 102, 161, 0.3);
  border-radius: 999px;
  background: var(--white);
  color: var(--rose-deep);
  box-shadow: none;
  white-space: nowrap;
}

.profile-portrait {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.82) 0 10%, transparent 28%),
    linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  box-shadow: 0 18px 46px rgba(143, 139, 129, 0.09);
}

.profile-image {
  border-color: var(--white);
  box-shadow: var(--shadow);
}

.profile-social {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.profile-social-title {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.profile-copy .profile-social-text {
  margin-top: 4px;
  font-size: 13px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(216, 102, 161, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(143, 139, 129, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 102, 161, 0.46);
  color: var(--rose-deep);
}

.social-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8d66 0%, #d866a1 100%);
  color: var(--white);
  flex: 0 0 auto;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-icon .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-icon-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-social {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner {
  align-items: flex-start;
}

.footer-brand {
  display: grid;
  gap: 6px;
  max-width: 460px;
}

.footer-program {
  color: var(--brown);
  font-weight: 800;
  font-size: 14px;
}

.footer-company,
.footer-copy {
  color: var(--brown-soft);
  font-weight: 700;
}

.footer-note {
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer-links a,
.footer-social a {
  color: var(--rose-deep);
  font-weight: 700;
}

.footer-links a:hover,
.footer-social a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  width: 100%;
}

.section.plum,
.cta-band {
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.24) 0 6%, transparent 20%),
    linear-gradient(135deg, #9c74b8 0%, #d866a1 100%);
}

.plum h2,
.cta-band h2,
.plum .section-label,
.cta-band .section-label,
.cta-band .eyebrow {
  color: var(--white);
  text-shadow: none;
}

.plum .section-text,
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(95, 90, 84, 0.7) 0%, rgba(156, 116, 184, 0.34) 48%, rgba(255, 255, 255, 0.1) 100%),
    url("hero-daifuku-portrait.png") center right / cover no-repeat;
}

.page-hero::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20viewBox%3D%220%200%201366%2030%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M0%200c0%2030%20683%2029%20683%2029s683%201%20683-29v30H0V0Z%22/%3E%3C/svg%3E");
}

.page-hero h1,
.page-hero .eyebrow,
.page-hero .breadcrumb,
.page-hero .lead {
  color: var(--white);
  text-shadow: none;
}

@media (min-width: 921px) {
  .story-section {
    padding: clamp(84px, 8vw, 118px) 0 clamp(72px, 6vw, 96px);
  }

  .story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
    gap: clamp(64px, 8vw, 112px);
    align-items: start;
    min-height: auto;
  }

  .story-photo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 410px);
    height: auto;
    aspect-ratio: 4 / 4.35;
    justify-self: end;
  }

  .site-header .header-inner {
    min-height: 76px;
  }

  .site-header .nav {
    align-self: stretch;
    align-items: stretch;
    gap: 0;
  }

  .site-header .nav a {
    width: clamp(92px, 7.9vw, 128px);
    min-height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    text-align: center;
  }

  .site-header .nav-cta {
    min-height: 76px;
    padding: 0 10px;
    border-radius: 0;
    border-block: 0;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: 780px;
    background: url("hero-daifuku-firstview-text.png") 42% top / auto 100% no-repeat;
  }

  .page-hero {
    background:
      linear-gradient(90deg, rgba(95, 90, 84, 0.76) 0%, rgba(156, 116, 184, 0.45) 66%, rgba(255, 255, 255, 0.12) 100%),
      url("hero-daifuku-portrait.png") 78% center / cover no-repeat;
  }

  .feature-card:nth-child(2) {
    transform: none;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-photo-main {
    aspect-ratio: 16 / 9;
  }

  .support-panel {
    min-height: auto;
  }

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

  .support-visuals {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .support-shot,
  .support-shot-main,
  .support-shot-lunch,
  .support-shot-workshop {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .support-shot-main {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .site-header .header-inner {
    width: min(100% - 20px, var(--content));
    min-height: 52px;
    padding: 6px 0 2px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  .site-header .brand {
    min-width: 0;
    align-self: center;
    line-height: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rose-deep);
    cursor: pointer;
  }

  .menu-bar {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-header.menu-open .menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    white-space: normal;
    padding-bottom: 0;
    font-size: 12px;
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, padding 0.22s ease;
  }

  .site-header.menu-open .nav {
    max-height: 440px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .site-header .nav a {
    min-height: 40px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    text-align: center;
    line-height: 1.35;
  }

  .site-header .nav-cta {
    grid-column: 1 / -1;
    min-height: 42px;
    padding: 6px 10px;
  }

  .nav-cta,
  .button,
  .button.primary,
  .button.secondary {
    min-height: 48px;
  }

  .button::after,
  .nav-cta::after {
    margin-left: 10px;
  }

  .hero {
    --hero-mobile-image-height: min(80vw, 312px);
    min-height: auto;
    padding-top: var(--hero-mobile-image-height);
    background: url("hero-daifuku-firstview-text-mobile.png") center 0 / 106% auto no-repeat;
  }

  .hero::before {
    content: "";
    position: absolute;
    display: block;
    top: calc(var(--hero-mobile-image-height) - 74px);
    right: 0;
    left: 0;
    width: auto;
    height: 116px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(251, 245, 239, 0) 0%, rgba(251, 245, 239, 0.82) 58%, var(--cream) 100%);
    filter: blur(7px);
    pointer-events: none;
    z-index: 1;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    padding: 0 0 72px;
  }

  .hero .eyebrow,
  .hero h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hero h1,
  .hero h1 .line {
    max-width: min(82vw, 430px);
  }

  .hero-actions {
    order: 1;
    margin-top: 0;
  }

  .hero-lead,
  .hero-copy {
    max-width: min(78vw, 390px);
  }

  .hero-lead {
    order: 2;
    max-width: 100%;
    margin-top: 18px;
  }

  .hero-copy {
    order: 3;
    max-width: 100%;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-actions .button.secondary,
  .hero-keywords {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-label::before,
  .eyebrow::before {
    width: 28px;
  }

  .feature-no {
    width: 58px;
    height: 58px;
  }

  .curriculum-map {
    width: 100%;
    border-radius: 6px;
  }

  .support-list,
  .support-visuals {
    grid-template-columns: 1fr;
  }

  .story-photo img,
  .story-photo::after {
    border-radius: 48px 0 48px 0;
  }

  .support-photo-main,
  .support-photo-small {
    border-radius: 8px;
  }
}
