@charset "UTF-8";
:root {
  --c-on-dark: #ffffff;
  --c-on-dark-90: rgba(255, 255, 255, .9);
  --c-on-dark-30: rgba(255, 255, 255, .3);
  --c-on-dark-22: rgba(255, 255, 255, .22);
  --c-on-dark-18: rgba(255, 255, 255, .18);
  --shadow-float: 0 12px 34px rgba(23, 57, 74, .2);
  --c-card-on-dark: rgba(255, 255, 255, .96);
  --c-sticky-bg: rgba(255, 255, 255, .94);
  --c-footer-text-mute: rgba(233, 236, 236, .76);
  --radius-btn: 4px;
  --c-btn-dark-hover: #1f1f1f;
  --c-marker-hover: #f7e520;
  --c-required: #c0392b;
  --c-focus-ring: rgba(39, 128, 151, .18);
  --c-hero-bg: #81c3cb;
  --c-hero-circle: rgba(255, 255, 255, .22);
  --c-hero-rule: rgba(23, 57, 74, .24);
}

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

html, body,
h1, h2, h3, h4, h5, h6,
p, figure, figcaption, blockquote, dl, dd,
ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img, svg, picture, video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

button {
  background: none;
  border: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

body {
  font-family: var(--ff-base);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
  line-break: strict;
}

[id] {
  scroll-margin-top: 24px;
}

@media screen and (max-width: 599.98px) {
  .pc-only {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 899.98px) {
  .sp-br {
    display: inline;
  }
}

.marker {
  background: linear-gradient(transparent 62%, var(--c-marker) 62%);
  font-weight: 700;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .is-fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .is-fade.is-visible {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.l-header {
  position: relative;
  z-index: 100;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.l-header__inner {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 92px;
}
@media screen and (max-width: 599.98px) {
  .l-header__inner {
    min-height: 64px;
  }
}
.l-header__nav {
  display: none;
}
@media screen and (min-width: 1100px) {
  .l-header__nav {
    display: block;
    margin-left: auto;
    margin-right: clamp(20px, 2.4vw, 36px);
  }
}
.l-header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
}
.l-header__nav a {
  position: relative;
  display: inline-block;
  padding-block: 6px;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--c-heading);
  transition: color 0.2s ease;
}
.l-header__nav a:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
.l-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.l-header__nav a:hover {
  color: var(--c-primary);
}
.l-header__nav a:hover::after {
  transform: scaleX(1);
}
.l-header__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
@media screen and (min-width: 1100px) {
  .l-header__ctas {
    margin-left: 0;
  }
}
@media screen and (max-width: 899.98px) {
  .l-header__ctas {
    display: none;
  }
}
.l-header__toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: -8px;
}
.l-header__toggle:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
@media screen and (max-width: 1099.98px) {
  .l-header__toggle {
    display: block;
  }
}
.l-header__bars {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  border-radius: 1px;
  background: var(--c-heading);
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease;
}
.l-header__bars::before, .l-header__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--c-heading);
  transition: transform 0.28s ease;
}
.l-header__bars::before {
  top: -8px;
}
.l-header__bars::after {
  top: 8px;
}
.l-header__toggle[aria-expanded=true] .l-header__bars, .l-header__toggle[aria-expanded=true] .l-header__bars {
  background: transparent;
}
.l-header__toggle[aria-expanded=true] .l-header__bars::before, .l-header__toggle[aria-expanded=true] .l-header__bars::before {
  transform: translateY(8px) rotate(45deg);
}
.l-header__toggle[aria-expanded=true] .l-header__bars::after, .l-header__toggle[aria-expanded=true] .l-header__bars::after {
  transform: translateY(-8px) rotate(-45deg);
}
.l-header__logo {
  display: inline-flex;
  align-items: center;
  height: 40px;
  transition: opacity 0.25s ease;
}
.l-header__logo:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
.l-header__logo img {
  width: auto;
  height: 100%;
  display: block;
}
.l-header__logo:hover {
  opacity: 0.75;
}
@media screen and (max-width: 599.98px) {
  .l-header__logo {
    height: 32px;
  }
}

@media screen and (min-width: 1100px) {
  .l-nav {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .l-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 99;
    width: min(88vw, 360px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--c-bg);
    box-shadow: -8px 0 28px rgba(23, 57, 74, 0.16);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .l-nav.is-open {
    transform: translateX(0);
  }
}
.l-nav[hidden] {
  display: none;
}
.l-nav__inner {
  padding: 64px 22px 40px;
}
.l-nav__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--c-heading);
  transition: background-color 0.2s ease;
}
.l-nav__close:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
.l-nav__close:hover {
  background: var(--c-bg-tint);
}
.l-nav__list {
  display: grid;
}
.l-nav__list li + li {
  border-top: 1px solid var(--c-border);
}
.l-nav__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 4px;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-heading);
  transition: color 0.2s ease;
}
.l-nav__list a:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
.l-nav__list a::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}
.l-nav__list a:hover {
  color: var(--c-primary);
}
.l-nav__cta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.l-nav__cta .btn {
  min-height: 56px;
  font-size: var(--fs-body);
}
@media screen and (min-width: 1100px) {
  .l-nav__overlay {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .l-nav__overlay {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(23, 57, 74, 0.42);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .l-nav__overlay.is-open {
    opacity: 1;
  }
}
.l-nav__overlay[hidden] {
  display: none;
}

.is-nav-open {
  overflow: hidden;
}

.section {
  position: relative;
  padding-block: var(--sp-section);
}
.section--tint {
  background: var(--c-bg-tint);
}
.section--pale {
  background: var(--c-pale);
}
.section--primary {
  background: var(--c-primary);
}
.section__inner {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
  position: relative;
}
.section__inner--slim {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}
.section__inner--wide {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}
.section__head {
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 599.98px) {
  .section__head {
    margin-bottom: 32px;
  }
}
.section__head--tight {
  margin-bottom: 24px;
}
.section__lead {
  max-width: 760px;
  margin: 24px auto 0;
  line-height: var(--lh-body);
}
.section__lead--onDark {
  color: var(--c-on-dark-90);
}

.eyebrow {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  background: var(--c-surface);
}
.eyebrow--onDark {
  color: var(--c-on-dark);
  background: var(--c-on-dark-18);
}

.heading {
  margin-top: 16px;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-head);
  color: var(--c-heading);
  text-wrap: balance;
}
.heading--onDark {
  color: var(--c-on-dark);
}
.heading--noBalance {
  text-wrap: initial;
}
.heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--c-primary);
}
.heading--onDark::after {
  background: var(--c-on-dark);
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 1199.98px) {
  .cols-3 {
    gap: 20px;
  }
}
@media screen and (max-width: 899.98px) {
  .cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 599.98px) {
  .cols-3 {
    grid-template-columns: 1fr;
  }
}

.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
@media screen and (max-width: 599.98px) {
  .cols-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.footer-v5 {
  background: #4e4e4e;
}
.footer-v5 .footer-v5-container {
  width: 100%;
}
.footer-v5 .footer-v5-wrapper {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0 30px;
}

.footer-v5-brand {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.15);
}
.footer-v5-brand .footer-v5-logo {
  display: inline-block;
  transition: opacity 0.3s;
}
.footer-v5-brand .footer-v5-logo:hover {
  opacity: 0.8;
}
.footer-v5-brand .footer-v5-logo img {
  width: 180px;
  height: auto;
}

.footer-v5-columns {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 40px 60px;
  margin-bottom: 60px;
}

.footer-v5-col-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 4px;
  margin: 0 0 25px;
  padding-bottom: 12px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.25);
}

.footer-v5-col--company .footer-v5-company-name {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 2px;
  margin: 0 0 14px;
}
.footer-v5-col--company .footer-v5-address {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  line-height: 1.9em;
  margin: 0 0 22px;
}
.footer-v5-col--company .footer-v5-company-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-v5-col--company .footer-v5-company-links li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: solid 1px transparent;
  transition: 0.3s;
}
.footer-v5-col--company .footer-v5-company-links li a::before {
  content: "→";
  color: #f9e615;
  font-size: 12px;
}
.footer-v5-col--company .footer-v5-company-links li a:hover {
  color: #f9e615;
}

.footer-v5-col--services .footer-v5-services-group-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #f9e615;
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.footer-v5-col--services .footer-v5-services-group-label + .footer-v5-services-list {
  margin-bottom: 22px;
}
.footer-v5-col--services .footer-v5-services-list {
  list-style: none;
  margin: 0 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-v5-col--services .footer-v5-services-list li {
  position: relative;
}
.footer-v5-col--services .footer-v5-services-list li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.footer-v5-col--services .footer-v5-services-list li a {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 3px 0;
  border-bottom: solid 1px transparent;
  transition: 0.3s;
}
.footer-v5-col--services .footer-v5-services-list li a:hover {
  color: #f9e615;
}
.footer-v5-col--services .footer-v5-services-list.footer-v5-services-list--main li a {
  display: block;
  font-weight: bold;
  color: #ffffff;
}
.footer-v5-col--services .footer-v5-services-list.footer-v5-services-list--main li a span {
  display: block;
  margin-top: 3px;
  font-weight: normal;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-v5-col--services .footer-v5-services-list.footer-v5-services-list--main li a:hover span {
  color: rgba(249, 230, 21, 0.8);
}

.footer-v5-col--contents .footer-v5-contents-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-v5-col--contents .footer-v5-contents-list li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 5px 0;
  transition: 0.3s;
}
.footer-v5-col--contents .footer-v5-contents-list li a::before {
  content: "→";
  color: #f9e615;
  font-size: 12px;
}
.footer-v5-col--contents .footer-v5-contents-list li a:hover {
  color: #f9e615;
}

.footer-v5-bottom {
  padding-top: 30px;
  border-top: solid 1px rgba(255, 255, 255, 0.15);
}

.footer-v5-bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-v5-sns {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}
.footer-v5-sns li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}
.footer-v5-sns li a:hover {
  color: #f9e615;
  transform: translateY(-2px);
}
.footer-v5-sns li a svg {
  display: block;
  color: inherit;
}

.footer-v5-legal {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-v5-legal li a {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
}
.footer-v5-legal li a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-v5-copyright {
  text-align: center;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 2px;
  margin: 0;
  padding-top: 25px;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1100px) {
  .footer-v5 .footer-v5-wrapper {
    width: 92%;
    padding: 60px 0 25px;
  }
  .footer-v5-columns {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (max-width: 820px) {
  .footer-v5 .footer-v5-wrapper {
    width: 90%;
    padding: 50px 0 25px;
  }
  .footer-v5-brand {
    margin-bottom: 40px;
    padding-bottom: 35px;
  }
  .footer-v5-brand .footer-v5-logo img {
    width: 140px;
  }
  .footer-v5-columns {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 40px;
  }
  .footer-v5-col-title {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 18px;
    padding-bottom: 10px;
  }
  .footer-v5-col--company .footer-v5-company-name {
    font-size: 13px;
  }
  .footer-v5-col--company .footer-v5-address {
    font-size: 11px;
    line-height: 1.9em;
  }
  .footer-v5-col--company .footer-v5-company-links {
    gap: 8px;
  }
  .footer-v5-col--company .footer-v5-company-links li a {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .footer-v5-col--services .footer-v5-services-group-label {
    font-size: 11px;
  }
  .footer-v5-col--services .footer-v5-services-list {
    gap: 6px;
    margin-left: 12px;
  }
  .footer-v5-col--services .footer-v5-services-list li a {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .footer-v5-col--contents .footer-v5-contents-list {
    gap: 10px;
  }
  .footer-v5-col--contents .footer-v5-contents-list li a {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .footer-v5-bottom {
    padding-top: 25px;
  }
  .footer-v5-bottom-nav {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-bottom: 22px;
  }
  .footer-v5-sns {
    gap: 12px;
  }
  .footer-v5-sns li a {
    width: 32px;
    height: 32px;
  }
  .footer-v5-legal {
    gap: 18px;
    justify-content: center;
  }
  .footer-v5-legal li a {
    font-size: 10px;
  }
  .footer-v5-copyright {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding-top: 20px;
  }
}
.footer-v5 {
  line-height: normal;
}

.footer-v5-logo {
  vertical-align: bottom;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 40px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.btn:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.btn--primary {
  color: var(--c-on-dark);
  background: var(--c-primary);
}
.btn--primary:hover {
  background: var(--c-primary-dark);
}
.btn--dark {
  color: var(--c-on-dark);
  background: var(--c-btn-dark);
}
.btn--dark:hover {
  background: var(--c-btn-dark-hover);
}
.btn--onDark {
  color: var(--c-on-dark);
  background: var(--c-btn-dark);
  box-shadow: 0 0 0 1px var(--c-on-dark-30);
}
.btn--onDark:hover {
  background: var(--c-btn-dark-hover);
  box-shadow: 0 0 0 1px var(--c-on-dark-30), var(--shadow-card-hover);
}
.btn--light {
  color: var(--c-heading);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}
.btn--light:hover {
  color: var(--c-on-dark);
  background: var(--c-primary);
}
.btn--ghost {
  color: var(--c-primary);
  background: transparent;
  border: 1px solid var(--c-primary);
}
.btn--ghost:hover {
  color: var(--c-on-dark);
  background: var(--c-primary);
}
.btn--block {
  width: 100%;
}
.btn--sm {
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 599.98px) {
  .btn--sm {
    min-height: 40px;
    padding: 0 14px;
    gap: 6px;
    font-size: 13px;
  }
}
@media screen and (max-width: 599.98px) {
  .btn:not(.btn--sm) {
    width: 100%;
    max-width: 360px;
    min-height: 56px;
    padding: 0 20px;
    font-size: var(--fs-body);
  }
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.text-link:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
@media screen and (max-width: 599.98px) {
  .text-link {
    font-size: var(--fs-small);
  }
}
.text-link::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.2s ease;
}
.text-link:hover {
  color: var(--c-primary-dark);
}
.text-link:hover::after {
  transform: translateX(3px);
}
.text-link--onHero {
  color: var(--c-heading);
}
.text-link--onHero:hover {
  color: var(--c-primary-dark);
}
.text-link--onDark {
  color: var(--c-on-dark);
}
.text-link--onDark:hover {
  color: var(--c-on-dark);
  opacity: 0.82;
}

.check-list {
  display: grid;
  gap: 16px;
}
.check-list--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}
@media screen and (max-width: 899.98px) {
  .check-list--2col {
    grid-template-columns: 1fr;
  }
}
.check-list--inline {
  grid-auto-flow: column;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 899.98px) {
  .check-list--inline {
    grid-auto-flow: row;
    justify-content: stretch;
  }
}
.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.75;
  color: var(--c-heading);
}
@media screen and (max-width: 599.98px) {
  .check-list__item {
    padding: 16px 18px;
    font-size: var(--fs-body);
  }
}
.check-list__mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--c-primary);
}
.check-list__mark svg {
  width: 20px;
  height: 20px;
}
.check-list--plain {
  gap: 14px;
}
.check-list--plain .check-list__item {
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-weight: 400;
}

.benefit-card {
  border-radius: var(--radius-card);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 28px;
  text-align: center;
}
@media screen and (max-width: 599.98px) {
  .benefit-card {
    padding: 28px 22px;
  }
}
.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-primary);
}
.benefit-card__icon svg {
  width: 48px;
  height: 48px;
}
.benefit-card__figure {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 180px;
}
@media screen and (max-width: 899.98px) {
  .benefit-card__figure {
    height: 160px;
  }
}
.benefit-card__figure picture {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.benefit-card__figure img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.benefit-card__title {
  margin-top: 20px;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: var(--lh-head);
  color: var(--c-heading);
}
.benefit-card__text {
  margin-top: 14px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  text-align: left;
}
@media screen and (max-width: 599.98px) {
  .benefit-card__text {
    text-align: center;
  }
}

.feature-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 3.2vw, 45px) clamp(22px, 2.6vw, 30px) clamp(28px, 3vw, 36px);
  border-radius: var(--radius-card);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}
.feature-item__num {
  position: absolute;
  top: -26px;
  left: -4px;
  font-size: clamp(2.75rem, 3.6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--c-secondary);
  pointer-events: none;
}
.feature-item__title {
  display: flex;
  align-items: center;
  min-height: calc(var(--fs-h3) * var(--lh-head) * 2);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: var(--lh-head);
  color: var(--c-heading);
}
@media screen and (max-width: 599.98px) {
  .feature-item__title {
    display: block;
    min-height: 0;
  }
}
.feature-item__text {
  margin-top: 14px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-inline: auto;
}

.faq-item {
  border-radius: var(--radius-card);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.faq-item summary:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
@media screen and (max-width: 599.98px) {
  .faq-item summary {
    padding: 16px 16px;
  }
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  background: var(--c-bg-tint);
}

.faq-q {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-on-dark);
  background: var(--c-primary);
}

.faq-label {
  flex: 1;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.7;
  color: var(--c-heading);
}
@media screen and (max-width: 599.98px) {
  .faq-label {
    font-size: var(--fs-body);
  }
}

.faq-mark {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.faq-mark::before, .faq-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--c-primary);
  transform: translateY(-50%);
}
.faq-mark::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-mark {
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
}
.faq-body p {
  margin: 0 24px;
  padding: 4px 0 22px;
  padding-left: 42px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
@media screen and (max-width: 599.98px) {
  .faq-body p {
    margin: 0 16px;
    padding-left: 0;
    padding-bottom: 18px;
  }
}

.diagram {
  margin: 0;
}
.diagram__grid {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: minmax(0, 240px) auto minmax(0, 240px) auto minmax(0, 240px);
  grid-template-areas: "box1 arrow1 box2 arrow2 box3" "lab1 .      lab2  .      lab3";
  justify-content: center;
  gap: 16px 20px;
}
@media screen and (max-width: 899.98px) {
  .diagram__grid {
    grid-template-columns: minmax(0, 260px);
    grid-template-areas: "box1" "lab1" "arrow1" "box2" "lab2" "arrow2" "box3" "lab3";
    gap: 12px;
  }
}
.diagram__box {
  grid-area: var(--area);
  display: grid;
  place-items: center;
  width: 100%;
  height: 140px;
  border: 1px solid var(--c-primary);
  border-radius: 12px;
  background: var(--c-pale);
}
@media screen and (max-width: 899.98px) {
  .diagram__box {
    height: 116px;
  }
}
.diagram__box svg {
  width: 52px;
  height: 52px;
  color: var(--c-primary);
}
.diagram__arrow {
  grid-area: var(--area);
  display: grid;
  place-items: center;
  color: var(--c-text-mute);
}
.diagram__arrow svg {
  width: clamp(56px, 6vw, 76px);
  height: auto;
}
@media screen and (max-width: 899.98px) {
  .diagram__arrow {
    transform: rotate(90deg);
  }
  .diagram__arrow svg {
    width: 60px;
  }
}
.diagram__label {
  grid-area: var(--area);
  width: 100%;
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--c-heading);
}
.diagram__caption {
  margin-top: 16px;
  font-size: var(--fs-small);
  line-height: 1.8;
  text-align: center;
  color: var(--c-text-mute);
}

.form-card {
  border-radius: var(--radius-card);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin-inline: auto;
  padding: 48px 40px;
}
@media screen and (max-width: 599.98px) {
  .form-card {
    padding: 28px 20px;
  }
}

.form {
  display: grid;
  gap: 22px;
}
.form__group {
  display: grid;
  gap: 8px;
}
.form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-heading);
}
.form__required, .form__optional {
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.form__required {
  color: var(--c-on-dark);
  background: var(--c-required);
}
.form__optional {
  color: var(--c-text-mute);
  background: var(--c-bg-gray);
  border: 1px solid var(--c-border);
}
.form__input, .form__textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 16px;
  background: var(--c-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: var(--c-text-mute);
  opacity: 0.7;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-focus-ring);
}
.form__textarea {
  height: auto;
  min-height: 160px;
  padding: 14px 16px;
  line-height: 1.8;
  resize: vertical;
}
.form__privacy {
  font-size: var(--fs-small);
  line-height: 1.85;
  color: var(--c-text-mute);
}
.form__privacy a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form__submit {
  display: grid;
  justify-items: center;
  margin-top: 6px;
}

.hs-form-frame:empty {
  display: none;
}

.form-card .form__privacy {
  margin-top: 20px;
}

.sticky-cta {
  display: none;
}
@media screen and (max-width: 899.98px) {
  .sticky-cta {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--c-sticky-bg);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--c-border);
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .sticky-cta .btn {
    width: 100%;
    max-width: 420px;
    min-height: 54px;
    font-size: var(--fs-body);
  }
  .sticky-cta.is-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (max-width: 899.98px) {
  body:has(.sticky-cta) .l-footer {
    padding-bottom: 96px;
  }
}
.diag-banner {
  display: none;
}
@media screen and (min-width: 900px) {
  .diag-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 95;
    display: block;
    width: 330px;
    padding: 22px 24px 20px;
    border-radius: var(--radius-card);
    background: var(--c-bg);
    box-shadow: var(--shadow-float);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .diag-banner.is-visible {
    opacity: 1;
    transform: none;
  }
}
.diag-banner[hidden] {
  display: none;
}
.diag-banner__close {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: var(--c-text-mute);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.diag-banner__close:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
.diag-banner__close:hover {
  color: var(--c-heading);
  background: var(--c-bg-tint);
}
.diag-banner__title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 28px;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-heading);
}
.diag-banner__title svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--c-primary);
}
.diag-banner__text {
  margin-top: 10px;
  font-size: var(--fs-small);
  line-height: 1.8;
  color: var(--c-text);
}
.diag-banner__btn {
  gap: 8px;
  margin-top: 16px;
  min-height: 52px;
  padding-inline: 20px;
  font-size: var(--fs-body);
}
.diag-banner__btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.diag-banner__btn:hover svg {
  transform: translateX(3px);
}

.s-fv {
  position: relative;
  overflow: hidden;
  background: var(--c-hero-bg);
  color: var(--c-heading);
}
.s-fv::before, .s-fv::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--c-hero-circle);
  pointer-events: none;
}
.s-fv::before {
  top: -160px;
  left: -120px;
  width: 420px;
  height: 420px;
}
.s-fv::after {
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
}
.s-fv__inner {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(48px, 4vw + 24px, 80px) clamp(48px, 4vw + 28px, 80px);
  text-align: center;
}
.s-fv__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.52fr);
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 899.98px) {
  .s-fv__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: stretch;
    text-align: left;
  }
}
.s-fv__label {
  font-size: clamp(1.25rem, 1rem + 1vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.s-fv__title {
  margin-top: 10px;
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.s-fv__tags {
  margin-top: clamp(22px, 2vw, 30px);
}
.s-fv__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(24px, 2vw + 8px, 34px);
}
@media screen and (max-width: 899.98px) {
  .s-fv__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}
.s-fv__cta .btn {
  min-height: 68px;
  padding: 0 38px;
  font-size: 18px;
}
@media screen and (max-width: 899.98px) {
  .s-fv__cta .btn {
    width: 100%;
    max-width: none;
  }
}
.s-fv__figure {
  width: 100%;
}
.s-fv__figure img {
  width: 100%;
  height: auto;
}
.s-fv__desc {
  width: 100%;
  margin-top: clamp(28px, 2.4vw + 12px, 44px);
  padding-top: clamp(24px, 2vw + 10px, 32px);
  border-top: 1px solid var(--c-hero-rule);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.4375rem);
  font-weight: 700;
  line-height: 1.9;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 899.98px) {
  .tag-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}
.tag-list__item {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--c-btn-dark);
  background: var(--c-marker);
}
@media screen and (max-width: 899.98px) {
  .tag-list__item {
    min-height: 56px;
    padding: 6px 8px;
    font-size: 14px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599.98px) {
  .tag-list__item {
    font-size: 13.5px;
  }
}

.s-empathy__layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}
@media screen and (max-width: 1099.98px) {
  .s-empathy__layout {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 899.98px) {
  .s-empathy__layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media screen and (max-width: 1099.98px) {
  .s-empathy .check-list .pc-only {
    display: none;
  }
}
.s-empathy__figure {
  width: 100%;
}
.s-empathy__figure img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 899.98px) {
  .s-empathy__figure {
    max-width: 260px;
    order: -1;
  }
}

.s-cause {
  position: relative;
  overflow: hidden;
}
.s-cause__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(1080px, 96%);
  transform: translate(-50%, -50%);
  opacity: 0.09;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}
.s-cause__bg img {
  width: 100%;
  height: auto;
}
.s-cause .section__inner {
  z-index: 1;
}
.s-cause__text {
  max-width: 940px;
  margin-inline: auto;
  margin-bottom: 48px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.95;
  text-align: center;
}
.s-cause__text strong {
  font-size: 30px;
  font-weight: 700;
  color: var(--c-primary);
}
@media screen and (max-width: 899.98px) {
  .s-cause__text {
    font-size: 18px;
  }
  .s-cause__text strong {
    font-size: 26px;
  }
}
@media screen and (max-width: 599.98px) {
  .s-cause__text {
    margin-bottom: 32px;
    font-size: 17px;
    text-align: left;
  }
  .s-cause__text strong {
    font-size: 22px;
  }
}

.s-feature {
  overflow: hidden;
}
.s-feature__bleed {
  position: absolute;
  top: 50%;
  left: calc(100% - 300px);
  z-index: 0;
  width: 640px;
  transform: translateY(-50%);
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  mask-image: linear-gradient(to right, transparent 0%, #000 34%);
}
.s-feature__bleed img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1199.98px) {
  .s-feature__bleed {
    left: calc(100% - 200px);
    width: 460px;
    opacity: 0.22;
  }
}
@media screen and (max-width: 899.98px) {
  .s-feature__bleed {
    display: none;
  }
}
.s-feature .cols-3,
.s-feature .section__head {
  position: relative;
  z-index: 1;
}
.s-feature__list {
  padding-top: 30px;
}

.flow-steps {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}
.flow-steps > * + *::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 2px;
  height: 20px;
  background: var(--c-pale);
  transform: translateX(-50%);
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(20px, 2.4vw, 28px) clamp(20px, 3vw, 36px);
  border-radius: var(--radius-card);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}
@media screen and (max-width: 599.98px) {
  .flow-step {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }
}
.flow-step__figure {
  width: 100%;
}
.flow-step__figure img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 599.98px) {
  .flow-step__figure {
    max-width: 180px;
  }
}
.flow-step__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 599.98px) {
  .flow-step__head {
    justify-content: center;
  }
}
.flow-step__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-heading);
  background: var(--c-secondary);
}
.flow-step__name {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: var(--lh-head);
  color: var(--c-heading);
}
.flow-step__time-slot {
  margin-top: 10px;
}
.flow-step__time {
  display: inline-block;
  padding: 4px 15px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-primary);
  background: var(--c-surface);
}
.flow-step__text {
  margin-top: 14px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
}

.s-message {
  position: relative;
  overflow: hidden;
}
.s-message__body {
  max-width: 880px;
  margin-inline: auto;
}
.s-message__body p {
  line-height: var(--lh-body);
}
.s-message__body p + p {
  margin-top: 1.2em;
}
.s-message__logo {
  position: absolute;
  top: 46%;
  left: max(0px, 50% - 700px);
  z-index: 0;
  width: min(620px, 46%);
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}
.s-message__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1199.98px) {
  .s-message__logo {
    left: -60px;
    width: 420px;
  }
}
.s-message .section__inner {
  z-index: 1;
}
.s-message__sign {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 2.6vw, 32px);
  max-width: 760px;
  margin: clamp(44px, 5vw, 64px) auto 0;
  padding: clamp(28px, 3.4vw, 44px) clamp(26px, 3.6vw, 48px);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}
@media screen and (max-width: 599.98px) {
  .s-message__sign {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 22px;
    text-align: center;
  }
}
.s-message__photo {
  flex-shrink: 0;
  width: clamp(96px, 9.5vw, 128px);
}
.s-message__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border: 4px solid var(--c-bg);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.s-message__signBody {
  flex: 1;
  min-width: 0;
}
.s-message__name {
  margin-top: 4px;
  font-size: clamp(1.1875rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--c-heading);
}
.s-message__name span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(0.9375rem, 0.85rem + 0.35vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-primary);
}
.s-message__profile {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
  font-size: var(--fs-body);
  line-height: 1.95;
  color: var(--c-text);
}

.s-diagnosis {
  color: var(--c-on-dark);
  background: linear-gradient(90deg, var(--c-primary) 0 50%, var(--c-secondary) 50% 100%);
}
@media screen and (max-width: 899.98px) {
  .s-diagnosis {
    background: var(--c-primary);
  }
}
.s-diagnosis__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: 40px;
}
@media screen and (max-width: 899.98px) {
  .s-diagnosis__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cta-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 44px) clamp(24px, 3vw, 40px);
  border-radius: var(--radius-card);
  background: var(--c-bg);
  box-shadow: var(--shadow-card);
}
.cta-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: var(--lh-head);
  text-align: center;
  color: var(--c-heading);
}
.cta-card__text {
  margin-top: 20px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
}
.cta-card__btn {
  margin-top: auto;
  margin-block-start: 28px;
}

.s-form__points {
  margin: 32px auto 48px;
}
@media screen and (max-width: 599.98px) {
  .s-form__points {
    margin-bottom: 32px;
  }
}
.s-form__figure {
  max-width: 520px;
  margin: 0 auto 40px;
}
.s-form__figure img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 599.98px) {
  .s-form__figure {
    max-width: 340px;
    margin-bottom: 28px;
  }
}
