:root {
  --lp-blue: #a9ceec;
  --lp-blue-deep: #6ea9d5;
  --lp-blue-pale: #f3f9fd;
  --lp-blue-wash: #e8f4fb;
  --lp-ink: #2e3438;
  --lp-muted: #68747c;
  --lp-line: #dce8f0;
  --lp-white: #fff;
  --lp-serif: "Noto Serif JP", "Yu Mincho", serif;
  --lp-sans: "Noto Sans JP", sans-serif;
  --lp-en: "Cormorant Garamond", serif;
  --lp-radius: 10px;
  --lp-shadow: 0 22px 65px rgba(62, 94, 117, .11);
  --lp-container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lp-ink);
  background: var(--lp-white);
  font-family: var(--lp-sans);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .045em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(circle at 12% 20%, rgba(169, 206, 236, .18), transparent 23%), radial-gradient(circle at 88% 62%, rgba(169, 206, 236, .13), transparent 20%);
  content: "";
  pointer-events: none;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.lp-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 14px;
  background: var(--lp-white);
  border: 1px solid var(--lp-blue);
  transform: translateY(-150%);
}

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

.lp-container {
  width: min(calc(100% - 80px), var(--lp-container));
  margin-inline: auto;
}

.lp-container--narrow {
  max-width: 920px;
}

.lp-section {
  position: relative;
  padding-block: 120px;
}

.lp-only-sp {
  display: none;
}

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.lp-header.is-scrolled {
  background: rgba(255, 255, 255, .93);
  border-color: rgba(169, 206, 236, .35);
  box-shadow: 0 8px 30px rgba(61, 85, 102, .07);
  backdrop-filter: blur(12px);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  width: min(calc(100% - 52px), 1360px);
  min-height: 88px;
  margin-inline: auto;
  gap: 32px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
  gap: 12px;
}

.lp-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.lp-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.lp-brand__text small {
  font-family: var(--lp-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
}

.lp-brand__text strong {
  font-family: var(--lp-en);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .04em;
}

.lp-brand__text em {
  font-family: var(--lp-serif);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .08em;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: clamp(18px, 2.6vw, 40px);
}

.lp-nav a {
  position: relative;
  font-family: var(--lp-serif);
  font-size: 12px;
  letter-spacing: .08em;
}

.lp-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--lp-blue-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

.lp-header__cta {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  min-width: 132px;
  min-height: 60px;
  padding: 8px 20px;
  color: #26343f;
  background: var(--lp-blue);
  border: 1px solid var(--lp-blue);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  transition: background .25s ease, transform .25s ease;
}

.lp-header__cta span {
  font-family: var(--lp-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lp-header__cta:hover {
  background: #b9d9f1;
  transform: translateY(-2px);
}

.lp-hero {
  position: relative;
  min-height: 100svh;
  background: #26343c;
  overflow: hidden;
}

.lp-hero::before {
  position: absolute;
  top: 19%;
  left: -78px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(169, 206, 236, .55);
  border-radius: 50%;
  content: "";
}

.lp-hero__copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 80px, 690px);
  min-height: 100svh;
  margin-left: max(40px, calc((100vw - 1360px) / 2));
  padding: 150px 42px 100px 0;
  color: var(--lp-white);
}

.lp-eyebrow,
.lp-heading__en {
  margin: 0 0 18px;
  color: #6096bd;
  font-family: var(--lp-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .25em;
  line-height: 1.4;
}

.lp-hero .lp-eyebrow {
  color: #c5e4fa;
}

.lp-hero h1 {
  margin: 0;
  font-family: var(--lp-serif);
  font-size: clamp(29px, 3.15vw, 51px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .055em;
}

.lp-hero h1 span,
.lp-hero h1 strong {
  display: block;
}

.lp-hero h1 strong {
  position: relative;
  margin-top: 10px;
  font-weight: 500;
}

.lp-hero h1 strong::after {
  position: absolute;
  bottom: .11em;
  left: -.08em;
  z-index: -1;
  width: 98%;
  height: .35em;
  background: rgba(169, 206, 236, .48);
  content: "";
}

.lp-hero__lead {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .84);
  font-family: var(--lp-serif);
  font-size: 15px;
  line-height: 2.15;
}

.lp-hero__facts {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 10px;
}

.lp-hero__facts span {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 100px;
  color: var(--lp-white);
  backdrop-filter: blur(8px);
  font-size: 11px;
  gap: 7px;
}

.lp-hero__facts i {
  color: var(--lp-blue);
}

.lp-button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 15px 28px;
  border: 1px solid var(--lp-blue-deep);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  gap: 12px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.lp-button:hover {
  transform: translateY(-2px);
}

.lp-button--primary {
  color: #24333d;
  background: var(--lp-blue);
  border-color: var(--lp-blue);
  box-shadow: 0 12px 30px rgba(87, 146, 190, .16);
}

.lp-button--primary:hover {
  background: #bdddf4;
  box-shadow: 0 15px 34px rgba(87, 146, 190, .22);
}

.lp-button--outline {
  background: var(--lp-white);
}

.lp-button--outline:hover {
  color: #24333d;
  background: var(--lp-blue-wash);
}

.lp-button--hero {
  flex-wrap: wrap;
  width: min(100%, 430px);
  margin-top: 32px;
  padding-top: 19px;
}

.lp-button__sub {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 3px 14px;
  color: var(--lp-white);
  background: #5d8eaf;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.lp-button--large {
  width: 100%;
  min-height: 70px;
  font-size: 15px;
}

.lp-hero__note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  text-align: center;
  width: min(100%, 430px);
}

.lp-hero__note b {
  color: var(--lp-white);
  font-size: 13px;
}

.lp-hero__visual {
  position: absolute;
  inset: 0;
  min-height: 100%;
  margin: 0;
  background: #dce7ec;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.lp-hero__visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(24, 35, 42, .77) 0%, rgba(24, 35, 42, .48) 42%, rgba(24, 35, 42, .08) 76%), linear-gradient(0deg, rgba(22, 32, 38, .45), transparent 52%);
  content: "";
  pointer-events: none;
}

.lp-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.15s ease, transform 5s ease;
}

.lp-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.lp-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.lp-hero__slide:nth-child(1) img { object-position: center 42%; }
.lp-hero__slide:nth-child(2) img { object-position: center 38%; }
.lp-hero__slide:nth-child(3) img { object-position: center 45%; }

.lp-hero__badge {
  position: absolute;
  right: 26px;
  bottom: 27px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 18px 20px;
  color: var(--lp-white);
  background: rgba(42, 55, 62, .5);
  border: 1px solid rgba(255, 255, 255, .5);
  backdrop-filter: blur(8px);
  line-height: 1;
}

.lp-hero__badge span,
.lp-hero__badge strong {
  font-family: var(--lp-en);
  font-weight: 400;
}

.lp-hero__badge span {
  font-size: 19px;
  letter-spacing: .12em;
}

.lp-hero__badge strong {
  margin-top: 3px;
  font-size: 38px;
}

.lp-hero__badge small {
  margin-top: 10px;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.lp-hero__counter {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 4;
  color: var(--lp-white);
  font-family: var(--lp-en);
  font-size: 14px;
  letter-spacing: .15em;
}

.lp-hero__counter span {
  font-size: 29px;
}

.lp-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 21px;
  z-index: 5;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  font-family: var(--lp-en);
  font-size: 10px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.lp-hero__scroll::after {
  width: 1px;
  height: 56px;
  margin-top: 12px;
  background: var(--lp-blue-deep);
  content: "";
  animation: lp-scroll 2.1s ease-in-out infinite;
  transform-origin: top;
}

@keyframes lp-scroll {
  0%, 100% { transform: scaleY(.3); }
  50% { transform: scaleY(1); }
}

.lp-trust {
  background: #3a4a54;
  color: var(--lp-white);
}

.lp-hair-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  background: #dbe8ef;
}

.lp-hair-ribbon figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.lp-hair-ribbon img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .8s ease;
}

.lp-hair-ribbon figure:hover img {
  transform: scale(1.035);
}

.lp-hair-ribbon figcaption {
  position: absolute;
  right: 17px;
  bottom: 16px;
  color: var(--lp-white);
  font-family: var(--lp-en);
  font-size: clamp(24px, 3.2vw, 50px);
  letter-spacing: .03em;
  text-shadow: 0 2px 18px rgba(24, 36, 43, .35);
}

.lp-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.lp-trust__grid p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  margin: 0;
  padding: 22px 32px;
  border-left: 1px solid rgba(255, 255, 255, .14);
  gap: 18px;
}

.lp-trust__grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.lp-trust__grid strong {
  color: var(--lp-blue);
  font-family: var(--lp-en);
  font-size: 30px;
  font-weight: 400;
}

.lp-trust__grid span {
  font-family: var(--lp-serif);
  font-size: 12px;
  line-height: 1.9;
}

.lp-heading {
  margin-bottom: 55px;
}

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

.lp-heading h2 {
  margin: 0;
  font-family: var(--lp-serif);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .075em;
}

.lp-heading__lead {
  margin: 18px 0 0;
  color: var(--lp-muted);
  font-size: 13px;
}

.lp-concern {
  background: linear-gradient(180deg, #fff, var(--lp-blue-pale));
}

.lp-concern::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 55px;
  background: var(--lp-blue);
  content: "";
}

.lp-concern__list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--lp-line);
  list-style: none;
}

.lp-concern__content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr);
  align-items: stretch;
  gap: 42px;
}

.lp-concern__image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 5px 5px 45px 5px;
}

.lp-concern__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-concern__image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 22px 20px;
  color: var(--lp-white);
  background: linear-gradient(transparent, rgba(31, 45, 54, .72));
  font-family: var(--lp-serif);
  font-size: 13px;
}

.lp-concern__image figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--lp-blue);
  font-family: var(--lp-en);
  font-size: 12px;
  letter-spacing: .17em;
}

.lp-concern__list li {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 17px 26px;
  border-bottom: 1px solid var(--lp-line);
  background: rgba(255, 255, 255, .52);
  font-family: var(--lp-serif);
  font-size: 16px;
  gap: 24px;
}

.lp-concern__list span {
  color: var(--lp-blue-deep);
  font-family: var(--lp-en);
  font-size: 21px;
}

.lp-concern__answer {
  position: relative;
  margin-top: 70px;
  padding: 56px 30px;
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  box-shadow: 0 16px 50px rgba(75, 113, 139, .07);
  text-align: center;
}

.lp-concern__answer::before {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 36px;
  height: 36px;
  background: var(--lp-white);
  border-top: 1px solid var(--lp-line);
  border-left: 1px solid var(--lp-line);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.lp-concern__answer p {
  margin: 0 0 19px;
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-concern__answer strong {
  font-family: var(--lp-serif);
  font-size: clamp(19px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.8;
}

.lp-concept {
  overflow: hidden;
}

.lp-concept::after {
  position: absolute;
  top: 90px;
  right: -120px;
  z-index: -1;
  width: 390px;
  height: 390px;
  border: 80px solid var(--lp-blue-pale);
  border-radius: 50%;
  content: "";
}

.lp-concept__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.lp-concept__visual {
  position: relative;
}

.lp-concept__visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px 6px 70px 6px;
}

.lp-concept__vertical {
  position: absolute;
  right: -40px;
  bottom: 25px;
  margin: 0;
  color: var(--lp-blue-deep);
  font-family: var(--lp-en);
  font-size: 11px;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.lp-concept__copy > p {
  margin: 0 0 22px;
  color: #56636b;
  line-height: 2.15;
}

.lp-concept__signature {
  margin-top: 44px;
  color: #7c9db4;
  font-family: var(--lp-en);
  font-size: 42px;
  line-height: 1;
}

.lp-concept__signature span {
  margin-left: 8px;
  font-family: var(--lp-sans);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lp-case {
  background: var(--lp-blue-pale);
}

.lp-case__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-case-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  overflow: hidden;
}

.lp-case-card__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--lp-white);
}

.lp-case-card__media figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.lp-case-card__media img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .6s ease;
}

.lp-case-card:hover .lp-case-card__media img {
  transform: scale(1.025);
}

.lp-case-card__media figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 10px;
  color: var(--lp-white);
  background: rgba(42, 52, 58, .58);
  font-family: var(--lp-en);
  font-size: 11px;
  letter-spacing: .17em;
}

.lp-case-card__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #3e6682;
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(42, 58, 70, .15);
  font-size: 17px;
  transform: translate(-50%, -50%);
}

.lp-case-card__body {
  padding: 26px 24px 28px;
}

.lp-case-card__number {
  margin: 0 0 8px;
  color: var(--lp-blue-deep);
  font-family: var(--lp-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
}

.lp-case-card h3 {
  min-height: 5.4em;
  margin: 0 0 20px;
  font-family: var(--lp-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.lp-case-card dl {
  margin: 0;
}

.lp-case-card dl div {
  display: grid;
  grid-template-columns: 64px 1fr;
  padding: 8px 0;
  border-top: 1px solid var(--lp-line);
  font-size: 11px;
  line-height: 1.7;
}

.lp-case-card dt {
  color: #7e8b93;
}

.lp-case-card dd {
  margin: 0;
}

.lp-case__temporary {
  margin: 18px 0 0;
  color: #7c878d;
  font-size: 10px;
  text-align: center;
}

.lp-section-cta {
  margin-top: 45px;
  text-align: center;
}

.lp-section-cta .lp-button {
  min-width: 310px;
}

.lp-reason {
  background: #fff;
}

.lp-reason__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.lp-reason-card {
  position: relative;
  grid-column: span 2;
  min-height: 460px;
  padding: 0 0 30px;
  background: linear-gradient(145deg, #fff, #f7fbfe);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
}

.lp-reason-card__media {
  margin: 0 0 0;
  overflow: hidden;
}

.lp-reason-card__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .7s ease;
}

.lp-reason-card:hover .lp-reason-card__media img {
  transform: scale(1.035);
}

.lp-reason-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.lp-reason-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.lp-reason-card__number {
  position: absolute;
  top: 14px;
  right: 21px;
  margin: 0;
  z-index: 2;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 2px 15px rgba(34, 49, 57, .25);
  font-family: var(--lp-en);
  font-size: 57px;
  line-height: 1;
}

.lp-reason-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  position: relative;
  z-index: 2;
  margin: -27px 0 24px 28px;
  place-items: center;
  color: #497895;
  background: var(--lp-blue-wash);
  border-radius: 50%;
  font-size: 20px;
}

.lp-reason-card h3 {
  margin: 0 28px 15px;
  font-family: var(--lp-serif);
  font-size: 18px;
  font-weight: 500;
}

.lp-reason-card > p:last-child {
  margin: 0 28px;
  color: var(--lp-muted);
  font-size: 12px;
  line-height: 2;
}

.lp-flow {
  color: var(--lp-white);
  background: #3b4c57;
  overflow: hidden;
}

.lp-flow::before {
  position: absolute;
  top: -200px;
  left: -100px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(169, 206, 236, .18);
  border-radius: 50%;
  content: "";
}

.lp-flow .lp-heading__en {
  color: var(--lp-blue);
}

.lp-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-flow__list::before {
  position: absolute;
  top: 76px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(169, 206, 236, .4);
  content: "";
}

.lp-flow__list li {
  position: relative;
  padding: 0 22px;
  text-align: center;
}

.lp-flow__list span {
  display: block;
  margin-bottom: 18px;
  color: var(--lp-blue);
  font-family: var(--lp-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
}

.lp-flow__list i {
  display: grid;
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--lp-blue);
  background: #3b4c57;
  border: 1px solid rgba(169, 206, 236, .62);
  border-radius: 50%;
  font-size: 23px;
}

.lp-flow__list h3 {
  margin: 0 0 13px;
  font-family: var(--lp-serif);
  font-size: 17px;
  font-weight: 500;
}

.lp-flow__list p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1.9;
}

.lp-flow__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  gap: 12px;
}

.lp-flow__gallery figure {
  margin: 0;
  overflow: hidden;
}

.lp-flow__gallery figure:nth-child(2) {
  transform: translateY(28px);
}

.lp-flow__gallery img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.lp-motion-image {
  position: relative;
  width: 100%;
  min-height: 72svh;
  overflow: hidden;
  background: #26343c;
}

.lp-motion-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 39, 47, .65), rgba(27, 39, 47, .06));
  content: "";
}

.lp-motion-image video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-motion-image__overlay {
  position: absolute;
  top: 50%;
  left: max(40px, calc((100vw - 1160px) / 2));
  z-index: 2;
  color: var(--lp-white);
  transform: translateY(-50%);
}

.lp-motion-image__overlay.is-visible {
  transform: translateY(-50%);
}

.lp-motion-image__overlay p {
  margin: 0 0 12px;
  color: var(--lp-blue);
  font-family: var(--lp-en);
  font-size: 13px;
  letter-spacing: .22em;
}

.lp-motion-image__overlay h2 {
  margin: 0;
  font-family: var(--lp-serif);
  font-size: clamp(30px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.65;
}

.lp-coupon {
  background: linear-gradient(135deg, #f7fbfe 0%, #e6f3fb 100%);
}

.lp-coupon__card {
  position: relative;
  padding: 68px 90px 58px;
  background: var(--lp-white);
  border: 1px solid rgba(119, 170, 207, .45);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  overflow: hidden;
}

.lp-coupon__card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  background: rgba(169, 206, 236, .17);
  border-radius: 50%;
  content: "";
}

.lp-coupon__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 30px 8px;
  color: var(--lp-white);
  background: #5f91b3;
  font-family: var(--lp-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  transform: translateX(-50%);
}

.lp-coupon__head {
  text-align: center;
}

.lp-coupon__head > p {
  margin: 0 0 12px;
  color: #608bac;
  font-size: 12px;
  font-weight: 600;
}

.lp-coupon__head h2 {
  margin: 0;
  font-family: var(--lp-serif);
  font-size: clamp(23px, 3vw, 35px);
  font-weight: 500;
  line-height: 1.65;
}

.lp-coupon__price {
  margin: 35px 0 28px;
  padding: 23px;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  text-align: center;
}

.lp-coupon__price > span {
  color: var(--lp-muted);
  font-size: 11px;
}

.lp-coupon__price p {
  margin: 2px 0 0;
  color: #34566e;
  font-family: var(--lp-en);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.1;
}

.lp-coupon__price small {
  margin-inline: 5px;
  font-family: var(--lp-sans);
  font-size: 12px;
}

.lp-coupon__features {
  display: flex;
  justify-content: center;
  margin: 0 0 33px;
  padding: 0;
  list-style: none;
  gap: 24px;
}

.lp-coupon__features li {
  color: #50636f;
  font-size: 11px;
}

.lp-coupon__features i {
  margin-right: 6px;
  color: var(--lp-blue-deep);
}

.lp-coupon__notice {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #7c878e;
  font-size: 10px;
  line-height: 1.8;
}

.lp-stylist {
  overflow: hidden;
}

.lp-stylist__grid {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(400px, 1.15fr);
  align-items: center;
  gap: clamp(55px, 9vw, 125px);
}

.lp-stylist__image {
  position: relative;
  max-width: 500px;
}

.lp-stylist__image::before {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: -1;
  width: 72%;
  height: 72%;
  background: var(--lp-blue-wash);
  content: "";
}

.lp-stylist__image img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 5px 5px 55px 5px;
}

.lp-stylist__image > p {
  position: absolute;
  right: -30px;
  bottom: 45px;
  margin: 0;
  color: var(--lp-blue-deep);
  font-family: var(--lp-en);
  font-size: 12px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.lp-stylist__role {
  margin: -35px 0 24px;
  color: var(--lp-blue-deep);
  font-family: var(--lp-serif);
  font-size: 14px;
}

.lp-stylist__copy > p:not(.lp-stylist__role) {
  color: var(--lp-muted);
  line-height: 2.2;
}

.lp-stylist blockquote {
  margin: 32px 0;
  padding: 22px 0 22px 28px;
  border-left: 2px solid var(--lp-blue);
  font-family: var(--lp-serif);
  font-size: 18px;
  line-height: 2;
}

.lp-stylist__sns {
  display: inline-flex;
  align-items: center;
  color: #516673;
  font-family: var(--lp-en);
  font-size: 14px;
  letter-spacing: .06em;
  gap: 9px;
}

.lp-stylist__sns i {
  font-size: 20px;
}

.lp-voice {
  background: var(--lp-blue-pale);
}

.lp-voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-voice-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 33px 30px 29px;
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
}

.lp-voice-card__stars {
  margin-bottom: 18px;
  color: #7faed0;
  font-size: 12px;
  letter-spacing: .18em;
}

.lp-voice-card h3 {
  margin: 0 0 18px;
  font-family: var(--lp-serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}

.lp-voice-card > p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 12px;
  line-height: 2;
}

.lp-voice-card footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--lp-line);
  gap: 4px;
}

.lp-voice-card footer span {
  font-size: 12px;
  font-weight: 600;
}

.lp-voice-card footer small {
  color: #7d8a91;
  font-size: 10px;
}

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

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

.lp-faq summary {
  display: grid;
  grid-template-columns: 42px 1fr 25px;
  align-items: center;
  min-height: 92px;
  padding: 20px 12px;
  cursor: pointer;
  font-family: var(--lp-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  list-style: none;
}

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

.lp-faq summary > span {
  color: var(--lp-blue-deep);
  font-family: var(--lp-en);
  font-size: 24px;
}

.lp-faq summary::after {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #5f7e92;
  content: "+";
  font-family: var(--lp-en);
  font-size: 23px;
  font-weight: 400;
  transition: transform .25s ease;
}

.lp-faq details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.lp-faq__answer {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 0 50px 30px 12px;
  color: var(--lp-muted);
  font-size: 12px;
}

.lp-faq__answer > span {
  color: #415a68;
  font-family: var(--lp-en);
  font-size: 24px;
}

.lp-faq__answer p {
  margin: 0 0 10px;
}

.lp-access {
  background: var(--lp-blue-pale);
}

.lp-access__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.lp-access__copy dl {
  margin: -20px 0 28px;
}

.lp-access__copy dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--lp-line);
  font-size: 12px;
}

.lp-access__copy dt {
  color: #7793a5;
  font-family: var(--lp-en);
  font-size: 14px;
  letter-spacing: .08em;
}

.lp-access__copy dd {
  margin: 0;
}

.lp-text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--lp-blue-deep);
  font-size: 12px;
  gap: 9px;
}

.lp-access__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 5px 5px 50px 5px;
  box-shadow: var(--lp-shadow);
}

.lp-final-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 100px 30px;
  overflow: hidden;
}

.lp-final-cta__image,
.lp-final-cta__image::after {
  position: absolute;
  inset: 0;
}

.lp-final-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-final-cta__image::after {
  background: rgba(35, 48, 55, .67);
  content: "";
}

.lp-final-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  color: var(--lp-white);
  text-align: center;
}

.lp-final-cta .lp-heading__en {
  color: var(--lp-blue);
}

.lp-final-cta h2 {
  margin: 0;
  font-family: var(--lp-serif);
  font-size: clamp(30px, 5vw, 51px);
  font-weight: 500;
  line-height: 1.6;
}

.lp-final-cta__inner > p:not(.lp-heading__en, .lp-final-cta__micro) {
  margin: 25px auto 0;
  max-width: 540px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.lp-final-cta__coupon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin: 32px 0 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .33);
  backdrop-filter: blur(8px);
  gap: 13px;
  text-align: left;
}

.lp-final-cta__coupon span {
  padding: 4px 10px;
  color: #324854;
  background: var(--lp-blue);
  border-radius: 100px;
  font-size: 9px;
}

.lp-final-cta__coupon strong {
  font-family: var(--lp-serif);
  font-size: 14px;
  font-weight: 500;
}

.lp-final-cta__coupon b {
  font-family: var(--lp-en);
  font-size: 30px;
  font-weight: 500;
}

.lp-final-cta__micro {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
}

.lp-footer {
  padding: 55px 0 110px;
  background: #f8fbfd;
  border-top: 1px solid var(--lp-line);
}

.lp-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.lp-brand--footer img {
  width: 58px;
  height: 58px;
}

.lp-footer__links {
  display: flex;
  font-size: 11px;
  gap: 25px;
}

.lp-footer__copyright {
  grid-column: 1 / -1;
  margin: 15px 0 0;
  color: #8a969d;
  font-family: var(--lp-en);
  font-size: 11px;
  letter-spacing: .1em;
}

.lp-mobile-cta {
  display: none;
}

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

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

@media (max-width: 1020px) {
  .lp-header__inner {
    width: calc(100% - 34px);
  }

  .lp-nav {
    display: none;
  }

  .lp-header__cta {
    margin-left: auto;
  }

  .lp-hero__copy {
    margin-left: 38px;
  }

  .lp-case__grid {
    gap: 14px;
  }

  .lp-case-card__body {
    padding-inline: 18px;
  }

  .lp-reason-card {
    padding-inline: 23px;
  }

  .lp-flow__list li {
    padding-inline: 13px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
    font-size: 14px;
  }

  .lp-container {
    width: min(calc(100% - 38px), var(--lp-container));
  }

  .lp-section {
    padding-block: 76px;
  }

  .lp-only-sp {
    display: initial;
  }

  .lp-header { background: transparent; border-bottom-color: transparent; }
  .lp-header.is-scrolled { background: rgba(255, 255, 255, .93); border-bottom-color: rgba(169, 206, 236, .27); }
  .lp-header:not(.is-scrolled) .lp-brand__text { color: var(--lp-white); text-shadow: 0 1px 8px rgba(25, 38, 45, .45); }
  .lp-header:not(.is-scrolled) .lp-brand img { filter: brightness(0) invert(1) drop-shadow(0 1px 7px rgba(25, 38, 45, .35)); }

  .lp-header__inner {
    width: calc(100% - 24px);
    min-height: 68px;
  }

  .lp-brand {
    min-width: 0;
    gap: 8px;
  }

  .lp-brand img {
    width: 44px;
    height: 44px;
  }

  .lp-brand__text small {
    font-size: 8px;
  }

  .lp-brand__text strong {
    font-size: 24px;
  }

  .lp-brand__text em {
    font-size: 9px;
  }

  .lp-header__cta {
    min-width: 92px;
    min-height: 44px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .lp-header__cta span {
    font-size: 8px;
  }

  .lp-hero {
    display: block;
    min-height: 100svh;
    padding: 0;
    background: #26343c;
  }

  .lp-hero::before,
  .lp-hero__scroll {
    display: none;
  }

  .lp-hero__visual {
    position: absolute;
    inset: 0;
    min-height: 100%;
    aspect-ratio: auto;
    margin: 0;
    border-radius: 0;
  }

  .lp-hero__slide img {
    object-position: center 40%;
  }

  .lp-hero__badge {
    right: 14px;
    bottom: 14px;
    padding: 13px 14px;
  }

  .lp-hero__badge span {
    font-size: 14px;
  }

  .lp-hero__badge strong {
    font-size: 28px;
  }

  .lp-hero__badge small {
    margin-top: 7px;
    font-size: 7px;
  }

  .lp-hero__counter {
    bottom: 14px;
    left: 14px;
    font-size: 10px;
  }

  .lp-hero__counter span {
    font-size: 22px;
  }

  .lp-hero__copy {
    position: relative;
    z-index: 4;
    justify-content: flex-end;
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 112px 24px 106px;
    color: var(--lp-white);
  }

  .lp-eyebrow,
  .lp-heading__en {
    margin-bottom: 13px;
    font-size: 11px;
    letter-spacing: .2em;
  }

  .lp-hero h1 {
    font-size: clamp(24px, 7.3vw, 31px);
    line-height: 1.55;
  }

  .lp-hero h1 span:first-child,
  .lp-hero h1 span:nth-child(2) {
    display: inline;
  }

  .lp-hero h1 span:first-child::after {
    content: " ";
  }

  .lp-hero h1 strong {
    margin-top: 8px;
  }

  .lp-hero__lead {
    margin-top: 22px;
    font-size: 13px;
    line-height: 2;
  }

  .lp-hero__visual::after {
    background: linear-gradient(0deg, rgba(19, 29, 35, .84) 0%, rgba(19, 29, 35, .44) 51%, rgba(19, 29, 35, .12) 77%), linear-gradient(90deg, rgba(19, 29, 35, .22), transparent);
  }

  .lp-hero__facts {
    margin-top: 17px;
  }

  .lp-hero__facts span {
    font-size: 9px;
  }

  .lp-button--hero {
    width: 100%;
    margin-top: 30px;
  }

  .lp-hero__note {
    width: 100%;
  }

  .lp-trust__grid {
    display: block;
    width: 100%;
  }

  .lp-trust__grid p {
    justify-content: flex-start;
    min-height: 81px;
    padding: 16px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }

  .lp-trust__grid p:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .lp-trust__grid strong {
    width: 42px;
    font-size: 25px;
  }

  .lp-trust__grid span {
    font-size: 11px;
  }

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

  .lp-hair-ribbon figcaption {
    right: 10px;
    bottom: 8px;
    font-size: 27px;
  }

  .lp-heading {
    margin-bottom: 36px;
  }

  .lp-heading h2 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.65;
  }

  .lp-heading__lead {
    font-size: 11px;
  }

  .lp-concern::before {
    height: 32px;
  }

  .lp-concern__list li {
    align-items: flex-start;
    min-height: 0;
    padding: 17px 8px;
    font-size: 13px;
    line-height: 1.8;
    gap: 12px;
  }

  .lp-concern__content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .lp-concern__image {
    aspect-ratio: 3 / 4;
  }

  .lp-concern__list span {
    padding-top: 1px;
    font-size: 17px;
  }

  .lp-concern__answer {
    margin-top: 48px;
    padding: 39px 20px;
  }

  .lp-concern__answer p {
    font-size: 11px;
  }

  .lp-concern__answer strong {
    font-size: 18px;
  }

  .lp-concept__grid,
  .lp-stylist__grid,
  .lp-access__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .lp-concept__visual {
    width: calc(100% - 23px);
  }

  .lp-concept__visual img {
    aspect-ratio: 3 / 4;
    border-radius: 5px 5px 45px 5px;
  }

  .lp-concept__vertical {
    right: -25px;
  }

  .lp-concept__copy > p {
    font-size: 13px;
    line-height: 2.1;
  }

  .lp-concept__signature {
    margin-top: 33px;
    font-size: 36px;
  }

  .lp-case__grid {
    display: flex;
    width: calc(100% + 19px);
    margin-right: -19px;
    overflow-x: auto;
    padding: 0 19px 16px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 14px;
  }

  .lp-case__grid::-webkit-scrollbar {
    display: none;
  }

  .lp-case-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

  .lp-case-card h3 {
    min-height: auto;
  }

  .lp-case__temporary {
    text-align: left;
  }

  .lp-section-cta .lp-button {
    width: 100%;
    min-width: 0;
  }

  .lp-reason__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp-reason-card,
  .lp-reason-card:nth-child(4),
  .lp-reason-card:nth-child(5) {
    grid-column: auto;
    min-height: 0;
    padding: 0 0 26px;
  }

  .lp-reason-card__number {
    font-size: 49px;
  }

  .lp-reason-card__icon {
    width: 47px;
    height: 47px;
    margin: -23px 0 18px 23px;
    font-size: 17px;
  }

  .lp-reason-card h3 { margin-inline: 23px; }
  .lp-reason-card > p:last-child { margin-inline: 23px; }

  .lp-flow__gallery {
    width: calc(100% + 19px);
    margin-top: 55px;
    margin-right: -19px;
    padding-right: 19px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
  }

  .lp-flow__gallery figure {
    min-width: 72vw;
    scroll-snap-align: start;
  }

  .lp-flow__gallery figure:nth-child(2) { transform: none; }

  .lp-motion-image {
    min-height: 78svh;
  }

  .lp-motion-image::after {
    background: linear-gradient(0deg, rgba(23, 35, 42, .78), rgba(23, 35, 42, .08) 70%);
  }

  .lp-motion-image__overlay {
    top: auto;
    right: 24px;
    bottom: 72px;
    left: 24px;
    transform: none;
  }

  .lp-motion-image__overlay.is-visible { transform: none; }

  .lp-motion-image__overlay h2 { font-size: 29px; }

  .lp-flow__list {
    display: block;
  }

  .lp-flow__list::before {
    top: 40px;
    bottom: 40px;
    left: 37px;
    width: 1px;
    height: auto;
  }

  .lp-flow__list li {
    display: grid;
    grid-template-columns: 74px 1fr;
    margin-bottom: 34px;
    padding: 0;
    column-gap: 20px;
    text-align: left;
  }

  .lp-flow__list li:last-child {
    margin-bottom: 0;
  }

  .lp-flow__list span {
    grid-column: 2;
    margin: 0 0 5px;
  }

  .lp-flow__list i {
    grid-row: 1 / span 3;
    width: 74px;
    height: 74px;
    margin: 0;
  }

  .lp-flow__list h3,
  .lp-flow__list p {
    grid-column: 2;
  }

  .lp-flow__list h3 {
    margin-bottom: 6px;
  }

  .lp-coupon__card {
    padding: 57px 20px 28px;
  }

  .lp-coupon__ribbon {
    font-size: 10px;
  }

  .lp-coupon__head h2 {
    font-size: 21px;
  }

  .lp-coupon__price {
    margin: 26px 0 22px;
    padding: 18px 10px;
  }

  .lp-coupon__price p {
    font-size: 54px;
  }

  .lp-coupon__features {
    display: grid;
    justify-content: start;
    margin-left: 9px;
    gap: 9px;
  }

  .lp-button--large {
    min-height: 64px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .lp-stylist__image {
    width: 80%;
  }

  .lp-stylist__image > p {
    right: -25px;
  }

  .lp-stylist__role {
    margin-top: -25px;
  }

  .lp-stylist__copy > p:not(.lp-stylist__role) {
    font-size: 13px;
  }

  .lp-stylist blockquote {
    padding-left: 20px;
    font-size: 16px;
  }

  .lp-voice__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp-voice-card {
    min-height: 0;
    padding: 27px 23px;
  }

  .lp-voice-card footer {
    margin-top: 23px;
  }

  .lp-faq summary {
    grid-template-columns: 32px 1fr 22px;
    min-height: 78px;
    padding-inline: 0;
    font-size: 13px;
  }

  .lp-faq__answer {
    grid-template-columns: 32px 1fr;
    padding: 0 0 25px;
    font-size: 11px;
  }

  .lp-access__grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .lp-access__image img {
    aspect-ratio: 3 / 2;
  }

  .lp-access__copy {
    width: 100%;
  }

  .lp-access__copy dl div {
    grid-template-columns: 75px 1fr;
  }

  .lp-final-cta {
    min-height: 710px;
    padding: 75px 19px;
  }

  .lp-final-cta h2 {
    font-size: 29px;
  }

  .lp-final-cta__inner > p:not(.lp-heading__en, .lp-final-cta__micro) {
    font-size: 11px;
  }

  .lp-final-cta__coupon {
    grid-template-columns: auto 1fr;
    gap: 7px 10px;
  }

  .lp-final-cta__coupon b {
    grid-column: 1 / -1;
    text-align: center;
  }

  .lp-footer {
    padding: 44px 0 32px;
  }

  .lp-footer__inner {
    grid-template-columns: 1fr;
  }

  .lp-footer__links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .lp-footer__copyright {
    grid-column: auto;
  }

  .lp-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    display: grid;
    grid-template-columns: 1fr 145px;
    align-items: stretch;
    min-height: 74px;
    padding: 8px 8px 8px 17px;
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--lp-line);
    box-shadow: 0 -8px 25px rgba(40, 65, 81, .1);
    backdrop-filter: blur(10px);
  }

  .lp-mobile-cta > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.5;
  }

  .lp-mobile-cta small {
    color: #648ca8;
    font-size: 8px;
  }

  .lp-mobile-cta strong {
    font-family: var(--lp-serif);
    font-size: 10px;
    font-weight: 500;
  }

  .lp-mobile-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #24353f;
    background: var(--lp-blue);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
  }

  .lp-mobile-cta a span {
    font-family: var(--lp-en);
    font-size: 18px;
  }
}

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

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

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