﻿:root {
  --blue: #0050a0;
  --blue-bright: #1880ff;
  --blue-dark: #003876;
  --navy: #001030;
  --navy-soft: #001838;
  --navy-2: #080d17;
  --gold: #f0b848;
  --text: #111111;
  --sub: #4d5663;
  --line: #d8e1ec;
  --pale: #f2f5fa;
  --white: #ffffff;
  --font: "Noto Sans JP", sans-serif;
  --max: 1210px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  background-color: var(--white);
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1320px);
  min-height: 112px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__text {
  display: block;
  line-height: 1.25;
}

.brand__symbol {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  border-radius: 10px;
  background-color: var(--blue);
  clip-path: polygon(50% 0, 95% 24%, 95% 76%, 50% 100%, 5% 76%, 5% 24%);
}

.brand__text strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.brand__text span {
  display: block;
  margin-top: 9px;
  font-size: 18px;
  font-weight: 900;
}

.brand__text small {
  display: block;
  margin-top: 6px;
  color: #7d8796;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gnav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
}

.gnav a {
  color: #0b1220;
}

.gnav a.gnav__cta {
  padding: 17px 18px;
  color: var(--white);
  border-radius: 4px;
  background-color: var(--blue);
  box-shadow: 0 8px 18px rgba(0, 80, 160, 0.24);
}

.nav-toggle,
.nav-backdrop {
  display: none;
}

.nav-toggle {
  position: relative;
  z-index: 90;
  width: 48px;
  height: 48px;
  padding: 8px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.nav-toggle small {
  display: block;
  margin-top: 1px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 1040px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 16, 48, 0.2);
  background-image: linear-gradient(90deg, rgba(0, 16, 48, 0.97) 0%, rgba(0, 16, 48, 0.84) 34%, rgba(0, 24, 56, 0.38) 60%, rgba(0, 24, 56, 0.05) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 112px), 1240px);
  margin: 0 auto;
  padding-top: 170px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 650px;
  margin-bottom: 70px;
}

.hero__badges span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 18px;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  background-color: rgba(0, 0, 0, 0.18);
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.02em;
}

.hero h1 em,
.section-title em,
.y-method h2 em {
  color: var(--blue-bright);
  font-style: normal;
}

.hero p {
  max-width: 670px;
  margin: 30px 0 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  gap: 24px;
  margin-top: 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 44px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.button::after {
  margin-left: 16px;
  content: "→";
}

.button--primary {
  color: var(--white);
  background-color: var(--blue);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.04);
}

.button--outline {
  color: #111827;
  border-color: #111827;
  background-color: var(--white);
}

.button--light {
  color: var(--blue);
  background-color: var(--white);
}

.quicknav {
  position: relative;
  padding: 48px 0 70px;
  color: var(--white);
  background-color: var(--navy);
  background-image: radial-gradient(circle at 50% 28%, rgba(0, 80, 160, 0.24), transparent 58%);
  overflow: hidden;
}

.quicknav__marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.quicknav__marquee span {
  flex-shrink: 0;
  padding-right: 80px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(80px, 11vw, 180px);
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
  animation: quicknav-marquee 38s linear infinite;
}

@keyframes quicknav-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.quicknav .container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 160px), 1650px);
  max-width: none;
}

/* ========== 下層ページ共通 ========== */

.page-hero {
  position: relative;
  padding: 72px 0 56px;
  color: var(--white);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 140, 255, 0.32), transparent 60%),
    linear-gradient(180deg, #03204b 0%, #001226 100%);
  overflow: hidden;
}

.page-hero .section-kicker {
  color: var(--blue-bright);
  margin-bottom: 18px;
}

.page-hero__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.page-hero__title em {
  color: var(--blue-bright);
  font-style: normal;
}

.page-hero__lead {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
}

/* パンくず */
.breadcrumb {
  padding: 14px 0;
  background-color: var(--pale);
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 auto;
  padding: 0 24px;
  width: min(calc(100% - 48px), var(--max));
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
  color: var(--sub);
}

.breadcrumb a {
  color: var(--blue);
}

.breadcrumb [aria-current="page"] {
  color: var(--sub);
}

/* 事実ブロック */
.fact-block {
  width: min(calc(100% - 48px), var(--max));
  margin: 36px auto 0;
  padding: 22px 28px;
  border-left: 4px solid var(--blue);
  background-color: var(--pale);
  font-size: 13px;
  line-height: 1.85;
}

.fact-block h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.fact-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.fact-block li {
  margin-bottom: 4px;
  font-weight: 600;
}

/* spec-dl */
.spec-dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px 24px;
  margin: 24px 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background-color: var(--white);
  font-size: 14px;
  line-height: 1.75;
}

.spec-dl dt {
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding-top: 3px;
}

.spec-dl dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 640px) {
  .spec-dl {
    grid-template-columns: 1fr;
    gap: 2px 0;
    padding: 18px 18px 20px;
  }
  .spec-dl dd { margin-bottom: 10px; }
}

/* related-grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.related-grid a {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background-color: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.related-grid a:hover {
  border-color: var(--blue-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(11, 32, 64, 0.08);
}

.related-grid h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.related-grid p {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
}

@media (max-width: 800px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* 番号付きリスト */
.num-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.num-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.num-list li:last-child { border-bottom: 0; }

.num-list strong {
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.num-list h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 900;
}

.num-list p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.85;
  font-weight: 600;
}

/* Y工法 スペック横並び */
.y-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.y-spec-grid > div {
  padding: 18px 20px;
  background-color: var(--pale);
  border-left: 3px solid var(--blue);
}

.y-spec-grid b {
  display: block;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
}

.y-spec-grid span {
  font-size: 12px;
  color: var(--sub);
  font-weight: 700;
}

@media (max-width: 640px) {
  .y-spec-grid { grid-template-columns: 1fr; }
}

/* 出典ラベル */
.ref-note {
  margin-top: 18px;
  padding: 12px 16px;
  background-color: rgba(0, 80, 160, 0.04);
  border-left: 3px solid var(--blue-bright);
  font-size: 12px;
  color: var(--sub);
  font-weight: 700;
}

/* contact フォーム */
.contact-form {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 0;
}

.form-note {
  margin: 0 0 18px;
  color: var(--sub);
  font-size: 13px;
}

.req {
  color: #d32f2f;
  font-weight: 900;
}

.form-row {
  margin-bottom: 22px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--line);
  background-color: var(--white);
  color: var(--text);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--blue-bright);
  outline-offset: -1px;
}

.form-radios,
.form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.form-radios label,
.form-checks label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.check-line {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.form-submit {
  text-align: center;
  margin-top: 14px;
}

/* doc-list (資料請求) */
.doc-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.doc-list li {
  padding: 16px 18px;
  border-left: 3px solid var(--blue-bright);
  background-color: var(--pale);
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.doc-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

/* ========== 性能データグリッド ========== */
.perf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.perf-grid article {
  position: relative;
  padding: 22px 18px 20px;
  text-align: center;
  border: 1px solid var(--line);
  background-color: var(--white);
  border-top: 3px solid var(--blue-bright);
}

.perf-grid strong {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.perf-grid strong span {
  margin-left: 4px;
  font-size: 14px;
  font-weight: 900;
}

.perf-grid p {
  margin: 0;
  color: var(--sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ========== お客様の声 / Voice ========== */
.voice {
  margin: 24px 0;
  padding: 28px 32px 26px;
  background-color: var(--pale);
  border-left: 4px solid var(--blue);
  position: relative;
}

.voice::before {
  content: "❝";
  position: absolute;
  top: 12px;
  right: 24px;
  color: rgba(0, 80, 160, 0.18);
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
}

.voice p {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
  color: var(--text);
}

.voice cite {
  font-style: normal;
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--sub);
}

.voice cite strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  margin-right: 12px;
}

/* ========== ビフォーアフター ========== */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}

.ba-card {
  margin: 0;
  border: 1px solid var(--line);
  background-color: var(--white);
  overflow: hidden;
}

.ba-img {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(0, 80, 160, 0.04) 12px 13px),
    var(--pale);
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ba-card figcaption {
  padding: 12px 18px;
  background-color: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
}

@media (max-width: 540px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ========== 下層用 case-grid（リッチ化） ========== */
main .case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0;
}

main .case-grid a {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  background-color: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

main .case-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--blue-bright);
  box-shadow: 0 12px 24px rgba(11, 32, 64, 0.08);
}

main .case-grid > a > span {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 0 12px;
  color: var(--white);
  background-color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

main .case-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

main .case-grid p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 800px) {
  main .case-grid { grid-template-columns: 1fr; }
}

/* ========== flow-grid（下層流用） ========== */
main .flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 22px 0;
}

main .flow-grid article {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue-bright);
  background-color: var(--white);
}

main .flow-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

main .flow-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

main .flow-grid p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
}

@media (max-width: 900px) {
  main .flow-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  main .flow-grid { grid-template-columns: 1fr; }
}

/* ========== FAQ セクション ========== */
.faq {
  background-color: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.faq-list details {
  border: 1px solid var(--line);
  background-color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(11, 32, 64, 0.06);
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 64px 22px 28px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "Q";
  position: absolute;
  left: 28px;
  top: 22px;
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.95;
}

.faq-list p strong {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 640px) {
  .faq-list summary {
    padding: 18px 50px 18px 20px;
    font-size: 14px;
  }
  .faq-list summary::after {
    right: 20px;
    font-size: 22px;
  }
  .faq-list p {
    padding: 0 20px 20px;
    font-size: 13px;
  }
}

/* ========== 会社情報ミニブロック（MESSAGE内） ========== */
.company-mini {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px 18px;
  margin: 30px 0 0;
  padding: 22px 24px;
  background-color: rgba(0, 80, 160, 0.04);
  border-left: 3px solid var(--blue);
  font-size: 13px;
  line-height: 1.7;
}

.company-mini dt {
  color: var(--blue);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding-top: 3px;
}

.company-mini dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 640px) {
  .company-mini {
    grid-template-columns: 1fr;
    gap: 4px 0;
    padding: 18px 18px 20px;
  }
  .company-mini dd {
    margin-bottom: 8px;
  }
}

/* ========== モバイル固定 CTA バー ========== */
.mobile-cta {
  display: none;
}

@media (max-width: 640px) {
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--navy);
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.25);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 56px;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
  }
  .mobile-cta__tel {
    background-color: var(--blue);
  }
  .mobile-cta__contact {
    background-color: var(--blue-bright);
  }
  body {
    padding-bottom: 60px;
  }
}

/* ========== グローバル統一キッカー ========== */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: currentColor;
  flex-shrink: 0;
}

/* ダークセクションでは水色に */
.quicknav .section-kicker,
.y-method .section-kicker {
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.section-title--white {
  color: var(--white);
}

.quicknav .section-title {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.2;
}

.quicknav__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 16px;
  margin-top: 30px;
}

.quicknav__card {
  min-height: 300px;
  padding: 0 0 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 5px solid var(--blue-bright);
  background: linear-gradient(180deg, rgba(0, 37, 86, 0.92), rgba(0, 29, 66, 0.98));
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.quicknav__card:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 137, 255, 0.86);
  background-color: rgba(255, 255, 255, 0.06);
}

.quicknav__card.is-gold {
  border-color: rgba(241, 184, 58, 0.95);
  border-left-color: var(--gold);
}

.quicknav__card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.quicknav__card strong {
  display: block;
  margin: 16px 20px 0;
  color: var(--white);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 900;
  line-height: 1.35;
}

.quicknav__card span {
  display: block;
  margin: 6px 20px 0;
  color: #d5deea;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 700;
  line-height: 1.5;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background-color: var(--blue);
  background-image: linear-gradient(135deg, #0068c8, #004e9f);
  perspective: 1200px;
}

.stats__item {
  min-height: 250px;
  padding: 62px 30px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transform-style: preserve-3d;
}

.stats__item:first-child {
  border-left: 0;
}

.stats strong {
  display: inline-block;
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1;
  transform-style: preserve-3d;
  animation: stats-flipin 1.1s cubic-bezier(0.22, 1.4, 0.36, 1) backwards;
  cursor: default;
}

.stats__item:nth-child(1) strong { animation-delay: 0.15s; }
.stats__item:nth-child(2) strong { animation-delay: 0.35s; }
.stats__item:nth-child(3) strong { animation-delay: 0.55s; }
.stats__item:nth-child(4) strong { animation-delay: 0.75s; }

@keyframes stats-flipin {
  0% {
    transform: perspective(800px) rotateY(-110deg) scale(0.6);
    opacity: 0;
    filter: blur(4px);
  }
  60% {
    transform: perspective(800px) rotateY(15deg) scale(1.05);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: perspective(800px) rotateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

.stats__item:hover strong {
  animation: stats-spin 0.95s cubic-bezier(0.45, 0.05, 0.25, 1);
}

@keyframes stats-spin {
  0% { transform: perspective(800px) rotateY(0); }
  100% { transform: perspective(800px) rotateY(360deg); }
}

.stats span {
  margin-left: 6px;
  font-size: 22px;
  font-weight: 900;
}

.stats small {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section {
  padding: 88px 0;
}

.section--pale {
  background-color: var(--pale);
}

.lead {
  max-width: 900px;
  margin: -18px 0 40px;
  color: var(--sub);
  font-weight: 600;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.target-card {
  position: relative;
  padding: 16px 20px 26px;
  border: 1px solid var(--line);
  background-color: var(--white);
}

.target-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.target-card > b {
  position: absolute;
  top: 16px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  font-size: 28px;
  background-color: var(--navy);
}

.target-card h3 {
  margin: 22px 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.target-card p {
  margin: 0 0 18px;
  color: #374151;
  font-weight: 600;
}

.target-card ul {
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.target-card li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.target-card li::before {
  margin-right: 10px;
  color: var(--blue);
  content: "▸";
}

.target-card a {
  color: var(--blue);
  font-weight: 900;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.polyurea-visual {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background-color: var(--navy);
}

.polyurea-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.polyurea-visual span {
  position: absolute;
  top: 110px;
  left: 34px;
  color: rgba(255, 255, 255, 0.13);
  font-size: 80px;
  font-weight: 900;
}

.number-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.number-list strong {
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

.number-list h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.number-list p {
  margin: 0;
  color: var(--sub);
  font-size: 14px;
  font-weight: 600;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-weight: 700;
  background-color: var(--white);
}

th,
td {
  padding: 17px 18px;
  text-align: center;
  border: 1px solid var(--line);
}

thead th {
  color: var(--white);
  background-color: var(--navy);
}

tbody th {
  text-align: left;
  background-color: #eef3f9;
}

td:last-child,
thead th:last-child {
  color: var(--blue);
  font-weight: 900;
  background-color: #e7f0fb;
}

.solution-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.solution-grid article,
.case-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-grid article:hover,
.case-grid article:hover {
  transform: translateY(-3px);
  border-color: var(--blue-bright);
  box-shadow: 0 14px 28px rgba(11, 32, 64, 0.10);
}

.solution-grid img,
.case-grid img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.solution-grid > article > span,
.case-grid > article > span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background-color: var(--blue);
}

.solution-grid h3,
.case-grid h3 {
  margin: 16px 18px 8px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.solution-grid article.is-no-photo,
.case-grid article.is-no-photo {
  position: relative;
  min-height: 320px;
  background: linear-gradient(155deg, var(--navy) 0%, #053d80 100%);
  color: var(--white);
  border-color: transparent;
}

.solution-grid article.is-no-photo::before,
.case-grid article.is-no-photo::before {
  content: "PHOTO COMING SOON";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

.solution-grid article.is-no-photo > span,
.case-grid article.is-no-photo > span {
  display: inline-block;
  margin-top: 76px;
  color: var(--blue-bright);
  background-color: transparent;
}

.solution-grid article.is-no-photo > h3,
.case-grid article.is-no-photo > h3 {
  color: var(--white);
}

.solution-grid article.is-no-photo > p,
.case-grid article.is-no-photo > p {
  color: rgba(255, 255, 255, 0.82);
}

.case-grid article.is-no-photo dl {
  color: rgba(255, 255, 255, 0.92);
}

.case-grid article.is-no-photo dt {
  color: var(--blue-bright);
}

.case-grid article.is-no-photo dd {
  color: rgba(255, 255, 255, 0.85);
}

.solution-grid p,
.case-grid p {
  margin: 0 18px 22px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 600;
}

.y-method {
  padding: 72px 0;
  color: var(--white);
  background-color: var(--navy);
  background-image: radial-gradient(circle at 80% 45%, rgba(0, 80, 160, 0.22), transparent 50%);
}

.y-method__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 9px 16px;
  margin: 0 0 26px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  background-color: var(--blue);
  box-shadow: inset 0 0 0 2px rgba(240, 184, 72, 0.95);
}

.y-method h2 {
  margin: 0 0 24px;
  max-width: 720px;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.4;
}

.y-method p {
  color: #d7e0ec;
  font-weight: 600;
}

.y-method__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 34px 0;
}

.y-method__facts span {
  padding: 15px;
  border-left: 4px solid var(--blue-bright);
  background-color: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.y-method__facts b {
  display: block;
  color: var(--blue-bright);
  font-size: 25px;
}

.y-method__visual {
  border: 2px solid var(--blue);
  background-color: rgba(255, 255, 255, 0.03);
}

.case-grid dl {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  margin: 0 18px 22px;
  font-size: 13px;
}

.case-grid dt {
  color: var(--blue);
  font-weight: 900;
}

.case-grid dd {
  margin: 0;
  color: #374151;
  font-weight: 600;
}

.message__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.rep-card {
  position: relative;
  color: var(--white);
  background-color: var(--navy);
}

.rep-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.rep-card::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  background-image: linear-gradient(0deg, rgba(3, 21, 47, 0.92), transparent);
}

.rep-card div {
  position: absolute;
  right: 36px;
  bottom: 36px;
  left: 36px;
  z-index: 1;
}

.rep-card span {
  display: block;
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.rep-card strong {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  line-height: 1.45;
}

.message p {
  color: #4b5563;
  font-weight: 600;
}

.signature {
  padding-top: 30px;
  margin-top: 30px;
  color: #111827;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.cost__lead {
  padding: 24px 30px;
  border-left: 5px solid var(--blue);
  color: #1f2937;
  background-color: #edf3fa;
  font-weight: 700;
}

.cost__lead strong {
  color: var(--blue);
}

.cost-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.cost-card-grid article {
  position: relative;
  isolation: isolate;
  min-height: 280px;
  padding: 70px 30px 32px;
  border: 1px solid var(--line);
  background-color: var(--white);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cost-card-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 100%);
  z-index: 2;
}

.cost-card-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(30, 140, 255, 0.10), transparent 70%);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.cost-card-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--blue-bright);
  box-shadow: 0 18px 36px rgba(11, 32, 64, 0.10);
}

.cost-card-grid article:hover::after {
  transform: scale(1.15);
}

.cost-card-grid b {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 80, 160, 0.18) 0%, rgba(0, 80, 160, 0.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(0, 80, 160, 0.18);
  font-size: 110px;
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.cost-card-grid span {
  position: absolute;
  top: 22px;
  left: 28px;
  z-index: 1;
  display: inline-block;
  padding: 7px 14px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background-color: var(--blue);
  box-shadow: 0 6px 12px rgba(0, 80, 160, 0.25);
}

.cost-card-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.cost-card-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--sub);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.roadmap {
  position: relative;
  margin-top: 34px;
  padding: 56px 56px 64px;
  color: var(--white);
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 88% 8%, rgba(30, 140, 255, 0.22), transparent 36%),
    radial-gradient(circle at 12% 92%, rgba(0, 80, 160, 0.28), transparent 42%),
    linear-gradient(135deg, #021029 0%, #03152f 45%, #042255 100%);
  overflow: hidden;
}

.roadmap::before {
  content: "ROAD MAP 2027";
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  font-size: 180px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.028);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}

.roadmap > * {
  position: relative;
  z-index: 1;
}

.roadmap h3 {
  position: relative;
  margin: 0 0 4px;
  padding-bottom: 14px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.roadmap h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background-color: var(--blue-bright);
}

.roadmap h3 em {
  color: var(--blue-bright);
  font-style: normal;
}

.roadmap > p {
  margin: 14px 0 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
  counter-reset: step;
}

.timeline::before {
  position: absolute;
  top: 38px;
  left: 18px;
  right: 18px;
  height: 2px;
  content: "";
  background-image: linear-gradient(90deg,
    rgba(30, 140, 255, 1) 0%,
    rgba(30, 140, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.18) 100%);
  border-radius: 2px;
}

.timeline span {
  counter-increment: step;
  position: relative;
  padding-top: 80px;
  color: var(--blue-bright);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.timeline span::after {
  content: "STEP 0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.32em;
}

.timeline span::before {
  position: absolute;
  top: 28px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  content: "";
  background-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(30, 140, 255, 0.22),
              0 0 22px rgba(30, 140, 255, 0.55);
}

.timeline span:nth-child(3)::before,
.timeline span:nth-child(4)::before {
  background-color: transparent;
  border: 2.5px solid var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(30, 140, 255, 0.12);
}

.timeline span:nth-child(3),
.timeline span:nth-child(4) {
  color: var(--white);
}

.timeline small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.quickdry {
  padding-top: 88px;
}

.quickdry__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: start;
  gap: 36px;
  margin-bottom: 34px;
}

.quickdry__copy .section-kicker {
  margin-bottom: 16px;
}

.quickdry__copy .section-title {
  margin-bottom: 20px;
}

.quickdry__copy .lead {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 800;
}

.quickdry__body {
  margin: 0;
  color: var(--sub);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.quickdry__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 4px;
}

.quickdry__photos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(11, 32, 64, 0.12);
}

.quickdry__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 0;
}

.quickdry__steps article {
  min-height: 175px;
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue-bright);
  background-color: var(--white);
  box-shadow: 0 6px 18px rgba(11, 32, 64, 0.04);
}

.quickdry__steps strong {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.quickdry__steps strong span {
  font-size: 15px;
  font-weight: 900;
  margin-left: 3px;
}

.quickdry__steps h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 900;
}

.quickdry__steps p {
  margin: 0;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.85;
}

.quickdry__quote {
  margin: 28px 0 0;
  padding: 26px 32px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: end;
  gap: 30px;
  overflow: hidden;
  background-color: var(--pale);
  border-left: 4px solid var(--blue);
}

.quickdry__quote p {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.95;
}

.quickdry__quote cite {
  display: block;
  color: var(--sub);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.quickdry__quote-text {
  padding-bottom: 28px;
}

.quickdry__person {
  margin: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.quickdry__person img {
  width: min(220px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 20px rgba(11, 32, 64, 0.16));
}

.quickdry__person figcaption {
  margin-top: -8px;
  padding: 8px 14px 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.78);
}

.quickdry__person figcaption span,
.quickdry__person figcaption strong {
  display: block;
}

.quickdry__person figcaption strong {
  font-size: 16px;
}

@media (max-width: 900px) {
  .quickdry__intro {
    grid-template-columns: 1fr;
  }

  .quickdry__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .quickdry__quote {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 22px;
  }

  .quickdry__person img {
    width: min(180px, 100%);
  }
}

@media (max-width: 540px) {
  .quickdry__photos {
    grid-template-columns: 1fr;
  }

  .quickdry__quote {
    padding: 24px 22px 0 24px;
    grid-template-columns: 1fr;
  }

  .quickdry__quote-text {
    padding-bottom: 0;
  }

  .quickdry__person {
    margin-top: 10px;
  }

  .quickdry__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .quickdry__steps article {
    padding: 22px 16px;
  }

  .quickdry__steps strong {
    font-size: 38px;
  }
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.movie-grid article,
.trust-grid article,
.ref-grid a,
.flow-grid article {
  border: 1px solid var(--line);
  background-color: var(--white);
}

.movie-thumb {
  display: grid;
  place-items: center;
  height: 180px;
  background-color: var(--navy);
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(255, 255, 255, 0.03) 14px 15px);
}

.movie-thumb span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--blue-bright);
  box-shadow: 0 0 28px rgba(24, 128, 255, 0.55);
}

.movie-thumb span::after {
  display: block;
  width: 0;
  height: 0;
  margin: 20px 0 0 25px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
  content: "";
}

.movie-grid small {
  display: block;
  margin: 18px 18px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
}

.movie-grid h3,
.movie-grid p {
  margin-right: 18px;
  margin-left: 18px;
}

.movie-grid h3 {
  font-size: 17px;
  line-height: 1.55;
}

.movie-grid p {
  color: var(--sub);
  font-size: 14px;
}

.center {
  margin-top: 30px;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: trust;
  margin-top: 36px;
}

.trust-grid article {
  counter-increment: trust;
  position: relative;
  isolation: isolate;
  padding: 60px 26px 36px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(160deg, #052b66 0%, #02132e 100%);
  border-top: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 100%);
  z-index: 2;
}

.trust-grid article::after {
  content: "POINT 0" counter(trust);
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.32em;
}

.trust-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(11, 32, 64, 0.30);
}

.trust-grid strong {
  display: block;
  margin: 0 0 18px;
  font-size: clamp(34px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-bright);
}

.trust-grid h3 {
  position: relative;
  margin: 0 auto 16px;
  padding-bottom: 14px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.trust-grid h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--blue-bright);
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ref-grid a {
  padding: 28px;
}

.ref-grid span {
  display: inline-block;
  padding: 4px 10px;
  color: var(--blue);
  font-weight: 900;
  background-color: #e7f0fb;
}

.ref-grid h3 {
  font-size: 17px;
  line-height: 1.45;
}

.ref-grid b {
  color: var(--blue);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px;
}

.flow-grid article {
  position: relative;
  padding: 28px 22px;
  border-top: 5px solid var(--blue);
}

.flow-grid article + article::before {
  position: absolute;
  top: 48%;
  left: -34px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  content: "›";
}

.flow-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.flow-grid h3 {
  font-size: 16px;
  margin: 8px 0;
  line-height: 1.5;
}

.flow-grid p {
  color: var(--sub);
  font-size: 14px;
}

.cta {
  position: relative;
  padding: 96px 0 104px;
  color: var(--white);
  text-align: center;
  background-color: #001a3a;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(30, 140, 255, 0.32), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 80, 160, 0.45), transparent 65%),
    linear-gradient(180deg, #03204b 0%, #001226 100%);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
  height: 760px;
  max-width: 90vw;
  max-height: 90vw;
  border: 1px solid rgba(30, 140, 255, 0.18);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 540px;
  height: 540px;
  max-width: 70vw;
  max-height: 70vw;
  border: 1px solid rgba(30, 140, 255, 0.28);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: cta-pulse 5.5s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta__bg {
  display: none;
}

.cta__kicker {
  display: inline-block;
  margin: 0 0 22px;
  padding: 7px 18px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  border: 1px solid rgba(30, 140, 255, 0.6);
  background-color: rgba(0, 0, 0, 0.18);
}

.cta h2 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.cta__lead {
  max-width: 850px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
}

.cta__phone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 36px auto 32px;
  padding: 24px 72px;
  background:
    linear-gradient(180deg, rgba(8, 22, 50, 0.7) 0%, rgba(3, 14, 36, 0.7) 100%);
  border: 1px solid rgba(30, 140, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(30, 140, 255, 0.06) inset,
    0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.cta__phone::before,
.cta__phone::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--blue-bright);
}

.cta__phone::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.cta__phone::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}

.cta__phone-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--blue-bright);
  margin-bottom: 4px;
}

.cta__phone-num {
  display: inline-block;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.cta__phone-num::before {
  content: "☎ ";
  color: var(--blue-bright);
  font-size: 0.7em;
  margin-right: 10px;
}

.cta__phone-hours {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 6px;
}

.cta .button {
  margin: 0;
  min-width: 250px;
}

.site-footer {
  position: relative;
  padding: 74px 0 22px;
  color: var(--white);
  background-color: var(--navy-2);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(0, 80, 160, 0.18), transparent 38%),
    linear-gradient(180deg, #03102a 0%, #060c1a 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 0.82fr));
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 18px;
}

.site-footer h3 {
  position: relative;
  padding-bottom: 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background-color: var(--blue-bright);
}

.site-footer p,
.site-footer a {
  display: block;
  color: #c7d3e3;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer a {
  padding: 4px 0;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--blue-bright);
}

.footer-tagline {
  margin: 4px 0 14px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
}

.footer-about {
  margin: 0 0 22px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 13px !important;
  line-height: 1.85 !important;
}

.footer-info {
  margin: 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.6;
}

.footer-info dt {
  color: var(--blue-bright);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.16em;
  padding-top: 2px;
}

.footer-info dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 13px;
}

.footer-info dd a {
  display: inline;
  padding: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.footer-sns {
  margin-top: 18px !important;
}

.footer-sns a {
  display: inline-block;
  padding: 6px 14px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  border: 1px solid rgba(30, 140, 255, 0.5);
}

.footer-sns a:hover {
  color: var(--white);
  background-color: var(--blue-bright);
}

.footer-licenses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 46px auto 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
}

.copyright {
  padding-top: 28px;
  margin: 42px auto 0;
  width: min(calc(100% - 48px), var(--max));
  color: #aab7c8;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 1024px) {
  .site-header__inner {
    min-height: 80px;
  }

  .brand__symbol {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .brand__text strong {
    font-size: 24px;
  }

  .brand__text span {
    margin-top: 6px;
    font-size: 15px;
  }

  .brand__text small {
    margin-top: 4px;
    font-size: 10px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .gnav {
    position: fixed;
    top: 92px;
    left: 20px;
    right: 20px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    font-size: 15px;
    border: 1px solid rgba(0, 84, 166, 0.14);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(0, 24, 64, 0.20);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .gnav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .gnav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(0, 84, 166, 0.10);
  }

  .gnav a.gnav__cta {
    margin-top: 8px;
    padding: 15px 16px;
    text-align: center;
  }

  .nav-backdrop {
    position: fixed;
    inset: 80px 0 0;
    z-index: 70;
    background: rgba(3, 16, 42, 0.36);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
  }

  .nav-backdrop.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    min-height: 760px;
  }

  .hero__inner {
    width: min(calc(100% - 40px), var(--max));
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .quicknav__grid,
  .solution-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .target-grid,
  .about-layout,
  .y-method__grid,
  .message__grid,
  .movie-grid,
  .ref-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .flow-grid,
  .cost-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container,
  .site-header__inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 29px;
  }

  .hero {
    min-height: 700px;
  }

  .hero__inner {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 84px;
  }

  .hero__badges {
    margin-bottom: 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.85;
  }

  .hero__actions,
  .cta div {
    flex-direction: column;
    display: flex;
  }

  .button,
  .cta .button {
    width: 100%;
    margin: 0 0 12px;
  }

  .quicknav__grid,
  .stats,
  .target-grid,
  .solution-grid,
  .case-grid,
  .trust-grid,
  .flow-grid,
  .cost-card-grid,
  .movie-grid,
  .ref-grid {
    grid-template-columns: 1fr;
  }

  .stats__item {
    min-height: 150px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before,
  .flow-grid article + article::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .quicknav .container {
    width: min(calc(100% - 48px), var(--max));
  }
}

@media (max-width: 640px) {
  .quicknav {
    padding: 56px 0;
  }

  .quicknav .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .quicknav .section-kicker {
    font-size: 13px;
  }

  .quicknav .section-title {
    font-size: 34px;
  }

  .quicknav__card {
    min-height: 0;
  }

  .quicknav__card img {
    height: 170px;
  }
}

/* QUICK RECOVERY refresh */
.quickdry {
  padding: 40px 0 48px;
  background:
    radial-gradient(circle at 78% 42%, rgba(24, 128, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f8fbff 100%);
}

.quickdry .container {
  width: min(calc(100% - 48px), 1548px);
  max-width: none;
}

.quickdry__intro {
  grid-template-columns: minmax(0, 650px) minmax(0, 1fr);
  gap: 62px;
  margin-bottom: 22px;
}

.quickdry__copy .section-kicker {
  margin-bottom: 18px;
}

.quickdry__copy .section-title {
  margin: 0 0 18px;
  color: #050913;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.3;
  letter-spacing: 0;
}

.quickdry__copy .lead {
  max-width: none;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.7;
}

.quickdry__body {
  color: #111827;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.9;
}

.quickdry__photos {
  gap: 18px;
  padding-top: 2px;
}

.quickdry__photos img {
  aspect-ratio: 1.18 / 1;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(11, 32, 64, 0.12);
}

.quickdry__steps {
  gap: 26px;
  margin-top: 0;
}

.quickdry__steps article {
  min-height: 174px;
  padding: 26px 48px 24px;
  border-top-width: 4px;
  box-shadow: 0 8px 20px rgba(11, 32, 64, 0.12);
}

.quickdry__steps strong {
  margin-bottom: 10px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1;
}

.quickdry__steps strong span {
  font-size: 15px;
}

.quickdry__steps h3 {
  margin-bottom: 8px;
  color: #050913;
  font-size: 17px;
}

.quickdry__steps p {
  color: #273244;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.quickdry__quote {
  position: relative;
  min-height: 190px;
  margin: 24px 0 0;
  padding: 26px 560px 20px 48px;
  display: block;
  overflow: visible;
  background: linear-gradient(110deg, #f4f8fd 0%, #eef5fc 100%);
  border-left: 6px solid var(--blue);
}

.quickdry__quote::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 650px;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0 43%, rgba(210, 225, 241, 0.86) 43% 100%);
  pointer-events: none;
}

.quickdry__quote-text {
  position: relative;
  z-index: 1;
  padding: 0;
}

.quickdry__quote p {
  margin: 0 0 16px;
  color: #050913;
  font-size: clamp(18px, 1.18vw, 22px);
  font-weight: 900;
  line-height: 1.72;
}

.quickdry__quote cite {
  color: #1d2b3f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.quickdry__person {
  position: absolute;
  z-index: 2;
  right: 110px;
  bottom: 0;
  width: 430px;
  height: 245px;
  margin: 0;
  display: block;
  text-align: left;
}

.quickdry__person img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: none;
  filter: drop-shadow(0 18px 22px rgba(11, 32, 64, 0.14));
}

.quickdry__person figcaption {
  position: absolute;
  left: 292px;
  bottom: 38px;
  min-width: 120px;
  margin: 0;
  padding: 0;
  color: var(--navy);
  background: transparent;
  font-weight: 900;
  text-align: center;
}

.quickdry__person figcaption span {
  padding-bottom: 8px;
  margin-bottom: 10px;
  color: #1d2b3f;
  font-size: 13px;
  border-bottom: 2px solid var(--blue);
}

.quickdry__person figcaption strong {
  font-size: 22px;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .quickdry__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quickdry__quote {
    padding-right: 360px;
  }

  .quickdry__person {
    right: 34px;
    width: 320px;
  }

  .quickdry__person img {
    width: 220px;
  }

  .quickdry__person figcaption {
    left: 218px;
  }
}

@media (max-width: 900px) {
  .quickdry .container {
    width: min(calc(100% - 40px), var(--max));
  }

  .quickdry__steps article {
    padding: 24px 26px;
  }

  .quickdry__quote {
    padding: 28px 30px 0 36px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 20px;
  }

  .quickdry__quote::after {
    width: 340px;
  }

  .quickdry__person {
    position: relative;
    right: auto;
    bottom: auto;
    width: 230px;
    height: 190px;
    align-self: end;
  }

  .quickdry__person img {
    width: 190px;
  }

  .quickdry__person figcaption {
    left: 134px;
    bottom: 26px;
  }
}

@media (max-width: 540px) {
  .quickdry .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .quickdry__copy .section-title {
    font-size: 34px;
  }

  .quickdry__photos {
    gap: 14px;
  }

  .quickdry__steps article {
    min-height: 0;
    padding: 20px 16px;
  }

  .quickdry__quote {
    padding: 24px 22px 0 24px;
    grid-template-columns: 1fr;
  }

  .quickdry__quote::after {
    width: 100%;
    opacity: 0.7;
  }

  .quickdry__person {
    justify-self: center;
    width: 260px;
    height: 190px;
  }

  .quickdry__person img {
    width: 210px;
  }

  .quickdry__person figcaption {
    left: 168px;
    bottom: 24px;
  }
}

/* SOLUTION FOR refresh */
#targets.section {
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 128, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

#targets .container {
  width: min(calc(100% - 212px), 1536px);
  max-width: none;
}

#targets .section-kicker {
  margin-bottom: 20px;
}

#targets .section-title {
  margin: 0;
  color: #050913;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

#targets .target-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 38px;
}

#targets .target-card {
  position: relative;
  padding: 12px 14px 24px;
  overflow: hidden;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: 0 18px 38px rgba(11, 32, 64, 0.12);
}

#targets .target-card img {
  width: 100%;
  height: 246px;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

#targets .target-card > b {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 120px;
  height: 88px;
  display: flex;
  align-items: center;
  padding-left: 26px;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #001431, #062451);
  clip-path: polygon(0 0, 100% 0, 68% 100%, 0 100%);
}

#targets .target-card h3 {
  margin: 20px 18px 8px;
  color: #050913;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 900;
  line-height: 1.4;
}

#targets .target-card p {
  margin: 0 18px 14px;
  color: #172033;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

#targets .target-card ul {
  padding: 0;
  margin: 0 18px 22px;
  list-style: none;
}

#targets .target-card li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px solid #dce3ec;
  color: #101827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

#targets .target-card li::before {
  position: absolute;
  left: 2px;
  top: 12px;
  margin: 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  content: "▸";
}

#targets .target-card a {
  display: inline-flex;
  align-items: center;
  margin: 2px 18px 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  #targets .container {
    width: min(calc(100% - 48px), var(--max));
  }

  #targets .target-grid {
    gap: 24px;
  }

  #targets .target-card img {
    height: 210px;
  }
}

@media (max-width: 1024px) {
  #targets .target-grid {
    grid-template-columns: 1fr;
  }

  #targets .target-card img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  #targets.section {
    padding: 54px 0;
  }

  #targets .container {
    width: min(calc(100% - 28px), var(--max));
  }

  #targets .section-title {
    font-size: 26px;
  }

  #targets .target-grid {
    gap: 18px;
    margin-top: 28px;
  }

  #targets .target-card {
    padding: 10px 10px 22px;
  }

  #targets .target-card img {
    height: 190px;
  }

  #targets .target-card > b {
    top: 10px;
    left: 10px;
    width: 78px;
    height: 56px;
    padding-left: 16px;
    font-size: 20px;
  }

  #targets .target-card h3,
  #targets .target-card p,
  #targets .target-card ul,
  #targets .target-card a {
    margin-right: 12px;
    margin-left: 12px;
  }

  #targets .target-card h3 {
    font-size: 18px;
  }

  #targets .target-card li {
    font-size: 13px;
  }
}

/* MESSAGE refresh */
.message {
  padding: 76px 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(24, 128, 255, 0.08), transparent 36%),
    linear-gradient(180deg, #f7faff 0%, #eef3fa 100%);
}

.message .container {
  width: min(calc(100% - 48px), var(--max));
  max-width: var(--max);
}

.message__grid {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0) 0 43%, rgba(255, 255, 255, 0.94) 43% 100%),
    linear-gradient(180deg, #f7faff, #eef3fa);
  border-radius: 10px;
  box-shadow: 0 22px 48px rgba(11, 32, 64, 0.12);
}

.message__grid::before,
.message__grid::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 190px;
  transform: skewX(-17deg);
  background: rgba(0, 21, 54, 0.05);
  pointer-events: none;
}

.message__grid::before {
  left: 36%;
}

.message__grid::after {
  right: 5%;
  background: rgba(0, 21, 54, 0.035);
}

.message .rep-card {
  position: relative;
  min-height: 620px;
  overflow: visible;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 16, 48, 0.98), rgba(0, 59, 125, 0.84)),
    radial-gradient(circle at 35% 10%, rgba(24, 128, 255, 0.36), transparent 42%);
  clip-path: polygon(0 0, 88% 0, 72% 100%, 0 100%);
}

.message .rep-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.10), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 42px);
  opacity: 0.6;
}

.message .rep-card::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 90px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.message .rep-card img {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: -4px;
  width: min(430px, 78%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.22));
}

.message .rep-card div {
  position: absolute;
  z-index: 3;
  left: 34px;
  right: auto;
  bottom: auto;
  top: 315px;
  width: 180px;
}

.message .rep-card span {
  display: block;
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.message .rep-card strong {
  display: block;
  margin-top: 18px;
  padding-bottom: 26px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.message__body {
  position: relative;
  z-index: 2;
  padding: 72px 66px 62px 52px;
  align-self: center;
}

.message__body .section-kicker {
  margin-bottom: 24px;
}

.message__body .section-title {
  margin: 0 0 24px;
  color: #060b18;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 1.35;
}

.message__body .section-title em {
  color: #0b63d8;
}

.message__body > p:not(.section-kicker):not(.message__statement):not(.signature) {
  margin: 0 0 22px;
  color: #111827;
  font-size: 16px;
  font-weight: 650;
  line-height: 2.08;
}

.message__statement {
  position: relative;
  margin: 24px 0 30px;
  padding: 22px 26px 22px 50px;
  color: #0b63d8;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 30px rgba(11, 32, 64, 0.08);
  transform: skewX(-8deg);
}

.message__statement::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: var(--blue-bright);
}

.message__statement * {
  transform: skewX(8deg);
}

.message .signature {
  padding-top: 22px;
  margin: 0;
  color: #111827;
  border-top: 1px solid #aeb9c8;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .message__grid {
    grid-template-columns: 1fr;
  }

  .message .rep-card {
    min-height: 420px;
    clip-path: none;
  }

  .message .rep-card img {
    right: 8%;
    width: min(360px, 62%);
  }

  .message .rep-card div {
    top: auto;
    bottom: 56px;
  }

  .message__body {
    padding: 48px 38px 52px;
  }
}

@media (max-width: 640px) {
  .message {
    padding: 54px 0;
  }

  .message .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .message__grid {
    min-height: 0;
  }

  .message .rep-card {
    min-height: 360px;
  }

  .message .rep-card img {
    right: -26px;
    width: 280px;
  }

  .message .rep-card div {
    left: 24px;
    bottom: 34px;
  }

  .message__body {
    padding: 34px 22px 38px;
  }

  .message__body .section-title {
    font-size: 28px;
  }

  .message__statement {
    padding: 22px 20px 22px 44px;
    font-size: 22px;
  }

  .message__statement::before {
    left: 22px;
  }
}

/* MESSAGE portrait fit */
.message .rep-card img {
  right: 28px;
  bottom: -10px;
  width: min(410px, 76%);
}

@media (max-width: 1024px) {
  .message .rep-card {
    min-height: 520px;
  }

  .message .rep-card img {
    right: 7%;
    bottom: -10px;
    width: min(340px, 64%);
  }
}

@media (max-width: 640px) {
  .message .rep-card {
    min-height: 450px;
  }

  .message .rep-card img {
    right: -10px;
    bottom: -8px;
    width: 292px;
  }
}

/* ============================================
   メーカー参考画像 REFERENCE セクション
   2026-05-14 Codex 第2フェーズ精査反映
   詳細運用は IMAGE_USAGE_RULES.md 参照
   ============================================ */

.maker-reference {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(0, 84, 166, .16);
  background: #f6f9fd;
}

.reference-disclaimer {
  margin: 0 0 18px;
  color: #10233f;
  font-size: 14px;
  line-height: 1.8;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0, 84, 166, .14);
  box-shadow: 0 10px 28px rgba(0, 32, 80, .08);
}

.reference-grid img,
.reference-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8eef6;
  color: #6c8eb8;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  padding: 16px;
}

.reference-grid figcaption {
  padding: 12px 14px;
  color: #26384f;
  font-size: 12px;
  line-height: 1.7;
}

.reference-grid figcaption strong {
  color: #003f8f;
}

/* ============================================
   グローバルナビ：コーポレートサイト 外部リンク
   2026-05-14 専用サイト化に伴う導線
   ============================================ */
.gnav .gnav__corp {
  font-size: 11px;
  color: var(--text, #26384f);
  opacity: .75;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1.4;
  white-space: nowrap;
  transition: opacity .2s, color .2s, background-color .2s;
}

.gnav .gnav__corp:hover,
.gnav .gnav__corp:focus-visible {
  opacity: 1;
  color: #003f8f;
  background-color: rgba(0, 84, 166, .06);
}

@media (max-width: 1024px) {
  .gnav .gnav__corp {
    font-size: 13px;
    border: none;
    padding: 0;
    opacity: 1;
  }
}

/* ============================================
   施工工程 6ステップ（PROCESS）
   2026-05-14 現行サイト写真資産活用
   ============================================ */
.legacy-process__grid {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  counter-reset: legacy-process;
}

.legacy-process__grid li {
  margin: 0;
}

.legacy-process__grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0, 84, 166, .14);
  box-shadow: 0 12px 30px rgba(0, 32, 80, .08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.legacy-process__grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8eef6;
}

.legacy-process__grid figcaption {
  padding: 14px 16px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 10px;
  align-items: center;
}

.legacy-process__grid figcaption b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand, #003f8f);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  grid-row: 1 / span 2;
}

.legacy-process__grid figcaption strong {
  font-size: 16px;
  color: #10233f;
  line-height: 1.4;
}

.legacy-process__grid figcaption span {
  grid-column: 2;
  font-size: 12.5px;
  color: #41546e;
  line-height: 1.7;
  margin-top: 4px;
}

/* ============================================
   実績ギャラリー（GALLERY）
   ============================================ */
.legacy-gallery__grid {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.legacy-gallery__grid li {
  margin: 0;
}

.legacy-gallery__grid figure {
  margin: 0;
  overflow: hidden;
  background: #e8eef6;
  border: 1px solid rgba(0, 84, 166, .12);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.legacy-gallery__grid figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 32, 80, .12);
}

.legacy-gallery__grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s;
}

.legacy-gallery__grid figure:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .legacy-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .legacy-process__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ============================================
   下層ページ hero 補強画像（生成画像）
   2026-05-14 GENERATED_IMG / gen_hero() 用
   施工事例ではなく「用途・施工・構造イメージ」として表示
   ============================================ */
.page-hero-img {
  margin: 0 auto 32px;
  max-width: 920px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8eef6;
  border: 1px solid rgba(0, 84, 166, .12);
  box-shadow: 0 14px 36px rgba(0, 32, 80, .10);
}

.page-hero-img img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (max-width: 640px) {
  .page-hero-img {
    margin: 0 -16px 24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .page-hero-img img {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================
   関連ページ ナビゲーションカード
   2026-05-14 footer 直前の回遊導線（generic-card 画像化）
   ============================================ */
.navigation-cards__grid {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.navigation-cards__grid li {
  margin: 0;
}

.navigation-cards__grid a {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 84, 166, .14);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.navigation-cards__grid a:hover,
.navigation-cards__grid a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 32, 80, .14);
  border-color: rgba(0, 84, 166, .35);
}

.navigation-cards__grid figure {
  margin: 0;
}

.navigation-cards__grid figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8eef6;
}

.navigation-cards__grid span {
  display: inline-block;
  margin: 14px 16px 6px;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #003f8f;
  background: rgba(0, 84, 166, .08);
  border-radius: 4px;
  align-self: flex-start;
}

.navigation-cards__grid h3 {
  margin: 0 16px 6px;
  font-size: 15px;
  color: #10233f;
  line-height: 1.4;
}

.navigation-cards__grid h3::after {
  content: " →";
  color: #003f8f;
}

.navigation-cards__grid p {
  margin: 0 16px 16px;
  font-size: 12px;
  color: #41546e;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .navigation-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .navigation-cards__grid h3 {
    font-size: 13.5px;
  }
  .navigation-cards__grid p {
    font-size: 11.5px;
  }
}
