@charset "UTF-8";

:root {
  --ink: #171317;
  --ink-soft: rgba(23, 19, 23, 0.62);
  --line: rgba(23, 19, 23, 0.16);
  --paper: #ffffff;
  --mist: #f4f0f2;
  --plum: #716960;
  --plum-deep: #514c47;
  --plum-panel: #877e74;
  --gold: #c7aa76;
  --line-green: #06c755;
  --line-green-dark: #05a648;
  --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-heading: "Shippori Mincho", "Yu Mincho", serif;
  --font-en: "Hanken Grotesk", Arial, sans-serif;
  --font-display: "Times New Roman", "Bodoni 72", serif;
  --container: 1400px;
  --text: 720px;
  --pad: clamp(24px, 4vw, 64px);
  --section: clamp(100px, 8.5vw, 140px);
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.055em;
  overflow-wrap: anywhere;
}

h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

strong {
  font-weight: 700;
}

small {
  font-size: 0.78em;
}

::selection {
  background: var(--plum);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 1000;
  padding: 10px 18px;
  background: #fff;
  color: #000;
  font-size: 13px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

.container-wide {
  width: min(100%, calc(var(--container) + var(--pad) * 2));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: var(--section);
}

.eyebrow,
.section-head__label,
.editorial-head__label,
.information__head .section-head__label,
.faq__head .section-head__label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head__label::before,
.editorial-head__label::before,
.faq__head .section-head__label::before {
  content: "";
}

.note {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.btn::after,
.text-link::after {
  content: "→";
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.btn:hover::after,
.text-link:hover::after {
  transform: translateX(5px);
}

.btn--line {
  background: #0b0b0b;
  color: #fff;
}

.btn--line:hover {
  background: #2b2b2b;
}

.btn--large {
  min-width: 280px;
  min-height: 68px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-block: 7px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.text-link--light {
  color: #fff;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(24px, 3.2vw, 52px);
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.site-header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-header__logo-ja {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.site-header__logo-en {
  margin-top: 5px;
  font-family: var(--font-en);
  font-size: 8.5px;
  letter-spacing: 0.16em;
}

.pc-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.pc-nav a {
  position: relative;
  padding-block: 10px;
}

.pc-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.pc-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.global-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  overflow-y: auto;
  background: var(--plum);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.global-nav.is-open {
  visibility: visible;
  opacity: 1;
}

.global-nav__inner {
  display: grid;
  width: min(100%, 980px);
  min-height: 100%;
  margin-inline: auto;
  padding: 120px var(--pad) 54px;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
}

.global-nav__label {
  font-family: var(--font-en);
  font-size: 13px;
}

.global-nav__list {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.global-nav__list a {
  display: grid;
  padding-block: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  grid-template-columns: 130px 1fr;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 16px;
}

.global-nav__en {
  font-family: var(--font-en);
  font-size: 11px;
}

.global-nav__cta {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav__mail {
  border-bottom: 1px solid rgba(255,255,255,0.5);
  font-family: var(--font-en);
  font-size: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 940px;
  height: 100svh;
  max-height: 1080px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #f6f0ee 0%, #f6f0ee 51%, var(--plum-deep) 51%, var(--plum-deep) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 82px;
  right: calc(3vw - 14px);
  bottom: 42px;
  width: calc(47vw - 14px);
  border: 1px solid rgba(199,170,118,0.7);
  border-radius: 48% 48% 22px 22px;
  pointer-events: none;
}

.hero__word {
  position: absolute;
  z-index: 3;
  top: clamp(142px, 14vh, 156px);
  left: 25.5vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #090909;
  font-family: var(--font-display);
  font-size: clamp(96px, 10.5vw, 164px);
  font-weight: 400;
  font-style: normal;
  line-height: 0.82;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__word-main {
  display: flex;
  align-items: baseline;
  gap: 0.14em;
  font-family: "Bodoni Moda", "Bodoni 72 Poster", "Didot", "Bodoni MT", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -0.045em;
  transform: scale(0.72, 1.4);
  transform-origin: center top;
}

.hero__word-sub {
  margin-top: 52px;
  margin-left: 0;
  color: rgba(9, 9, 9, 0.68);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(11px, 0.85vw, 14px);
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.24em;
}

.hero__media {
  position: absolute;
  z-index: 1;
  inset: 104px 4vw 58px 51vw;
  overflow: hidden;
  background: #d9d3d0;
  border-radius: 48% 48% 22px 22px;
  box-shadow: 0 28px 70px rgba(42,39,36,0.28);
}

.hero__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 38%);
  pointer-events: none;
}

.hero__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(
      ellipse 76% 82% at 52% 42%,
      rgba(39,36,33,0) 40%,
      rgba(39,36,33,0.06) 72%,
      rgba(39,36,33,0.3) 100%
    );
}

.hero__media img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.hero__panel {
  position: absolute;
  z-index: 4;
  bottom: clamp(64px, 7vh, 86px);
  left: clamp(38px, 6vw, 112px);
  width: min(540px, 40vw);
  padding: 0;
  color: var(--ink);
  background: transparent;
  text-shadow: none;
}

.hero__panel::before {
  content: none;
}

.hero__panel > * {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  margin-bottom: 22px;
  color: #8e7041;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.17em;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.76;
  letter-spacing: 0.078em;
}

.hero__lead {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 2.05;
}

.hero__facts {
  display: flex;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(81,76,71,0.2);
  flex-wrap: wrap;
  gap: 5px 0;
  font-size: 10px;
  line-height: 1.5;
}

.hero__facts li {
  display: flex;
  align-items: center;
}

.hero__facts li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero__facts li:not(:last-child)::after {
  content: none;
}

.hero__facts li:not(:last-child) {
  margin-right: 16px;
}

.hero__actions {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 20px;
}

.hero__actions .btn {
  min-height: 50px;
  text-shadow: none;
}

.hero__actions .btn--line {
  background: #0b0b0b;
  color: #fff;
}

.hero__actions .btn--line:hover {
  background: #2b2b2b;
}

.hero__actions .text-link {
  color: var(--ink);
}

.hero__side {
  position: absolute;
  z-index: 4;
  right: calc(4vw + 18px);
  bottom: 86px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.hero__side::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 72px;
  margin-top: 18px;
  background: rgba(255,255,255,0.7);
}

.hero__sentinel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
}

/* Shared editorial headings */
.editorial-head {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(280px, 370px);
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}

.editorial-head__title,
.section-head h2,
.vision__statement h2,
.message__copy h2,
.information__head h2,
.faq__head h2,
.cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.09em;
}

.editorial-head__lead,
.section-head > p {
  padding-top: 13px;
  font-size: 15px;
  line-height: 2.15;
}

.editorial-head__lead p + p {
  margin-top: 1.25em;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(72px, 8vw, 120px);
}

.section-head__label {
  margin-bottom: 28px;
}

.program__heading {
  white-space: nowrap;
}

/* About */
.about {
  background: #fff;
}

.about__origin {
  display: grid;
  margin-top: clamp(100px, 11vw, 160px);
  padding-top: 42px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.45fr);
  gap: clamp(48px, 9vw, 150px);
}

.about__origin h3,
.about__story h3 {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.7vw, 39px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.09em;
}

.about__origin h3 {
  font-size: clamp(25px, 2.3vw, 34px);
  white-space: nowrap;
}

.about__copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.about__copy p:first-child {
  grid-column: 1 / -1;
  max-width: 900px;
}

.about__copy p,
.about__story-copy > p {
  font-size: 15px;
  line-height: 2.2;
}

.about__copy .prose-lead {
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 2;
  letter-spacing: 0.055em;
}

.about__copy > p:not(.prose-lead) {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.about__copy .prose-closing {
  color: var(--ink);
  font-weight: 500;
}

.about__story {
  display: grid;
  margin-top: clamp(100px, 12vw, 180px);
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.about__photo {
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.about__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about__photo img {
  height: 100%;
  object-fit: cover;
}

.about__story-copy {
  padding-right: clamp(0px, 4vw, 64px);
}

.about__story-copy > p {
  margin-top: 30px;
}

.about__story-copy > .story-lead {
  margin-top: 38px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 2;
  letter-spacing: 0.06em;
}

.about__story-copy > p:not(.eyebrow, .story-lead, .story-pivot, .story-closing) {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.1;
}

.about__story-copy > .story-pivot {
  margin-top: 34px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.about__story-copy > .story-closing {
  margin-top: 24px;
  color: var(--ink);
  font-weight: 500;
  line-height: 2.1;
}

.about__story-copy blockquote {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 2;
  letter-spacing: 0.08em;
}

/* Full-screen photograph */
.photo-statement {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.photo-statement::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 11, 13, 0.02) 34%, rgba(13, 11, 13, 0.72) 100%),
    linear-gradient(90deg, rgba(13, 11, 13, 0.32) 0%, transparent 48%);
  pointer-events: none;
}

.photo-statement__media {
  position: absolute;
  inset: 0;
}

.photo-statement__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.photo-statement__copy {
  position: absolute;
  z-index: 1;
  bottom: clamp(52px, 7vw, 108px);
  left: var(--pad);
  width: min(700px, calc(100% - var(--pad) * 2));
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.photo-statement__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.photo-statement h2 {
  margin-top: 26px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.photo-statement__copy > p:not(.photo-statement__eyebrow) {
  max-width: 640px;
  margin-top: 28px;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 2;
  letter-spacing: 0.08em;
}

.photo-statement__copy > p:not(.photo-statement__eyebrow) + p {
  margin-top: 18px;
}

.photo-statement__copy > .photo-statement__lead {
  padding-left: 20px;
  border-left: 1px solid var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 2;
}

.photo-statement__copy > .photo-statement__pivot {
  width: max-content;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.48);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
}

.photo-statement__copy > .photo-statement__closing {
  color: #fff;
  font-weight: 500;
}

/* Program */
.program {
  border-top: 1px solid var(--line);
}

.program .section-head > p {
  padding: 16px 0 16px 24px;
  border-left: 1px solid var(--gold);
}

.outcomes {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.outcomes li {
  min-height: 180px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcomes span,
.program__num,
.support__list > li > span,
.flow__grid > li > span {
  color: var(--ink-soft);
  font-family: var(--font-en);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.outcomes p {
  margin-top: 44px;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.program__feature {
  display: grid;
  margin-top: clamp(90px, 10vw, 150px);
  background: var(--mist);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: stretch;
}

.program__feature figure {
  min-height: 620px;
  overflow: hidden;
}

.program__feature img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.program__feature-copy {
  display: flex;
  padding: clamp(42px, 6vw, 84px);
  justify-content: center;
  flex-direction: column;
}

.program__feature h3,
.program__grid h3,
.support__list h3,
.certification h3,
.information h3,
.flow__grid h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.program__feature h3 {
  margin-top: 24px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.65;
}

.program__feature-copy > p:not(.program__num, .program__note) {
  margin-top: 30px;
  font-size: 15px;
}

.program__note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.program__grid {
  display: grid;
  margin-top: 2px;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
}

.program__grid li {
  min-height: 330px;
  padding: clamp(36px, 5vw, 70px);
  background: #fff;
}

.program__grid h3 {
  margin-top: 38px;
  font-size: clamp(20px, 2vw, 28px);
}

.program__grid li > p:not(.program__num) {
  max-width: 560px;
  margin-top: 24px;
  font-size: 14px;
}

.program__grid li > p:not(.program__num) + p {
  margin-top: 16px;
}

.program__disclaimer {
  margin-top: 24px;
  text-align: right;
}

/* Support */
.support {
  background: var(--mist);
}

.support__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.support__intro {
  position: sticky;
  top: 120px;
}

.support__intro h2 {
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.15vw, 31px);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.support__intro > p:not(.section-head__label) {
  max-width: 540px;
  margin-top: 38px;
  font-size: 15px;
}

.support__intro .support__strong {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 2;
}

.support__list {
  border-top: 1px solid var(--line);
}

.support__list li {
  display: grid;
  min-height: 120px;
  padding: 25px 10px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px 1fr;
  align-items: start;
}

.support__list h3 {
  font-size: 17px;
}

.support__list p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

.support__list small {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.7;
}

/* Image break */
.image-break {
  position: relative;
  height: clamp(480px, 52vw, 720px);
  overflow: hidden;
  background: #d6d2cd;
}

.image-break::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(55,51,47,0.72), transparent 60%);
}

.image-break img {
  position: relative;
  z-index: 1;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.image-break p {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 48px);
  color: rgba(255,255,255,0.94);
  font-family: "Italianno", "Snell Roundhand", "Apple Chancery", cursive;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  opacity: 0.96;
  transform: translate(-50%, -50%) rotate(-1.5deg);
  transform-origin: center;
  white-space: nowrap;
}

/* Vision / Message */
.vision {
  background: var(--plum);
  color: rgba(255,255,255,0.93);
}

.vision :focus-visible {
  outline-color: #fff;
}

.vision__statement {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 100px);
}

.vision__statement h2 {
  max-width: 980px;
}

.vision__body {
  grid-column: 2;
  max-width: 700px;
  margin-top: 25px;
  padding-left: 28px;
  border-left: 1px solid rgba(199,170,118,0.68);
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 2.05;
}

.vision__body p + p {
  margin-top: 22px;
}

.vision__lead {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.055em;
}

.vision__closing {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.values {
  display: grid;
  margin-top: clamp(90px, 10vw, 150px);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.2);
  grid-template-columns: repeat(4, 1fr);
}

.values > div {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.values__initial {
  position: absolute;
  top: 14px;
  left: 22px;
  color: rgba(255,255,255,0.09);
  font-family: "Bodoni Moda", "Didot", "Bodoni 72", serif;
  font-size: clamp(112px, 9vw, 158px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.07em;
  pointer-events: none;
}

.values__en {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.values__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  margin-top: 112px;
  gap: 12px;
}

.values h3 {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 500;
}

.values p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: rgba(255,255,255,0.64);
  font-size: 12px;
  line-height: 1.9;
}

.message {
  display: grid;
  margin-top: clamp(120px, 13vw, 200px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: center;
}

.message__photo {
  height: clamp(560px, 57vw, 790px);
  overflow: hidden;
}

.message__photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.message__copy h2 {
  margin-top: 28px;
}

.message__copy > p:not(.section-head__label, .message__sign) {
  margin-top: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.message__copy > .message__lead {
  padding-left: 18px;
  border-left: 1px solid var(--gold);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.055em;
}

.message__copy > .message__closing {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.message__sign {
  display: flex;
  margin-top: 52px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.2);
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  font-size: 12px;
}

.message__roles {
  color: rgba(255,255,255,0.72);
  line-height: 2;
  letter-spacing: 0.08em;
}

.message__name {
  display: inline-block;
  flex: 0 0 auto;
  font-family: "Hannari", "Yu Mincho", "YuMincho", serif;
  font-size: 34px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: 0.16em;
}

/* Certification */
.certification {
  background: #fff;
}

.certification__grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.certification__grid article {
  position: relative;
  min-height: 430px;
  padding: clamp(42px, 6vw, 82px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.certification__en {
  position: absolute;
  top: -16px;
  right: 16px;
  color: rgba(81,76,71,0.065);
  font-family: var(--font-display);
  font-size: clamp(90px, 12vw, 170px);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.05em;
}

.certification__tag {
  position: relative;
  font-size: 12px;
}

.certification__grid h3 {
  position: relative;
  margin-top: 65px;
  font-size: clamp(24px, 2.5vw, 36px);
}

.certification__grid article > p:last-child {
  position: relative;
  max-width: 480px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 14px;
}

.certification__foot {
  display: flex;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.certification__notes {
  max-width: 780px;
  font-size: 13px;
}

.certification__notes p + p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

/* Information */
.information {
  background: var(--mist);
}

.information__head {
  display: flex;
  margin-bottom: clamp(70px, 8vw, 110px);
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.information__head .section-head__label {
  order: 2;
  margin: 0;
}

.information__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.outline {
  border-top: 1px solid var(--line);
}

.outline > div {
  display: grid;
  min-height: 104px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 130px 1fr;
  align-items: center;
}

.outline dt {
  color: var(--ink-soft);
  font-size: 12px;
}

.outline dd {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.7;
}

.outline dd small {
  display: block;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 11px;
}

.price-card {
  margin-top: 60px;
  padding: clamp(42px, 5vw, 68px);
  background: var(--plum);
  color: #fff;
}

.price-card h3 {
  margin-top: 22px;
  font-size: 27px;
}

.price-card > p:not(.eyebrow) {
  margin-top: 25px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.price-card .btn {
  margin-top: 36px;
}

.information__side {
  display: grid;
  gap: 2px;
  background: var(--line);
}

.benefit,
.monitor {
  padding: clamp(36px, 4vw, 58px);
  background: #fff;
}

.benefit h3,
.monitor h3 {
  margin-top: 22px;
  font-size: 23px;
}

.benefit > p:not(.eyebrow, .note),
.monitor > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 13px;
}

.benefit .note {
  margin-top: 18px;
}

.monitor ul {
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.monitor li {
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.monitor__notes {
  margin-top: 24px;
}

.monitor__notes p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.7;
}

/* Flow */
.flow {
  background: #fff;
}

.flow__grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.flow__grid li {
  min-height: 360px;
  padding: clamp(38px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow__grid h3 {
  margin-top: 65px;
  font-size: 20px;
}

.flow__grid p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 13px;
}

.flow__action {
  margin-top: 46px;
  text-align: center;
}

/* FAQ */
.faq {
  padding-top: 40px;
  background: #fff;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(70px, 10vw, 160px);
}

.faq__head h2 {
  margin-top: 28px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq__list details {
  border-bottom: 1px solid var(--line);
}

.faq__list summary {
  position: relative;
  display: flex;
  min-height: 100px;
  padding: 26px 58px 26px 0;
  align-items: center;
  gap: 28px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  list-style: none;
  cursor: pointer;
}

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

.faq__list summary > span {
  color: var(--ink-soft);
  font-family: var(--font-en);
  font-size: 12px;
}

.faq__list summary::before,
.faq__list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.faq__list summary::after {
  transform: rotate(90deg);
}

.faq__list details[open] summary::after {
  transform: rotate(0deg);
}

.faq__list details > div {
  padding: 0 58px 32px 40px;
}

.faq__list details > div p {
  color: var(--ink-soft);
  font-size: 13px;
}

/* CTA / Footer */
.cta {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--plum);
  color: #fff;
}

.cta__inner {
  position: relative;
  z-index: 2;
}

.cta h2 {
  max-width: 720px;
  margin-top: 55px;
  font-size: clamp(54px, 7vw, 100px);
  line-height: 1.35;
}

.cta__lead {
  max-width: 580px;
  margin-top: 40px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

.cta__actions {
  display: flex;
  margin-top: 46px;
  align-items: center;
  gap: 38px;
}

.cta__phrase {
  position: absolute;
  z-index: -1;
  right: -8vw;
  bottom: -120px;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(110px, 18vw, 290px);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
}

.footer {
  padding: 90px var(--pad) 30px;
  background: var(--plum-deep);
  color: rgba(255,255,255,0.75);
}

.footer__inner {
  display: flex;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 17px;
}

.footer__logo span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.footer__org {
  margin-top: 24px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}

.footer__links {
  display: flex;
  gap: 30px;
  font-family: var(--font-en);
  font-size: 11px;
}

.footer__links a {
  border-bottom: 1px solid transparent;
}

.footer__links a:hover {
  border-color: currentColor;
}

.footer__copy {
  width: min(100%, var(--container));
  margin: 25px auto 0;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-en);
  font-size: 10px;
  text-align: right;
}

.line-qr {
  width: auto;
  max-width: none;
  max-height: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.line-qr::backdrop {
  background: rgba(42,39,36,0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.line-qr__panel {
  position: relative;
  width: min(440px, calc(100vw - 40px));
  padding: 46px 48px 40px;
  background: #fff;
  text-align: center;
}

.line-qr__close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.line-qr__eyebrow {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.line-qr h2 {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.06em;
}

.line-qr__image {
  width: 230px;
  margin: 24px auto 0;
}

.line-qr__note {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

.line-qr__direct {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  line-height: 1.5;
}

.cta-bar {
  position: fixed;
  z-index: 70;
  right: 50%;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, calc(100% + 40px));
  transition: opacity 0.35s ease, transform 0.45s var(--ease);
}

.cta-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.cta-bar__btn {
  width: 100%;
  box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

/* Reveal */
.js .js-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}

.js .js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero__word {
    font-size: clamp(90px, 10.5vw, 124px);
  }

  .hero__panel {
    width: min(450px, 40vw);
  }

  .editorial-head {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .editorial-head__lead {
    grid-column: 2;
    max-width: 600px;
  }

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

  .values > div {
    min-height: 290px;
  }

  .message {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}

@media (max-width: 900px) {
  :root {
    --section: 104px;
  }

  .pc-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .global-nav__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .global-nav__cta {
    grid-column: 1;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding-top: 82px;
    background: #f6f0ee;
  }

  .hero::before {
    content: none;
  }

  .hero__word {
    position: relative;
    top: auto;
    left: auto;
    align-items: flex-start;
    margin: 56px 6vw 0;
    font-size: clamp(88px, 14vw, 128px);
    transform: none;
  }

  .hero__word-main {
    transform: scale(0.78, 1.16);
    transform-origin: left top;
  }

  .hero__word-sub {
    margin-top: 26px;
    margin-left: 0.22em;
  }

  .hero__media {
    position: relative;
    inset: auto;
    width: 88vw;
    height: 720px;
    margin: 38px 6vw 0;
    border-radius: 320px 320px 20px 20px;
  }

  .hero__panel {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 56px 6vw 78px;
  }

  .hero__side {
    display: none;
  }

  .about__origin {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about__copy {
    gap: 32px;
  }

  .about__story {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
  }

  .program__feature {
    grid-template-columns: 1fr;
  }

  .program__feature figure {
    min-height: 520px;
  }

  .support__layout {
    grid-template-columns: 1fr;
  }

  .support__intro {
    position: static;
  }

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

  .message {
    grid-template-columns: 1fr;
  }

  .message__photo {
    width: 72%;
  }

  .information__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --pad: 20px;
    --section: 88px;
  }

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

  body {
    font-size: 15px;
    line-height: 1.95;
  }

  .site-header {
    height: 66px;
    padding-inline: 18px;
  }

  .site-header__logo-ja {
    font-size: 12px;
  }

  .site-header__logo-en {
    font-size: 7.5px;
  }

  .global-nav__inner {
    padding: 92px 24px 40px;
  }

  .global-nav__list a {
    grid-template-columns: 104px 1fr;
    font-size: 14px;
  }

  .global-nav__cta {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero {
    padding-top: 66px;
  }

  .hero__word {
    margin: 50px 24px 0;
    font-size: clamp(82px, 30vw, 118px);
  }

  .hero__word-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    line-height: 0.72;
  }

  .hero__word-sub {
    margin-top: 32px;
    margin-left: 4px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero__media {
    width: calc(100% - 32px);
    height: max(460px, 62svh);
    max-height: 600px;
    margin: 30px 16px 0;
    border-radius: 160px 160px 16px 16px;
  }

  .hero__media img {
    width: 100%;
    max-width: 100%;
    object-position: 52% 32%;
  }

  .hero__panel {
    padding: 42px 24px 56px;
    color: var(--ink);
    background: #f6f0ee;
    text-shadow: none;
  }

  .hero__panel::before {
    content: none;
  }

  .hero__eyebrow {
    margin-bottom: 26px;
    color: var(--ink);
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .hero__title {
    font-size: clamp(18px, 5.6vw, 24px);
    line-height: 1.82;
    letter-spacing: 0.055em;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 13px;
  }

  .hero__facts {
    margin-top: 24px;
    border-color: var(--line);
  }

  .hero__facts li {
    font-size: 10px;
  }

  .hero__facts li:not(:last-child)::after {
    margin-inline: 9px;
    background: var(--line);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions .text-link {
    align-self: flex-start;
    color: var(--ink);
  }

  .hero__side {
    display: none;
  }

  .editorial-head,
  .section-head {
    display: block;
  }

  .editorial-head__title,
  .section-head h2,
  .vision__statement h2,
  .message__copy h2,
  .information__head h2,
  .faq__head h2 {
    margin-top: 26px;
    font-size: clamp(29px, 9vw, 40px);
    line-height: 1.65;
  }

  /* 認定制度の見出し: 「免許の有無にかかわらず、」を1行に収め、改行は<br>の1回だけにする */
  .certification .section-head h2 {
    font-size: clamp(20px, 6.6vw, 25px);
    letter-spacing: 0.05em;
  }

  .editorial-head__lead,
  .section-head > p {
    margin-top: 30px;
    padding-top: 0;
    font-size: 14px;
  }

  .section-head {
    margin-bottom: 64px;
  }

  .section-head__label {
    margin-bottom: 0;
  }

  .section-head .program__heading {
    font-size: clamp(23px, 7.2vw, 28px);
    letter-spacing: 0.06em;
  }

  .program .section-head > p {
    margin-top: 32px;
    padding: 14px 0 14px 18px;
  }

  .about__origin {
    margin-top: 82px;
    padding-top: 28px;
  }

  .about__origin h3,
  .about__story h3 {
    font-size: 26px;
  }

  .about__copy {
    display: block;
  }

  .about__copy p + p {
    margin-top: 24px;
  }

  .about__copy .prose-lead {
    padding-left: 18px;
    font-size: 17px;
  }

  .about__copy > p:not(.prose-lead) {
    padding-top: 18px;
  }

  .about__story {
    display: flex;
    margin-top: 88px;
    flex-direction: column;
    gap: 46px;
  }

  .about__photo {
    width: calc(100% + 20px);
    height: auto;
    aspect-ratio: 4 / 3;
    margin-left: -20px;
  }

  .about__story-copy {
    padding-right: 0;
  }

  .about__story-copy > .story-lead {
    margin-top: 32px;
    padding-left: 18px;
    font-size: 18px;
  }

  .about__story-copy > p:not(.eyebrow, .story-lead, .story-pivot, .story-closing) {
    font-size: 14px;
  }

  .about__story-copy > .story-pivot {
    margin-top: 30px;
    padding: 18px 0;
    font-size: 17px;
  }

  .photo-statement {
    min-height: 100svh;
    padding-top: min(75vw, 54svh);
  }

  .photo-statement::after {
    content: none;
  }

  .photo-statement__media {
    right: 0;
    bottom: auto;
    left: 0;
    height: min(75vw, 54svh);
    background: var(--ink);
  }

  .photo-statement__media img {
    object-fit: contain;
    object-position: center top;
  }

  .photo-statement__copy {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 38px 20px 54px;
    text-shadow: none;
  }

  .photo-statement h2 {
    margin-top: 20px;
    font-size: clamp(26px, 7.6vw, 31px);
    line-height: 1.55;
    white-space: nowrap;
  }

  .photo-statement__copy > p:not(.photo-statement__eyebrow) {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.85;
  }

  .photo-statement__copy > p:not(.photo-statement__eyebrow) + p {
    margin-top: 12px;
  }

  .photo-statement__copy > .photo-statement__lead {
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.9;
  }

  .photo-statement__copy > .photo-statement__pivot {
    margin-top: 20px;
    font-size: 16px;
  }

  .photo-statement__copy > .photo-statement__closing {
    margin-top: 18px;
  }

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

  .outcomes li {
    min-height: 145px;
    padding: 20px;
  }

  .outcomes p {
    margin-top: 27px;
    font-size: 15px;
  }

  .program__feature {
    width: calc(100% + 40px);
    margin-top: 80px;
    margin-left: -20px;
  }

  .program__feature figure {
    min-height: 430px;
  }

  .program__feature-copy {
    padding: 40px 24px 48px;
  }

  .program__grid {
    width: calc(100% + 40px);
    margin-left: -20px;
    grid-template-columns: 1fr;
  }

  .program__grid li {
    min-height: 270px;
    padding: 38px 24px;
  }

  .program__grid h3 {
    margin-top: 30px;
    font-size: 22px;
  }

  .program__disclaimer {
    text-align: left;
  }

  .support__layout {
    gap: 66px;
  }

  .support__intro h2 {
    font-size: clamp(19px, 5.9vw, 23px);
    letter-spacing: 0.04em;
  }

  .support__list li {
    min-height: 112px;
    grid-template-columns: 45px 1fr;
  }

  .support__list h3 {
    font-size: 15px;
  }

  .image-break {
    height: 460px;
  }

  .image-break img {
    object-position: center center;
  }

  .image-break p {
    top: 50%;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 32px);
    font-size: clamp(22px, 6.4vw, 27px);
    line-height: 1;
    white-space: nowrap;
    transform: translate(-50%, -50%) rotate(-1.5deg);
  }

  .vision__statement {
    display: block;
  }

  .vision__statement h2 {
    margin-top: 28px;
  }

  .vision__body {
    margin-top: 34px;
    padding-left: 20px;
    font-size: 14px;
  }

  .vision__lead {
    font-size: 17px;
  }

  .vision__closing {
    padding-top: 20px;
  }

  .values {
    margin-top: 80px;
    grid-template-columns: repeat(2, 1fr);
  }

  .values > div {
    min-height: 286px;
    padding: 20px;
  }

  .values__initial {
    top: 14px;
    left: 16px;
    font-size: 94px;
  }

  .values__en {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .values__title {
    margin-top: 84px;
    gap: 8px;
  }

  .values h3 {
    font-size: 21px;
  }

  .values p {
    font-size: 11.5px;
    line-height: 1.85;
  }

  .message {
    margin-top: 100px;
    gap: 54px;
  }

  .message__photo {
    width: calc(100% + 20px);
    height: 510px;
    margin-left: -20px;
  }

  .message__copy h2 {
    margin-top: 26px;
  }

  .message__copy > .message__lead {
    padding-left: 16px;
    font-size: 16px;
  }

  .message__sign {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .message__name {
    align-self: flex-end;
  }

  .certification__grid {
    grid-template-columns: 1fr;
  }

  .certification__grid article {
    min-height: 350px;
    padding: 38px 24px;
  }

  .certification__grid h3 {
    margin-top: 54px;
  }

  .certification__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .information__head {
    display: block;
    margin-bottom: 64px;
  }

  .information__head .section-head__label {
    margin-bottom: 26px;
  }

  .outline > div {
    grid-template-columns: 72px 1fr;
  }

  .outline dd {
    font-size: 16px;
  }

  .price-card {
    margin-top: 42px;
  }

  .benefit,
  .monitor {
    padding: 38px 24px;
  }

  .flow__grid {
    grid-template-columns: 1fr;
  }

  .flow__grid li {
    min-height: 280px;
    padding: 36px 24px;
  }

  .flow__grid h3 {
    margin-top: 44px;
  }

  .flow__action .btn {
    width: 100%;
  }

  .faq {
    padding-top: 10px;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .faq__head h2 {
    margin-top: 26px;
  }

  .faq__list summary {
    min-height: 88px;
    padding: 22px 44px 22px 0;
    gap: 15px;
    font-size: 15px;
  }

  .faq__list details > div {
    padding: 0 34px 28px 27px;
  }

  .cta {
    min-height: 690px;
  }

  .cta h2 {
    margin-top: 44px;
    font-size: clamp(52px, 16vw, 74px);
  }

  .cta__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .cta__actions .text-link {
    align-self: flex-start;
  }

  .cta__phrase {
    right: -180px;
    bottom: -40px;
    font-size: 140px;
  }

  .footer {
    padding: 70px 20px 26px;
  }

  .footer__inner {
    padding-bottom: 50px;
    flex-direction: column;
  }

  .footer__links {
    flex-direction: column;
    gap: 12px;
  }

  .footer__copy {
    text-align: left;
  }

  .cta-bar {
    bottom: 10px;
    width: calc(100% - 20px);
  }
}

@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 .js-reveal {
    opacity: 1;
    transform: none;
  }
}
