@charset "UTF-8";
/*
  吉田工業様 設備インスペクションサービスLP SCSS定義
  概要: PDFデザインをもとに、投資家向け設備診断LPの配色、余白、カード、CTA、料金表示を管理します。
  主な仕様: HTML直読み用のCSSへコンパイルする前提で、レスポンシブ表示とサブディレクトリ公開に対応します。
  制限事項: 画像素材未提供のため、レポートや動画枠はCSS装飾で表現しています。
*/
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: #152536;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background: #f1f3f6;
}
body.is-nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px clamp(20px, 5vw, 64px);
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 47, 79, 0.1);
  backdrop-filter: blur(14px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-logo img {
  width: clamp(176px, 20vw, 232px);
  height: auto;
}

.global-nav {
  color: #06233d;
  font-size: 14px;
  font-weight: 900;
}
.global-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.global-nav__meta {
  display: none;
}
.global-nav__list a {
  position: relative;
}
.global-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #e8782e;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}
.global-nav__list a:hover::after, .global-nav__list a:focus-visible::after {
  transform: scaleX(1);
}
.global-nav__external-icon {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  object-fit: contain;
}

@media (min-width: 1081px) {
  body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "header-bar" "main" "footer";
    min-height: 100vh;
  }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 22;
    grid-area: header-bar;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 4px clamp(20px, 5vw, 64px);
    transform: none;
  }
  .global-nav {
    position: static;
    z-index: 23;
    display: flex;
    grid-area: header-bar;
    align-items: center;
    align-self: center;
    justify-content: flex-end;
    justify-self: end;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0 clamp(20px, 5vw, 64px) 0 0;
    margin: 0;
    overflow: visible;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    transition: none;
  }
  .global-nav__list {
    display: flex;
    flex: none;
    flex-direction: row;
    gap: clamp(16px, 2vw, 30px);
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
  }
  .global-nav__list li {
    width: auto;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .global-nav__list a {
    display: inline-flex;
    align-items: center;
    width: auto;
    padding: 0;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.5;
    white-space: nowrap;
  }
  .global-nav__list a::before {
    display: none;
    margin: 0;
    content: none;
  }
  .global-nav__list a::after {
    display: block;
  }
  .global-nav__meta {
    display: none;
  }
  .global-nav__external-icon {
    flex: 0 0 auto;
    margin-left: 6px;
  }
  main {
    grid-area: main;
    width: 100%;
    max-width: none;
    padding-top: 0;
  }
  .site-footer {
    grid-area: footer;
    width: 100%;
    max-width: none;
  }
  .nav-toggle {
    display: none;
  }
}
.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  color: #06233d;
  font-weight: 900;
  background: #f6c54d;
  border: 2px solid #f6c54d;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(246, 197, 77, 0.38);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible {
  background: #ffd768;
  box-shadow: 0 20px 42px rgba(246, 197, 77, 0.48);
  transform: translateY(2px);
}
.button--outline {
  color: #ffffff;
  background: #09142a;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}
.button--outline:hover, .button--outline:focus-visible {
  color: #06233d;
  background: #ffffff;
}
.button--line {
  gap: 14px;
  min-width: 300px;
  min-height: 50px;
  color: #ffffff;
  background: linear-gradient(180deg, #54d86d 0%, #43c85f 52%, #2ead49 100%);
  border-color: #43c85f;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.54), 0 3px 0 #23883b, 0 5px 8px rgba(0, 0, 0, 0.16);
}
.button--line span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #43c85f;
  font-size: 11px;
  font-weight: 900;
  background: #ffffff;
  border-radius: 50%;
}
.button--line:hover, .button--line:focus-visible {
  background: linear-gradient(180deg, #61df78 0%, #49ce63 52%, #32b84e 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.56), 0 1px 0 #23883b, 0 3px 6px rgba(0, 0, 0, 0.14);
}
.button--phone {
  gap: 12px;
  min-width: 300px;
  min-height: 50px;
  color: #152536;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 58%, #e9edf2 100%);
  border-color: #d9dee6;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.94), 0 3px 0 #c9d0da, 0 5px 8px rgba(0, 0, 0, 0.1);
}
.button--phone img {
  width: 26px;
  height: 26px;
}
.button--phone:hover, .button--phone:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 58%, #edf1f5 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.94), 0 1px 0 #c9d0da, 0 3px 6px rgba(0, 0, 0, 0.1);
}

.section {
  padding: clamp(76px, 9vw, 124px) 20px;
}
.section--navy {
  color: #ffffff;
  background: radial-gradient(circle at 12% 18%, rgba(246, 197, 77, 0.12), transparent 24rem), linear-gradient(135deg, #06233d, #0a2f4f);
}
.section--navy .section-heading h2,
.section--navy .section-heading p {
  color: #ffffff;
}
.section--cream {
  background: #fbf7ed;
}

.section-heading {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(34px, 5vw, 58px);
}
.section-heading--center {
  max-width: 860px;
  text-align: center;
}
.section-heading__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  margin: 0 0 16px;
  color: #06233d;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: #f6c54d;
  border-radius: 999px;
}
.section-heading h2 {
  margin: 0;
  color: #06233d;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-size: clamp(30px, 4vw, 48px);
}
.section-heading p:not(.section-heading__label) {
  max-width: 780px;
  margin: 18px auto 0;
  color: #697887;
  font-weight: 500;
}

.hero {
  padding-bottom: 80px;
  background: #eef0f4;
}
.hero__main {
  color: #ffffff;
  background: radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.16), transparent 20rem), linear-gradient(105deg, #09142a 0%, #111f3a 58%, #223652 100%);
}
.hero__inner {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  isolation: isolate;
  max-width: 1360px;
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(430px, 1.05fr);
  gap: clamp(24px, 3.2vw, 56px);
  align-items: start;
  min-height: clamp(500px, 100svh - 190px, 600px);
  padding: 42px clamp(20px, 5vw, 64px) 46px;
}
.hero__inner::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 46%;
  z-index: 0;
  width: 34%;
  background: linear-gradient(90deg, rgba(86, 111, 151, 0.56) 0%, rgba(41, 60, 91, 0.34) 56%, rgba(17, 31, 58, 0) 100%);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  content: "";
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__sub {
  display: inline-flex;
  padding: 4px 15px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #f59e0b;
  border-radius: 4px;
}
.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.1vw, 52px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.hero h1 span {
  display: block;
  color: #f59e0b;
  font-size: clamp(32px, 3.8vw, 48px);
}
.hero__lead {
  display: inline-block;
  padding-top: 10px;
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 900;
  line-height: 1.45;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__lead-break {
  display: none;
}
.hero__catch {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: clamp(21px, 2.35vw, 32px);
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}
.hero__catch span {
  color: #e24035;
}
.hero__text {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.hero__badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
}
.hero__badges img {
  width: 22px;
  height: 20px;
  object-fit: contain;
}
.hero__visual {
  position: relative;
  z-index: 1;
  min-height: 410px;
}
.hero__report {
  position: absolute;
  width: auto;
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.34));
}
.hero__report--book {
  top: 0;
  left: -5%;
  z-index: 2;
  width: 300px;
}
.hero__report--sheet {
  top: 0;
  right: 0;
  z-index: 1;
  width: 400px;
}
.hero__report-label {
  position: absolute;
  top: -8px;
  right: -14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background: #09142a;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.hero__report-label span {
  display: block;
  color: #f59e0b;
  font-size: 20px;
}
.hero__report-note {
  position: absolute;
  top: 88px;
  right: -47px;
  z-index: 4;
  width: 185px;
  min-height: 30px;
  padding: 8px 16px;
  margin: 0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background: #09142a;
  border: 1px solid #ffffff;
  border-radius: 999px;
}
.hero__risk-area {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1360px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  align-items: stretch;
  margin-top: -58px;
  padding: 0 clamp(20px, 5vw, 64px);
}
.hero__costs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border: 1px solid #d7dce3;
  box-shadow: 0 12px 28px rgba(6, 35, 61, 0.16);
}
.hero__costs article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 10px 14px;
}
.hero__costs article:not(:last-child) {
  border-right: 1px solid #dfe4eb;
}
.hero__costs img {
  grid-row: 1/3;
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.hero__costs article > span,
.hero__costs strong {
  display: block;
  line-height: 1.2;
}
.hero__costs article > span {
  color: #152536;
  font-weight: 900;
}
.hero__costs strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #e24035;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.hero__cost-number {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.hero__cost-unit, .hero__cost-separator {
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 500;
}
.hero__alert {
  position: relative;
  display: grid;
  align-content: center;
  gap: 3px;
  min-height: 74px;
  padding: 12px 20px 12px 28px;
  color: #e24035;
  background: #ffffff;
  border: 1px solid #d7dce3;
  box-shadow: 0 12px 28px rgba(6, 35, 61, 0.16);
}
.hero__alert span {
  position: absolute;
  top: -15px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0) 0%, rgba(220, 38, 38, 0.92) 16%, rgba(220, 38, 38, 0.92) 96%, rgba(220, 38, 38, 0) 100%);
}
.hero__alert span img {
  width: 38px;
  height: auto;
  margin-top: -18px;
  margin-bottom: -14px;
}
.hero__alert strong {
  position: relative;
  padding-left: 34px;
  font-size: clamp(19px, 1.85vw, 25px);
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}
.hero__alert strong::before {
  position: absolute;
  top: 50%;
  left: 0;
  color: #e24035;
  transform: translateY(-50%);
  content: "▶";
}
.hero__cta {
  position: fixed;
  right: clamp(20px, 5vw, 64px);
  bottom: 0;
  left: clamp(20px, 5vw, 64px);
  z-index: 100;
  width: auto;
  padding: 10px 18px 12px;
  color: #ffffff;
  text-align: center;
  background: #09142a;
  border: 2px solid transparent;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(#09142a, #09142a) padding-box, linear-gradient(90deg, #b7791f, #f8d36b, #fff2b3, #f59e0b) border-box;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.24), 0 0 18px rgba(248, 211, 107, 0.54);
}
.hero__cta p {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(17px, 1.9vw, 24px);
  font-weight: 900;
}
.hero__cta p span {
  color: #f59e0b;
}
.hero__cta div {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero__cta div .button {
  border-radius: 8px;
}
.hero__cta small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.trust-problem__inner,
.flow-list,
.inspection-layout,
.cost-grid,
.case-grid,
.price-layout,
.price__note,
.notice-box {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-problem {
  background: #09142a;
}
.trust-problem__inner {
  max-width: 960px;
}
.trust-problem__lead {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}
.trust-problem__text .section-heading__label {
  position: relative;
  min-height: 38px;
  padding: 0 15px;
  margin-bottom: 12px;
  color: #ffffff;
  background: #dc2626;
  border-radius: 0;
}
.trust-problem__text .section-heading__label::before, .trust-problem__text .section-heading__label::after {
  position: absolute;
  background: #dc2626;
  content: "";
}
.trust-problem__text .section-heading__label::before {
  top: 100%;
  left: 0;
  width: 1px;
  height: 22px;
}
.trust-problem__text .section-heading__label::after {
  top: 50%;
  left: 100%;
  width: 72px;
  height: 1px;
  transform: translateY(-50%);
}
.trust-problem__text h2 {
  margin: 0 0 0 16px;
  color: #ffffff;
  font-size: clamp(27px, 2.6vw, 34px);
  line-height: 1.35;
  white-space: nowrap;
}
.trust-problem__text p:not(.section-heading__label) {
  margin: 12px 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}
.trust-problem__text-break {
  display: none;
}
.trust-problem__movie-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
}
.trust-problem__movie-link span {
  color: #ffffff;
  font-size: 14px;
}
.trust-problem__movie {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0;
  padding: clamp(20px, 4vw, 32px);
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}
.trust-problem__movie-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 280px;
}
.trust-problem__movie-tab {
  flex: 1 1 72px;
  min-width: 72px;
  min-height: 48px;
  padding: 0 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 4px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.trust-problem__movie-tab:hover, .trust-problem__movie-tab:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}
.trust-problem__movie-tab.is-active {
  color: #06233d;
  background: #f59e0b;
  border-color: #f59e0b;
}
.trust-problem__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(42px, 6vw, 72px);
}
.trust-problem__features article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 14px;
}
.trust-problem__features article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}
.trust-problem__features img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.trust-problem__features h3 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.45;
}
.trust-problem__features p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.trust-problem__divider {
  position: relative;
  height: 20px;
  margin: clamp(28px, 5vw, 48px) 0;
}
.trust-problem__divider::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0.22) calc(50% - 48px), transparent calc(50% - 48px), transparent calc(50% + 48px), rgba(255, 255, 255, 0.22) calc(50% + 48px), rgba(255, 255, 255, 0.22) 100%);
  transform: translateY(-50%);
  content: "";
}
.trust-problem__divider::after {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transform: translateX(-50%) rotate(45deg);
  content: "";
}
.trust-problem__risk {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
}
.trust-problem__risk-image {
  margin: 0;
}
.trust-problem__risk-image img {
  width: 100%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}
.trust-problem__risk-content h2 {
  position: relative;
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.4;
}
.trust-problem__risk-content h2::after {
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 12px;
  background: #e8782e;
  content: "";
}
.trust-problem__risk-content > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  line-height: 2;
}
.trust-problem__risk-content > p strong {
  color: #ffffff;
  font-weight: 900;
}
.trust-problem__risk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}
.trust-problem__risk-cards article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}
.trust-problem__risk-cards img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.trust-problem__risk-cards h3 {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}
.trust-problem__risk-cards p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.flow {
  background: #eef0f4;
}
.flow .section-heading {
  margin-bottom: clamp(38px, 5vw, 58px);
}
.flow .section-heading h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 64px);
  max-width: 1180px;
  padding: 0;
  color: #06233d;
  list-style: none;
}
.flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.flow-list li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: clamp(-38px, -3vw, -24px);
  color: #06233d;
  font-size: 24px;
  font-weight: 900;
  transform: translateY(-50%);
  content: "▶";
}
.flow-list li > img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.flow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 0 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: #06233d;
  border-radius: 3px;
}
.flow-list h3 {
  margin: 7px 0 4px;
  color: #06233d;
  font-size: 18px;
  line-height: 1.35;
  white-space: nowrap;
}
.flow-list p {
  margin: 0;
  color: #06233d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.inspection {
  background: #09142a;
}
.inspection .section-heading {
  max-width: 900px;
}
.inspection .section-heading .section-heading__label {
  min-height: auto;
  padding: 0;
  margin-bottom: 18px;
  color: #dc2626;
  font-size: 2.25rem;
  line-height: 1.4;
  background: transparent;
  border-radius: 0;
}
.inspection .section-heading h2 {
  color: #ffffff;
  font-size: 2.25rem;
  white-space: nowrap;
}

.inspection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
}

.sample-report {
  padding: 22px;
  color: #ffffff;
  background: rgba(0, 31, 54, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
}
.sample-report > p {
  padding-bottom: 12px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}
.sample-report__images {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.78);
}
.sample-report__images img {
  width: 100%;
  height: auto;
  display: block;
}
.sample-report a {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  margin: 18px auto 0;
  color: #f59e0b;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid #f59e0b;
}
.sample-report a::after {
  font-size: 16px;
  content: "›";
}

.check-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 50px;
}
.check-grid::before {
  position: absolute;
  right: -72px;
  bottom: 22px;
  left: calc((100% - 40px) / 6);
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
  content: "";
}
.check-grid::after {
  position: absolute;
  right: -72px;
  bottom: 18px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(255, 255, 255, 0.78);
  transform: rotate(45deg);
  content: "";
}
.check-grid article {
  position: relative;
  padding: 28px 22px 22px;
  text-align: center;
  background: rgba(0, 31, 54, 0.66);
  border: 1px solid rgba(72, 133, 176, 0.68);
  border-radius: 4px;
}
.check-grid article::before {
  position: absolute;
  bottom: -5px;
  left: 50%;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transform: translateX(-50%);
  content: "";
}
.check-grid article::after {
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.78);
  content: "";
}
.check-grid__icon {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.check-grid__icon img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.check-grid h3 {
  position: relative;
  margin: 18px 0 24px;
  padding-bottom: 14px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.4;
}
.check-grid h3::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 52px;
  height: 2px;
  background: #dc2626;
  transform: translateX(-50%);
  content: "";
}
.check-grid ul {
  display: inline-grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}
.check-grid li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
}
.check-grid li::before {
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 900;
  content: "✓";
}

.inspection-summary {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.34fr) 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  padding: 28px 40px;
  margin-top: 44px;
  color: #ffffff;
  background: rgba(0, 31, 54, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.38);
}
.inspection-summary img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.inspection-summary p {
  margin: 0;
}
.inspection-summary p:first-of-type {
  font-size: 20px;
  line-height: 1.7;
}
.inspection-summary p:last-of-type {
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.9;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.inspection__note {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  max-width: 900px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-align: center;
}

.inspection__note-line {
  display: block;
}
.inspection__note-line--indent {
  padding-left: 1em;
}

.case {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #09142a;
}
.case::before {
  position: absolute;
  inset: 0;
  background: url("../img/bg-risk.jpg") center/cover no-repeat;
  opacity: 0.1;
  content: "";
}
.case > * {
  position: relative;
  z-index: 1;
}
.case .section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}
.case .section-heading__label {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.62);
  border-radius: 0;
}
.case .section-heading h2 {
  color: #ffffff;
  font-size: clamp(27px, 3vw, 36px);
}
.case .section-heading p:not(.section-heading__label) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.8;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 980px;
  margin-bottom: 24px;
  background: rgba(4, 19, 35, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.cost-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 24px;
}
.cost-grid article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.cost-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.cost-grid span {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}
.cost-grid strong {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 2px;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}
.cost-grid strong em {
  color: #f59e0b;
  font-size: clamp(24px, 3vw, 34px);
  font-style: normal;
}

.case__alert {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
  padding: 16px;
  margin-top: 0;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  background: #b20d16;
  border-radius: 0;
}

.case__subtitle {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 620px;
  margin: 0 auto 26px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}
.case__subtitle::before, .case__subtitle::after {
  flex: 1;
  height: 1px;
  background: rgba(220, 38, 38, 0.72);
  content: "";
}

.case-grid {
  max-width: 980px;
}
.case-grid article {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 268px;
  padding: 36px 14px 0;
  color: #ffffff;
  background: rgba(4, 19, 35, 0.82);
  border: 1px solid rgba(220, 38, 38, 0.42);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}
.case-grid__label {
  position: absolute;
  top: 36px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 4px;
  padding: 3px 10px;
  margin: 0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: #2f1617;
  border: 1px solid rgba(220, 38, 38, 0.7);
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
}
.case-grid__label em {
  color: #ef2b2b;
  font-size: 18px;
  font-style: normal;
  line-height: 1;
}
.case-grid__body {
  display: grid;
  grid-template-columns: minmax(92px, 0.82fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.case-grid__image {
  width: 100%;
  height: 142px;
  object-fit: cover;
}
.case-grid__property {
  margin: 0 0 2px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}
.case-grid h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.35;
}
.case-grid p:not(.case-grid__label, .case-grid__property) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.55;
}
.case-grid strong {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 10px 14px;
  margin: 14px -14px 0;
  color: #dc2626;
  font-size: 14px;
  font-weight: 900;
  background: rgba(82, 18, 21, 0.72);
  border-top: 1px solid rgba(220, 38, 38, 0.38);
}
.case-grid strong img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.case-grid strong span {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}
.case-grid strong em {
  font-size: 34px;
  font-style: normal;
  line-height: 1;
}

.case__note {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-align: center;
}

.case__note-line {
  display: block;
}

.case__note-line--indent {
  padding-left: 1em;
}

.price {
  background: #09142a;
}
.price .section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}
.price .section-heading .section-heading__label {
  color: #dc2626;
  font-size: 2.25rem;
  line-height: 1.4;
  background: transparent;
  border-radius: 0;
}
.price .section-heading h2 {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.45;
  white-space: nowrap;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  max-width: 1120px;
}

.price-card {
  padding: clamp(28px, 4vw, 48px);
  color: #06233d;
  background: #f5f5f5;
  border-radius: 4px;
}
.price-card--amount {
  display: grid;
  align-content: center;
  text-align: center;
}
.price-card__service {
  display: inline-flex;
  min-width: min(100%, 440px);
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  margin: 0 auto 48px;
  font-size: 17px;
  font-weight: 900;
  border: 1px solid #06233d;
  border-radius: 999px;
}
.price-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  padding-bottom: 20px;
  margin: 0 auto 24px;
  border-bottom: 1px solid rgba(9, 20, 42, 0.18);
}
.price-card__amount strong {
  color: #dc2626;
  font-size: clamp(88px, 11vw, 132px);
  line-height: 0.9;
}
.price-card__amount span {
  color: #dc2626;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
}
.price-card__amount em {
  color: #06233d;
  font-size: clamp(26px, 3vw, 38px);
  font-style: normal;
  font-weight: 500;
}
.price-card__lead {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}
.price-card--include {
  display: grid;
  align-content: center;
}
.price-card--include h3 {
  position: relative;
  width: fit-content;
  padding-bottom: 10px;
  margin: 0 0 18px;
  color: #06233d;
  font-size: 20px;
  line-height: 1.4;
}
.price-card--include h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 78px;
  height: 2px;
  background: #dc2626;
  content: "";
}
.price-card ul {
  display: grid;
  gap: 6px;
  padding: 0 0 24px;
  margin: 0 0 24px;
  list-style: none;
  border-bottom: 1px solid rgba(9, 20, 42, 0.18);
}
.price-card li {
  position: relative;
  padding-left: 20px;
  color: #152536;
  font-size: 15px;
  font-weight: 500;
}
.price-card li::before {
  position: absolute;
  left: 0;
  color: #dc2626;
  content: "✓";
}
.price-card__area {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
}
.price-card__area img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.price-card__area h4 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.4;
}
.price-card__area p {
  margin: 0;
  color: #697887;
  font-size: 13px;
  font-weight: 500;
}

.price__note {
  max-width: 1120px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-align: center;
}

.price__note-line {
  display: block;
}

.price__note-line--indent {
  padding-left: 1em;
}

.notice-box {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  padding: 22px 34px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
}
.notice-box h3 {
  position: relative;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}
.notice-box h3 span {
  display: inline-block;
  margin-right: 12px;
  font-size: 38px;
  line-height: 1;
  vertical-align: middle;
}
.notice-box h3::after {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
  content: "";
}
.notice-box ul {
  display: grid;
  gap: 5px;
  padding-left: 1.2em;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(clamp(24px, 6vw, 72px), 1fr) minmax(0, 540px) minmax(0, 420px) minmax(clamp(24px, 6vw, 72px), 1fr);
  gap: 28px 64px;
  padding: 0;
  margin-bottom: 151px;
  color: #09142a;
  background: #ffffff;
}
.site-footer__company {
  grid-column: 2;
  padding: 34px 0 30px;
}
.site-footer__brand {
  margin-bottom: 18px;
}
.site-footer__logo {
  display: block;
  width: clamp(180px, 42vw, 240px);
  height: auto;
}
.site-footer address {
  color: #09142a;
  font-size: clamp(14px, 1.5vw, 15px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}
.site-footer__nav {
  grid-column: 3;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 42px;
  align-content: center;
  padding: 34px 0 30px;
  font-weight: 800;
}
.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(9, 20, 42, 0.72);
}
.site-footer__nav a img {
  width: 10px;
  height: 10px;
  object-fit: contain;
}
.site-footer__nav a img:last-child:not(:first-child) {
  width: 14px;
  height: 14px;
  margin-left: -2px;
}
.site-footer__copy {
  grid-column: 1/-1;
  padding: 9px 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  background: #09142a;
}

.trust-movie-modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
}
.trust-movie-modal::backdrop {
  background: rgba(9, 20, 42, 0.88);
  backdrop-filter: blur(6px);
}
.trust-movie-modal__panel {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100%;
  padding: clamp(48px, 8vw, 72px) clamp(16px, 4vw, 32px) clamp(24px, 5vw, 40px);
}
.trust-movie-modal__close {
  position: fixed;
  top: clamp(12px, 3vw, 24px);
  right: clamp(12px, 3vw, 24px);
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  background: rgba(9, 20, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
}
.trust-movie-modal__label {
  margin: 0 0 14px;
  color: #f59e0b;
  font-size: clamp(13px, 2.8vw, 16px);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.trust-movie-modal__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, min(88svh, 760px) * 9 / 16);
  max-width: 92vw;
}
.trust-movie-modal__player {
  display: block;
  width: 100%;
  max-height: min(88svh, 760px);
  aspect-ratio: 9/16;
  background: #000;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

body.is-trust-movie-open {
  overflow: hidden;
}

.privacy-modal {
  width: min(880px, 100% - 36px);
  max-height: min(760px, 100% - 36px);
  padding: 0;
  color: #09142a;
  background: transparent;
  border: 0;
}
.privacy-modal::backdrop {
  background: rgba(9, 20, 42, 0.72);
  backdrop-filter: blur(5px);
}
.privacy-modal__panel {
  position: relative;
  max-height: min(760px, 100vh - 36px);
  padding: clamp(28px, 5vw, 48px);
  overflow: auto;
  background: #f5f5f5;
  border: 2px solid rgba(245, 158, 11, 0.68);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}
.privacy-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  background: #09142a;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.privacy-modal__label {
  margin: 0 0 8px;
  color: #dc2626;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.privacy-modal h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.35;
}
.privacy-modal__content {
  display: grid;
  gap: 22px;
}
.privacy-modal section {
  padding-top: 22px;
  border-top: 1px solid rgba(9, 20, 42, 0.14);
}
.privacy-modal h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
}
.privacy-modal p {
  margin: 0;
  color: rgba(9, 20, 42, 0.76);
  line-height: 1.9;
}

@media (max-width: 1080px) {
  body {
    background: #ffffff;
  }
  .site-header,
  main,
  .site-footer {
    width: 100%;
    max-width: 430px;
    margin-right: auto;
    margin-left: auto;
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 110;
    box-sizing: border-box;
    width: min(100%, 430px);
    height: 52px;
    min-height: 52px;
    margin: 0;
    padding: 4px 12px;
    transform: translateX(-50%);
  }
  .site-logo {
    position: relative;
    z-index: 120;
  }
  .site-logo img {
    width: 160px;
  }
  main {
    padding-top: 0;
  }
  .section {
    padding: 64px 18px;
  }
  .sample-report {
    padding: 16px;
  }
  .case__alert {
    border-radius: 18px;
  }
  .inspection__note,
  .case__note,
  .price__note {
    text-align: left;
  }
  .nav-toggle {
    position: relative;
    z-index: 120;
    align-self: center;
    display: inline-grid;
    align-items: end;
    justify-content: center;
    gap: 4px;
    width: 46px;
    min-height: 42px;
    padding: 0;
    color: #06233d;
    font-size: 10px;
    font-weight: 900;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .nav-toggle__icon, .nav-toggle__icon::before, .nav-toggle__icon::after {
    display: block;
    width: 28px;
    height: 2px;
    background: #06233d;
    content: "";
  }
  .nav-toggle__icon {
    position: relative;
    margin: 0 auto;
  }
  .nav-toggle__icon::before, .nav-toggle__icon::after {
    position: absolute;
    left: 0;
  }
  .nav-toggle__icon::before {
    top: -9px;
  }
  .nav-toggle__icon::after {
    top: 9px;
  }
  .nav-toggle__text {
    display: block;
    line-height: 1;
  }
  .nav-toggle[aria-expanded=true] .nav-toggle__icon {
    background: transparent;
  }
  .nav-toggle[aria-expanded=true] .nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded=true] .nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .global-nav {
    position: fixed;
    top: 52px;
    bottom: 139px;
    left: 50%;
    z-index: 105;
    display: flex;
    flex-direction: column;
    width: min(100%, 430px);
    height: auto;
    padding: 0;
    overflow-y: auto;
    pointer-events: none;
    visibility: hidden;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 280ms ease, box-shadow 360ms ease, visibility 0s linear 360ms;
  }
  .global-nav.is-open {
    pointer-events: auto;
    visibility: visible;
    box-shadow: 0 16px 40px rgba(6, 35, 61, 0.1);
    opacity: 1;
    transform: translateX(-50%);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease, box-shadow 360ms ease, visibility 0s;
  }
  .global-nav__list {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    padding: 24px 28px 28px;
  }
  .global-nav__list li {
    width: min(100%, 320px);
    opacity: 0;
    transform: translateY(-10px);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
  }
  .global-nav__list li:nth-child(1) {
    transition-delay: 165ms;
  }
  .global-nav__list li:nth-child(2) {
    transition-delay: 210ms;
  }
  .global-nav__list li:nth-child(3) {
    transition-delay: 255ms;
  }
  .global-nav__list li:nth-child(4) {
    transition-delay: 300ms;
  }
  .global-nav__list li:nth-child(5) {
    transition-delay: 345ms;
  }
  .global-nav.is-open .global-nav__list li {
    opacity: 1;
    transform: translateY(0);
  }
  .global-nav:not(.is-open) .global-nav__list li {
    transition-delay: 0ms;
  }
  .global-nav__list a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .global-nav__list a::before {
    flex: 0 0 auto;
    margin-right: 10px;
    font-size: 11px;
    line-height: 1;
    content: "▶";
  }
  .global-nav__list a::after {
    display: none;
  }
  .global-nav__meta {
    display: block;
    flex-shrink: 0;
    padding: 0 28px 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(-8px);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease 360ms;
  }
  .global-nav.is-open .global-nav__meta {
    opacity: 1;
    transform: translateY(0);
  }
  .global-nav:not(.is-open) .global-nav__meta {
    transition-delay: 0ms;
  }
}
@media (max-width: 1080px) and (prefers-reduced-motion: reduce) {
  .global-nav {
    transition: none;
  }
  .global-nav__list li, .global-nav__meta {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 1080px) {
  .global-nav__company-name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.5;
  }
  .global-nav__address {
    color: rgba(9, 20, 42, 0.78);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.7;
  }
  .hero__inner,
  .inspection-layout,
  .price-layout,
  .notice-box,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-bottom: 20px;
    background: #09142a;
  }
  .hero__main {
    padding-top: 52px;
  }
  .hero__inner {
    position: relative;
    min-height: auto;
    overflow: visible;
    padding: 12px 10px 6px;
  }
  .hero__sub {
    padding: 3px 10px;
    margin-bottom: 8px;
    font-size: 11px;
  }
  .hero h1 {
    font-size: 31px;
    line-height: 1.05;
    white-space: nowrap;
  }
  .hero h1 span {
    font-size: 30px;
  }
  .hero__lead {
    padding-top: 7px;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.28;
  }
  .hero__catch {
    position: relative;
    z-index: 4;
    margin-top: 5px;
    font-size: 19px;
    line-height: 1.22;
  }
  .hero__catch span {
    display: block;
    white-space: nowrap;
  }
  .hero__text, .hero__badges {
    display: none;
  }
  .hero__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 335px;
    margin: -14px 0 0;
  }
  .hero__report--book {
    top: 15px;
    left: 0;
    width: 45%;
  }
  .hero__report--sheet {
    top: -30px;
    right: 0;
    width: 63%;
  }
  .hero__report-label {
    top: 226px;
    right: 19px;
    width: 78px;
    height: 78px;
    font-size: 11px;
  }
  .hero__report-label span {
    font-size: 15px;
  }
  .hero__report-note {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 292px;
    right: -5px;
    width: 126px;
    min-height: 25px;
    padding: 4px 7px;
    font-size: 8px;
    font-weight: 500;
  }
  .hero__risk-area {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding: 0 8px;
  }
  .hero__costs {
    order: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero__costs article {
    display: block;
    min-width: 0;
    min-height: 52px;
    padding: 7px;
    text-align: left;
    border-right: 0;
    overflow: hidden;
  }
  .hero__costs article:not(:last-child) {
    border-right: 1px solid #dfe4eb;
    border-bottom: 0;
  }
  .hero__costs img {
    display: none;
  }
  .hero__costs article > span {
    font-size: 12px;
    line-height: 1.25;
  }
  .hero__costs strong {
    margin-top: 5px;
    gap: 0;
    white-space: nowrap;
    letter-spacing: -0.05em;
  }
  .hero__costs .hero__cost-number {
    font-size: clamp(15px, 4.65vw, 24px);
  }
  .hero__costs .hero__cost-unit,
  .hero__costs .hero__cost-separator {
    font-size: clamp(10px, 2.8vw, 13px);
    font-weight: 500;
  }
  .hero__alert {
    display: contents;
  }
  .hero__alert span {
    position: relative;
    z-index: 2;
    order: -1;
    display: flex;
    width: 100%;
    margin: 0 0 -12px;
  }
  .hero__alert strong {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 14px;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    background: #ffffff;
    border: 1px solid #d7dce3;
    border-top: 0;
  }
  .hero__alert strong::before {
    position: static;
    flex: 0 0 auto;
    margin-right: 10px;
    transform: none;
  }
  .hero__cta {
    right: auto;
    left: 50%;
    width: min(100%, 430px);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    transform: translateX(-50%);
  }
  .hero__cta div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
  }
  .hero__cta .button {
    min-width: 0;
  }
  .hero__cta .button--phone {
    gap: 0;
    padding: 0;
    font-size: 0;
  }
  .hero__cta .button--phone img {
    width: 44px;
    height: 44px;
  }
  .trust-problem__lead, .trust-problem__risk {
    grid-template-columns: 1fr;
  }
  .trust-problem__lead {
    gap: 18px;
  }
  .trust-problem__movie {
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }
  .trust-problem__features, .trust-problem__risk-cards {
    grid-template-columns: 1fr;
  }
  .trust-problem__features {
    width: 100%;
    max-width: 360px;
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
  }
  .trust-problem__features article {
    padding: 14px 0;
  }
  .trust-problem__features article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .trust-problem__divider {
    margin: 18px 0;
  }
  .trust-problem__risk-image {
    max-width: 560px;
  }
  .trust-problem__risk-content h2 {
    font-size: 25px;
    white-space: nowrap;
  }
  .flow-list,
  .cost-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .flow-list {
    gap: 48px;
  }
  .flow-list li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -45px;
    transform: translateX(50%) rotate(90deg);
  }
  .flow .section-heading h2 {
    font-size: 20px;
    line-height: 1.55;
  }
  .inspection .section-heading .section-heading__label {
    font-size: 24px;
  }
  .inspection .section-heading h2 {
    font-size: 20px;
    line-height: 1.55;
    white-space: normal;
  }
  .inspection-layout {
    row-gap: 0;
  }
  .check-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 50px;
  }
  .check-grid::before {
    right: calc((100% - 16px) / 6);
    bottom: 20px;
    left: calc((100% - 16px) / 6);
    content: "";
  }
  .check-grid::after {
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
    content: "";
  }
  .check-grid article {
    min-width: 0;
    padding: 14px 5px 16px;
  }
  .check-grid article::after {
    bottom: -30px;
    height: 30px;
    content: "";
  }
  .check-grid article:nth-child(2)::after {
    bottom: -52px;
    height: 52px;
  }
  .check-grid__icon {
    width: 64px;
    height: 64px;
  }
  .check-grid__icon img {
    width: 38px;
    height: 38px;
  }
  .check-grid h3 {
    margin: 12px 0 14px;
    padding-bottom: 10px;
    font-size: 16px;
    white-space: nowrap;
  }
  .check-grid ul {
    gap: 4px;
  }
  .check-grid li {
    padding-left: 13px;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }
  .price.section {
    padding-bottom: 40px;
  }
  .price .section-heading .section-heading__label {
    font-size: 24px;
  }
  .price .section-heading h2 {
    font-size: 20px;
    line-height: 1.55;
    white-space: normal;
  }
  .price-card {
    padding: 26px 28px 28px;
  }
  .price-card__service {
    width: min(100%, 360px);
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    margin-bottom: 28px;
    font-size: 16px;
    white-space: nowrap;
  }
  .price-card__amount {
    gap: 6px;
    padding-bottom: 18px;
    margin-bottom: 20px;
  }
  .price-card__amount strong {
    font-size: 5rem;
  }
  .price-card__amount span {
    font-size: 1.75rem;
  }
  .price-card__amount em {
    font-size: 1.75rem;
    white-space: nowrap;
  }
  .price-card__lead {
    font-size: 15px;
    line-height: 1.7;
  }
  .price-card__area {
    grid-template-columns: 64px 1fr;
  }
  .price-card__area img {
    width: 60px;
    height: 60px;
  }
  .price-card--include h3,
  .price-card--include ul, .price-card--include__area {
    width: 100%;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }
  .case .section-heading h2 {
    font-size: 20px;
    line-height: 1.55;
  }
  .case__subtitle {
    gap: clamp(10px, 2.5vw, 14px);
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(16px, 4.4vw, 20px);
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .case__subtitle::before, .case__subtitle::after {
    flex: 0 0 auto;
    width: clamp(24px, 9vw, 40px);
  }
  .case__note-line--indent {
    padding-left: 1em;
  }
  .cost-grid article {
    position: relative;
    grid-template-columns: 82px minmax(0, 210px);
    justify-content: center;
    padding: 18px 20px;
    border-right: 0;
  }
  .cost-grid article:not(:last-child) {
    border-right: 0;
    border-bottom: 0;
  }
  .cost-grid article:not(:last-child)::after {
    position: absolute;
    right: 38px;
    bottom: 0;
    left: 38px;
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
    content: "";
  }
  .cost-grid img {
    width: 66px;
    height: 66px;
  }
  .inspection-summary {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
    padding: 20px 14px;
    margin-top: 28px;
  }
  .inspection-summary img {
    width: 36px;
    height: 36px;
  }
  .inspection-summary p {
    min-width: 0;
    overflow-wrap: break-word;
  }
  .inspection-summary p:first-of-type {
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.45;
    white-space: normal;
  }
  .inspection-summary p:last-of-type {
    grid-column: 1/-1;
    padding-top: 16px;
    padding-left: 0;
    font-size: clamp(11px, 2.9vw, 14px);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }
  .inspection__note {
    margin-top: 14px;
    font-size: clamp(9px, 2.4vw, 11px);
    line-height: 1.45;
    letter-spacing: -0.03em;
  }
  .inspection__note-line {
    white-space: nowrap;
  }
  .notice-box {
    gap: 0;
    padding: 14px 14px 16px;
  }
  .notice-box h3 {
    width: 100%;
    padding-bottom: 10px;
    margin: 0 0 10px;
    font-size: clamp(14px, 3.8vw, 17px);
    text-align: left;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .notice-box h3 span {
    font-size: clamp(20px, 5.5vw, 26px);
  }
  .notice-box h3::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 1px;
    transform: none;
  }
  .notice-box ul {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 1.2em;
    font-size: clamp(10px, 2.7vw, 12px);
    line-height: 1.55;
    letter-spacing: -0.02em;
    text-align: left;
  }
  .site-footer {
    display: block;
    margin-bottom: 139px;
  }
  .site-footer__nav {
    display: none;
  }
  .site-footer__company {
    grid-column: 1;
    width: min(100%, 220px);
    max-width: min(100%, 220px);
    padding: 20px 0 24px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
  .site-footer__brand {
    margin-bottom: 16px;
  }
  .site-footer__logo {
    width: 100%;
  }
  .site-footer address {
    font-size: 14px;
  }
  .site-footer__copy {
    grid-column: 1;
    margin-bottom: 0;
    padding: 10px 20px;
  }
}
@media (max-width: 430px) {
  .trust-problem__text .section-heading__label {
    margin-bottom: 16px;
  }
  .trust-problem__text .section-heading__label::before {
    height: 14px;
  }
  .trust-problem__text .section-heading__label::after {
    width: 48px;
  }
  .trust-problem__text h2 {
    margin: 6px 0 0 16px;
    font-size: clamp(18px, 5.2vw, 24px);
    line-height: 1.35;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .trust-problem__text p:not(.section-heading__label) {
    margin-left: 16px;
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.55;
  }
  .trust-problem__text-break {
    display: block;
  }
  .trust-problem__movie-tab {
    min-width: 64px;
    min-height: 44px;
    padding: 0 10px;
    font-size: clamp(11px, 3vw, 12px);
  }
  .trust-problem__movie-link {
    flex-wrap: nowrap;
    font-size: clamp(10px, 2.85vw, 13px);
    line-height: 1.45;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }
  .trust-problem__movie-link span {
    flex: 0 0 auto;
    font-size: 12px;
  }
  .trust-problem__risk {
    width: 100%;
    min-width: 0;
  }
  .trust-problem__risk-image {
    max-width: 100%;
    margin: 0;
  }
  .trust-problem__risk-image img {
    width: 100%;
    max-height: 190px;
    object-fit: cover;
    object-position: center;
  }
  .trust-problem__risk-content {
    min-width: 0;
  }
  .trust-problem__risk-content h2 {
    font-size: clamp(16px, 4.65vw, 21px);
    letter-spacing: -0.04em;
    white-space: nowrap;
  }
  .trust-problem__risk-content h2::after {
    width: 56px;
    height: 2px;
    margin-top: 8px;
  }
  .trust-problem__risk-content > p {
    margin-top: 14px;
    font-size: clamp(11px, 3.1vw, 13px);
    line-height: 1.65;
    letter-spacing: -0.02em;
  }
  .hero__lead {
    display: block;
  }
  .hero__lead-break {
    display: block;
  }
  .hero__inner {
    padding-bottom: 0;
  }
  .hero__visual {
    min-height: 252px;
    margin: -8px 0 -6px;
  }
  .hero__risk-area {
    margin-top: 4px;
    padding: 0 6px;
  }
  .hero__report-label {
    top: 135px;
  }
  .hero__report-note {
    top: 199px;
  }
  .hero__costs {
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: 0;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.09fr) minmax(0, 1.09fr);
  }
  .hero__costs article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 7px 4px;
    text-align: left;
  }
  .hero__costs article > span {
    width: fit-content;
    max-width: 100%;
    font-size: 11px;
    letter-spacing: -0.05em;
    text-align: left;
  }
  .hero__costs strong {
    display: inline-flex;
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
    margin-top: 5px;
  }
  .hero__costs .hero__cost-number {
    font-size: clamp(16px, 5vw, 22px);
  }
  .hero__costs .hero__cost-unit,
  .hero__costs .hero__cost-separator {
    font-size: 11px;
  }
  .hero__alert span {
    gap: 6px;
    padding: 6px 8px;
    margin-bottom: -14px;
    font-size: 12px;
    letter-spacing: -0.04em;
  }
  .hero__alert span img {
    width: 25px;
    height: 30px;
    margin-top: 0;
    margin-bottom: 0;
    object-fit: contain;
  }
  .hero__alert strong {
    padding: 10px 6px;
    font-size: 13px;
    letter-spacing: -0.04em;
  }
  .hero__alert strong::before {
    margin-right: 6px;
    font-size: 10px;
  }
  .hero__cta p {
    font-size: clamp(14px, 4.05vw, 16px);
    letter-spacing: -0.05em;
    white-space: nowrap;
  }
  .hero__cta div {
    gap: 10px;
  }
  .hero__cta small {
    font-size: clamp(8px, 2.75vw, 10px);
    line-height: 1.35;
    letter-spacing: -0.06em;
    white-space: nowrap;
  }
  .hero__cta .button--line {
    min-width: 52px;
    padding: 8px 10px;
    font-size: 0;
    gap: 0;
  }
  .hero__cta .button--line span {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
  .flow .section-heading h2 {
    font-size: clamp(15px, 4.1vw, 18px);
    line-height: 1.45;
  }
  .flow-list li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }
  .flow-list h3 {
    font-size: clamp(15px, 3.9vw, 16px);
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .flow-list p {
    font-size: 12px;
    line-height: 1.55;
  }
  .inspection .section-heading h2 {
    font-size: clamp(15px, 4.1vw, 18px);
    line-height: 1.45;
  }
  .inspection .inspection-heading-line {
    display: inline-block;
    white-space: nowrap;
  }
  .inspection-layout {
    width: 100%;
    max-width: 100%;
  }
  .check-grid {
    gap: 4px;
    width: 100%;
    padding-right: 0;
    padding-bottom: 50px;
    padding-left: 0;
  }
  .check-grid::before {
    right: calc((100% - 8px) / 6);
    bottom: 25px;
    left: calc((100% - 8px) / 6);
    z-index: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.92);
  }
  .check-grid::after {
    bottom: 10px;
    z-index: 2;
    border-color: rgba(255, 255, 255, 0.92);
  }
  .check-grid article {
    padding: 10px 2px 14px;
    overflow: visible;
  }
  .check-grid article::before {
    bottom: -4px;
    z-index: 3;
    width: 8px;
    height: 8px;
  }
  .check-grid article::after {
    bottom: -26px;
    z-index: 1;
    height: 26px;
    background: rgba(255, 255, 255, 0.92);
  }
  .check-grid article:nth-child(2)::after {
    bottom: -42px;
    height: 42px;
  }
  .check-grid__icon {
    width: 52px;
    height: 52px;
  }
  .check-grid__icon img {
    width: 30px;
    height: 30px;
  }
  .check-grid h3 {
    margin: 8px 0 10px;
    padding-bottom: 6px;
    font-size: clamp(10px, 2.85vw, 12px);
    letter-spacing: -0.06em;
    white-space: nowrap;
    overflow: hidden;
  }
  .check-grid h3::after {
    width: 36px;
  }
  .check-grid ul {
    gap: 3px;
    width: 100%;
  }
  .check-grid li {
    padding-left: 11px;
    font-size: clamp(9px, 2.5vw, 10px);
    line-height: 1.35;
    letter-spacing: -0.05em;
    white-space: nowrap;
  }
  .inspection-summary {
    gap: 10px;
    min-width: 0;
    padding: 14px 10px;
    margin-top: 20px;
  }
  .inspection-summary img {
    width: 32px;
    height: 32px;
  }
  .inspection-summary p {
    min-width: 0;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
  }
  .inspection-summary p:first-of-type {
    font-size: clamp(12px, 3.25vw, 14px);
    line-height: 1.4;
  }
  .inspection-summary p:last-of-type {
    padding-top: 12px;
    font-size: clamp(10px, 2.65vw, 11px);
    line-height: 1.55;
  }
  .inspection__note {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    padding: 0 2px;
    font-size: clamp(8.5px, 2.25vw, 10px);
    line-height: 1.4;
    letter-spacing: -0.05em;
  }
  .case__subtitle {
    gap: 8px;
    font-size: clamp(14px, 3.8vw, 17px);
    letter-spacing: -0.03em;
  }
  .case__subtitle::before, .case__subtitle::after {
    width: clamp(18px, 6.5vw, 28px);
  }
  .price .section-heading h2 {
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.5;
    white-space: normal;
    letter-spacing: -0.03em;
  }
  .price-card {
    padding: 20px 16px 22px;
  }
  .price-card__service {
    min-height: 40px;
    padding: 0 12px;
    margin-bottom: 20px;
    font-size: clamp(12px, 3.3vw, 14px);
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .price-card__amount {
    flex-wrap: nowrap;
    gap: 4px;
    padding-bottom: 14px;
    margin-bottom: 16px;
  }
  .price-card__amount strong {
    font-size: clamp(56px, 15vw, 72px);
  }
  .price-card__amount span {
    font-size: clamp(22px, 6vw, 28px);
  }
  .price-card__amount em {
    font-size: clamp(14px, 3.8vw, 18px);
  }
  .price-card__lead {
    font-size: clamp(11px, 2.9vw, 13px);
    line-height: 1.65;
    text-align: left;
  }
}
