@charset "UTF-8";

@font-face {
  font-family: "LifeWork Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "LifeWork Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

body.lifework-lp-template {
  margin: 0;
  background: #fff;
  color: #0d2c53;
}

body.lifework-lp-template #wpadminbar {
  position: fixed;
}

body.lifework-lp-template #footer-sticky-nav,
body.lifework-lp-template .p-footer-cta,
body.lifework-lp-template .c-page-top,
body.lifework-lp-template #page-top {
  display: none !important;
}

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

.lw-page {
  --navy: #0d2c53;
  --navy-2: #163b68;
  --red: #ec3039;
  --green: #06c755;
  --green-dark: #04ad49;
  --blue-pale: #f2f8ff;
  --blue-border: #c9def2;
  --gold: #e5a32e;
  --cream: #fffbf3;
  --gray: #66768a;
  --border: #d9e4ef;
  --shadow: 0 10px 28px rgba(13, 44, 83, 0.08);
  --font-body: 15px;
  --font-card-body: 14px;
  --font-value-body: 14px;
  --font-faq-question: 15px;
  --font-faq-answer: 14px;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 4%, rgba(229, 163, 46, 0.1), transparent 9rem),
    linear-gradient(180deg, #fffefb 0%, #fff 44%, #fffdf9 100%);
  color: var(--navy);
  font-family: "LifeWork Noto Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
}

.lw-page :where(h1, h2, h3, h4, h5, h6, p, a, button, span, strong, small, li, label, address) {
  font-family: "LifeWork Noto Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif !important;
  font-style: normal;
}

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

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

.lw-page :where(h1, h2, h3, p, ul, figure) {
  margin: 0;
}

.lw-page :focus-visible {
  outline: 3px solid #f3b43f;
  outline-offset: 3px;
}

.lw-shell {
  width: min(calc(100% - 30px), 1120px);
  margin-inline: auto;
}

.lw-shell--narrow {
  width: min(calc(100% - 30px), 880px);
}

.lw-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.lw-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lw-icon--large {
  width: 43px;
  height: 43px;
}

.lw-icon--red {
  color: var(--red);
}

.lw-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 9px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.lw-skip-link:focus,
.lw-skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 44, 83, 0.07);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(13, 44, 83, 0.035);
  backdrop-filter: blur(12px);
}

/*
 * WordPress already reserves the admin bar height on logged-in previews.
 * Keeping the sticky offset here adds the same height a second time and
 * creates a blank strip above the header. Disable sticky positioning only
 * for logged-in previews; the public header remains sticky.
 */
body.admin-bar.lifework-lp-template .lw-header {
  position: relative;
  top: 0;
}

.lw-header__inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lw-logo {
  width: clamp(155px, 27vw, 226px);
}

.lw-logo img {
  width: 100%;
  height: auto;
}

.lw-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lw-corporate-link {
  color: var(--navy) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 4px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.lw-corporate-link:hover {
  color: var(--red) !important;
}

.lw-line-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #05a949;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 9px 22px rgba(6, 199, 85, 0.2);
  color: var(--navy) !important;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.lw-line-button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 12px 26px rgba(6, 173, 73, 0.28);
}

.lw-line-mark {
  width: 36px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  position: relative;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.lw-line-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -3px;
  width: 7px;
  height: 7px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.lw-line-button--header {
  min-height: 44px;
  padding: 8px 20px;
  font-size: 14px;
}

.lw-line-button--header .lw-line-mark {
  width: 31px;
  height: 21px;
}

.lw-hero {
  position: relative;
  padding: 18px 0 14px;
}

.lw-hero::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -48px;
  width: 145px;
  height: 145px;
  border: 18px solid rgba(236, 48, 57, 0.035);
  border-radius: 50%;
}

.lw-hero::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 5vw;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 22px 30px 0 rgba(236, 48, 57, 0.55), -14px 53px 0 rgba(13, 44, 83, 0.28);
}

.lw-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  align-items: center;
}

.lw-eyebrow {
  margin-bottom: 10px !important;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.075em;
}

.lw-hero h1 {
  max-width: 9em;
  color: var(--navy);
  font-size: clamp(38px, 10.6vw, 57px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.lw-hero h1 span {
  color: var(--red);
}

.lw-hero__lead {
  margin-top: 14px !important;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.65;
}

.lw-hero__lead strong {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 1.18em;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.lw-hero__actions {
  display: grid;
  gap: 7px;
  margin-top: 15px;
}

.lw-line-button--primary {
  width: 100%;
  min-height: 56px;
  padding-inline: 18px;
  font-size: 18px;
}

.lw-button-arrow {
  margin-left: auto;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.lw-secondary-button,
.lw-recruit-button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--red);
  border-radius: 999px;
  background: #fff;
  color: var(--red) !important;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.lw-secondary-button {
  position: relative;
  padding-inline: 48px;
}

.lw-secondary-button__label {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.lw-secondary-button:hover,
.lw-recruit-button:hover {
  transform: translateY(-2px);
  background: var(--red);
  color: #fff !important;
}

.lw-secondary-button__arrow,
.lw-recruit-button span {
  font-size: 23px;
  line-height: 1;
}

.lw-secondary-button__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
}

.lw-recruit-button span {
  margin-left: auto;
  padding-right: 13px;
}

.lw-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 22px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.lw-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 60%, rgba(13, 44, 83, 0.18));
  pointer-events: none;
}

.lw-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
}

.lw-reassurance,
.lw-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--blue-border);
  border-radius: 13px;
  background: var(--blue-pale);
  box-shadow: 0 8px 22px rgba(13, 44, 83, 0.05);
}

.lw-reassurance > div,
.lw-proof > div {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  position: relative;
  padding: 9px 6px;
  text-align: center;
}

.lw-reassurance > div + div::before,
.lw-proof > div + div::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: var(--blue-border);
}

.lw-reassurance strong,
.lw-proof strong {
  font-size: clamp(13px, 3.4vw, 15px);
  font-weight: 900;
  line-height: 1.35;
}

.lw-section {
  padding: 26px 0;
  scroll-margin-top: 80px;
}

.lw-section-heading {
  margin-bottom: 16px;
  text-align: center;
}

.lw-section-heading > span {
  display: none;
}

.lw-section-heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--navy);
  font-size: clamp(24px, 5.8vw, 34px);
  font-weight: 900;
  line-height: 1.3;
}

.lw-section-heading h2::before,
.lw-section-heading h2::after {
  content: "";
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: radial-gradient(circle, var(--gold) 1.5px, transparent 1.8px) 0 50% / 9px 3px repeat-x;
}

.lw-journey-section {
  padding: 25px 0 0;
}

.lw-journey-section .lw-shell {
  position: relative;
  padding: 19px 18px 15px;
  border: 1px solid var(--blue-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f2f8ff 100%);
}

.lw-journey-section .lw-section-heading {
  margin-bottom: 15px;
}

.lw-journey {
  display: grid;
  gap: 8px;
  align-items: stretch;
}

.lw-journey-card {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 12px;
  border: 1px solid var(--blue-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 44, 83, 0.045);
  text-align: center;
}

.lw-journey-card h3 {
  margin-top: 7px;
  font-size: 17px;
  font-weight: 900;
}

.lw-journey-card p,
.lw-journey-card small {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.lw-journey-card--route {
  gap: 0;
  padding-block: 8px;
}

.lw-journey-card--route > div {
  width: 100%;
  min-height: 57px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  text-align: left;
}

.lw-journey-card--route > div + div {
  border-top: 1px dashed var(--blue-border);
}

.lw-journey-card--route span {
  display: flex;
  flex-direction: column;
}

.lw-journey-card--route strong {
  font-size: 17px;
  font-weight: 900;
}

.lw-journey-arrow {
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 26px;
  transform: rotate(90deg);
}

.lw-mantra {
  margin-top: 12px !important;
  color: var(--navy);
  font-size: clamp(18px, 4.4vw, 24px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.lw-proof {
  margin-top: 13px;
  border-color: var(--border);
  background: #fff;
}

.lw-proof > div {
  min-height: 62px;
}

.lw-proof span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.lw-proof small {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
}

.lw-work-grid {
  display: grid;
  gap: 12px;
}

.lw-work-card {
  overflow: hidden;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(13, 44, 83, 0.055);
  text-align: center;
}

.lw-work-card__title {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lw-work-card__title .lw-icon {
  width: 29px;
  height: 29px;
  stroke-width: 1.65;
}

.lw-work-card h3 {
  font-size: 19px;
  font-weight: 900;
}

.lw-work-card__image {
  width: 100%;
  height: 118px !important;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
}

.lw-work-card:first-child .lw-work-card__image {
  object-position: center 48%;
}

.lw-work-card:nth-child(3) .lw-work-card__image {
  object-position: center 43%;
}

.lw-work-card p {
  margin-top: 9px !important;
  color: var(--navy);
  font-size: var(--font-card-body);
  font-weight: 500;
  line-height: 1.65;
}

.lw-values-section {
  padding-top: 6px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, #fff, var(--cream));
}

.lw-values-section .lw-section-heading {
  display: none;
}

.lw-values-grid {
  display: grid;
  gap: 10px;
}

.lw-values-grid article {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 95px;
  padding: 13px 15px;
  border: 1px solid rgba(229, 163, 46, 0.28);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
}

.lw-values-grid .lw-icon {
  width: 42px;
  height: 42px;
  stroke-width: 1.55;
}

.lw-values-grid h3 {
  font-size: 19px;
  font-weight: 900;
}

.lw-values-grid p {
  margin-top: 2px !important;
  color: #53677d;
  font-size: var(--font-value-body);
  font-weight: 500;
  line-height: 1.65;
}

.lw-recruit-card {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(236, 48, 57, 0.5);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: #fff;
}

.lw-recruit-card__content {
  padding: 25px;
}

.lw-recruit-label {
  color: #ff666d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.lw-recruit-card h2 {
  margin-top: 7px;
  font-size: clamp(25px, 5.7vw, 36px);
  font-weight: 900;
  line-height: 1.35;
}

.lw-recruit-card h2 span {
  color: #ff4b53;
}

.lw-recruit-card ul {
  display: grid;
  gap: 5px;
  margin: 11px 0 14px;
  padding: 0;
  list-style: none;
}

.lw-recruit-card li {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 900;
}

.lw-recruit-card li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0.23em;
  left: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 11px;
}

.lw-recruit-button {
  width: 100%;
  min-height: 43px;
  padding-left: 30px;
}

.lw-recruit-card > img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
  object-position: center;
}

.lw-faq-section {
  background: #fff;
}

.lw-faq-list {
  display: grid;
  gap: 5px;
}

.lw-faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.lw-faq-item h3 {
  font-size: inherit;
}

.lw-faq-item button {
  width: 100%;
  min-height: 49px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: var(--font-faq-question);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.lw-faq-item button > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-left: auto;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.lw-faq-item button small {
  color: var(--red);
  font-size: 9px;
}

.lw-faq-item button[aria-expanded="true"] {
  background: var(--blue-pale);
}

.lw-faq-item--recruit,
.lw-faq-item--recruit button,
.lw-faq-item--recruit button[aria-expanded="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.lw-faq-item--recruit button > span {
  border: 1px solid #fff;
}

.lw-faq-answer {
  padding: 0 14px 12px;
  background: var(--blue-pale);
}

.lw-faq-answer p {
  padding-top: 9px;
  border-top: 1px solid var(--blue-border);
  color: #3b526c;
  font-size: var(--font-faq-answer);
  line-height: 1.75;
}

.lw-faq-item--recruit .lw-faq-answer {
  background: #fff;
}

.lw-final-cta {
  padding-block: 15px;
}

.lw-final-cta__panel {
  display: grid;
  gap: 15px;
  align-items: center;
  padding: 24px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 95% 14%, rgba(229, 163, 46, 0.2), transparent 7rem),
    var(--navy);
  box-shadow: var(--shadow);
  color: #fff;
  text-align: center;
}

.lw-final-cta__panel p {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 900;
  line-height: 1.35;
}

.lw-final-cta__panel p span {
  color: var(--green);
}

.lw-final-cta__panel small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.lw-line-button--final {
  width: 100%;
  min-height: 58px;
  padding-inline: 18px;
  font-size: 18px;
}

.lw-access-section {
  padding-top: 12px;
}

.lw-access-card {
  overflow: hidden;
  display: grid;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 44, 83, 0.06);
}

.lw-access-card > img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
}

.lw-access-card__info {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 22px;
}

.lw-access-card__info p {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  line-height: 1.65;
}

.lw-access-card__info a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy) !important;
  font-size: 14px;
  font-weight: 900;
}

.lw-access-card__info a:hover {
  background: var(--navy);
  color: #fff !important;
}

.lw-footer {
  padding: 20px 0 95px;
  background: linear-gradient(180deg, rgba(255, 251, 243, 0), var(--cream));
  text-align: center;
}

.lw-footer__logo-link {
  display: inline-block;
}

.lw-footer img {
  width: min(220px, 62vw);
  height: auto;
  margin-inline: auto;
}

.lw-footer p {
  margin-top: 7px !important;
  color: var(--gray);
  font-size: 9px;
}

.lw-mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  padding: 8px max(15px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(15px, env(safe-area-inset-left));
  border-top: 1px solid rgba(13, 44, 83, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -7px 22px rgba(13, 44, 83, 0.09);
  backdrop-filter: blur(12px);
}

.lw-mobile-cta .lw-line-button {
  width: 100%;
  min-height: 50px;
  font-size: 14px;
}

@media (min-width: 640px) {
  .lw-work-grid,
  .lw-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lw-values-grid article {
    display: block;
    text-align: center;
  }

  .lw-values-grid .lw-icon {
    margin: 0 auto 7px;
  }

  .lw-recruit-card {
    grid-template-columns: 1fr 1fr;
  }

  .lw-access-card {
    grid-template-columns: 1.12fr 0.88fr;
  }

}

@media (min-width: 700px) {
  .lw-mobile-cta {
    display: none;
  }

  .lw-footer {
    padding-bottom: 24px;
  }

  .lw-hero__grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 24px;
  }

  .lw-hero__media {
    min-height: 0;
    aspect-ratio: 1.31 / 1;
  }

  .lw-hero__media img {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .lw-journey {
    grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1.35fr) 20px minmax(0, 1fr);
  }

  .lw-journey-arrow {
    transform: none;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .lw-page {
    --font-body: 14px;
    --font-card-body: 14px;
    --font-value-body: 13px;
    --font-faq-question: 15px;
    --font-faq-answer: 13px;
  }

  .lw-shell {
    width: calc(100% - 28px);
  }

  .lw-shell--narrow {
    width: calc(100% - 34px);
  }

  .lw-header .lw-shell,
  .lw-hero .lw-shell,
  #lw-work .lw-shell,
  .lw-values-section .lw-shell,
  .lw-faq-section .lw-shell {
    width: calc(100% - 60px);
  }

  .lw-icon {
    stroke-width: 2.35;
  }

  .lw-header__inner {
    min-height: 71px;
  }

  .lw-logo {
    width: 216px;
  }

  .lw-line-button--header {
    min-width: 210px;
    min-height: 52px;
    padding-inline: 25px;
    font-size: 16px;
  }

  .lw-line-button--header .lw-line-mark {
    width: 37px;
    height: 26px;
    font-size: 9px;
  }

  .lw-hero {
    height: 387px;
    padding: 9px 0;
  }

  .lw-hero__grid {
    grid-template-columns: 282px minmax(0, 1fr);
    gap: 16px;
    height: 100%;
    align-items: start;
  }

  .lw-eyebrow {
    margin-bottom: 7px !important;
    font-size: 11px;
  }

  .lw-hero h1 {
    max-width: none;
    font-size: 39px;
    line-height: 1.15;
    letter-spacing: -0.055em;
  }

  .lw-hero__lead {
    margin-top: 7px !important;
    font-size: 13.5px;
    line-height: 1.45;
  }

  .lw-hero__lead strong {
    font-size: 1.2em;
  }

  .lw-hero__actions {
    width: 400px;
    max-width: none;
    position: relative;
    z-index: 2;
    margin-top: 5px;
    gap: 6px;
  }

  .lw-line-button--primary {
    min-height: 56px;
    font-size: 18px;
  }

  .lw-line-button--primary .lw-line-mark {
    width: 42px;
    height: 29px;
    font-size: 9px;
  }

  .lw-line-button--primary .lw-button-arrow {
    font-size: 31px;
  }

  .lw-secondary-button {
    min-height: 42px;
    font-size: 15px;
  }

  .lw-hero__media {
    height: 318px;
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .lw-reassurance > div {
    min-height: 64px;
    gap: 11px;
  }

  .lw-reassurance .lw-icon {
    width: 32px;
    height: 32px;
    stroke-width: 2.45;
  }

  .lw-reassurance strong {
    font-size: 15px;
  }

  .lw-section {
    padding: 10px 0;
  }

  .lw-section-heading {
    margin-bottom: 8px;
  }

  .lw-section-heading h2 {
    gap: 8px;
    font-size: 24px;
  }

  .lw-section-heading h2::before,
  .lw-section-heading h2::after {
    width: 31px;
  }

  .lw-journey-section {
    padding-top: 13px;
  }

  .lw-journey-section .lw-shell {
    padding: 10px 12px 9px;
    border-radius: 13px;
  }

  .lw-journey-section .lw-section-heading {
    margin-bottom: 7px;
  }

  .lw-journey-card {
    min-height: 157px;
    padding: 10px 8px;
    border-radius: 13px;
  }

  .lw-journey-card .lw-icon--large {
    width: 45px;
    height: 45px;
    stroke-width: 2.5;
  }

  .lw-journey-card h3 {
    margin-top: 5px;
    font-size: 17px;
  }

  .lw-journey-card p,
  .lw-journey-card small {
    font-size: 13px;
    line-height: 1.5;
  }

  .lw-journey-card--route > div {
    min-height: 62px;
    gap: 7px;
    padding: 6px 4px;
  }

  .lw-journey-card--route strong {
    font-size: 17px;
  }

  .lw-journey-card--route .lw-icon {
    width: 29px;
    height: 29px;
    stroke-width: 2.4;
  }

  .lw-journey-arrow {
    font-size: 30px;
    font-weight: 900;
  }

  .lw-journey-arrow--branch {
    font-size: 0;
    line-height: 1;
  }

  .lw-journey-arrow--branch::before {
    content: "↗\A↘";
    white-space: pre;
    font-size: 24px;
    font-weight: 900;
    line-height: 0.95;
  }

  .lw-mantra {
    margin-top: 7px !important;
    font-size: 20px;
  }

  .lw-proof {
    margin: 13px 16px 0;
  }

  .lw-proof > div {
    min-height: 68px;
    gap: 11px;
  }

  .lw-proof .lw-icon {
    width: 34px;
    height: 34px;
    stroke-width: 2.5;
  }

  .lw-proof strong {
    font-size: 15px;
  }

  .lw-proof small {
    font-size: 10px;
  }

  .lw-work-grid {
    gap: 9px;
  }

  .lw-work-card {
    min-height: 209px;
    display: grid;
    grid-template-rows: 40px 103px 1fr;
    padding: 9px;
    border-radius: 13px;
  }

  .lw-work-card__title {
    min-height: 40px;
  }

  .lw-work-card__title .lw-icon {
    width: 31px;
    height: 31px;
    stroke-width: 2.35;
  }

  .lw-work-card h3 {
    font-size: 18px;
  }

  .lw-work-card__image {
    height: 108px !important;
    border-radius: 9px;
  }

  .lw-work-card p {
    align-self: center;
    margin-top: 5px !important;
    font-size: var(--font-card-body);
    line-height: 1.5;
  }

  .lw-values-section {
    padding: 4px 0;
  }

  .lw-values-grid {
    gap: 9px;
  }

  .lw-values-grid article {
    min-height: 104px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 13px;
    text-align: center;
  }

  .lw-values-grid .lw-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto;
    stroke-width: 2.35;
  }

  .lw-values-grid h3 {
    font-size: 17px;
  }

  .lw-values-grid p {
    font-size: var(--font-value-body);
    line-height: 1.45;
  }

  .lw-recruit-card {
    border-radius: 15px;
    grid-template-columns: 1.04fr 0.96fr;
  }

  #lw-recruit {
    padding: 2px 0 3px;
  }

  .lw-recruit-card__content {
    padding: 14px 17px;
  }

  .lw-recruit-label {
    font-size: 10px;
  }

  .lw-recruit-card h2 {
    margin-top: 5px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.04em;
  }

  .lw-recruit-card ul {
    gap: 3px;
    margin: 8px 0 10px;
  }

  .lw-recruit-card li {
    padding-left: 24px;
    font-size: 13px;
  }

  .lw-recruit-card li::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .lw-recruit-card > img {
    min-height: 217px;
  }

  .lw-recruit-button {
    min-height: 43px;
    font-size: 13px;
  }

  .lw-faq-list {
    gap: 1px;
  }

  .lw-faq-section {
    padding: 1px 0;
  }

  .lw-faq-section .lw-section-heading {
    margin-bottom: 4px;
  }

  .lw-faq-section .lw-section-heading h2 {
    font-size: 22px;
  }

  .lw-faq-item button {
    min-height: 38px;
    padding: 5px 11px;
    font-size: var(--font-faq-question);
  }

  .lw-faq-item button > span {
    width: 22px;
    height: 22px;
    font-size: 15px;
  }

  .lw-faq-answer {
    padding: 0 11px 8px;
  }

  .lw-faq-answer p {
    padding-top: 7px;
    font-size: var(--font-faq-answer);
  }

  .lw-final-cta {
    padding-block: 7px;
  }

  .lw-final-cta__panel {
    gap: 10px;
    padding: 13px 23px;
    border-radius: 16px;
  }

  .lw-final-cta__panel p {
    font-size: 30px;
    white-space: nowrap;
  }

  .lw-final-cta__panel small {
    font-size: 11px;
  }

  .lw-line-button--final {
    width: 92%;
    min-height: 60px;
    margin-inline: auto;
    font-size: 19px;
  }

  .lw-line-button--final .lw-line-mark {
    width: 43px;
    height: 30px;
    font-size: 9px;
  }

  .lw-access-section {
    padding: 1px 0 2px;
  }

  .lw-access-section .lw-section-heading {
    margin-bottom: 5px;
  }

  .lw-access-card {
    height: 124px;
    border-radius: 14px;
  }

  .lw-access-card > img {
    min-height: 0;
  }

  .lw-access-card__info {
    gap: 3px;
    padding: 5px 11px;
  }

  .lw-access-card__info p {
    gap: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .lw-access-card__info .lw-icon {
    width: 26px;
    height: 26px;
    stroke-width: 2.35;
  }

  .lw-access-card__info a {
    min-height: 30px;
    font-size: 13px;
  }

  .lw-footer {
    padding: 8px 0 19px;
  }

  .lw-footer img {
    width: 220px;
  }
}

@media (min-width: 900px) {
  .lw-page {
    --font-body: 16px;
    --font-card-body: 16px;
    --font-value-body: 15px;
    --font-faq-question: 17px;
    --font-faq-answer: 15px;
  }

  .lw-header__inner {
    min-height: 72px;
  }

  .lw-logo {
    width: 250px;
  }

  .lw-line-button--header {
    min-height: 46px;
    padding-inline: 24px;
    font-size: 15px;
  }

  .lw-hero {
    padding: 20px 0 15px;
  }

  .lw-hero__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 34px;
  }

  .lw-eyebrow {
    font-size: 13px;
  }

  .lw-hero h1 {
    max-width: none;
    font-size: 54px;
  }

  .lw-hero__lead {
    margin-top: 12px !important;
    font-size: 16px;
  }

  .lw-hero__actions {
    max-width: 490px;
    margin-top: 14px;
  }

  .lw-hero__media {
    border-radius: 21px;
  }

  .lw-section {
    padding: 25px 0;
  }

  .lw-section-heading {
    margin-bottom: 14px;
  }

  .lw-section-heading h2 {
    font-size: 31px;
  }

  .lw-journey-section {
    padding-top: 24px;
  }

  .lw-journey-section .lw-shell {
    padding: 17px 17px 13px;
  }

  .lw-journey {
    grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1.35fr) 28px minmax(0, 1fr);
  }

  .lw-journey-card {
    min-height: 150px;
  }

  .lw-journey-card h3 {
    font-size: 18px;
  }

  .lw-journey-card p,
  .lw-journey-card small {
    font-size: 14px;
  }

  .lw-work-card__image {
    height: 120px !important;
  }

  .lw-work-card h3 {
    font-size: 20px;
  }

  .lw-work-card p {
    font-size: var(--font-card-body);
  }

  .lw-values-grid article {
    min-height: 120px;
  }

  .lw-values-grid h3 {
    font-size: 20px;
  }

  .lw-values-grid p {
    font-size: var(--font-value-body);
  }

  .lw-recruit-card__content {
    padding: 29px 32px;
  }

  .lw-recruit-card li {
    font-size: 15px;
  }

  .lw-recruit-card > img {
    min-height: 285px;
  }

  .lw-faq-item button {
    min-height: 50px;
    padding-inline: 17px;
    font-size: var(--font-faq-question);
  }

  .lw-faq-item button > span {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }

  .lw-faq-answer p {
    font-size: var(--font-faq-answer);
  }

  .lw-final-cta__panel {
    grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr);
    padding: 25px 32px;
    text-align: left;
  }

  .lw-final-cta__panel p {
    white-space: nowrap;
    letter-spacing: -0.025em;
  }

  .lw-final-cta__panel small {
    font-size: 13px;
  }

  .lw-access-card > img {
    min-height: 255px;
  }

  .lw-access-card__info p {
    font-size: 15px;
  }

  .lw-access-card__info a {
    font-size: 14px;
  }

  .lw-footer {
    padding: 20px 0 28px;
  }
}

@media (max-width: 699px) {
  .lw-page {
    --font-card-body: 15px;
    --font-value-body: 14px;
    --font-faq-question: 15px;
    --font-faq-answer: 14px;
  }

  .lw-header__inner {
    min-height: 62px;
  }

  .lw-logo {
    width: 145px;
  }

  .lw-corporate-link {
    display: none;
  }

  .lw-line-button--header {
    min-height: 39px;
    padding: 7px 12px;
    font-size: 11px;
  }

  .lw-line-button--header .lw-line-mark {
    display: none;
  }

  .lw-reassurance > div,
  .lw-proof > div {
    min-height: 68px;
    flex-direction: column;
    gap: 4px;
    padding: 8px 3px;
  }

  .lw-reassurance .lw-icon,
  .lw-proof .lw-icon {
    width: 23px;
    height: 23px;
  }

  .lw-proof span {
    align-items: center;
    text-align: center;
  }

  .lw-proof small {
    line-height: 1.1;
  }

  .lw-section {
    padding: 34px 0;
  }

  .lw-journey-section {
    padding-top: 22px;
  }

  .lw-journey-section .lw-shell {
    padding: 17px 14px 14px;
  }

  .lw-journey-card {
    min-height: 127px;
  }

  .lw-work-card {
    padding: 13px;
  }

  .lw-work-card__image {
    height: 140px !important;
  }

  .lw-work-card p {
    font-size: var(--font-card-body);
  }

  .lw-values-grid h3 {
    font-size: 19px;
  }

  .lw-values-grid p {
    font-size: var(--font-value-body);
  }

  .lw-values-section {
    padding-top: 8px;
    padding-bottom: 25px;
  }

  .lw-values-grid article {
    min-height: 105px;
  }

  .lw-recruit-card__content {
    padding: 23px;
  }

  .lw-faq-item button {
    min-height: 52px;
    font-size: var(--font-faq-question);
  }

  .lw-faq-answer p {
    font-size: var(--font-faq-answer);
  }

  .lw-final-cta {
    padding-block: 20px;
  }

  .lw-access-section {
    padding-top: 28px;
  }
}

@media (max-width: 379px) {
  .lw-shell,
  .lw-shell--narrow {
    width: calc(100% - 24px);
  }

  .lw-hero h1 {
    font-size: 36px;
  }

  .lw-line-button--primary {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-page *,
  .lw-page *::before,
  .lw-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}