:root {
  --navy: #003f8f;
  --navy2: #00377f;
  --deep: #002f73;
  --red: #f90008;
  --orange: #ff6416;
  --text: #111827;
  --soft: #f5faff;
  --line: #dfeaf5;
  --shadow: 0 4px 14px rgba(0, 45, 105, .10);
  --lp-font: "LP Noto Sans JP", "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

@font-face {
  font-family: "LP Noto Sans JP";
  src:
    local("Noto Sans JP"),
    local("NotoSansJP-Regular"),
    url("file:///C:/Windows/Fonts/NotoSansJP-VF.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1160px;
  color: var(--text);
  font-family: var(--lp-font);
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  letter-spacing: 0;
  background: linear-gradient(90deg, #f7fbff 0%, #ffffff 50%, #f6fbff 100%);
}

a {
  text-decoration: none;
}

.container,
.hero-inner {
  width: 1088px;
  margin: 0 auto;
}

.hero {
  height: auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0 45%, rgba(255,255,255,.92) 52%, rgba(255,255,255,0) 67%),
    linear-gradient(90deg, #f8fbff 0%, #fff 45%, #edf5fb 100%);
}

.hero-inner {
  position: relative;
  display: block;
  aspect-ratio: 1672 / 941;
  height: auto;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: none;
}

.hero .hero-inner {
  width: min(1672px, 100%);
}

.hero-copy {
  position: absolute;
  left: 2.75%;
  top: 5.25%;
  z-index: 5;
  width: 45.6%;
  padding: 0;
}

.hero-kicker {
  margin: 0 0 1.4%;
  color: #082447;
  font-size: clamp(30px, 2.58vw, 43px);
  line-height: 1.1;
  font-weight: 900;
}

.hero h1 {
  margin: 0 0 3.1%;
  color: #082447;
  font-size: clamp(46px, 3.83vw, 64px);
  line-height: 1.02;
  font-weight: 900;
}

.hero h1 span {
  display: inline;
  color: var(--red);
  font-size: clamp(56px, 4.67vw, 78px);
  line-height: 1;
  background: linear-gradient(transparent 80%, #fff071 80% 90%, transparent 90%);
  text-shadow: none;
}

.target-line {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 91.8%;
  margin: 0 0 3.5%;
  padding: 1.25% 3.2% 1.35%;
  color: #fff;
  background: #00468f;
  border-radius: 9px;
  font-size: clamp(17px, 1.44vw, 24px);
  line-height: 1;
  font-weight: 900;
}

.target-line span {
  color: #fff;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.target-line b {
  padding: 0;
}

.hero-description {
  margin: 0 0 4.2%;
  color: #09213d;
  font-size: clamp(15px, 1.26vw, 21px);
  line-height: 1.55;
  font-weight: 900;
}

.hero-description strong {
  color: #e60012;
  font-weight: 900;
}

.hero-awards {
  display: block;
  width: 91.6%;
  margin: 0 0 2.65%;
}

.hero-awards img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 604px;
  margin: 0 0 18px;
}

.hero-features article {
  min-height: 124px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 4px 10px 0;
  text-align: center;
  border-right: 1px solid #d9e0e7;
  overflow: visible;
}

.hero-features article:first-child {
  border-left: 0;
}

.hero-features article:last-child {
  border-right: 0;
}

.hero-features img {
  width: 76px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 0;
  display: block;
}

.hero-features p {
  margin: 0;
  color: #082447;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 548px;
  gap: 8px;
  margin-bottom: 25px;
}

.hero-points article,
.white-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0, 55, 127, .07);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.hero-points article {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 13px;
}

.badge-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  border: 4px dotted var(--navy);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.hero-points p {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.48;
  font-weight: 900;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #ff5b11, #ff711b);
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(255, 101, 24, .24);
  font-weight: 900;
}

.cta span {
  position: absolute;
  right: 28px;
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.cta-hero {
  width: 83.8%;
  height: clamp(60px, 5.14vw, 86px);
  margin-left: 3.75%;
  border-radius: 10px;
  font-size: clamp(26px, 2.15vw, 36px);
  z-index: 10;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: -1.6%;
  bottom: 0;
  width: 54.55%;
  z-index: 1;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: right center;
}

.hero-board {
  display: none;
}

.hero-board p {
  margin: 0;
  color: #082447;
  font-size: 40px;
  line-height: 1.42;
  font-weight: 900;
}

.hero-board strong {
  color: #e00012;
  font-size: 62px;
  line-height: 1.1;
}

.hero-proof {
  position: relative;
  width: 548px;
  margin: 15px 0 34px 35px;
  color: #082447;
  text-align: center;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.hero-proof span {
  position: absolute;
  top: 0;
  width: 42px;
  height: 62px;
}

.hero-proof span:first-child {
  left: -34px;
  border-left: 6px solid #d6a733;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.hero-proof span:last-child {
  right: -34px;
  border-right: 6px solid #d6a733;
  border-radius: 50%;
  transform: rotate(20deg);
}

.photo-bg {
  position: absolute;
  inset: 0 -75px 0 0;
  background:
    radial-gradient(circle at 17% 50%, #171e28 0 30px, transparent 31px),
    radial-gradient(circle at 86% 45%, #1e2b3a 0 32px, transparent 33px),
    linear-gradient(90deg, rgba(255,255,255,.06) 0 50%, rgba(255,255,255,.34) 50% 51%, transparent 51%),
    linear-gradient(125deg, #eef4f8 0 32%, #ffffff 32% 55%, #dae6ee 55% 100%);
}

.photo-bg::before {
  content: "";
  position: absolute;
  right: 38px;
  top: 30px;
  width: 150px;
  height: 210px;
  transform: skewY(-7deg);
  opacity: .76;
  background:
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(0,48,95,.13) 25px 29px),
    repeating-linear-gradient(90deg, rgba(0,48,95,.14) 0 22px, transparent 22px 39px),
    linear-gradient(#9eafbd, #c9d3dc);
}

.photo-bg::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 112px;
  height: 5px;
  background: rgba(105, 116, 128, .35);
  box-shadow: 0 72px 0 rgba(255,255,255,.92);
}

.paper {
  position: absolute;
  background: #fff;
  padding: 24px 22px;
  box-shadow: 0 9px 26px rgba(24, 45, 68, .20);
}

.paper strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.paper small {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.paper i {
  display: block;
  width: 104px;
  height: 5px;
  margin-top: 18px;
  background: linear-gradient(90deg, #111 0 34%, #d1d5db 34% 100%);
}

.paper em {
  position: absolute;
  left: 51px;
  bottom: 30px;
  width: 64px;
  height: 64px;
  border: 3px dashed #222;
  border-radius: 50%;
}

.paper-main {
  left: 100px;
  top: 50px;
  width: 175px;
  height: 250px;
}

.paper-sub {
  left: 260px;
  top: 115px;
  width: 164px;
  height: 225px;
  transform: rotate(13deg);
}

.paper-sub strong {
  color: #111;
  font-size: 17px;
}

.pc-card {
  position: absolute;
  left: 260px;
  bottom: 170px;
  width: 158px;
  padding: 16px 18px 10px;
  background: #fff;
  border: 8px solid #2f3842;
  border-bottom-width: 15px;
  box-shadow: 0 10px 18px rgba(0,0,0,.16);
}

.pc-card p {
  margin: 0 0 7px;
  color: #15803d;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.block {
  padding: 55px 0 22px;
  background:
    linear-gradient(90deg, #f5faff 0%, #fff 50%, #f7fbff 100%);
}

.services,
.cases,
.faq-section {
  padding-top: 34px;
}

.services .container {
  width: min(1368px, calc(100vw - 88px));
}

.services h2 {
  margin-bottom: 18px;
  font-size: 38px;
}

h2 {
  margin: 0 0 31px;
  color: var(--navy);
  text-align: center;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 900;
}

.lead {
  margin: 0 0 30px;
  text-align: center;
  color: #1e2f45;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 800;
}

.services .lead {
  color: #111;
}

.problem {
  padding-top: 44px;
}

.problem .container {
  width: min(1640px, calc(100vw - 96px));
}

.problem h2 {
  margin-bottom: 26px;
  font-size: 32px;
  line-height: 1.18;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 1088px;
  margin: 0 auto;
}

.problem-dots {
  width: 8px;
  height: 58px;
  margin: 14px auto 14px;
  background: radial-gradient(circle, #1d6cab 2px, transparent 3px) center / 8px 10px repeat-y;
}

.problem-main-photo {
  display: block;
  width: 500px;
  height: 310px;
  margin: 0 auto 18px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 35, 76, .18);
}

.problem-card {
  min-height: 218px;
  padding: 30px 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #dbe6f3;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 43, 92, .10);
}

.problem-card img {
  display: block;
  width: 58px;
  height: 66px;
  object-fit: contain;
  margin: 0 auto 13px;
}

.problem-card:nth-child(4) img {
  width: 68px;
}

.problem-card h3 {
  margin: 0;
  color: #05080d;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 900;
}

.service-card h3,
.flow-card h3 {
  margin: 13px 0 0;
  color: #06152e;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 900;
}

.icon {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  color: var(--navy);
}

.icon::before,
.icon::after,
.navy-icon::before,
.navy-icon::after,
.shield::before,
.shield::after,
.shake-icon::before,
.shake-icon::after {
  content: "";
  position: absolute;
}

.icon-building::before {
  left: 10px;
  top: 8px;
  width: 34px;
  height: 52px;
  background:
    repeating-linear-gradient(0deg, transparent 0 11px, #fff 11px 15px),
    repeating-linear-gradient(90deg, transparent 0 10px, #fff 10px 15px),
    var(--navy);
}

.icon-building::after,
.icon-person::before {
  right: 7px;
  bottom: 8px;
  width: 30px;
  height: 36px;
  border-radius: 50% 50% 6px 6px;
  background: var(--navy);
}

.icon-alert::before {
  left: 7px;
  top: 5px;
  width: 57px;
  height: 55px;
  background: var(--navy);
  clip-path: polygon(50% 0, 100% 92%, 0 92%);
}

.icon-alert::after {
  left: 32px;
  top: 22px;
  width: 7px;
  height: 25px;
  background: #fff;
  box-shadow: 0 30px 0 -1px #fff;
}

.icon-document::before,
.icon-clipboard::before {
  left: 17px;
  top: 6px;
  width: 36px;
  height: 52px;
  border: 5px solid var(--navy);
  border-radius: 2px;
  background: linear-gradient(135deg, transparent 0 73%, var(--navy) 73% 86%, transparent 86%);
}

.icon-document::after {
  left: 25px;
  top: 24px;
  width: 24px;
  height: 5px;
  background: var(--navy);
  box-shadow: 0 12px 0 var(--navy);
}

.icon-clipboard::after {
  left: 26px;
  top: 0;
  width: 18px;
  height: 14px;
  border: 5px solid var(--navy);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.icon-person::after {
  right: 9px;
  top: 4px;
  content: "?";
  color: var(--navy);
  font-size: 42px;
  font-weight: 900;
}

.warning-box {
  display: block;
  width: 1088px;
  margin: 0 auto;
  padding: 42px 0 34px;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, .98), rgba(255,255,255,.98) 58%, rgba(244,249,255,.98)),
    #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.case-photo {
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(105deg, rgba(255,255,255,.05), rgba(255,255,255,.7)),
    linear-gradient(135deg, #ced9e2, #f4f0e8);
}

.warning-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 282px;
  object-fit: cover;
  border-radius: 10px;
}

.warning-text h3 {
  margin: 0 0 17px;
  color: #e60012;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 900;
  text-align: center;
}

.pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 17px;
}

.pill-row span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 0 10px;
  color: #111;
  background: linear-gradient(180deg, #ffe76a, #ffd52f);
  border-radius: 7px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.pill-row span:nth-child(3) {
  grid-column: auto;
}

.warning-text p,
.service-card p,
.flow-card p,
.case-text p,
.faq-list p {
  margin: 0;
  color: #27364a;
  font-size: 13px;
  line-height: 1.76;
  font-weight: 700;
}

.warning-text p {
  color: #06090f;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 900;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: 880px;
  margin: 0 auto;
}

.service-card:nth-child(1) {
  grid-column: 2 / span 2;
}

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

.service-card:nth-child(n+3) {
  grid-column: span 2;
}

.service-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #dfe8f4;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 43, 92, .10);
}

.service-card img {
  display: block;
  width: 58px;
  height: 66px;
  object-fit: contain;
  margin: 0 auto 13px;
}

.service-card:nth-child(4) img {
  width: 68px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: #05080d;
  font-size: 12px;
  line-height: 1.72;
  font-weight: 700;
}

.icon-tool::before {
  left: 19px;
  top: 4px;
  width: 18px;
  height: 58px;
  border-radius: 9px;
  background: var(--navy);
  transform: rotate(45deg);
}

.icon-tool::after {
  right: 9px;
  top: 5px;
  width: 24px;
  height: 24px;
  border: 8px solid var(--navy);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.icon-factory::before {
  left: 9px;
  bottom: 10px;
  width: 53px;
  height: 39px;
  background: var(--navy);
  clip-path: polygon(0 34%, 20% 15%, 20% 34%, 43% 15%, 43% 34%, 66% 15%, 66% 34%, 100% 34%, 100% 100%, 0 100%);
}

.icon-factory::after {
  left: 12px;
  top: 8px;
  width: 10px;
  height: 48px;
  background: var(--navy);
}

.sub-note {
  margin: 32px 0 24px;
  text-align: center;
  color: #05080d;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 900;
}

.navy-message {
  width: 1080px;
  min-height: 122px;
  display: grid;
  grid-template-columns: 128px 1fr 132px;
  align-items: center;
  margin: 0 auto;
  padding: 20px 48px;
  color: #fff;
  background: linear-gradient(120deg, #00408f, #003174);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 43, 92, .14);
}

.navy-message p {
  margin: 0;
  text-align: center;
  font-size: 32px;
  line-height: 1.45;
  font-weight: 900;
}

.navy-message span {
  color: #ffe45c;
}

.navy-message-icon {
  width: 95px;
  height: 112px;
  object-fit: contain;
}

.navy-message-hand {
  width: 112px;
  height: 108px;
  object-fit: contain;
  justify-self: end;
}

.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 1088px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 62px;
}

.flow-grid::before {
  content: "";
  position: absolute;
  left: 48px;
  right: 24px;
  top: -27px;
  height: 3px;
  display: block;
  background: linear-gradient(90deg, #d7e5f3, #d7e5f3);
}

.flow-grid::after {
  content: "";
  position: absolute;
  right: 13px;
  top: -35px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 17px solid var(--navy);
}

.flow-card {
  position: relative;
  min-height: 218px;
  padding: 36px 20px 22px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 7px 20px rgba(0, 43, 92, .10);
}

.flow-num {
  position: absolute;
  left: 24px;
  top: -42px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle at 34% 26%, #0a57b3, #002e78 70%);
  border: 0;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
  z-index: 2;
}

.flow-card img {
  display: block;
  width: 72px;
  height: 62px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.flow-card h3 {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.flow-card p {
  color: #05080d;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 700;
}

.icon-chat::before {
  left: 8px;
  top: 14px;
  width: 39px;
  height: 29px;
  border: 6px solid var(--navy);
  border-radius: 7px;
}

.icon-chat::after {
  right: 4px;
  top: 8px;
  width: 23px;
  height: 18px;
  border: 5px solid var(--navy);
  border-radius: 5px;
  background: #fff;
}

.icon-search::before {
  left: 8px;
  top: 7px;
  width: 34px;
  height: 34px;
  border: 8px solid var(--navy);
  border-radius: 50%;
}

.icon-search::after {
  right: 8px;
  bottom: 9px;
  width: 31px;
  height: 8px;
  background: var(--navy);
  border-radius: 6px;
  transform: rotate(45deg);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 1088px;
  margin: 0 auto;
}

.case-subcatch {
  margin: -8px 0 22px;
  color: #111;
  text-align: center;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.case-carousel {
  position: relative;
  width: 1088px;
  margin: 0 auto;
}

.case-viewport {
  overflow: hidden;
  padding: 10px 0 18px;
}

.case-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform .36s ease;
  will-change: transform;
}

.case-carousel .case-card {
  flex: 0 0 620px;
  opacity: .34;
  filter: saturate(.8);
  transform: scale(.92);
  transform-origin: center;
  pointer-events: none;
  transition: opacity .28s ease, filter .28s ease, transform .28s ease;
}

.case-carousel .case-card.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  pointer-events: auto;
}

.case-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #00468f;
  box-shadow: 0 5px 14px rgba(0, 43, 92, .22);
  cursor: pointer;
  transform: translateY(-50%);
}

.case-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translate(-50%, -50%);
}

.case-nav-prev {
  left: -18px;
}

.case-nav-prev::before {
  margin-left: -2px;
  border-right: 11px solid #fff;
}

.case-nav-next {
  right: -18px;
}

.case-nav-next::before {
  margin-left: 2px;
  border-left: 11px solid #fff;
}

.case-card {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  min-height: 238px;
  padding: 24px 22px 20px 78px;
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(0, 43, 92, .10);
}

.case-label {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 86px;
  padding-top: 10px;
  color: #fff;
  background: var(--navy);
  text-align: center;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
}

.case-label b {
  display: block;
  font-size: 28px;
}

.case-photo {
  display: block;
  width: 140px;
  height: 190px;
  object-fit: cover;
  border-radius: 5px;
}

.case-text h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.case-text p {
  color: #111827;
  font-size: 13px;
  line-height: 1.78;
  font-weight: 700;
}

.case-text p + p {
  margin-top: 7px;
}

.faq-section {
  padding-bottom: 19px;
}

.faq-list {
  display: grid;
  gap: 7px;
}

.faq-list article {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: stretch;
  min-height: 72px;
  background: #fff;
  border: 1px solid rgba(0, 55, 127, .08);
  border-radius: 5px;
  box-shadow: 0 3px 12px rgba(0, 45, 105, .08);
  overflow: hidden;
}

.faq-list b {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  font-size: 21px;
  font-weight: 900;
}

.faq-list button {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 10px 0 10px 17px;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq-list button span {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.faq-list i {
  position: relative;
  width: 16px;
  height: 16px;
  justify-self: center;
  transition: transform .18s ease;
}

.faq-list i::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  transform: rotate(45deg);
}

.faq-list article.is-open i {
  transform: rotate(180deg);
}

.faq-list article > p {
  grid-column: 2;
  display: none;
  padding: 0 56px 16px 17px;
}

.faq-list article.is-open > p {
  display: block;
}

.final-cta {
  padding: 30px 0 22px;
  background: linear-gradient(90deg, #f5faff, #fff, #f5faff);
}

.final-inner {
  position: relative;
  display: block;
  width: 1088px;
  min-height: 226px;
  padding: 38px 66px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 12%, rgba(42, 114, 205, .28), transparent 34%),
    linear-gradient(135deg, #003f93 0%, #002f7d 50%, #003a8a 100%);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 38, 92, .18);
}

.final-copy {
  width: 720px;
  margin: 0 auto;
  text-align: center;
}

.shield {
  position: absolute;
  left: 60px;
  top: 39px;
  width: 146px;
  height: 164px;
  border: 0;
  border-radius: 0;
  opacity: 1;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 310'%3E%3Cg opacity='.25'%3E%3Cpath d='M130 20C94 50 61 68 29 81v82c0 65 39 112 101 141 62-29 101-76 101-141V81c-32-13-65-31-101-61Z' fill='none' stroke='%23ffffff' stroke-width='18' stroke-linejoin='round'/%3E%3Cpath d='M92 148v-29c0-24 16-43 38-43s38 19 38 43v29' fill='none' stroke='%23ffffff' stroke-width='16' stroke-linecap='round'/%3E%3Crect x='78' y='148' width='104' height='75' rx='12' fill='none' stroke='%23ffffff' stroke-width='16'/%3E%3Ccircle cx='130' cy='182' r='9' fill='%23ffffff'/%3E%3Cpath d='M130 191l-7 23h14l-7-23Z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E")
    center / contain no-repeat;
}

.shield::before {
  display: none;
}

.shield::after {
  display: none;
}

.final-copy h2 {
  margin: 0 0 16px;
  color: #fff;
  text-align: center;
  font-size: 27px;
  line-height: 1.52;
  font-weight: 750;
}

.final-copy p {
  margin: 0 0 23px;
  color: #fff;
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 750;
}

.final-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.final-tags span {
  min-width: 128px;
  padding: 9px 16px 10px;
  color: #ffe600;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 4px;
  text-align: center;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.final-tags span:nth-child(3) {
  min-width: 178px;
}

.contact-form-section {
  padding: 34px 0 68px;
  background: #fff;
}

.contact-form-section .container {
  width: 940px;
}

.contact-heading {
  margin: 0 0 28px;
  color: var(--navy);
  text-align: center;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 900;
}

.contact-form {
  color: #05080d;
  font-size: 16px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 292px 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 42px;
}

.form-row > label,
.form-row > legend {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
  white-space: nowrap;
}

.required,
.optional {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  place-items: center;
  min-width: 28px;
  height: 18px;
  padding: 0 5px;
  color: #fff;
  background: #0b55b4;
  border-radius: 2px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.optional {
  background: #6b7280;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  color: #111827;
  border: 1px solid #c8c8c8;
  border-radius: 0;
  background: #fff;
  font-family: var(--lp-font);
  font-size: 16px;
  font-weight: 600;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c6cbd1;
}

.split-fields {
  display: grid;
  grid-template-columns: 22px 1fr 22px 1fr;
  gap: 12px;
  align-items: center;
}

.split-fields > span {
  font-size: 15px;
  font-weight: 700;
}

.stacked-inputs > div {
  display: grid;
  gap: 22px;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-form input[type="file"] {
  font-family: var(--lp-font);
  font-size: 15px;
  font-weight: 700;
  padding-top: 6px;
}

.radio-row {
  border: 0;
  padding: 0;
}

.radio-list {
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

.radio-list label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
}

.radio-list input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.form-submit {
  margin-top: 52px;
  text-align: center;
}

.form-submit button {
  width: 255px;
  height: 62px;
  color: #fff;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff5b11, #ff6a19);
  font-family: var(--lp-font);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.floating-contact {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 299px;
  z-index: 1000;
  filter: drop-shadow(0 8px 18px rgba(0, 30, 70, .24));
}

.floating-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.floating-phone {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 9px;
  background: #fff;
  flex-direction: column;
}

.floating-phone span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-title {
  color: #fff;
  background: #b51e25;
  width: 100%;
  height: 60px;
  font-size: 21px;
  letter-spacing: 0;
}

.floating-number {
  position: relative;
  color: #10223b;
  background: #fff;
  width: 100%;
  height: 68px;
  font-size: 29px;
  line-height: 1;
  padding-left: 58px;
}

.floating-number::before {
  content: "☎";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: #bd1f28;
  font-size: 23px;
  line-height: 1;
}

.floating-number::after {
  display: none;
}

.floating-form {
  height: 70px;
  gap: 13px;
  margin-top: 13px;
  border-radius: 9px;
  background: #14a94f;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .12);
  font-size: 23px;
}

.floating-mail-icon {
  position: relative;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
}

.floating-mail-icon::before {
  content: "✉";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #14a94f;
  font-size: 23px;
  line-height: 1;
}

.floating-mail-icon::after {
  display: none;
}

/* FV: exact visual reference */
.hero {
  height: auto;
  overflow: hidden;
  background: #fff;
}

.hero .hero-inner.hero-image-fv {
  position: relative;
  display: block;
  width: min(1672px, 100%);
  aspect-ratio: auto;
  height: auto;
  margin: 0 auto;
  background: #fff;
}

.hero .hero-inner.hero-image-fv::before {
  display: none;
}

.hero-visual-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  pointer-events: none;
}

.hero-mobile-photo {
  display: none;
}

.hero-sp-fv-image {
  display: none;
}

.hero-sp-html-fv {
  display: none;
}

.sp-target-text {
  display: none;
}

.sp-desc-break {
  display: none;
}

.hero-right-replacement {
  display: none;
}

.hero-visual-link {
  position: absolute;
  left: 4.4%;
  bottom: 4.7%;
  width: 38.4%;
  height: 9.6%;
  border-radius: 999px;
  z-index: 10;
}

.hero-text-overlay {
  position: absolute;
  left: 2.45%;
  top: 4.7%;
  width: 45.2%;
  min-height: 48%;
  z-index: 12;
  padding: .2% 0 1.2%;
  background: transparent;
}

.hero-text-overlay .hero-kicker {
  margin: 0 0 1.1%;
  color: #082447;
  font-size: clamp(34px, 3.05vw, 51px);
  line-height: 1.08;
  font-weight: 900;
}

.hero-text-overlay h1 {
  margin: 0 0 3.5%;
  color: #082447;
  font-size: clamp(55px, 4.65vw, 78px);
  line-height: 1.24;
  font-weight: 900;
}

.hero-text-overlay h1 span {
  color: var(--red);
  font-size: clamp(68px, 5.65vw, 94px);
  line-height: 1;
  background: linear-gradient(transparent 80%, #fff071 80% 90%, transparent 90%);
}

.hero-text-overlay .target-line {
  width: 100%;
  margin: 0 0 3.2%;
  padding: 1.5% 2.6% 1.6%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
  background: #00468f;
  color: #fff;
  font-size: clamp(19px, 1.62vw, 27px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.hero-text-overlay .hero-description {
  margin: 0;
  color: #09213d;
  font-size: clamp(16px, 1.42vw, 23px);
  line-height: 1.58;
  font-weight: 900;
}

.hero-text-overlay .hero-description strong {
  color: #e60012;
  font-weight: 900;
}

.hero-text-overlay .hero-description .desc-line {
  display: block;
  white-space: nowrap;
}

.hero-text-overlay .hero-description .desc-accent {
  color: #f05b00;
}

.hero-awards-overlay {
  position: absolute;
  left: 2.65%;
  top: 57.25%;
  width: 41.9%;
  height: auto;
  z-index: 11;
}

.hero-cta-overlay {
  position: absolute;
  left: 4.43%;
  bottom: 1.8%;
  width: 38.1%;
  height: 9.15%;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #f05b00 0%, #f26a00 100%);
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(230, 84, 0, .28);
  font-size: clamp(24px, 2.52vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.hero-cta-overlay span {
  position: absolute;
  right: 6.5%;
  width: 3.1%;
  aspect-ratio: 1 / 1;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: rotate(45deg);
}

.hero-image-fv .hero-copy,
.hero-image-fv .hero-photo,
.hero-image-fv .hero-board,
.hero-image-fv .hero-awards {
  display: none !important;
}

@media (max-width: 767px) {
  body {
    min-width: 0;
    overflow-x: hidden;
    background: #fff;
  }

  .container,
  .hero-inner {
    width: 100%;
  }

  .hero {
    background: #fff;
    overflow: hidden;
  }

  .hero .hero-inner.hero-image-fv {
    width: min(100%, 390px);
    margin: 0 auto;
    padding: 12px 10px 10px;
    background:
      linear-gradient(90deg, rgba(245, 251, 255, .95), #fff 48%, rgba(235, 246, 255, .9));
  }

  .hero-visual-img {
    display: none;
  }

  .hero-text-overlay {
    position: relative;
    left: auto;
    top: auto;
    z-index: 2;
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .hero-text-overlay .hero-kicker {
    margin: 0 0 5px;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 900;
  }

  .hero-text-overlay h1 {
    margin: 0 0 9px;
    font-size: 37px;
    line-height: 1.18;
    font-weight: 900;
  }

  .hero-text-overlay h1 span {
    font-size: 45px;
    background: linear-gradient(transparent 78%, #fff071 78% 91%, transparent 91%);
  }

  .hero-text-overlay .target-line {
    width: 100%;
    margin: 0 0 9px;
    padding: 8px 9px 9px;
    border-radius: 4px;
    justify-content: flex-start;
    text-align: left;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
  }

  .hero-text-overlay .target-line .pc-target-text {
    display: none;
  }

  .hero-text-overlay .target-line .sp-target-text {
    display: inline;
  }

  .hero-text-overlay .hero-description {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
  }

  .hero-text-overlay .hero-description .desc-line {
    white-space: normal;
  }

  .hero-text-overlay .hero-description .sp-desc-break {
    display: block;
  }

  .hero-mobile-photo {
    display: block;
    width: calc(100% + 20px);
    height: auto;
    margin: 0 -10px 9px;
    object-fit: contain;
    object-position: center;
  }

  .hero-awards-overlay {
    position: relative;
    left: auto;
    top: auto;
    z-index: 2;
    display: block;
    width: 100%;
    margin: 0 auto 10px;
  }

  .hero-cta-overlay {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 2;
    width: calc(100% - 28px);
    height: 46px;
    margin: 0 auto;
    border-radius: 7px;
    font-size: 23px;
    box-shadow: 0 7px 12px rgba(230, 84, 0, .25);
  }

  .hero-cta-overlay span {
    right: 8%;
    width: 10px;
  }
}

@media (max-width: 767px) {
  .block {
    padding: 34px 0;
  }

  .problem .container,
  .services .container,
  .flow-section .container,
  .cases .container,
  .faq-section .container,
  .final-cta .container,
  .contact-form-section .container {
    width: calc(100% - 24px);
  }

  .problem h2,
  .services h2,
  .flow-section h2,
  .cases h2,
  .faq-section h2,
  .contact-heading {
    font-size: 25px;
    line-height: 1.35;
  }

  .problem-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .problem-card {
    min-height: 176px;
    padding: 18px 10px 16px;
  }

  .problem-card img {
    width: 44px;
    height: 50px;
  }

  .problem-card:nth-child(4) img {
    width: 52px;
  }

  .problem-card h3 {
    font-size: 12px;
    line-height: 1.55;
  }

  .problem-dots {
    height: 44px;
    margin: 10px auto;
  }

  .problem-main-photo {
    width: 86%;
    height: 210px;
  }

  .warning-box {
    width: 100%;
    padding: 28px 10px 26px;
  }

  .warning-text h3,
  .warning-text p {
    font-size: 18px;
  }

  .pill-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .pill-row span {
    min-height: 48px;
    font-size: 18px;
  }

  .service-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(n+3) {
    grid-column: auto;
  }

  .service-card:nth-child(5) {
    grid-column: 1 / -1;
    width: calc((100% - 10px) / 2);
    justify-self: center;
  }

  .sub-note {
    font-size: 14px;
  }

  .case-subcatch {
    font-size: 14px;
    line-height: 1.55;
  }

  .navy-message {
    width: 100%;
    grid-template-columns: 1fr;
    min-height: 92px;
    padding: 14px 12px;
  }

  .navy-message p {
    font-size: 18px;
    line-height: 1.55;
  }

  .navy-message-icon {
    display: none;
  }

  .navy-message-hand {
    display: none;
  }

  .flow-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flow-grid::before {
    display: none;
  }

  .flow-grid::after {
    display: none;
  }

  .flow-card {
    position: relative;
    min-height: 0;
  }

  .flow-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -32px;
    z-index: 3;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 34px solid #15479a;
  }

  .case-carousel {
    width: 100%;
  }

  .case-carousel .case-card {
    flex-basis: 82vw;
    grid-template-columns: 112px 1fr;
    padding: 22px 14px 18px 58px;
  }

  .case-photo {
    width: 112px;
    height: 190px;
  }

  .case-text h3 {
    font-size: 15px;
  }

  .case-text p {
    font-size: 11px;
  }

  .case-nav-prev {
    left: 0;
  }

  .case-nav-next {
    right: 0;
  }

  .faq-list article {
    grid-template-columns: 52px 1fr;
  }

  .faq-list button span {
    font-size: 13px;
  }

  .final-inner {
    width: 100%;
    min-height: 0;
    padding: 28px 16px 26px;
  }

  .shield {
    display: none;
  }

  .final-copy {
    width: 100%;
  }

  .final-copy h2 {
    font-size: 21px;
  }

  .final-copy p {
    font-size: 14px;
  }

  .final-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .final-tags span {
    min-width: 0;
    font-size: 16px;
  }

  .final-tags span:nth-child(3) {
    min-width: 0;
  }

  .contact-form {
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .split-fields {
    grid-template-columns: 24px 1fr 24px 1fr;
  }

  .floating-contact {
    right: 10px;
    bottom: 10px;
    width: 240px;
  }

  .floating-title {
    height: 45px;
    font-size: 17px;
  }

  .floating-number {
    height: 52px;
    font-size: 22px;
  }

  .floating-form {
    height: 52px;
    font-size: 19px;
  }
}

/* PC floating CTA is removed; SP uses a bottom sticky CTA bar. */
.floating-contact {
  display: none;
}

.floating-contact.is-hidden {
  display: none !important;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 86px;
  }

  .warning-text h3 {
    font-size: 13px;
    line-height: 1.55;
    white-space: nowrap;
  }

  .warning-text p {
    font-size: 13px;
    line-height: 1.55;
  }

  .services .lead {
    font-size: 13px;
    line-height: 1.55;
  }

  .floating-contact {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 8px 8px 10px;
    background: #fff;
    filter: none;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .16);
  }

  .floating-contact a {
    min-width: 0;
    color: #fff;
    border-radius: 5px;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .22);
  }

  .floating-close {
    position: absolute;
    left: 0;
    top: -50px;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c9c9c9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    cursor: pointer;
  }

  .floating-close::before,
  .floating-close::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 24px;
    width: 26px;
    height: 7px;
    border-radius: 99px;
    background: #fff;
  }

  .floating-close::before {
    transform: rotate(45deg);
  }

  .floating-close::after {
    transform: rotate(-45deg);
  }

  .floating-phone {
    position: relative;
    height: 66px;
    padding: 0 8px 0 58px;
    overflow: visible;
    align-items: flex-start;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    background: #b51e25;
  }

  .floating-phone::before {
    content: "\260E";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 50%;
    color: #b51e25;
    background: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
  }

  .floating-phone span {
    display: block;
    justify-content: flex-start;
    text-align: left;
  }

  .floating-title {
    width: auto;
    height: auto;
    color: #fff;
    background: transparent;
    font-size: 18px;
    line-height: 1.08;
  }

  .floating-number {
    width: auto;
    height: auto;
    padding-left: 0;
    color: #fff;
    background: transparent;
    font-size: 20px;
    line-height: 1.1;
  }

  .floating-number::before,
  .floating-number::after {
    display: none;
  }

  .floating-form {
    height: 66px;
    gap: 9px;
    margin-top: 0;
    border-radius: 5px;
    background: #14a94f;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .22);
    font-size: 21px;
    line-height: 1;
    white-space: nowrap;
  }

  .floating-mail-icon {
    width: 42px;
    height: 42px;
  }

  .floating-mail-icon::before {
    content: "\2709";
    color: #14a94f;
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: clamp(78px, 21.53vw, 96px);
  }

  .floating-contact {
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: clamp(78px, 21.53vw, 96px);
    padding: 0;
    background: transparent url("./assets/sp-floating-cta.webp") center bottom / 100% auto no-repeat;
    box-shadow: none;
    filter: none;
    pointer-events: none;
  }

  .floating-contact a,
  .floating-close {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    overflow: hidden;
    pointer-events: auto;
  }

  .floating-contact a span,
  .floating-phone::before,
  .floating-number::before,
  .floating-number::after,
  .floating-mail-icon,
  .floating-mail-icon::before,
  .floating-mail-icon::after,
  .floating-close::before,
  .floating-close::after {
    display: none;
  }

  .floating-close {
    left: 0;
    top: 0;
    width: 8.4%;
    height: 34%;
    cursor: pointer;
  }

  .floating-phone {
    left: 3%;
    top: 21%;
    width: 52.8%;
    height: 78%;
  }

  .floating-form {
    left: 54.4%;
    top: 21%;
    width: 45.6%;
    height: 78%;
  }
}

@media (max-width: 767px) {
  .hero .hero-inner.hero-image-fv {
    overflow: hidden;
    padding-bottom: 14px;
    background: linear-gradient(90deg, rgba(245, 251, 255, .95), #fff 48%, rgba(235, 246, 255, .9));
  }

  .hero-mobile-photo {
    display: block;
    width: calc(100% + 20px);
    height: auto;
    margin: 0 -10px -48px;
    object-fit: contain;
    object-position: center;
  }

  .hero-awards-overlay {
    position: relative;
    z-index: 5;
    display: block;
    width: calc(100% - 8px);
    margin: 0 auto 8px;
    background: transparent;
  }

  .hero-cta-overlay {
    position: relative;
    z-index: 6;
    display: grid;
    place-items: center;
    width: calc(100% - 34px);
    height: 46px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    background: linear-gradient(90deg, #f05b00 0%, #ff6a00 100%);
  }

  .hero-cta-overlay span {
    display: none;
  }

  .hero-cta-overlay::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }

  .service-card h3 {
    font-size: 13px;
    line-height: 1.42;
  }

  .service-card p {
    font-size: 10px;
    line-height: 1.62;
  }
}

@media (max-width: 767px) {
  .hero {
    background: #001d45;
  }

  .hero .hero-inner.hero-image-fv {
    width: min(100%, 390px);
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background: #001d45;
  }

  .hero-visual-img,
  .hero-text-overlay,
  .hero-mobile-photo,
  .hero-awards-overlay,
  .hero-cta-overlay {
    display: none !important;
  }

  .hero-sp-fv-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .hero .hero-inner.hero-image-fv {
    width: min(100%, 390px);
    min-height: 705px;
    padding: 0;
    background: #001d45;
  }

  .hero-sp-fv-image,
  .hero-visual-img,
  .hero-text-overlay,
  .hero-mobile-photo,
  .hero-awards-overlay,
  .hero-cta-overlay {
    display: none !important;
  }

  .hero-sp-html-fv {
    position: relative;
    display: block;
    min-height: 705px;
    overflow: hidden;
    color: #fff;
    background:
      radial-gradient(circle at 28% 57%, rgba(0, 219, 255, .78), transparent 18%),
      radial-gradient(circle at 87% 73%, rgba(0, 150, 255, .52), transparent 26%),
      linear-gradient(135deg, rgba(0, 112, 221, .46) 0 2px, transparent 2px 34px),
      linear-gradient(150deg, rgba(27, 201, 255, .42) 0 4px, transparent 4px 62px),
      linear-gradient(180deg, #061c42 0%, #003d91 56%, #001e4c 100%);
  }

  .hero-sp-html-fv::before,
  .hero-sp-html-fv::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hero-sp-html-fv::before {
    background:
      linear-gradient(112deg, transparent 0 18%, rgba(0, 214, 255, .36) 19%, transparent 24%),
      linear-gradient(68deg, transparent 0 48%, rgba(0, 196, 255, .34) 49%, transparent 55%),
      linear-gradient(148deg, transparent 0 62%, rgba(0, 164, 255, .28) 63%, transparent 69%);
    mix-blend-mode: screen;
  }

  .hero-sp-html-fv::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), transparent 28%, rgba(0, 0, 0, .18));
  }

  .sp-fv-brand {
    position: absolute;
    left: 15px;
    top: 26px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
  }

  .sp-fv-logo {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #f6262f;
    font-size: 14px;
    line-height: 1;
  }

  .sp-fv-contact {
    position: absolute;
    right: 15px;
    top: 20px;
    z-index: 3;
    display: grid;
    justify-items: center;
    color: #fff;
    font-weight: 900;
    text-align: center;
  }

  .sp-fv-contact span {
    display: grid;
    place-items: center;
    width: 96px;
    height: 31px;
    margin-bottom: 7px;
    border-radius: 2px;
    background: linear-gradient(180deg, #ff9b1e, #ff7600);
    font-size: 17px;
  }

  .sp-fv-contact b {
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: .02em;
  }

  .sp-fv-contact small {
    font-size: 11px;
    line-height: 1.2;
  }

  .sp-fv-title {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 112px;
    z-index: 3;
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 900;
    text-shadow: 0 4px 0 rgba(0, 0, 0, .28), 0 0 10px rgba(255, 255, 255, .18);
  }

  .sp-fv-rescue {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 294px;
    z-index: 3;
    margin: 0;
    color: #ffd420;
    text-align: center;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.02em;
    text-shadow: 0 4px 0 rgba(0, 0, 0, .28), 0 0 8px rgba(255, 226, 84, .26);
  }

  .sp-fv-sub {
    position: absolute;
    left: 42px;
    right: 42px;
    top: 354px;
    z-index: 3;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
  }

  .sp-fv-sub::before,
  .sp-fv-sub::after {
    content: "";
    flex: 1 1 32px;
    height: 2px;
    background: rgba(255, 255, 255, .9);
  }

  .sp-fv-pse {
    position: absolute;
    left: 34px;
    top: 410px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 126px;
    height: 126px;
    border: 7px solid #050505;
    border-radius: 50%;
    color: #000;
    background: #fff;
    box-shadow: 0 0 18px rgba(0, 228, 255, .95);
    font-family: Arial, sans-serif;
    font-size: 45px;
    line-height: .84;
    font-weight: 800;
  }

  .sp-fv-woman {
    position: absolute;
    right: -88px;
    bottom: 78px;
    z-index: 2;
    width: 330px;
    height: 340px;
    background: url("./assets/hero-woman-cutout.webp") center bottom / contain no-repeat;
  }

  .sp-fv-awards {
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 18px;
    z-index: 4;
    height: 123px;
    background: url("./assets/hero-awards-transparent.webp") center bottom / contain no-repeat;
  }

  .floating-contact.is-over-hero {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hero .hero-inner.hero-image-fv {
    width: min(100%, 390px);
    min-height: 0;
    background: #001d45;
  }

  .hero-sp-html-fv {
    aspect-ratio: 941 / 1672;
    min-height: 0;
    background: #001d45 url("./assets/sp-fv-bg.webp") center top / cover no-repeat;
  }

  .hero-sp-html-fv::before,
  .hero-sp-html-fv::after {
    display: none;
  }

  .sp-fv-title,
  .sp-fv-rescue,
  .sp-fv-sub,
  .sp-fv-brand,
  .sp-fv-contact {
    color: #fff !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
  }

  .sp-fv-brand {
    left: 14px;
    top: 27px;
    width: 255px;
    height: 36px;
    gap: 0;
    background: url("./assets/sp-fv-logo-exact.webp") left center / contain no-repeat;
  }

  .sp-fv-brand > * {
    display: none;
  }

  .sp-fv-title {
    top: 112px;
    font-size: 41px;
    line-height: 1.18;
    text-shadow: 0 4px 0 rgba(0, 0, 0, .34), 0 0 8px rgba(255, 255, 255, .22);
  }

  .sp-fv-rescue {
    top: 292px;
    color: #ffd51f !important;
    font-size: 34px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, .36), 0 0 9px rgba(255, 215, 31, .25);
  }

  .sp-fv-sub {
    top: 354px;
    font-size: 21px;
  }

  .sp-fv-pse {
    display: none;
  }

  .sp-fv-woman {
    left: -1px;
    right: auto;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 52.4%;
    background: url("./assets/sp-fv-person-pse.webp") center bottom / contain no-repeat;
  }

  .sp-fv-awards {
    left: 10px;
    right: 10px;
    bottom: 18px;
    z-index: 5;
    height: 142px;
    background: url("./assets/sp-fv-awards-cutout.webp") center center / contain no-repeat;
  }
}

@media (max-width: 767px) {
  .hero-sp-html-fv {
    aspect-ratio: 941 / 1672;
    min-height: 0;
    background: #001d45 url("./assets/sp-fv-final.webp") center top / cover no-repeat;
  }

  .hero-sp-html-fv > * {
    display: none !important;
  }

  .hero-sp-html-fv .sp-fv-title,
  .hero-sp-html-fv .sp-fv-rescue,
  .hero-sp-html-fv .sp-fv-sub {
    display: block !important;
    z-index: 6;
    color: #fff !important;
    font-family: var(--lp-font);
    font-feature-settings: "palt";
    font-synthesis: none;
    letter-spacing: 0;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
  }

  .hero-sp-html-fv .sp-fv-title {
    left: 18px;
    right: 18px;
    top: 88px;
    font-size: 35px;
    line-height: 1.18;
    letter-spacing: 0;
    font-weight: 800;
    text-align: center;
    text-shadow:
      0 3px 0 rgba(0, 0, 0, .34),
      0 0 6px rgba(255, 255, 255, .18);
  }

  .hero-sp-html-fv .sp-fv-rescue {
    left: 8px;
    right: 8px;
    top: 230px;
    color: #ffd21c !important;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    text-shadow:
      0 3px 0 rgba(0, 0, 0, .34),
      0 0 6px rgba(255, 215, 31, .22);
  }

  .hero-sp-html-fv .sp-fv-sub {
    left: 22px;
    right: 22px;
    top: 274px;
    display: block !important;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .3);
  }

  .hero-sp-html-fv .sp-fv-sub::before,
  .hero-sp-html-fv .sp-fv-sub::after {
    content: none;
    display: none;
  }
}

@media (min-width: 768px) {
  .hero .hero-inner.hero-image-fv {
    width: min(1449px, 100%);
    background: #020814;
  }

  .hero-text-overlay,
  .hero-awards-overlay,
  .hero-visual-link {
    display: none !important;
  }

  .hero-cta-overlay {
    display: inline-flex !important;
    left: 2.5%;
    bottom: 4.2%;
    width: 22%;
    height: 6.9%;
    border-radius: 9px;
    font-size: clamp(18px, 1.65vw, 24px);
    box-shadow: 0 8px 18px rgba(230, 84, 0, .34);
  }
}

.hero-text-overlay,
.hero-awards-overlay,
.hero-visual-link {
  display: none !important;
}

@media (min-width: 768px) {
  .hero-text-overlay {
    display: block !important;
    left: 2.4%;
    top: 20.7%;
    width: 72%;
    min-height: 0;
    padding: 0;
    color: #fff;
    font-family: var(--lp-font);
    text-align: left;
  }

  .hero-text-overlay .hero-kicker {
    margin: 0 0 2.1%;
    color: #fff;
    font-size: clamp(23px, 2.55vw, 37px);
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
    text-shadow: 0 3px 7px rgba(0, 0, 0, .62);
  }

  .hero-text-overlay .hero-kicker br {
    display: none;
  }

  .hero-text-overlay h1 {
    margin: 0 0 2.2%;
    color: #ffd51c;
    font-size: clamp(56px, 6.65vw, 96px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow:
      0 4px 0 rgba(0, 0, 0, .46),
      0 0 11px rgba(255, 211, 29, .23);
  }

  .hero-text-overlay .hero-description {
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 3.15vw, 46px);
    line-height: 1.18;
    font-weight: 900;
    text-shadow: 0 3px 7px rgba(0, 0, 0, .58);
  }

  .hero-cta-overlay {
    left: 3.35%;
    bottom: 8.45%;
    width: 49.7%;
    height: 9.75%;
    border-radius: 8px;
    font-size: clamp(30px, 3.5vw, 51px);
  }

  .hero-cta-overlay span {
    right: 6%;
    width: 3.4%;
  }
}

.site-footer {
  padding: 28px 16px 30px;
  color: #fff;
  background: var(--navy);
  text-align: center;
  font-family: var(--lp-font);
}

.footer-company {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 400;
}

.footer-copy {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 24px 14px 96px;
  }

  .footer-company {
    font-size: 15px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

/* Restore persistent consultation CTA on both PC and SP. */
.floating-contact.is-hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .floating-contact {
    position: fixed;
    right: 26px;
    bottom: 26px;
    display: block !important;
    width: 299px;
    z-index: 1000;
    filter: drop-shadow(0 8px 18px rgba(0, 30, 70, .24));
  }

  .floating-close {
    display: none;
  }

  .floating-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    text-align: center;
  }

  .floating-phone {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 9px;
    background: #fff;
    flex-direction: column;
  }

  .floating-phone span {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .floating-title {
    width: 100%;
    height: 60px;
    color: #fff;
    background: #b51e25;
    font-size: 19px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .floating-number {
    position: relative;
    width: 100%;
    height: 68px;
    padding-left: 64px;
    color: #10223b;
    background: #fff;
    font-size: 29px;
    line-height: 1;
  }

  .floating-number::before {
    content: "\260E";
    position: absolute;
    left: 24px;
    top: 50%;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 50%;
    color: #fff;
    background: #bd1f28;
    font-size: 23px;
    line-height: 1;
  }

  .floating-number::after {
    display: none;
  }

  .floating-form {
    height: 70px;
    gap: 13px;
    margin-top: 13px;
    border-radius: 9px;
    background: #14a94f;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .12);
    font-size: 23px;
  }

  .floating-mail-icon {
    position: relative;
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
  }

  .floating-mail-icon::before {
    content: "\2709";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #14a94f;
    font-size: 23px;
    line-height: 1;
  }

  .floating-mail-icon::after {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: clamp(78px, 21.53vw, 96px);
  }

  .floating-contact {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: block !important;
    width: 100%;
    height: clamp(78px, 21.53vw, 96px);
    padding: 0;
    z-index: 1000;
    background: transparent url("./assets/sp-floating-cta.webp") center bottom / 100% auto no-repeat;
    box-shadow: none;
    filter: none;
    pointer-events: none;
  }

  .floating-contact a,
  .floating-close {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    overflow: hidden;
    pointer-events: auto;
  }

  .floating-contact a span,
  .floating-phone::before,
  .floating-number::before,
  .floating-number::after,
  .floating-mail-icon,
  .floating-mail-icon::before,
  .floating-mail-icon::after,
  .floating-close::before,
  .floating-close::after {
    display: none;
  }

  .floating-close {
    left: 0;
    top: 0;
    width: 8.4%;
    height: 34%;
    cursor: pointer;
  }

  .floating-phone {
    left: 3%;
    top: 21%;
    width: 52.8%;
    height: 78%;
  }

  .floating-form {
    left: 54.4%;
    top: 21%;
    width: 45.6%;
    height: 78%;
  }
}

/* === Claude調整: 追従ボタン常時表示 / SP FV全幅 / SP追従バー×切れ修正 === */
@media (min-width: 768px) {
  .floating-contact { display: block !important; }
  .floating-contact .floating-close { display: none !important; }
}
@media (max-width: 767px) {
  .floating-contact.is-over-hero { display: block !important; }
  .hero .hero-inner.hero-image-fv { width: 100% !important; max-width: 100% !important; margin: 0 auto !important; }
  /* ×が切れないよう、バーを画像(1621x349)の比率にフィットさせ全体表示 */
  .floating-contact {
    aspect-ratio: 1621 / 349 !important;
    height: auto !important;
    background-size: 100% 100% !important;
    background-position: center !important;
  }
}
.floating-contact.is-hidden { display: none !important; }

/* === 横方向ドラッグ/スクロール無効化（iOS含む） === */
html, body {
  overflow-x: hidden !important;
  overscroll-behavior-x: none !important;
}

/* === SP 事例カード: 写真を左カラム全面に配置・事例ラベルを前面に === */
@media (max-width: 767px) {
  .case-card {
    grid-template-columns: 42% 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    align-items: stretch !important;
  }
  .case-photo {
    width: 100% !important;
    height: 100% !important;
    align-self: stretch !important;
    border-radius: 0 !important;
    object-fit: cover !important;
  }
  .case-label { z-index: 3 !important; }
  .case-text { padding: 18px 14px 18px 14px !important; }
}

/* === FV左上ロゴに公式サイトTOPへのリンク（画像上に透明オーバーレイ） === */
.hero-logo-link {
  position: absolute;
  z-index: 13;
  display: block;
  left: 2.2%; top: 2.3%; width: 39%; height: 7.4%;
  background: transparent;
}
@media (max-width: 767px) {
  .hero-logo-link { left: 3%; top: 2.8%; width: 52.5%; height: 5.6%; }
}
