@charset "UTF-8";
:root {
  --navy: #1f2a48;
  --navy-dk: #16203a;
  --bg: #f3f1ec;
  --line: #06c755;
  --line-dk: #05b34c;
  --white: #ffffff;
  --ink: #000000;
  --ink-sub: #5a6178;
  --warm: #9a7b53;
  --warm-lt: #d8b888;
  --req: #a4453a;
}

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

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: 1.5em;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(0.9375rem, 0.8857044199rem + 0.2209944751vw, 1.0625rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--ink);
  background-color: var(--bg);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-intro-lock,
body.is-modal-open,
body.is-menu-open {
  overflow: hidden;
}

html:has(body.is-intro-lock),
html:has(body.is-modal-open),
html:has(body.is-menu-open) {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.l-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 0.7410220994rem + 1.1049723757vw, 1.625rem) clamp(1.25rem, 0.6802486188rem + 2.4309392265vw, 2.625rem);
}
.l-header__brand {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}
.l-header__brand-mark {
  width: clamp(2.5rem, 2.1374309392rem + 1.546961326vw, 3.375rem);
  height: auto;
  transition: filter 0.3s ease-in-out;
}
.l-header__brand-name {
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(1.125rem, 0.9696132597rem + 0.6629834254vw, 1.5rem);
  letter-spacing: 0.06em;
  transition: color 0.3s ease-in-out;
}
.l-header__menu {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 2.125rem;
  height: 1.375rem;
  justify-content: center;
  border: none;
  background: none;
}
.l-header__menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
body.is-menu-open .l-header__menu span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.is-menu-open .l-header__menu span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
body.is-menu-open .l-header__menu span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.l-header.is-dark .l-header__brand-name {
  color: var(--white);
}
.l-header.is-dark .l-header__brand-mark {
  filter: brightness(0) invert(1);
}
.l-header.is-dark .l-header__menu span {
  background: var(--white);
}

body.is-menu-open .l-header .l-header__brand-name {
  color: var(--ink);
}
body.is-menu-open .l-header .l-header__brand-mark {
  filter: none;
}
body.is-menu-open .l-header .l-header__menu span {
  background: var(--ink);
}

.l-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: clamp(6.875rem, 5.8390883978rem + 4.4198895028vw, 9.375rem);
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
body.is-menu-open .l-nav {
  opacity: 1;
  visibility: visible;
}
.l-nav__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.125rem, 0.8660220994rem + 1.1049723757vw, 1.75rem);
  text-align: center;
}
.l-nav__link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 0.9910220994rem + 1.1049723757vw, 1.875rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .l-nav__link:hover {
    color: var(--warm);
  }
}

.l-cta {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 0.7410220994rem + 1.1049723757vw, 1.625rem);
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(0.625rem, 0.4696132597rem + 0.6629834254vw, 1rem);
  width: min(94vw, 37.5rem);
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .l-cta {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    bottom: 0.75rem;
    transform: none;
  }
}
.l-cta .c-btn {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .l-cta .c-btn {
    padding-inline: clamp(0.75rem, 0.5946132597rem + 0.6629834254vw, 1.125rem);
    font-size: 0.9375rem;
  }
}

.l-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background-color: var(--white);
}
.l-loader__mark {
  width: 4rem;
  height: auto;
  animation: l-loader-pulse 1.2s ease-in-out infinite;
}

@keyframes l-loader-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(1rem, 0.8705110497rem + 0.5524861878vw, 1.3125rem);
  padding: clamp(0.875rem, 0.7973066298rem + 0.3314917127vw, 1.0625rem) clamp(1.3125rem, 1.0794198895rem + 0.9944751381vw, 1.875rem);
  border-radius: 62.4375rem;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.3s ease-in-out;
}
.c-btn:hover {
  transform: translateY(-0.1875rem);
}
.c-btn__icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}
.c-btn--tel {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
}
.c-btn--line {
  background: var(--line);
  color: var(--white);
}
.c-btn--line:hover {
  background: var(--line-dk);
}
.c-btn__num {
  font-family: "Oswald", "Helvetica Neue", arial, sans-serif;
  letter-spacing: 0.06em;
}
.c-btn__line-en {
  font-family: "Oswald", "Helvetica Neue", arial, sans-serif;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
}
@media screen and (max-width: 600px) {
  .c-btn {
    width: 100%;
  }
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 0.7320441989rem + 2.2099447514vw, 2.5rem);
}
.c-modal[hidden] {
  display: none;
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.c-modal__panel {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 40rem;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(1.875rem, 1.408839779rem + 1.9889502762vw, 3rem) clamp(1.375rem, 0.908839779rem + 1.9889502762vw, 2.5rem) clamp(1.75rem, 1.3356353591rem + 1.7679558011vw, 2.75rem);
  background: var(--white);
  border-radius: 1rem;
  -webkit-overflow-scrolling: touch;
}
.c-modal__close {
  position: absolute;
  top: clamp(0.5rem, 0.3446132597rem + 0.6629834254vw, 0.875rem);
  right: clamp(0.5rem, 0.3446132597rem + 0.6629834254vw, 0.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .c-modal__close:hover {
    opacity: 0.6;
  }
}
.c-modal__title {
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 0.9910220994rem + 1.1049723757vw, 1.875rem);
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--ink);
}
.c-modal__body {
  margin-top: clamp(1rem, 0.7928176796rem + 0.8839779006vw, 1.5rem);
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7607044199rem + 0.2209944751vw, 0.9375rem);
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.c-modal__body h3 {
  margin-top: 1.6em;
  margin-bottom: 0.3em;
  font-weight: 700;
  font-size: 1.05em;
  color: var(--ink);
}
.c-modal__body p {
  margin-top: 0.4em;
}
.c-modal__body ul {
  margin-top: 0.4em;
  padding-left: 1.2em;
  list-style: disc;
}
.c-modal__body li {
  margin-top: 0.2em;
}
.c-modal__foot {
  margin-top: 2em;
  font-size: 0.92em;
  color: var(--ink-sub);
}
.c-modal--done .c-modal__done {
  position: relative;
  z-index: 10;
  pointer-events: none;
  text-align: center;
  color: var(--white);
}
.c-modal--done .c-modal__done-title {
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.0856353591rem + 1.7679558011vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1.35;
}
.c-modal--done .c-modal__done-text {
  margin-top: clamp(0.75rem, 0.5428176796rem + 0.8839779006vw, 1.25rem);
  font-weight: 500;
  font-size: clamp(0.875rem, 0.7714088398rem + 0.4419889503vw, 1.125rem);
  letter-spacing: 0.03em;
  line-height: 1.7;
}

.p-scenes {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--white);
}

.p-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 3.9640883978rem + 4.4198895028vw, 7.5rem) clamp(1.25rem, 0.9392265193rem + 1.3259668508vw, 2rem) clamp(8.25rem, 7.317679558rem + 3.9779005525vw, 10.5rem);
  opacity: 0;
  visibility: hidden;
}
.p-scene.is-active {
  opacity: 1;
  visibility: visible;
}
.p-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.p-scene--hero.is-bg-hidden::before {
  opacity: 0;
}
.p-scene--hero::before, .p-scene--profile::before {
  background-image: url("../img/bg-01.jpg");
}
.p-scene--service::before {
  background-image: url("../img/bg-02.jpg");
}
.p-scene--reason::before {
  background-image: url("../img/bg-03.jpg");
}
.p-scene--sell::before {
  background-image: url("../img/bg-04.jpg");
}
.p-scene--flow::before {
  background-image: url("../img/bg-05.jpg");
}
.p-scene--contact::before {
  background-image: url("../img/bg-06.jpg");
}
.p-scene__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 48.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-hero__title {
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: var(--navy);
  font-size: clamp(1.75rem, 0.625rem + 5vw, 4.625rem);
  line-height: 1.18;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.p-hero__sub {
  margin-top: clamp(1.125rem, 0.8919198895rem + 0.9944751381vw, 1.6875rem);
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(0.9375rem, 0.8598066298rem + 0.3314917127vw, 1.125rem);
  line-height: 1.95;
  letter-spacing: 0.03em;
}
.p-hero__visual {
  position: relative;
  width: 100%;
  height: clamp(15rem, 42vh, 27.5rem);
  margin: clamp(1.25rem, 0.8356353591rem + 1.7679558011vw, 2.25rem) auto 0;
}
.p-hero__walker {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  aspect-ratio: 400/700;
}
.p-hero__walk {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-hero__yusa {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  aspect-ratio: 640/800;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 1.375rem 1.5rem rgba(31, 42, 72, 0.2));
  transform: translateX(-50%);
}
.p-hero__cta {
  margin-top: clamp(1.375rem, 1.0383287293rem + 1.4364640884vw, 2.1875rem);
  display: flex;
  gap: clamp(0.6875rem, 0.5062154696rem + 0.773480663vw, 1.125rem);
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .p-hero__cta {
    flex-direction: column;
    width: 100%;
    max-width: 21.25rem;
  }
}

.p-scene--profile {
  overflow: hidden;
}

.p-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(22.5rem, 19.9102209945rem + 11.0497237569vw, 28.75rem);
  gap: clamp(1.75rem, 0.6104972376rem + 4.861878453vw, 4.5rem);
  align-items: center;
  max-width: 73.75rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-profile {
    grid-template-columns: 1fr;
    gap: clamp(1.625rem, 1.2624309392rem + 1.546961326vw, 2.5rem);
    max-width: 35rem;
  }
}
.p-profile__watermark {
  position: absolute;
  top: clamp(2.5rem, 1.1533149171rem + 5.7458563536vw, 5.75rem);
  left: 0;
  z-index: 0;
  display: flex;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.p-profile__watermark-text {
  flex: none;
  padding-right: clamp(2rem, 0.5497237569rem + 6.1878453039vw, 5.5rem);
  font-family: "BBH Hegarty", "Helvetica Neue", arial, sans-serif;
  font-weight: 400;
  font-size: clamp(3.375rem, 0.4226519337rem + 12.5966850829vw, 10.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.06);
}
.p-profile__title {
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 1.1284530387rem + 2.6519337017vw, 3.25rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.p-profile__lead {
  margin-top: clamp(1rem, 0.7928176796rem + 0.8839779006vw, 1.5rem);
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.p-profile__lead:first-of-type {
  margin-top: clamp(1.375rem, 0.9606353591rem + 1.7679558011vw, 2.375rem);
}
@media screen and (max-width: 768px) {
  .p-profile__lead {
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .p-profile__lead-group .p-profile__lead {
    margin-top: 0;
  }
}
.p-profile__sign {
  margin-top: clamp(1.375rem, 0.9606353591rem + 1.7679558011vw, 2.375rem);
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  letter-spacing: 0.06em;
  color: var(--ink-sub);
}
.p-profile__sign strong {
  margin-left: 0.4em;
  font-weight: 700;
  font-size: 1.2em;
  color: var(--ink);
}
.p-profile__visual {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-profile__visual {
    order: -1;
    width: 75%;
    max-width: 26.25rem;
    margin-inline: auto;
  }
}
.p-profile__photo {
  width: 100%;
  height: auto;
}
.p-profile__card {
  position: absolute;
  left: 0;
  bottom: clamp(1.125rem, 0.6070441989rem + 2.2099447514vw, 2.375rem);
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  padding: clamp(0.6875rem, 0.5839088398rem + 0.4419889503vw, 0.9375rem) clamp(1.125rem, 0.8660220994rem + 1.1049723757vw, 1.75rem);
  background: var(--ink);
  color: var(--white);
  border-radius: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-profile__card {
    left: -0.625rem;
    bottom: clamp(0.625rem, 0.4178176796rem + 0.8839779006vw, 1.125rem);
    gap: 0.125rem;
    padding: 0.4375rem 0.6875rem;
    border-radius: 0.3125rem;
  }
}
.p-profile__role {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  .p-profile__role {
    font-size: 0.59375rem;
    letter-spacing: 0.06em;
  }
}
.p-profile__cardname {
  display: flex;
  align-items: baseline;
  gap: 0.65em;
  font-weight: 700;
  font-size: clamp(1rem, 0.8964088398rem + 0.4419889503vw, 1.25rem);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-profile__cardname {
    gap: 0.5em;
    font-size: 0.875rem;
  }
}
.p-profile__en {
  font-family: "Jost", "Helvetica Neue", arial, sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  .p-profile__en {
    font-size: 0.59375rem;
  }
}
.p-profile__more {
  display: inline-block;
  margin-top: clamp(0.875rem, 0.7196132597rem + 0.6629834254vw, 1.25rem);
  padding: 0.5625rem 1.25rem;
  border: 0.0625rem solid var(--navy);
  border-radius: 62.4375rem;
  background: var(--navy);
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  letter-spacing: 0.04em;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-profile__more:hover {
    background: var(--navy-dk);
    transform: translateY(-0.1875rem);
  }
}

.p-scene--service .p-scene__inner {
  color: var(--white);
}

.p-service {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 1.3356353591rem + 1.7679558011vw, 2.75rem);
  max-width: 65rem;
}
.p-service__head {
  text-align: center;
}
.p-service__title {
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.1374309392rem + 1.546961326vw, 2.375rem);
  letter-spacing: 0.04em;
}
.p-service__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.6892265193rem + 1.3259668508vw, 1.75rem);
}
@media screen and (max-width: 768px) {
  .p-service__cards {
    grid-template-columns: 1fr;
  }
}
.p-service__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.875rem, 0.6678176796rem + 0.8839779006vw, 1.375rem);
  padding: clamp(1.5rem, 1.1374309392rem + 1.546961326vw, 2.375rem) clamp(1.25rem, 0.8874309392rem + 1.546961326vw, 2.125rem);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}
.p-service__name {
  align-self: center;
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.9955110497rem + 0.5524861878vw, 1.4375rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
.p-service__icon {
  align-self: center;
  width: clamp(6rem, 5.1712707182rem + 3.5359116022vw, 8rem);
}
@media screen and (max-width: 768px) {
  .p-service__icon {
    width: clamp(4.5rem, 3.8784530387rem + 2.6519337017vw, 6rem);
  }
}
.p-service__icon img {
  width: 100%;
  height: auto;
}
.p-service__list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4375rem, 0.3339088398rem + 0.4419889503vw, 0.6875rem);
  font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: left;
}
.p-service__list li {
  position: relative;
  padding-left: 1.3em;
}
.p-service__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--white);
}

.p-reason {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.6892265193rem + 1.3259668508vw, 1.75rem);
  max-width: 55rem;
}
.p-reason__title {
  text-align: center;
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.375rem, 0.9606353591rem + 1.7679558011vw, 2.375rem);
  letter-spacing: 0.04em;
  color: var(--navy);
}
.p-reason__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 0.5214088398rem + 0.4419889503vw, 0.875rem);
}
.p-reason__item {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.7410220994rem + 1.1049723757vw, 1.625rem);
  padding: clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem) clamp(1.125rem, 0.9178176796rem + 0.8839779006vw, 1.625rem);
  background: var(--white);
  border-radius: 0.875rem;
  text-align: left;
}
.p-reason__visual {
  position: relative;
  flex: 0 0 auto;
  width: clamp(5rem, 4.4820441989rem + 2.2099447514vw, 6.25rem);
  display: flex;
  justify-content: center;
}
.p-reason__icon {
  width: auto;
  height: clamp(6rem, 5.4820441989rem + 2.2099447514vw, 7.25rem);
  aspect-ratio: 320/520;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-reason__no {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 0.25rem 0.875rem;
  background: var(--warm);
  border-radius: 62.4375rem;
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.6982044199rem + 0.2209944751vw, 0.875rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: var(--white);
  transform: translateX(-50%);
}
.p-reason__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.2714088398rem + 0.4419889503vw, 0.625rem);
}
.p-reason__name {
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.8964088398rem + 0.4419889503vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: var(--navy);
}
.p-reason__text {
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7607044199rem + 0.2209944751vw, 0.9375rem);
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--ink-sub);
}
@media screen and (max-width: 480px) {
  .p-reason__text {
    line-height: 1.6;
  }
}

.p-sell {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.8874309392rem + 1.546961326vw, 2.125rem);
  max-width: 66.25rem;
}
.p-sell__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.625rem, 0.4696132597rem + 0.6629834254vw, 1rem);
  text-align: center;
}
.p-sell__title {
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.375rem, 0.9606353591rem + 1.7679558011vw, 2.375rem);
  letter-spacing: 0.04em;
  color: var(--navy);
}
.p-sell__lead {
  max-width: 45rem;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7348066298rem + 0.3314917127vw, 1rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--ink-sub);
}
@media screen and (max-width: 480px) {
  .p-sell__lead {
    line-height: 1.65;
  }
}
@media screen and (max-width: 768px) {
  .p-sell__lead-types {
    display: none;
  }
}
.p-sell__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 0.5946132597rem + 0.6629834254vw, 1.125rem);
}
@media screen and (max-width: 768px) {
  .p-sell__cards {
    grid-template-columns: 1fr 1fr;
  }
}
.p-sell__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.375rem, 0.2714088398rem + 0.4419889503vw, 0.625rem);
  padding: clamp(1rem, 0.7928176796rem + 0.8839779006vw, 1.5rem) clamp(0.75rem, 0.5946132597rem + 0.6629834254vw, 1.125rem) clamp(1.125rem, 0.9696132597rem + 0.6629834254vw, 1.5rem);
  background: var(--white);
  border-radius: 0.875rem;
  text-align: center;
}
.p-sell__thumb {
  width: clamp(4.875rem, 3.8908839779rem + 4.1988950276vw, 7.25rem);
}
.p-sell__thumb img {
  width: 100%;
  height: auto;
}
.p-sell__name {
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(0.9375rem, 0.8598066298rem + 0.3314917127vw, 1.125rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.p-sell__desc {
  text-align: left;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7866022099rem + 0.1104972376vw, 0.875rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ink-sub);
}
@media screen and (max-width: 480px) {
  .p-sell__desc {
    line-height: 1.55;
  }
}

.p-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.9392265193rem + 1.3259668508vw, 2rem);
  max-width: 66.25rem;
}
.p-flow__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 0.3446132597rem + 0.6629834254vw, 0.875rem);
  text-align: center;
}
.p-flow__title {
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.375rem, 0.9606353591rem + 1.7679558011vw, 2.375rem);
  letter-spacing: 0.04em;
  color: var(--navy);
}
.p-flow__lead {
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7348066298rem + 0.3314917127vw, 1rem);
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--ink-sub);
}
.p-flow__steps {
  display: flex;
  align-items: stretch;
  gap: clamp(0.75rem, 0.5946132597rem + 0.6629834254vw, 1.125rem);
}
@media screen and (max-width: 768px) {
  .p-flow__steps {
    flex-direction: column;
    gap: clamp(0.25rem, 0.1464088398rem + 0.4419889503vw, 0.5rem);
  }
}
.p-flow__step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.3125rem, 0.2089088398rem + 0.4419889503vw, 0.5625rem);
  padding: clamp(0.875rem, 0.6678176796rem + 0.8839779006vw, 1.375rem) clamp(0.8125rem, 0.6312154696rem + 0.773480663vw, 1.25rem);
  background: var(--white);
  border-radius: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-flow__step {
    flex: 0 0 auto;
    width: 100%;
    gap: clamp(0.1875rem, 0.1098066298rem + 0.3314917127vw, 0.375rem);
    padding: clamp(0.6875rem, 0.5580110497rem + 0.5524861878vw, 1rem) clamp(0.875rem, 0.7714088398rem + 0.4419889503vw, 1.125rem);
  }
}
.p-flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: clamp(0.3125rem, 0.2089088398rem + 0.4419889503vw, 0.5625rem);
}
@media screen and (max-width: 768px) {
  .p-flow__heading {
    flex-direction: row;
    align-items: baseline;
    text-align: left;
    width: auto;
    gap: 0.6em;
  }
}
.p-flow__num {
  font-family: "Jost", "Helvetica Neue", arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2410220994rem + 1.1049723757vw, 2.125rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--warm);
}
.p-flow__name {
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(0.9375rem, 0.8598066298rem + 0.3314917127vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--navy);
}
.p-flow__text {
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7866022099rem + 0.1104972376vw, 0.875rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--ink-sub);
  text-align: left;
}

.p-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contact__line {
  color: var(--ink);
}
.p-contact__visual {
  position: relative;
  width: 100%;
  height: clamp(13.75rem, 40vh, 26.25rem);
  margin-top: clamp(1.25rem, 0.8356353591rem + 1.7679558011vw, 2.25rem);
}
.p-contact__walker {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  aspect-ratio: 400/700;
}
.p-contact__walk {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-contact__yusa {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  aspect-ratio: 640/800;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 1.375rem 1.5rem rgba(31, 42, 72, 0.2));
  transform: translateX(-50%);
}

.p-formsec {
  background: var(--bg);
  padding: clamp(3.5rem, 2.6712707182rem + 3.5359116022vw, 5.5rem) clamp(1.25rem, 0.9392265193rem + 1.3259668508vw, 2rem) clamp(7.5rem, 6.4640883978rem + 4.4198895028vw, 10rem);
}
.p-formsec__inner {
  max-width: 40rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1.0428176796rem + 0.8839779006vw, 1.75rem);
}
.p-formsec__title {
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.375rem, 0.9606353591rem + 1.7679558011vw, 2.375rem);
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--ink);
}
.p-formsec__intro {
  font-weight: 500;
  font-size: clamp(0.9375rem, 0.8598066298rem + 0.3314917127vw, 1.125rem);
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-align: center;
}
.p-formsec__form {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.8446132597rem + 0.6629834254vw, 1.375rem);
  padding: clamp(1.5rem, 1.1892265193rem + 1.3259668508vw, 2.25rem) clamp(1.25rem, 0.8874309392rem + 1.546961326vw, 2.125rem);
  background: var(--white);
  border-radius: 1rem;
}
.p-formsec__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-formsec__label {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8491022099rem + 0.1104972376vw, 0.9375rem);
  letter-spacing: 0.03em;
  color: var(--navy);
}
.p-formsec__label span {
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  background: var(--req);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.p-formsec__input, .p-formsec__textarea {
  width: 100%;
  padding: clamp(0.6875rem, 0.6098066298rem + 0.3314917127vw, 0.875rem) clamp(0.75rem, 0.6464088398rem + 0.4419889503vw, 1rem);
  border: 1.5px solid rgba(31, 42, 72, 0.18);
  border-radius: 0.625rem;
  background: var(--white);
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  transition: border-color 0.3s ease-in-out;
}
.p-formsec__input::-moz-placeholder, .p-formsec__textarea::-moz-placeholder {
  color: var(--ink-sub);
  opacity: 0.6;
}
.p-formsec__input::placeholder, .p-formsec__textarea::placeholder {
  color: var(--ink-sub);
  opacity: 0.6;
}
.p-formsec__input:focus, .p-formsec__textarea:focus {
  outline: none;
  border-color: var(--warm);
}
.p-formsec__textarea {
  resize: vertical;
  min-height: clamp(6.875rem, 6.0980662983rem + 3.3149171271vw, 8.75rem);
}
.p-formsec__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.p-formsec__submit {
  align-self: center;
  margin-top: clamp(0.25rem, 0.1464088398rem + 0.4419889503vw, 0.5rem);
  min-width: 13.75rem;
  padding: clamp(0.875rem, 0.7973066298rem + 0.3314917127vw, 1.0625rem) clamp(1.75rem, 1.4392265193rem + 1.3259668508vw, 2.5rem);
  border: none;
  border-radius: 62.4375rem;
  background: var(--navy);
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9482044199rem + 0.2209944751vw, 1.125rem);
  letter-spacing: 0.06em;
  color: var(--white);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-formsec__submit:hover {
    cursor: pointer;
    transform: translateY(-0.1875rem);
    background: var(--navy-dk);
  }
}
.p-formsec__submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}
.p-formsec__status {
  margin-top: clamp(1rem, 0.7928176796rem + 0.8839779006vw, 1.5rem);
  padding: clamp(1rem, 0.8964088398rem + 0.4419889503vw, 1.25rem) clamp(1.125rem, 0.9696132597rem + 0.6629834254vw, 1.5rem);
  border-radius: 0.625rem;
  background: var(--navy);
  font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  line-height: 1.75;
  color: var(--white);
  text-align: center;
}
.p-formsec__status.is-error {
  background: #b3251e;
}
.p-formsec__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5em 0.9em;
  margin-top: clamp(0.25rem, 0.0946132597rem + 0.6629834254vw, 0.625rem);
  font-size: clamp(0.75rem, 0.7241022099rem + 0.1104972376vw, 0.8125rem);
  letter-spacing: 0.04em;
  color: var(--ink-sub);
  text-align: center;
}
.p-formsec__privacy {
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: var(--ink-sub);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-formsec__privacy:hover {
    color: var(--navy);
  }
}

.p-story {
  color: var(--ink);
}
.p-story__figures {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.25rem, 0.0428176796rem + 0.8839779006vw, 0.75rem);
  margin: 0 auto clamp(1.125rem, 0.8660220994rem + 1.1049723757vw, 1.75rem);
}
.p-story__figure {
  width: auto;
  height: clamp(6rem, 4.601519337rem + 5.9668508287vw, 9.375rem);
  display: block;
}
.p-story__title {
  margin: 0 0 1.4em;
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: clamp(1.375rem, 1.1160220994rem + 1.1049723757vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  color: var(--ink);
}
.p-story__br-640 {
  display: none;
}
@media screen and (max-width: 640px) {
  .p-story__br-640 {
    display: inline;
  }
}
.p-story__chapter {
  margin: 0 0 clamp(1.75rem, 1.4392265193rem + 1.3259668508vw, 2.5rem);
}
.p-story__image {
  margin: clamp(1.5rem, 1.1892265193rem + 1.3259668508vw, 2.25rem) 0;
}
.p-story__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.25rem;
}
.p-story__image figcaption {
  margin-top: 0.7em;
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.7241022099rem + 0.1104972376vw, 0.8125rem);
  line-height: 1.6;
  color: var(--ink-sub);
  text-align: center;
}
.p-story__h {
  margin: 0 0 0.6em;
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(1.0625rem, 0.9589088398rem + 0.4419889503vw, 1.3125rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.p-story__p {
  margin: 0;
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  line-height: 1.95;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.p-story__p + .p-story__p {
  margin-top: 1em;
}
.p-story__quote {
  margin: clamp(1.75rem, 1.4392265193rem + 1.3259668508vw, 2.5rem) 0;
  padding: clamp(1.125rem, 0.9178176796rem + 0.8839779006vw, 1.625rem) clamp(1.125rem, 0.9178176796rem + 0.8839779006vw, 1.625rem);
  background: var(--bg);
  border-radius: 0.25rem;
}
.p-story__quote p {
  margin: 0;
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  line-height: 1.9;
  color: var(--ink);
}
.p-story__quote em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}
.p-story__coda {
  margin: clamp(1.75rem, 1.4392265193rem + 1.3259668508vw, 2.5rem) 0 0;
}
.p-story__coda h3 {
  margin: 0 0 0.6em;
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9223066298rem + 0.3314917127vw, 1.1875rem);
  line-height: 1.5;
  color: var(--ink);
}
.p-story__coda p {
  margin: 0;
  font-family: "Gen Interface JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8232044199rem + 0.2209944751vw, 1rem);
  line-height: 1.95;
  color: var(--ink);
}
.p-story__coda .p-story__sweet {
  margin-top: 1.2em;
  font-weight: 700;
  color: var(--ink);
}
.p-story__coda .p-story__sweet b {
  color: var(--ink);
}
.p-story__cake {
  display: block;
  width: clamp(8.75rem, 7.1961325967rem + 6.6298342541vw, 12.5rem);
  height: auto;
  margin: clamp(1.5rem, 1.1892265193rem + 1.3259668508vw, 2.25rem) auto 0;
}

.p-section__kicker {
  font-family: "Jost", "Helvetica Neue", arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  opacity: 0.7;
  margin-bottom: clamp(1.125rem, 1.0214088398rem + 0.4419889503vw, 1.375rem);
  display: block;
}
.p-section__line {
  font-family: "Dela Gothic One", "Gen Interface JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: clamp(1.5rem, 0.9302486188rem + 2.4309392265vw, 2.875rem);
}
.p-section__accent {
  color: var(--warm);
}
.p-section__lead {
  margin-top: clamp(1rem, 0.7410220994rem + 1.1049723757vw, 1.625rem);
  font-weight: 500;
  font-size: clamp(0.9375rem, 0.8598066298rem + 0.3314917127vw, 1.125rem);
  line-height: 1.95;
  color: var(--ink-sub);
}
