:root {
  --navy: #062a5c;
  --navy-deep: #031f47;
  --blue: #0874c9;
  --blue-light: #dcedfb;
  --green: #099b37;
  --green-deep: #08752d;
  --red: #cf2028;
  --gold: #c39739;
  --gold-light: #f5e7bb;
  --ink: #0b2853;
  --muted: #4b5f7c;
  --line: #ccdeee;
  --sans: "YakuHanJP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --en: "Roboto", "Noto Sans JP", sans-serif;
  --condensed: "Roboto Condensed", "Roboto", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--sans);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol,
h1,
h2,
h3,
p {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

.proposal {
  width: 100%;
  overflow: hidden;
}

/* Header */
.site-header {
  min-height: 67px;
  display: grid;
  grid-template-columns: 248px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 9px 34px 5px;
  background: #ffffff;
}

.brand {
  width: 224px;
}

.brand img {
  width: 100%;
}

.header-message {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-copy {
  line-height: 1.05;
  text-align: right;
}

.phone-copy span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.phone-copy strong {
  font-family: var(--condensed);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-cta {
  min-width: 204px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 18px;
  color: #ffffff;
  background: var(--green);
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 7px 16px rgba(3, 70, 26, 0.28);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green-deep);
}

.header-cta img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.header-cta strong {
  font-size: 15px;
  letter-spacing: 0.03em;
}

.site-nav {
  min-height: 36px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(24px, 3.1vw, 52px);
  padding: 0 22px;
  background: #ffffff;
  border-bottom: 1px solid #dfeaf3;
}

.site-nav a {
  position: relative;
  padding: 7px 2px 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: transparent;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  background: #dcedf9;
  overflow: hidden;
}

.hero-background,
.hero-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: 50% 40%;
  filter: saturate(1.08) contrast(1.03);
}

.hero-tint {
  background: linear-gradient(96deg, rgba(238, 247, 255, 0.9) 0%, rgba(238, 247, 255, 0.62) 30%, rgba(238, 247, 255, 0.2) 52%, rgba(238, 247, 255, 0) 66%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(420px, 1fr);
  gap: 14px;
  padding: 12px 16px 10px;
}

.hero-left {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
}

.copy-area {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.copy-content {
  position: relative;
  z-index: 3;
  width: 72%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 18px 14px 34px;
}

.local-ribbon {
  align-self: flex-start;
  margin-bottom: 7px;
  padding: 6px 26px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(8, 116, 201, 0.24);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 900;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(31px, 3.15vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.015em;
}

h1 strong {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.12em;
}

h1 small {
  margin-left: 8px;
  font-size: 0.52em;
  font-weight: 800;
}

.price-summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  margin-top: 3px;
}

.headline-price {
  display: flex;
  align-items: flex-end;
  min-width: 0;
  line-height: 0.9;
  white-space: nowrap;
}

.headline-price-label {
  align-self: center;
  margin-right: 8px;
  font-size: clamp(15px, 1.6vw, 24px);
  font-weight: 900;
}

.headline-price-number {
  color: transparent;
  background: linear-gradient(180deg, #0797bd 0%, #1470d3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--en);
  font-size: clamp(74px, 8.6vw, 136px);
  font-weight: 900;
  letter-spacing: -0.065em;
}

.headline-price-unit {
  margin-left: 8px;
  color: var(--navy);
  font-size: clamp(21px, 2vw, 33px);
  font-weight: 900;
}

.headline-price-tax {
  margin: 0 0 5px 5px;
  font-size: clamp(9px, 0.9vw, 13px);
  font-weight: 800;
}

.subsidy-seal {
  position: absolute;
  left: calc(100% - 26px);
  top: 44%;
  transform: translateY(-50%);
  width: clamp(96px, 8vw, 118px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(20px, 1.75vw, 26px);
  color: var(--navy);
  background: url("assets/subsidy-medal.png") center / contain no-repeat;
  filter: drop-shadow(0 7px 14px rgba(93, 69, 18, 0.28));
  font-size: clamp(9px, 0.78vw, 12px);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.subsidy-seal span,
.subsidy-seal strong {
  white-space: nowrap;
}

.subsidy-seal strong {
  color: var(--red);
  font-family: var(--en);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.05;
}

.subsidy-seal strong small {
  font-size: 0.36em;
}

.construction-price {
  align-self: flex-start;
  margin-top: 3px;
  padding: 5px 10px;
  background: #eaf4fd;
  border-left: 4px solid var(--blue);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 900;
}

.construction-price small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.76em;
}

.speed-copy {
  margin-top: 8px;
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 900;
  line-height: 1.1;
}

.speed-copy strong {
  margin: 0 3px;
  color: var(--red);
}

.proof-list {
  margin-top: 7px;
  padding-left: 21px;
  list-style: disc;
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 800;
  line-height: 1.55;
}

.proof-list li::marker {
  color: var(--green);
}

.subsidy-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: clamp(8px, 0.72vw, 10.5px);
  line-height: 1.4;
}

.hero-person {
  position: absolute;
  z-index: 2;
  right: 1.5%;
  bottom: -12px;
  width: auto;
  height: min(80%, 430px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 15px rgba(4, 42, 92, 0.18));
}

.speed-card {
  position: static;
  margin-top: 10px;
  align-self: flex-start;
  width: min(100%, 300px);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(4, 42, 92, 0.14);
}

.speed-card img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.speed-card p {
  min-width: 0;
  line-height: 1.25;
}

.speed-card strong,
.speed-card span {
  display: block;
}

.speed-card strong {
  color: var(--blue);
  font-size: clamp(10px, 0.9vw, 13px);
}

.speed-card span {
  margin-top: 2px;
  font-size: clamp(8px, 0.68vw, 10px);
  font-weight: 700;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d7e4ef;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(4, 42, 92, 0.1);
  list-style: none;
  overflow: hidden;
}

.service-facts li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px 14px;
  border-right: 1px solid #d7e4ef;
}

.service-facts li:last-child {
  border-right: 0;
}

.service-facts strong {
  color: var(--blue);
  font-family: var(--en);
  font-size: clamp(15px, 1.38vw, 20px);
  font-weight: 900;
}

.service-facts span {
  margin-top: 1px;
  color: var(--muted);
  font-size: clamp(8px, 0.75vw, 11px);
  font-weight: 700;
}

/* Product cards */
.product-panel {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto repeat(3, minmax(0, 1fr)) auto;
  gap: 8px;
}

.lineup-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 8px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(3, 31, 71, 0.5);
}

.lineup-heading p {
  font-family: var(--en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.lineup-heading h2 {
  font-size: 16px;
  font-weight: 900;
}

.product-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px;
  grid-template-areas:
    "copy image"
    "price image"
    "link link";
  grid-template-rows: minmax(0, 1fr) auto 31px;
  column-gap: 10px;
  padding: 11px 13px 9px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d4e1ec;
  border-radius: 14px;
  box-shadow: 0 9px 22px rgba(4, 42, 92, 0.16);
  overflow: hidden;
}

.product-card--featured {
  border: 2px solid var(--gold);
}

.featured-label {
  position: absolute;
  top: 10px;
  right: 13px;
  z-index: 2;
  padding: 3px 10px;
  color: #ffffff;
  background: var(--red);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-copy {
  grid-area: copy;
  min-width: 0;
}

.product-copy header {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding-right: 58px;
}

.product-copy h3 {
  min-width: 0;
  color: #174f8a;
  font-family: var(--en);
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.maker {
  font-family: var(--en);
  font-size: clamp(12px, 1.15vw, 16px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.maker--corona {
  color: #0b3f80;
}

.maker--hitachi {
  color: #9b252b;
}

.maker--panasonic {
  color: #1552a0;
}

.product-spec {
  margin-top: 1px;
  color: var(--muted);
  font-size: clamp(8.5px, 0.75vw, 10.5px);
  font-weight: 700;
}

.product-copy ul {
  margin-top: 5px;
  padding-left: 18px;
  list-style: disc;
  font-size: clamp(8.5px, 0.75vw, 11px);
  font-weight: 700;
  line-height: 1.45;
}

.product-copy li::marker {
  color: var(--green);
}

.product-card > img {
  grid-area: image;
  align-self: center;
  justify-self: center;
  width: 92px;
  max-height: 116px;
  object-fit: contain;
}

.product-price {
  grid-area: price;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 7px;
  padding-top: 5px;
  border-top: 1px solid #d9e3eb;
}

.product-price > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-price strong {
  color: var(--red);
  font-family: var(--en);
  font-size: clamp(21px, 2.1vw, 32px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.product-price strong small {
  margin-left: 2px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.35em;
  letter-spacing: 0;
}

.product-price em {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: var(--muted);
  font-size: clamp(7.5px, 0.66vw, 9.5px);
  font-style: normal;
  font-weight: 800;
}

.product-card > a {
  grid-area: link;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  color: var(--navy);
  background: #f6fbff;
  border: 1px solid #9cb8d2;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.product-card > a:hover,
.product-card > a:focus-visible {
  color: #ffffff;
  background: var(--navy);
}

.other-products {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #94b2cf;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(4, 42, 92, 0.12);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

/* Reasons */
.reasons {
  min-height: 101px;
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  background: #ffffff;
  border-top: 1px solid #d7e4ef;
}

.reasons > h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 24px;
  color: #ffffff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.reasons > h2 span {
  font-size: 11px;
}

.reasons > h2 strong {
  color: #ffffff;
  font-size: 22px;
}

.reasons > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.reasons li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-right: 1px solid #d7e4ef;
}

.reasons li:last-child {
  border-right: 0;
}

.reasons li > img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #d7e4ef;
}

.reasons h3 {
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 900;
  line-height: 1.3;
}

.reasons li p {
  margin-top: 3px;
  color: var(--muted);
  font-size: clamp(8px, 0.72vw, 10.5px);
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 1024px) {
  .hero {
    height: calc(100svh - 215px);
  }

  .hero-grid {
    height: 100%;
  }
}

@media (max-width: 1260px) {
  .site-header {
    grid-template-columns: 210px minmax(220px, 1fr) auto;
    gap: 14px;
    padding-inline: 22px;
  }

  .brand {
    width: 196px;
  }

  .phone-copy strong {
    font-size: 22px;
  }

  .header-cta {
    min-width: 170px;
    padding-inline: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.72fr) minmax(390px, 1fr);
  }

  .copy-content {
    width: 68%;
    padding-left: 24px;
  }

}

@media (max-width: 1023px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .header-message {
    text-align: left;
  }

  .phone-copy {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-left {
    grid-template-rows: auto auto;
  }

  .copy-area {
    min-height: 600px;
  }

  .copy-content {
    width: 70%;
  }

  .hero-person {
    height: 560px;
  }

  .product-panel {
    height: auto;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .lineup-heading,
  .other-products {
    grid-column: 1 / -1;
  }

  .product-card {
    min-height: 260px;
    grid-template-columns: minmax(0, 1fr) 84px;
  }

  .reasons {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .reasons > ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons li:nth-child(2) {
    border-right: 0;
  }

  .reasons li:nth-child(-n + 2) {
    border-bottom: 1px solid #d7e4ef;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 58px;
    grid-template-columns: 156px 1fr;
    gap: 8px;
    padding: 8px 12px;
  }

  .brand {
    width: 150px;
  }

  .header-message {
    display: none;
  }

  .header-contact {
    justify-self: end;
  }

  .header-cta {
    min-width: 0;
    min-height: 40px;
    padding: 5px 12px;
    font-size: 9px;
  }

  .header-cta img {
    width: 28px;
    height: 28px;
  }

  .header-cta strong {
    font-size: 11px;
  }

  .site-nav {
    min-height: 38px;
    justify-content: flex-start;
    gap: 20px;
    padding-inline: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    font-size: 11px;
  }

  .hero-grid {
    padding: 10px;
  }

  .copy-area {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .copy-content {
    width: 100%;
    height: auto;
    padding: 16px 16px 0;
  }

  .local-ribbon {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(27px, 8.3vw, 35px);
  }

  .price-summary {
    gap: 8px;
  }

  .subsidy-seal {
    position: static;
    transform: none;
  }

  .headline-price-label {
    display: none;
  }

  .headline-price-number {
    font-size: clamp(58px, 18.5vw, 74px);
  }

  .headline-price-unit {
    font-size: clamp(20px, 5.8vw, 26px);
  }

  .subsidy-seal {
    width: 82px;
  }

  .construction-price {
    font-size: 12px;
  }

  .speed-copy {
    font-size: 22px;
  }

  .proof-list {
    font-size: 11px;
  }

  .hero-person {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    width: auto;
    height: 390px;
    margin: -18px 2% -12px 0;
  }

  .speed-card {
    right: 13px;
    bottom: 10px;
    width: 210px;
  }

  .service-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-facts li:nth-child(2) {
    border-right: 0;
  }

  .service-facts li:nth-child(-n + 2) {
    border-bottom: 1px solid #d7e4ef;
  }

  .service-facts li {
    min-height: 62px;
    padding: 8px 12px;
  }

  .service-facts strong {
    font-size: 18px;
  }

  .product-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lineup-heading,
  .other-products {
    grid-column: auto;
  }

  .lineup-heading {
    color: var(--navy);
    text-shadow: none;
  }

  .product-card {
    min-height: 255px;
    grid-template-columns: minmax(0, 1fr) 92px;
    padding: 13px;
  }

  .product-copy header {
    padding-right: 48px;
  }

  .product-copy h3,
  .maker {
    font-size: 14px;
  }

  .product-spec,
  .product-copy ul {
    font-size: 10px;
  }

  .product-price strong {
    font-size: 26px;
  }

  .reasons {
    grid-template-columns: 1fr;
  }

  .reasons > h2 {
    padding: 12px 16px;
    text-align: center;
  }

  .reasons > ul {
    grid-template-columns: 1fr;
  }

  .reasons li,
  .reasons li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #d7e4ef;
  }

  .reasons li:last-child {
    border-bottom: 0;
  }

  .reasons li > img {
    width: 62px;
    height: 62px;
  }

  .reasons h3 {
    font-size: 14px;
  }

  .reasons li p {
    font-size: 10.5px;
  }
}

@media (max-width: 380px) {
  .header-cta img {
    display: none;
  }

  .headline-price-tax {
    display: none;
  }

  .subsidy-seal {
    width: 80px;
  }

  .hero-person {
    height: 350px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ===== あきら調整値の反映（2026-07-13 編集モード書き出し・1440×900基準） ===== */

@media (min-width: 761px) {
  .local-ribbon { transform: translate(83.9px, -46.8px) scale(1.62); transform-origin: center center; }
  #page-title { transform: translate(-2.7px, -31.4px); }
  .price-summary { transform: translate(-0.6px, 0); }
  .subsidy-seal { transform: translate(-176.3px, -79.6px) scale(1.12); }
  .construction-price { transform: translate(0, 3.5px); }
  .speed-copy { transform: translate(-0.6px, 3.9px); }
  .proof-list { transform: translate(53.2px, 12.8px) scale(1.16); transform-origin: center center; }
  .subsidy-note { transform: translate(10.9px, 22.3px); }
  .speed-card { transform: translate(70.1px, 36.9px) scale(1.45); transform-origin: center center; }
  .hero-person { transform: translate(-30.2px, -11.5px); }
}

/* ===== LP本編（FV上記の焼き込み済みCSSは変更しない） ===== */

.lp-content {
  overflow: hidden;
  background: #ffffff;
}

.lp-section {
  position: relative;
  padding: 64px 20px;
}

.section-inner {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-kicker {
  color: var(--blue);
  font-family: var(--en);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-heading h2,
.subsidy-copy h2,
.company-info h2,
.estimate-panel h2 {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(27px, 7.6vw, 42px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.section-heading > p:last-child,
.subsidy-copy > p:not(.section-kicker),
.company-brand > p,
.estimate-panel > div > p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.pricing-section {
  background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.price-card {
  position: relative;
  padding: 23px 20px 21px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(4, 42, 92, 0.08);
  overflow: hidden;
}

.price-card--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 14px 30px rgba(157, 113, 22, 0.14);
}

.price-card--featured::before {
  content: "人気機種";
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 14px;
  color: #ffffff;
  background: var(--red);
  border-radius: 0 14px 0 10px;
  font-size: 10px;
  font-weight: 900;
}

.price-card__maker {
  color: var(--blue);
  font-family: var(--en);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.price-card h3 {
  margin-top: 4px;
  font-size: 21px;
  font-weight: 900;
}

.price-card__model {
  min-height: 36px;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.price-card__label {
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid #e0ebf4;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.price-card__price {
  display: flex;
  align-items: flex-end;
  margin-top: 2px;
  line-height: 1;
}

.price-card__price strong {
  color: var(--red);
  font-family: var(--en);
  font-size: clamp(33px, 9vw, 42px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price-card__price span {
  margin: 0 0 3px 6px;
  font-size: 14px;
  font-weight: 900;
}

.price-card__tax {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.construction-callout {
  display: grid;
  gap: 15px;
  margin-top: 20px;
  padding: 23px 22px;
  background: var(--navy);
  border-radius: 16px;
  color: #ffffff;
}

.construction-callout__label {
  color: #9ed6ff;
  font-family: var(--en);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.construction-callout h3 {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.45;
}

.construction-callout h3 strong {
  display: block;
  color: #ffffff;
  font-family: var(--en);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.construction-callout h3 small {
  margin-left: 5px;
  font-size: 11px;
}

.construction-callout > p {
  color: #d9e9f8;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.section-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.75;
}

.reasons-section {
  background: #ffffff;
}

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

.reason-card {
  padding: 18px 13px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
}

.reason-card img {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border: 1px solid #d8e7f3;
  border-radius: 50%;
  object-fit: cover;
}

.reason-card h3 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.reason-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.7;
}

.works-section {
  background: var(--navy-deep);
}

.section-heading--light .section-kicker {
  color: #82ccff;
}

.section-heading--light h2,
.section-heading--light > p:last-child {
  color: #ffffff;
}

.works-list {
  display: grid;
  gap: 18px;
}

.work-pair {
  padding: 16px;
  background: #ffffff;
  border-radius: 17px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.work-pair > header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 2px 12px;
  margin-bottom: 12px;
}

.work-pair > header p {
  grid-row: 1 / 3;
  color: var(--blue);
  font-family: var(--en);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.work-pair > header h3 {
  font-size: 17px;
  font-weight: 900;
}

.work-pair > header span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.work-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.work-images figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #dce7ef;
  border-radius: 10px;
  overflow: hidden;
}

.work-images figure span {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 7px;
  padding: 4px 9px;
  color: #ffffff;
  background: rgba(3, 31, 71, 0.84);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
}

.work-images figure:last-child span {
  background: rgba(8, 116, 201, 0.9);
}

.work-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-section {
  background: #f4f9fd;
}

.flow-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.flow-list li {
  position: relative;
  padding: 25px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(4, 42, 92, 0.07);
}

.flow-step {
  color: var(--blue);
  font-family: var(--en);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.flow-list h3 {
  margin-top: 7px;
  font-size: 20px;
  font-weight: 900;
}

.flow-list li > p:not(.flow-step) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.flow-list small {
  display: block;
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid #e0ebf4;
  color: #5f7188;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
}

.subsidy-section {
  background: linear-gradient(135deg, #0c76c8 0%, #062a5c 100%);
  color: #ffffff;
}

.subsidy-layout {
  display: grid;
  gap: 24px;
}

.subsidy-copy .section-kicker {
  color: #9edcff;
}

.subsidy-copy h2,
.subsidy-copy > p:not(.section-kicker) {
  color: #ffffff;
}

.subsidy-required-note {
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.subsidy-checks {
  padding: 23px 21px;
  background: #ffffff;
  border-radius: 15px;
  color: var(--ink);
}

.subsidy-checks h3 {
  font-size: 18px;
  font-weight: 900;
}

.subsidy-checks ul {
  margin-top: 13px;
  padding-left: 21px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
}

.subsidy-checks li::marker {
  color: var(--green);
}

.subsidy-checks > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.7;
}

.faq-section {
  background: #ffffff;
}

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

.faq-list details {
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  color: var(--blue);
  font-family: var(--en);
  font-size: 24px;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.company-section {
  padding-bottom: 0;
  background: #edf6fd;
}

.company-section > .estimate-panel {
  margin-top: 0;
}

.company-layout {
  display: grid;
  gap: 30px;
}

.company-brand {
  align-self: center;
}

.company-brand img {
  width: min(100%, 390px);
}

.company-info dl {
  margin: 21px 0 0;
  border-top: 1px solid #bfd4e6;
}

.company-info dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #bfd4e6;
  font-size: 12px;
  line-height: 1.65;
}

.company-info dt {
  color: var(--muted);
  font-weight: 800;
}

.company-info dd {
  margin: 0;
  font-weight: 700;
}

.company-info dd strong {
  font-family: var(--condensed);
  font-size: 24px;
  letter-spacing: 0;
}

.estimate-panel {
  display: grid;
  gap: 22px;
  margin-top: 48px;
  padding: 28px 22px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 18px 18px 0 0;
}

.estimate-panel .section-kicker {
  color: #92d3ff;
}

.estimate-panel h2,
.estimate-panel > div > p:last-child {
  color: #ffffff;
}

.estimate-button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  color: #ffffff;
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 11px 26px rgba(0, 0, 0, 0.18);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.estimate-button:hover,
.estimate-button:focus-visible,
.sticky-estimate:hover,
.sticky-estimate:focus-visible {
  background: var(--green-deep);
  outline: 3px solid rgba(255, 255, 255, 0.86);
  outline-offset: 2px;
}

.site-footer {
  padding: 28px 20px 120px;
  color: #dcecf8;
  background: var(--navy-deep);
  text-align: center;
}

.site-footer p {
  font-weight: 900;
}

.site-footer p span {
  display: block;
  margin-top: 4px;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.site-footer small {
  display: block;
  margin-top: 10px;
  font-size: 10px;
}

.sticky-estimate {
  position: fixed;
  z-index: 1000;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 18px;
  color: #ffffff;
  background: var(--green);
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 11px 28px rgba(3, 70, 26, 0.32);
}

.sticky-estimate img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.sticky-estimate span,
.sticky-estimate strong {
  display: block;
}

.sticky-estimate span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.sticky-estimate strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

html.qa-fv-only .lp-content,
html.qa-fv-only .site-footer,
html.qa-fv-only .sticky-estimate {
  display: none !important;
}

html.qa-tile .sticky-estimate {
  display: none !important;
}

@media (min-width: 761px) {
  .lp-section {
    padding: 92px 36px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .price-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .price-card {
    padding-inline: 16px;
  }

  .price-card__price strong {
    font-size: clamp(27px, 2.35vw, 38px);
  }

  .construction-callout {
    grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    padding: 25px 30px;
  }

  .construction-callout h3 strong {
    display: inline;
  }

  .reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
  }

  .reason-card {
    padding: 24px 18px;
  }

  .reason-card img {
    width: 92px;
    height: 92px;
  }

  .reason-card h3 {
    font-size: 16px;
  }

  .works-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .work-pair:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    margin-inline: auto;
  }

  .work-pair {
    padding: 20px;
  }

  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .flow-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 45px;
    right: -27px;
    width: 32px;
    height: 2px;
    background: var(--blue);
  }

  .subsidy-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 60px;
  }

  .faq-layout {
    display: grid;
    grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
    gap: 72px;
    align-items: start;
  }

  .faq-heading {
    position: sticky;
    top: 28px;
    margin: 0;
    text-align: left;
  }

  .company-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 76px;
  }

  .estimate-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 36px 42px;
  }

  .estimate-button {
    min-width: 320px;
  }

  .sticky-estimate {
    right: 26px;
    bottom: 22px;
    left: auto;
    width: 390px;
    min-height: 64px;
  }

  .sticky-estimate img {
    width: 42px;
    height: 42px;
  }

  .sticky-estimate strong {
    font-size: 17px;
  }
}

/* Optical spacing keeps the final 9 clear when the FV is scaled down.
   あわせて価格数字を単色化（2026-07-23）。水色グラデだけ質感が周囲の紺から浮くため、
   配色変数の単色へ寄せる。FV原本は書き換えず、ここで上書きする。 */
.headline-price-number {
  display: inline-block;
  letter-spacing: -0.045em;
  padding-right: 0.025em;
  color: var(--blue);
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
}

/* スマホのメニュー見切れ解消（2026-07-23）
   390px幅で5項目目「写真で相談」が右端で切れていたため、余白と字間を詰める。
   さらに狭い端末では従来どおり横スクロールへ逃がす。FV原本は書き換えない。 */
@media (max-width: 760px) {
  .site-nav {
    gap: clamp(9px, 3.1vw, 20px);
    padding-inline: 10px;
    overflow-x: auto;
  }

  .site-nav a {
    letter-spacing: 0.01em;
    padding-inline: 0;
  }
}

/* Keep the popularity badge separate from the product photo and model name. */
.product-card--featured .featured-label {
  top: 8px;
  right: auto;
  left: 13px;
  z-index: 3;
  padding: 4px 12px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  background: #d7462f;
  box-shadow:
    0 3px 8px rgba(109, 35, 24, 0.28),
    0 0 0 1px rgba(153, 45, 30, 0.16);
  font-size: 10px;
  line-height: 1;
  text-shadow: none;
}

.product-card--featured .product-copy header {
  padding-right: 0;
  padding-left: 78px;
}

@media (max-width: 1023px) {
  .product-card--featured .product-copy {
    padding-top: 27px;
  }

  .product-card--featured .product-copy header {
    padding-right: 0;
    padding-left: 0;
  }
}

/* ===== PC全幅CTA接続（2026-07-22） ===== */

.page-main {
  display: block;
}

.header-email-button,
.header-phone-button,
.header-line-button,
.sticky-line-button {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--sans);
  cursor: pointer;
}

.header-email-button,
.header-phone-button,
.header-line-button {
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.header-email-button {
  padding: 7px 9px;
  color: #075a9e;
  background: #ffffff;
  border: 1px solid #72afd9;
  box-shadow: 0 3px 9px rgba(7, 90, 158, 0.1);
}

.header-email-button strong,
.header-phone-button strong,
.header-line-button strong {
  display: block;
  white-space: nowrap;
}

.header-email-button strong {
  font-size: 12px;
}

.header-phone-button {
  flex-direction: column;
  padding: 5px 8px;
  color: var(--navy);
  background: #edf7ff;
  border: 1px solid #87b9de;
  box-shadow: 0 3px 9px rgba(6, 42, 92, 0.1);
}

.header-phone-button > span {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  padding: 2px 9px;
  color: #ffffff;
  background: #d64b38;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.header-phone-button strong {
  margin-top: 1px;
  font-family: var(--condensed);
  font-size: clamp(16px, 1.55vw, 23px);
  letter-spacing: 0.01em;
}

.header-line-button {
  gap: 7px;
  padding: 6px 10px;
  color: #ffffff;
  background: var(--green);
  border: 2px solid #ffffff;
  box-shadow: 0 5px 13px rgba(3, 70, 26, 0.23);
}

.header-line-button img {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 7px;
}

.header-line-button strong {
  font-size: 12px;
}

.header-email-button:hover,
.header-email-button:focus-visible,
.header-phone-button:hover,
.header-phone-button:focus-visible,
.header-line-button:hover,
.header-line-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(6, 42, 92, 0.18);
  outline: 3px solid rgba(8, 116, 201, 0.2);
  outline-offset: 2px;
}

.header-line-button:hover,
.header-line-button:focus-visible {
  background: var(--green-deep);
}

.product-card--featured .featured-label {
  position: static;
  flex: 0 0 auto;
  align-self: center;
  margin-left: auto;
  padding: 4px 11px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(109, 35, 24, 0.28), 0 0 0 1px rgba(153, 45, 30, 0.16);
  font-size: 10px;
  line-height: 1;
}

.product-card--featured .product-copy header {
  padding-left: 0;
  padding-right: 0;
}

.product-price-link {
  color: var(--navy);
  background: #eaf4fa;
  border-color: #88abc8;
  letter-spacing: 0.01em;
}

.sticky-estimate {
  position: fixed;
  z-index: 1000;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  width: auto;
  min-height: 0;
  display: block;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.sticky-estimate:hover,
.sticky-estimate:focus-visible {
  background: transparent;
  outline: none;
}

.sticky-phone-hand,
.sticky-value,
.sticky-process {
  display: none;
}

.sticky-estimate .sticky-desktop-copy {
  display: none;
}

.sticky-action {
  min-width: 0;
}

.sticky-line-button {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 18px;
  color: #ffffff;
  background: var(--green);
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 11px 28px rgba(3, 70, 26, 0.32);
  font-weight: 900;
  text-align: center;
}

.sticky-line-button:hover,
.sticky-line-button:focus-visible {
  background: var(--green-deep);
  outline: 3px solid rgba(9, 155, 55, 0.22);
  outline-offset: 2px;
}

.sticky-line-button .sticky-mobile-icon {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
}

.sticky-mobile-copy {
  display: block;
  font-size: 11px;
  line-height: 1.2;
}

.sticky-mobile-copy strong {
  display: block;
  font-size: 16px;
}

.cta-status {
  position: fixed;
  z-index: 1100;
  right: 18px;
  bottom: 82px;
  left: 18px;
  max-width: 620px;
  margin-inline: auto;
  padding: 11px 16px;
  color: #ffffff;
  background: rgba(3, 31, 71, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(3, 31, 71, 0.3);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.cta-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.qa-tile {
  scroll-behavior: auto;
}

html.qa-tile .sticky-estimate,
html.qa-tile .cta-status {
  display: none !important;
}

@media (min-width: 1024px) {
  .site-header {
    grid-template-columns: 198px minmax(150px, 1fr) minmax(590px, 650px);
    gap: 14px;
    padding: 8px 22px 6px;
  }

  .brand {
    width: 190px;
  }

  .header-contact {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(142px, 0.9fr) minmax(175px, 1.08fr) minmax(190px, 1.18fr);
    gap: 8px;
  }

  .header-email-button,
  .header-phone-button,
  .header-line-button {
    height: 58px;
  }

  .header-phone-button {
    padding-block: 3px;
  }

  .header-phone-button > span {
    min-height: 14px;
    padding-block: 1px;
    font-size: 8px;
  }

  .header-phone-button strong {
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 0.95;
  }

  .header-message {
    font-size: 11px;
  }

  .sticky-estimate {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 102px;
    display: grid;
    grid-template-columns: 106px 226px minmax(390px, 1fr) minmax(310px, 390px);
    align-items: center;
    gap: 10px;
    padding: 7px max(14px, calc((100vw - 1360px) / 2 + 14px));
    background: linear-gradient(90deg, #fff8df 0%, #fff1bd 48%, #fff8df 100%);
    border-top: 1px solid #e6bd4c;
    box-shadow: 0 -7px 24px rgba(49, 61, 80, 0.16);
  }

  .sticky-phone-hand,
  .sticky-value,
  .sticky-process {
    display: block;
  }

  .sticky-estimate .sticky-desktop-copy {
    display: block;
  }

  .sticky-phone-hand {
    position: relative;
    align-self: stretch;
  }

  .sticky-phone-hand > img {
    position: absolute;
    right: 0;
    bottom: -7px;
    width: 109px;
    height: 116px;
    max-width: none;
    object-fit: contain;
    border-radius: 0;
  }

  .sticky-value {
    min-width: 0;
    padding-left: 5px;
    color: var(--navy);
  }

  .sticky-value > span {
    display: block;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .sticky-value > strong {
    display: flex;
    align-items: baseline;
    margin-top: 1px;
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
  }

  .sticky-speed {
    display: inline-flex;
    align-items: baseline;
    margin: 0 4px;
    color: #cc2a28;
    font-family: var(--condensed);
    font-weight: 900;
  }

  .sticky-speed b {
    font-size: 38px;
    line-height: 0.9;
  }

  .sticky-speed {
    font-size: 18px;
  }

  .sticky-process {
    min-width: 0;
    align-self: stretch;
    padding: 5px 12px 6px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 187, 78, 0.5);
    border-radius: 12px;
  }

  .sticky-process ol {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    list-style: none;
  }

  .sticky-process li {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 19px 45px minmax(0, 1fr);
    align-items: center;
    gap: 4px;
  }

  .sticky-process li > span {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--navy);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 900;
  }

  .sticky-process li > img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 0;
  }

  .sticky-process li > .sticky-line-brand {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .sticky-process li > .sticky-quote-image {
    width: 56px;
    height: 56px;
    margin-left: -5px;
  }

  .sticky-process li > strong {
    min-width: 0;
    color: var(--navy);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.25;
    white-space: nowrap;
  }

  .sticky-action {
    min-width: 0;
  }

  .sticky-line-button {
    width: 100%;
    min-height: 61px;
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(3, 70, 26, 0.28);
  }

  .sticky-mobile-icon,
  .sticky-mobile-copy {
    display: none !important;
  }

  .sticky-desktop-copy strong {
    display: block;
    font-size: clamp(13px, 1.25vw, 17px);
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .site-footer {
    padding-bottom: 146px;
  }

  .cta-status {
    bottom: 116px;
  }
}

@media (min-width: 761px) and (max-width: 1023px) {
  .header-email-button,
  .header-phone-button {
    display: none;
  }

  .header-contact {
    justify-self: end;
  }

  .header-line-button {
    min-width: 190px;
  }

  .sticky-estimate {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(210px, 0.8fr) minmax(320px, 1.2fr);
    align-items: center;
    gap: 16px;
    padding: 10px 22px;
    background: #fff3c9;
    border-top: 1px solid #e6bd4c;
    box-shadow: 0 -7px 24px rgba(49, 61, 80, 0.16);
  }

  .sticky-value {
    display: block;
  }

  .sticky-value > span,
  .sticky-value > strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
  }

  .sticky-speed,
  .sticky-speed b {
    display: inline;
    color: #cc2a28;
    font-size: 23px;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 760px) {
  .header-email-button,
  .header-phone-button {
    display: none;
  }

  .header-contact {
    display: flex;
  }

  .header-line-button {
    min-width: 0;
    min-height: 40px;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 999px;
  }

  .header-line-button img {
    width: 27px;
    height: 27px;
    border-radius: 7px;
  }

  .header-line-button strong {
    font-size: 10px;
  }

  .product-card--featured .product-copy {
    padding-top: 0;
  }

  .product-card--featured .featured-label {
    margin-left: 0;
    padding: 4px 9px;
    font-size: 9px;
  }

  .sticky-estimate {
    right: 12px;
    left: 12px;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

.product-card--featured .featured-label {
  position: static;
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(109, 35, 24, 0.28), 0 0 0 1px rgba(153, 45, 30, 0.16);
  font-size: 12px;
}

/* ===== Browser注釈4点反映（2026-07-22） ===== */
@media (min-width: 1024px) {
  .site-header {
    --header-contact-width: 500px;
    --header-line-width: 150px;
    --header-message-size: clamp(8.5px, 0.85vw, 11px);
    --header-brand-width: 190px;
    min-height: 56px;
    grid-template-columns: 220px minmax(0, 1fr) var(--header-contact-width);
    gap: 14px;
    padding: 1px 22px;
  }

  .brand {
    width: var(--header-brand-width);
  }

  .header-message {
    font-size: var(--header-message-size);
    line-height: 1.1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    justify-self: center;
  }

  .header-contact {
    width: var(--header-contact-width);
    grid-template-columns: 164px 170px var(--header-line-width);
  }

  .header-email-button,
  .header-phone-button,
  .header-line-button {
    height: 48px;
    min-height: 48px;
  }

  .header-email-button {
    flex-direction: column;
  }

  .header-line-button {
    width: var(--header-line-width);
    gap: 5px;
    padding: 5px 7px;
  }

  .header-line-button img {
    width: 27px;
    height: 27px;
  }

  .header-line-button strong {
    font-size: 11px;
  }

}

@media (min-width: 1024px) and (max-width: 1279px) {
  .site-header {
    --header-message-size: 9px;
    --header-brand-width: 180px;
    grid-template-columns: 196px minmax(0, 1fr) var(--header-contact-width);
  }
}

/* ===== 本人微調整ロゴ本反映（2026-07-23） =====
   短くしたPCヘッダー内に収まるよう、採用済み調整値を再調整する。 */
@media (min-width: 1280px) {
  .brand img {
    transform: translate(4px, 1px) scale(1.08);
    transform-origin: center center;
  }
}

/* ===== 商品一覧カード刷新（2026-07-23） ===== */
.price-grid {
  --product-orange: #f47a18;
  --product-slate: #8794a5;
  --product-pale: #edf3f8;
  --product-red: #d71920;
  --product-gold: #ffd23f;
  --product-action: #0874c9;
  align-items: stretch;
}

.price-card {
  --maker-accent: #0874c9;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  border: 1px solid #cbd8e3;
  border-top: 6px solid var(--maker-accent);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(4, 42, 92, 0.09);
}

.price-card--corona {
  --maker-accent: #126bb1;
}

.price-card--hitachi {
  --maker-accent: #c9313c;
}

.price-card--panasonic {
  --maker-accent: #164fbf;
}

.price-card--mitsubishi {
  --maker-accent: #d9472f;
}

.price-card--daikin {
  --maker-accent: #1a9ed8;
}

.price-card--featured {
  border-right-color: #d7a900;
  border-bottom-color: #d7a900;
  border-left-color: #d7a900;
  box-shadow: 0 14px 30px rgba(157, 113, 22, 0.14);
}

.price-card--featured::before {
  z-index: 2;
  top: 10px;
  right: 12px;
  padding: 8px 18px;
  background: var(--product-red);
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(116, 22, 25, 0.24);
  font-size: 16px;
  line-height: 1.1;
}

.price-card__header {
  min-height: 112px;
  padding: 18px 20px 13px;
  background: linear-gradient(135deg, #ffffff 62%, color-mix(in srgb, var(--maker-accent) 8%, #ffffff));
  border-bottom: 1px solid #e0ebf4;
}

.price-card--featured .price-card__header {
  padding-right: 124px;
}

.price-card__maker {
  color: var(--maker-accent);
  font-size: 12px;
}

.price-card h3 {
  color: #17263a;
  font-size: 23px;
  line-height: 1.25;
}

.price-card__model {
  min-height: 0;
  margin-top: 4px;
  color: #53657a;
  font-size: 12px;
  line-height: 1.45;
}

.price-card__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  padding: 12px 20px 0;
}

.price-card__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 5px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.price-card__chip:first-child {
  border-radius: 6px 0 0 6px;
}

.price-card__chip:last-child {
  border-radius: 0 6px 6px 0;
}

.price-card__chip--orange {
  background: var(--product-orange);
}

.price-card__chip--slate {
  background: var(--product-slate);
}

.price-card__chip--blue {
  background: var(--product-action);
}

.price-card__content {
  display: grid;
  grid-template-columns: minmax(112px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 13px;
  min-height: 238px;
  padding: 15px 20px 12px;
}

.price-card__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: 0;
}

.price-card__image img {
  width: 100%;
  height: 188px;
  object-fit: contain;
}

.price-card__image figcaption {
  margin-top: 4px;
  color: #687b90;
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.price-card__details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.price-card__description {
  color: #263b52;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.7;
}

.price-card__info {
  margin-top: 10px;
  padding: 8px 10px;
  background: var(--product-pale);
  border-left: 4px solid var(--maker-accent);
  border-radius: 0 7px 7px 0;
}

.price-card__info > div {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 7px;
  padding: 5px 0;
  border-bottom: 1px solid #d5e0e9;
}

.price-card__info > div:last-child {
  border-bottom: 0;
}

.price-card__info dt {
  color: #53677c;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.45;
}

.price-card__info dd {
  min-width: 0;
  margin: 0;
  color: #16324d;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.45;
}

.price-card__info small {
  display: block;
  margin-top: 2px;
  color: #5d7084;
  font-size: 8px;
  font-weight: 800;
}

.price-card__offer {
  margin-top: auto;
  padding: 0 20px 13px;
}

.price-card__label {
  margin-top: 0;
  padding-top: 13px;
  color: var(--maker-accent);
}

.price-card__price strong {
  color: var(--product-red);
}

.price-card__tax {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 7px;
  color: #ffffff;
  background: #607286;
  border-radius: 999px;
  font-size: 9px;
}

.price-card__installation {
  margin-top: 7px;
  color: #4e6277;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.45;
}

.price-card__action {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px 20px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--product-action);
  border: 1px solid #0566ae;
  border-radius: 9px;
  box-shadow: 0 5px 12px rgba(8, 116, 201, 0.2);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.price-card__action::after {
  content: "›";
  margin-left: 8px;
  font-size: 20px;
  line-height: 0;
}

.price-card__action:hover,
.price-card__action:focus-visible {
  background: #0566ae;
  box-shadow: 0 7px 16px rgba(8, 116, 201, 0.27);
  transform: translateY(-1px);
  outline: 3px solid rgba(8, 116, 201, 0.16);
  outline-offset: 2px;
}

@media (min-width: 761px) and (max-width: 1099px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card {
    grid-column: auto;
  }
}

@media (min-width: 1100px) {
  .price-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

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

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

  .price-card:nth-child(-n + 2) .price-card__content {
    grid-template-columns: minmax(155px, 0.72fr) minmax(0, 1.28fr);
    min-height: 310px;
  }

  .price-card:nth-child(-n + 2) .price-card__image img {
    height: 214px;
  }
}

@media (max-width: 760px) {
  .price-card__header {
    min-height: 0;
    padding: 17px 17px 12px;
  }

  .price-card--featured .price-card__header {
    padding-right: 108px;
  }

  .price-card__chips {
    padding: 11px 17px 0;
  }

  .price-card__chip {
    min-height: 30px;
    font-size: 9px;
  }

  .price-card__content {
    grid-template-columns: minmax(112px, 0.78fr) minmax(0, 1.22fr);
    min-height: 220px;
    padding-inline: 17px;
  }

  .price-card__image img {
    height: 170px;
  }

  .price-card__info > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .price-card__offer {
    padding-inline: 17px;
  }

  .price-card__action {
    margin-inline: 17px;
  }
}

/* ===== 工事フロー実写写真化（2026-07-23） ===== */
.flow-list li {
  display: flex;
  flex-direction: column;
  padding: 0 0 22px;
  overflow: visible;
}

.flow-visual {
  position: relative;
  min-height: 0;
  margin: 0 0 18px;
  padding: 0;
  overflow: hidden;
  background: #dce9f4;
  border: 0;
  border-radius: 14px 14px 0 0;
  aspect-ratio: 3 / 2;
}

.flow-visual img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.flow-visual figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 7px;
  color: #ffffff;
  background: rgba(4, 42, 92, 0.78);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.flow-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 22px;
}

.flow-copy > p:not(.flow-step) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.flow-copy small {
  margin-top: auto;
}

@media (min-width: 761px) {
  .flow-list li:not(:last-child)::after {
    top: 118px;
  }
}

@media (max-width: 760px) {
  .flow-list li {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 16px;
  }

  .flow-visual {
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    aspect-ratio: 1;
  }

  .flow-visual img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .flow-list li:nth-child(1) .flow-visual img {
    object-position: 42% center;
  }

  .flow-list li:nth-child(2) .flow-visual img,
  .flow-list li:nth-child(3) .flow-visual img {
    object-position: 60% center;
  }

  .flow-visual figcaption {
    right: 5px;
    bottom: 5px;
    padding: 3px 5px;
    font-size: 8px;
  }

  .flow-copy {
    padding: 0;
  }

  .flow-list h3 {
    font-size: 17px;
  }

  .flow-copy > p:not(.flow-step) {
    font-size: 12px;
    line-height: 1.7;
  }

  .flow-copy small {
    margin-top: 9px;
  }
}

/* ===== スクロール追従CTA表示（2026-07-23） ===== */
html.has-sticky-reveal .sticky-estimate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, calc(100% + 28px), 0);
  transition:
    opacity 220ms ease-out,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 360ms;
  will-change: transform, opacity;
}

html.has-sticky-reveal .sticky-estimate.is-revealed {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  html.has-sticky-reveal .sticky-estimate,
  html.has-sticky-reveal .sticky-estimate.is-revealed {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.01ms;
  }
}

/* ===== 工事代詳細化・理由カード実写化（2026-07-23） ===== */
.installation-package {
  margin-top: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #cadcec;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(4, 42, 92, 0.1);
}

.installation-package__header {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 25px 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 0%, rgba(72, 179, 238, 0.34), transparent 34%),
    linear-gradient(135deg, #06295e 0%, #0b3f7d 100%);
}

.installation-package__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 86px;
  height: 5px;
  background: var(--gold);
}

.installation-package__title > p {
  color: #9ed6ff;
  font-family: var(--en);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.installation-package__title h3 {
  margin-top: 7px;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}

.installation-package__title > span {
  display: block;
  margin-top: 7px;
  color: #d9e9f8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

.installation-package__price {
  align-self: center;
  padding: 17px 18px;
  color: var(--navy);
  background: #ffffff;
  border: 2px solid rgba(255, 210, 63, 0.88);
  border-radius: 15px;
  box-shadow: 0 10px 22px rgba(1, 22, 57, 0.2);
}

.installation-package__price > span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.installation-package__price strong {
  display: flex;
  align-items: flex-end;
  margin-top: 3px;
  color: var(--red);
  line-height: 1;
}

.installation-package__price b {
  font-family: var(--en);
  font-size: clamp(39px, 11vw, 58px);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.installation-package__price i {
  margin: 0 0 6px 6px;
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
}

.installation-package__price small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.installation-package__intro {
  padding: 22px;
  background: linear-gradient(135deg, #eef8ff 0%, #f7fbff 100%);
  border-bottom: 1px solid #d8e7f3;
}

.installation-package__intro strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.installation-package__intro strong::before {
  content: "POINT";
  display: inline-block;
  margin: 0 9px 3px 0;
  padding: 4px 8px;
  color: #ffffff;
  background: var(--green);
  border-radius: 999px;
  font-family: var(--en);
  font-size: 9px;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.installation-package__intro p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.8;
}

.installation-package__works {
  padding: 24px 18px 21px;
}

.installation-package__works-heading {
  text-align: center;
}

.installation-package__works-heading p {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.installation-package__works-heading span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.installation-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.installation-work-item {
  min-width: 0;
  padding: 15px 12px 14px;
  background: #ffffff;
  border: 1px solid #d8e7f3;
  border-top: 4px solid var(--work-accent, #1689d4);
  border-radius: 12px;
  box-shadow: 0 7px 16px rgba(4, 42, 92, 0.06);
}

.installation-work-item:nth-child(4n + 2) {
  --work-accent: #21a365;
}

.installation-work-item:nth-child(4n + 3) {
  --work-accent: #ef8c2f;
}

.installation-work-item:nth-child(4n + 4) {
  --work-accent: #00a5a8;
}

.installation-work-item > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-bottom: 9px;
  place-items: center;
  color: #ffffff;
  background: var(--work-accent, #1689d4);
  border-radius: 50%;
  font-family: var(--en);
  font-size: 10px;
  font-weight: 900;
}

.installation-work-item strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

.installation-work-item p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.65;
}

.installation-package__extra {
  display: grid;
  gap: 14px;
  margin: 0 18px;
  padding: 19px 18px;
  background: #fff8e8;
  border: 1px solid #efcf80;
  border-left: 5px solid #e7a619;
  border-radius: 13px;
}

.installation-package__extra > div > p {
  color: #b06b00;
  font-family: var(--en);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.installation-package__extra h4 {
  margin-top: 4px;
  color: #5f3d00;
  font-size: 15px;
  font-weight: 900;
}

.installation-package__extra ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
}

.installation-package__extra li {
  position: relative;
  padding-left: 15px;
  color: #694d18;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.55;
}

.installation-package__extra li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 1px;
  width: 6px;
  height: 6px;
  background: #e7a619;
  border-radius: 50%;
}

.installation-package__note {
  margin: 18px;
  padding: 13px 15px;
  color: var(--muted);
  background: #f5f8fb;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.75;
}

.reason-card {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border-color: #cbddec;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(4, 42, 92, 0.07);
  text-align: left;
}

.reason-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dce9f4;
  aspect-ratio: 3 / 2;
}

.reason-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.reason-card:nth-child(1) .reason-card__media img,
.reason-card:nth-child(3) .reason-card__media img,
.reason-card:nth-child(6) .reason-card__media img {
  object-position: center 42%;
}

.reason-card__media figcaption {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 4px 7px;
  color: #ffffff;
  background: rgba(4, 42, 92, 0.8);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
}

.reason-card__body {
  padding: 15px 14px 17px;
}

.reason-card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 14px;
}

.reason-card p {
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.75;
}

@media (min-width: 761px) {
  .installation-package {
    margin-top: 34px;
  }

  .installation-package__header {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.58fr);
    align-items: center;
    gap: 30px;
    padding: 31px 34px;
  }

  .installation-package__price {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    column-gap: 12px;
    padding: 20px 22px;
  }

  .installation-package__price > span,
  .installation-package__price small {
    grid-column: 1;
  }

  .installation-package__price strong {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
  }

  .installation-package__intro {
    padding: 25px 34px;
    text-align: center;
  }

  .installation-package__works {
    padding: 30px 28px 24px;
  }

  .installation-work-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
    margin-top: 22px;
  }

  .installation-work-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 17px 14px 16px;
  }

  .installation-work-item > span {
    margin-bottom: 0;
  }

  .installation-work-item strong {
    font-size: 13px;
  }

  .installation-package__extra {
    grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
    align-items: center;
    gap: 24px;
    margin-inline: 28px;
    padding: 21px 24px;
  }

  .installation-package__extra li {
    font-size: 11px;
  }

  .installation-package__note {
    margin: 20px 28px 25px;
    text-align: center;
  }

  .reason-card__body {
    padding: 18px 17px 20px;
  }

  .reason-card h3 {
    font-size: 16px;
  }

  .reason-card p {
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .reason-card__media figcaption {
    right: 5px;
    bottom: 5px;
    padding: 3px 5px;
    font-size: 8px;
  }

  .reason-card__body {
    padding: 13px 11px 15px;
  }

  .reason-card h3 {
    font-size: 13px;
  }

  .reason-card p {
    font-size: 10.5px;
  }
}

/* ===== 費用目安・4問選定・10年保証（2026-07-23） ===== */
.keep-together {
  white-space: nowrap;
}

.warranty-badge {
  align-self: flex-start;
  width: min(100%, 244px);
  min-height: 58px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  padding: 6px 9px 6px 7px;
  color: var(--navy);
  background: #fffaf0;
  border: 1px solid #d7b65c;
  border-radius: 12px;
  box-shadow: 0 7px 16px rgba(72, 52, 8, 0.13);
}

.warranty-badge:hover,
.warranty-badge:focus-visible {
  background: #fff5d8;
  border-color: #b98b1c;
  outline: 3px solid rgba(195, 151, 57, 0.2);
  outline-offset: 2px;
}

.warranty-badge > img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.warranty-badge > span {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 5px;
}

.warranty-badge small,
.warranty-badge strong,
.warranty-badge em {
  display: block;
}

.warranty-badge small {
  color: #6e5521;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.warranty-badge strong {
  color: var(--red);
  font-family: var(--en);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.warranty-badge em {
  grid-column: 1 / -1;
  margin-top: 3px;
  color: #685b3d;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

#cost-guide,
#quick-selector,
#warranty-detail,
.price-card[id] {
  scroll-margin-top: 84px;
}

.cost-guide-section {
  background: #eef7fd;
  border-top: 1px solid #d5e6f4;
  border-bottom: 1px solid #d5e6f4;
}

.cost-guide__formula {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(4, 42, 92, 0.08);
}

.cost-guide__formula article {
  min-width: 0;
  padding: 18px 16px;
  background: #f7fbff;
  border: 1px solid #d9e8f4;
  border-radius: 13px;
  text-align: center;
}

.cost-guide__formula article > span,
.cost-guide__formula article > em {
  display: block;
}

.cost-guide__formula article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.cost-guide__formula article > strong {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 7px;
  color: var(--red);
  line-height: 1;
  white-space: nowrap;
}

.cost-guide__formula article > strong b {
  font-family: var(--en);
  font-size: clamp(29px, 3.1vw, 44px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.cost-guide__formula article > strong small {
  margin: 0 3px 4px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.cost-guide__formula article > em {
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.cost-guide__formula .cost-guide__total {
  background: #fff8e8;
  border-color: #dec178;
}

.cost-guide__operator {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--en);
  font-size: 24px;
  font-weight: 900;
}

.budget-routes {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.budget-routes > p,
.budget-routes > a {
  min-height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 15px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.budget-routes > p strong {
  color: var(--navy);
  font-size: 14px;
}

.budget-routes > p span,
.budget-routes > a span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.budget-routes > a {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.budget-routes > a span {
  margin: 0 0 3px;
  color: #dff2ff;
}

.budget-routes > a strong {
  font-size: 13px;
}

.budget-routes > a:hover,
.budget-routes > a:focus-visible {
  background: #0566ae;
  outline: 3px solid rgba(8, 116, 201, 0.18);
  outline-offset: 2px;
}

.cost-guide__note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.quick-selector {
  margin-top: 42px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #bfd8eb;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(4, 42, 92, 0.08);
}

.quick-selector__header {
  padding: 25px 26px 23px;
  color: #ffffff;
  background: var(--navy);
  text-align: center;
}

.quick-selector__header > p {
  color: #79c8ff;
  font-family: var(--en);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.quick-selector__header h3 {
  margin-top: 5px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}

.quick-selector__header > span {
  display: block;
  max-width: 760px;
  margin: 8px auto 0;
  color: #d8e9f8;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.quick-selector__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 20px;
}

.quick-selector__form fieldset {
  min-width: 0;
  margin: 0;
  padding: 14px;
  background: #f7fbff;
  border: 1px solid #d8e7f3;
  border-radius: 12px;
}

.quick-selector__form legend {
  padding: 0 5px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.quick-selector__form legend b {
  margin-right: 6px;
  color: var(--blue);
  font-family: var(--en);
  font-size: 11px;
}

.quick-selector__form label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  padding: 7px 9px;
  background: #ffffff;
  border: 1px solid #d4e4f1;
  border-radius: 8px;
  cursor: pointer;
}

.quick-selector__form label:hover {
  border-color: var(--blue);
}

.quick-selector__form input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--blue);
}

.quick-selector__form label:has(input:checked) {
  color: var(--navy);
  background: #e9f5fe;
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.quick-selector__form label span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.quick-selector__form > button {
  min-height: 50px;
  padding: 12px 20px;
  color: #ffffff;
  background: var(--green-deep);
  border: 1px solid var(--green-deep);
  border-radius: 999px;
  box-shadow: 0 7px 16px rgba(3, 93, 34, 0.2);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.quick-selector__form > button:hover,
.quick-selector__form > button:focus-visible {
  background: #065b23;
  outline: 3px solid rgba(9, 155, 55, 0.2);
  outline-offset: 2px;
}

.quick-selector__result {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  margin: 0 20px 20px;
  padding: 17px 18px;
  background: #f2f7fb;
  border: 1px solid #d2e3ef;
  border-radius: 12px;
}

.quick-selector__result.is-visible {
  background: #fff8e8;
  border-color: #d8b75a;
}

.quick-selector__result:focus {
  outline: 3px solid rgba(8, 116, 201, 0.2);
  outline-offset: 2px;
}

.quick-selector__result span,
.quick-selector__result strong,
.quick-selector__result p {
  display: block;
}

.quick-selector__result span {
  color: var(--blue);
  font-family: var(--en);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.quick-selector__result strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.quick-selector__result p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

.quick-selector__result-link {
  align-self: center;
  justify-self: stretch;
  padding: 10px 15px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.quick-selector__result:not(.is-visible) .quick-selector__result-link {
  display: none;
}

.quick-selector__result-link:hover,
.quick-selector__result-link:focus-visible {
  background: #0566ae;
  outline: 3px solid rgba(8, 116, 201, 0.18);
  outline-offset: 2px;
}

.warranty-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-top: 34px;
  padding: 26px;
  color: #ffffff;
  background: var(--navy);
  border: 1px solid #123e76;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(3, 31, 71, 0.16);
}

.warranty-detail__visual {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--navy);
  background: #fff8e8;
  border: 1px solid #d6b55f;
  border-radius: 16px;
  text-align: center;
}

.warranty-detail__visual img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.warranty-detail__visual > span {
  margin-top: 5px;
  color: #6f5624;
  font-size: 13px;
  font-weight: 900;
}

.warranty-detail__visual > strong {
  color: var(--red);
  font-family: var(--en);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.warranty-detail__visual > strong small {
  margin-left: 4px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 19px;
}

.warranty-detail__content .section-kicker {
  color: #76c9ff;
}

.warranty-detail__content > h3 {
  margin-top: 6px;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.35;
}

.warranty-detail__content > p:not(.section-kicker) {
  margin-top: 10px;
  color: #d9e9f7;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.warranty-detail__points {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
  margin-top: 17px;
}

.warranty-detail__points article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 9px;
  padding: 12px;
  background: #123e76;
  border: 1px solid #2b5689;
  border-radius: 10px;
}

.warranty-detail__points article > span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #f2d785;
  border-radius: 50%;
  font-family: var(--en);
  font-size: 10px;
  font-weight: 900;
}

.warranty-detail__points h4 {
  margin: 0;
  font-size: 13px;
}

.warranty-detail__points p {
  margin-top: 3px;
  color: #d7e7f5;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.55;
}

.warranty-detail__action {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin-top: 17px;
}

.warranty-detail__action a {
  padding: 12px 18px;
  color: var(--navy);
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.warranty-detail__action a:hover,
.warranty-detail__action a:focus-visible {
  background: #eef7fd;
  outline: 3px solid rgba(255, 255, 255, 0.25);
  outline-offset: 2px;
}

.warranty-detail__action small {
  color: #bcd3e6;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

@media (min-width: 761px) {
  .cost-guide-section {
    padding: 64px 36px 44px;
  }

  .cost-guide__formula {
    grid-template-columns: minmax(0, 1fr) 28px minmax(0, 0.82fr) 28px minmax(0, 1.18fr);
    align-items: stretch;
  }

  .budget-routes {
    grid-template-columns: minmax(230px, 1.25fr) repeat(3, minmax(0, 1fr));
  }

  .quick-selector__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-selector__form > button {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 360px);
  }

  .quick-selector__result {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
  }

  .warranty-detail {
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: center;
    padding: 30px;
  }

  .warranty-detail__points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .quick-selector__form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-bottom: 96px;
  }

  #cost-guide,
  #quick-selector,
  #warranty-detail,
  .price-card[id] {
    scroll-margin-bottom: 96px;
  }

  .cost-guide-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .cost-guide__formula {
    padding: 11px;
  }

  .cost-guide__formula article > strong b {
    font-size: 34px;
  }

  .cost-guide__operator {
    min-height: 22px;
  }

  .quick-selector {
    margin-top: 30px;
  }

  .quick-selector__header {
    padding: 22px 18px 20px;
  }

  .quick-selector__form {
    padding: 14px;
  }

  .quick-selector__result {
    margin: 0 14px 14px;
  }

  .warranty-detail {
    padding: 18px;
  }

  .warranty-detail__visual {
    min-height: 190px;
  }
}

@media (min-width: 1024px) and (max-width: 1099px) {
  .sticky-estimate {
    grid-template-columns: 82px minmax(155px, 0.75fr) minmax(0, 1.35fr) minmax(245px, 0.9fr);
    gap: 7px;
    padding-inline: 10px;
  }

  .sticky-phone-hand > img {
    width: 88px;
  }

  .sticky-value > span {
    font-size: 13px;
  }

  .sticky-value > strong {
    font-size: 15px;
  }

  .sticky-speed b {
    font-size: 31px;
  }

  .sticky-process {
    padding-inline: 7px;
  }

  .sticky-process ol {
    gap: 3px;
  }

  .sticky-process li {
    grid-template-columns: 17px 38px minmax(0, 1fr);
    gap: 2px;
  }

  .sticky-process li > img {
    width: 37px;
    height: 37px;
  }

  .sticky-process li > .sticky-quote-image {
    width: 47px;
    height: 47px;
  }

  .sticky-process li > strong {
    font-size: 9px;
  }

  .sticky-line-button {
    padding-inline: 12px;
  }

  .sticky-desktop-copy strong {
    font-size: 13px;
  }
}

/* ===== FV下端クリアランス（2026-07-23） =====
   13インチPCでもFV最下部と理由帯を重ねず、商品導線を読める余白を確保する。 */
@media (min-width: 1024px) {
  .site-nav {
    min-height: 34px;
  }

  .site-nav a {
    padding-top: 6px;
    padding-bottom: 8px;
  }

  .hero {
    height: max(calc(100svh - 200px), 710px);
  }

  .hero-grid {
    padding: 10px 16px 24px;
  }

  .product-panel {
    height: auto;
    min-height: 0;
    align-self: stretch;
  }

  .copy-area {
    overflow: visible;
  }

  .hero-person {
    bottom: -36px;
    height: 454px;
  }

  .sticky-process ol {
    column-gap: 24px;
  }

  .sticky-process-arrow {
    position: absolute;
    top: 50%;
    right: -19px;
    transform: translate(-10px, -50%);
    color: var(--blue);
    font-family: var(--en);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
  }
}

@media (min-width: 1024px) and (max-width: 1099px) {
  .sticky-process ol {
    column-gap: 18px;
  }

  .sticky-process-arrow {
    right: -16px;
    font-size: 13px;
  }
}

/* ===== セクション英語キッカー削除（2026-07-23） =====
   装飾英語を外した後も、日本語見出しの開始位置を自然にそろえる。 */
.section-heading h2,
.subsidy-copy h2,
.company-info h2,
.estimate-panel h2 {
  margin-top: 0;
}

.lineup-heading {
  justify-content: flex-end;
}

.quick-selector__header h3,
.installation-package__title h3,
.installation-package__extra h4,
.warranty-detail__content > h3 {
  margin-top: 0;
}

/* ===== FV下デザインシステム（2026-07-23） =====
   DESIGN.mdに基づき、FVと追従CTAを保護したまま、
   多色・多重カード・過剰な角丸と影を罫線中心の実務的な表現へ整える。 */
.lp-content {
  color: #17263a;
  background: #ffffff;
}

.lp-content .lp-section {
  padding: 80px 24px;
}

.lp-content .section-inner {
  width: min(100%, 1120px);
  margin-inline: auto;
}

.lp-content .pricing-section > .section-inner,
.lp-content .works-section > .section-inner {
  width: min(100%, 1200px);
}

.lp-content .section-heading {
  max-width: 840px;
  margin: 0 0 40px;
  text-align: left;
}

.lp-content .section-heading h2 {
  color: #062a5c;
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.lp-content .section-heading > p {
  max-width: 760px;
  margin-top: 16px;
  color: #52657a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.reasons {
  min-height: 0;
  grid-template-columns: 240px minmax(0, 1fr);
  border-bottom: 1px solid #d6dee5;
  box-shadow: none;
}

.reasons > h2 {
  padding: 24px;
  background: #062a5c;
}

.reasons > h2 span {
  font-size: 12px;
  letter-spacing: 0;
}

.reasons > h2 strong {
  font-size: 24px;
  font-weight: 800;
}

.reasons li {
  gap: 12px;
  padding: 20px;
  border-color: #d6dee5;
}

.reasons li > img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
}

.reasons h3 {
  color: #17263a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.reasons li p {
  margin-top: 4px;
  color: #52657a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.cost-guide-section {
  background: #f7f9fa;
  border-color: #d6dee5;
}

.cost-guide__formula {
  display: grid;
  gap: 0;
  padding: 0;
  background: #ffffff;
  border: 1px solid #d6dee5;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.cost-guide__formula article {
  padding: 24px;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  text-align: center;
}

.cost-guide__formula article > span {
  color: #062a5c;
  font-size: 13px;
  font-weight: 800;
}

.cost-guide__formula article > strong b {
  font-size: clamp(38px, 4vw, 52px);
}

.cost-guide__formula article > strong small {
  color: #17263a;
  font-size: 14px;
}

.cost-guide__formula article > em {
  color: #52657a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.cost-guide__formula .cost-guide__total {
  background: #fff8e4;
  border: 0;
}

.cost-guide__operator {
  min-width: 32px;
  background: #ffffff;
  font-size: 22px;
}

.budget-routes {
  gap: 0;
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid #d6dee5;
}

.budget-routes > p,
.budget-routes > a {
  min-height: 72px;
  padding: 16px 20px;
  color: #17263a;
  background: #ffffff;
  border: 0;
  border-right: 1px solid #d6dee5;
  border-radius: 0;
  box-shadow: none;
}

.budget-routes > a:last-child {
  border-right: 0;
}

.budget-routes > p strong,
.budget-routes > a strong {
  color: #062a5c;
  font-size: 14px;
  font-weight: 800;
}

.budget-routes > p span,
.budget-routes > a span {
  margin-top: 4px;
  color: #52657a;
  font-size: 12px;
  font-weight: 500;
}

.budget-routes > a:hover,
.budget-routes > a:focus-visible {
  color: #062a5c;
  background: #eef5fa;
  outline: 2px solid #0874c9;
  outline-offset: -2px;
}

.cost-guide__note {
  margin-top: 16px;
  color: #52657a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
}

.pricing-section {
  background: #ffffff;
}

.price-card {
  background: #ffffff;
  border: 1px solid #d6dee5;
  border-radius: 8px;
  box-shadow: none;
}

.price-card--featured {
  border: 2px solid #b8891a;
  box-shadow: 0 4px 12px rgba(6, 42, 92, 0.08);
}

.price-card .price-card__header {
  background: #fff;
  border-bottom: 1px solid #d6dee5;
}

.price-card--corona .price-card__header {
  border-top: 4px solid #2878b9;
}

.price-card--hitachi .price-card__header {
  border-top: 4px solid #c64249;
}

.price-card--panasonic .price-card__header {
  border-top: 4px solid #1e56a6;
}

.price-card--mitsubishi .price-card__header {
  border-top: 4px solid #d13a31;
}

.price-card--daikin .price-card__header {
  border-top: 4px solid #1598cf;
}

.price-card__chip {
  color: #17263a;
  background: #f0f3f5;
  border: 1px solid #d6dee5;
  border-radius: 4px;
  min-height: 34px;
  font-size: 11px;
}

.price-card__chip--orange,
.price-card__chip--slate,
.price-card__chip--blue {
  color: #17263a;
  background: #f0f3f5;
  border: 1px solid #d6dee5;
  border-radius: 4px;
}

.price-card__chip:first-child {
  color: #062a5c;
  background: #eaf4fd;
  border-color: #abcfe9;
}

.price-card__description {
  color: #17263a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.price-card__image figcaption {
  position: static;
  margin-top: 8px;
  padding: 0;
  color: #52657a;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.price-card__info {
  background: #ffffff;
  border-top: 1px solid #d6dee5;
}

.price-card__info > div {
  border-bottom: 1px solid #e3e9ee;
}

.price-card__info dt {
  color: #52657a;
  font-size: 12px;
}

.price-card__info dd {
  color: #17263a;
  font-size: 13px;
  line-height: 1.55;
}

.price-card__info small {
  font-size: 12px;
  line-height: 1.55;
}

.price-card__label {
  font-size: 12px;
}

.price-card__maker,
.price-card__label {
  color: #062a5c;
}

.price-card__tax,
.price-card__installation {
  font-size: 12px;
  line-height: 1.55;
}

.price-card__action {
  min-height: 52px;
  color: #062a5c;
  background: #ffffff;
  border: 1px solid #0874c9;
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
}

.price-card--featured .price-card__action {
  color: #062a5c;
  background: #ffffff;
  border-color: #0874c9;
}

.price-card__action:hover,
.price-card__action:focus-visible {
  color: #ffffff;
  background: #0874c9;
}

.price-card--featured::before {
  border-radius: 4px;
  box-shadow: none;
}

.quick-selector {
  margin-top: 48px;
  background: #ffffff;
  border: 1px solid #d6dee5;
  border-radius: 8px;
  box-shadow: none;
}

.quick-selector__header {
  padding: 32px;
  color: #17263a;
  background: #f7f9fa;
  border-bottom: 1px solid #d6dee5;
  text-align: left;
}

.quick-selector__header h3 {
  color: #062a5c;
  font-size: 28px;
  font-weight: 800;
}

.quick-selector__header > span {
  max-width: 760px;
  margin: 12px 0 0;
  color: #52657a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.quick-selector__form {
  gap: 0;
  padding: 24px;
}

.quick-selector__form fieldset {
  padding: 24px;
  background: #ffffff;
  border: 0;
  border-right: 1px solid #d6dee5;
  border-bottom: 1px solid #d6dee5;
  border-radius: 0;
}

.quick-selector__form fieldset:nth-of-type(even) {
  border-right: 0;
}

.quick-selector__form legend {
  color: #062a5c;
  font-size: 15px;
  font-weight: 800;
}

.quick-selector__form legend b {
  color: #0874c9;
  font-size: 13px;
}

.quick-selector__form label {
  min-height: 48px;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid #d6dee5;
  border-radius: 4px;
}

.quick-selector__form label:has(input:checked) {
  background: #eaf4fd;
  border-color: #0874c9;
  box-shadow: none;
}

.quick-selector__form label span {
  color: #17263a;
  font-size: 14px;
  font-weight: 500;
}

.quick-selector__form > button {
  min-height: 52px;
  margin-top: 24px;
  color: #ffffff;
  background: #062a5c;
  border: 1px solid #062a5c;
  border-radius: 8px;
  box-shadow: none;
  font-size: 15px;
  font-weight: 800;
}

.quick-selector__form > button:hover,
.quick-selector__form > button:focus-visible {
  background: #0874c9;
  outline: 3px solid rgba(8, 116, 201, 0.18);
}

.quick-selector__result {
  margin: 0 24px 24px;
  padding: 20px 24px;
  background: #f7f9fa;
  border: 1px solid #d6dee5;
  border-radius: 4px;
}

.quick-selector__result span {
  color: #52657a;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.quick-selector__result strong {
  font-size: 17px;
  font-weight: 800;
}

.quick-selector__result p {
  color: #52657a;
  font-size: 14px;
  font-weight: 500;
}

.quick-selector__result-link {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0874c9;
  border-radius: 8px;
  font-size: 14px;
}

.installation-package {
  margin-top: 48px;
  background: #ffffff;
  border: 1px solid #d6dee5;
  border-radius: 8px;
  box-shadow: none;
}

.installation-package__header {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 0;
  padding: 0;
  color: #17263a;
  background: #ffffff;
  border-bottom: 1px solid #d6dee5;
}

.installation-package__header::before {
  display: none;
}

.installation-package__title {
  padding: 32px;
  background: #eaf4fd;
  border-right: 1px solid #d6dee5;
  border-radius: 0;
}

.installation-package__title h3 {
  color: #062a5c;
  font-size: 30px;
  font-weight: 800;
}

.installation-package__title > span {
  color: #52657a;
  font-size: 13px;
  line-height: 1.65;
}

.installation-package__price {
  grid-template-columns: 86px minmax(0, 1fr);
  grid-template-areas:
    "label price"
    "note price";
  column-gap: 12px;
  align-items: center;
  margin: 24px 32px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #b8891a;
  border-radius: 0;
  box-shadow: none;
}

.installation-package__price > span {
  grid-area: label;
  white-space: nowrap;
}

.installation-package__price strong {
  grid-area: price;
}

.installation-package__price small {
  grid-area: note;
  font-size: 12px;
}

.installation-package__intro::before {
  display: none;
}

.installation-package__intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.7fr);
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: #f7f9fa;
  border-bottom: 1px solid #d6dee5;
  text-align: left;
}

.installation-package__intro strong {
  font-size: 17px;
}

.installation-package__intro strong::before {
  display: none;
}

.installation-package__intro p {
  margin-top: 0;
  font-size: 13px;
}

.installation-package__works {
  padding: 28px 0 0;
}

.installation-package__works-heading {
  padding: 0 32px;
  text-align: left;
}

.installation-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0 32px;
  border-top: 0;
}

.installation-work-item {
  min-height: 88px;
  padding: 20px 16px;
  background: #ffffff;
  border: 0;
  border-right: 1px solid #d6dee5;
  border-bottom: 1px solid #d6dee5;
  border-radius: 0;
  box-shadow: none;
}

.installation-work-item:nth-child(even) {
  border-right: 0;
}

.installation-work-item::before {
  display: none;
}

.installation-work-item > span,
.installation-work-item:nth-child(n) > span {
  color: #ffffff;
  background: #0874c9;
  border-radius: 4px;
  font-size: 11px;
}

.installation-work-item strong {
  color: #17263a;
  font-size: 15px;
  font-weight: 700;
}

.installation-work-item p {
  margin-top: 4px;
  color: #52657a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.installation-package__extra {
  margin: 24px 32px;
  padding: 24px;
  background: #fff8e4;
  border: 1px solid #e4cf91;
  border-left: 4px solid #b8891a;
  border-radius: 4px;
  box-shadow: none;
}

.installation-package__extra h4 {
  font-size: 17px;
}

.installation-package__extra li {
  font-size: 13px;
  line-height: 1.7;
}

.installation-package__note {
  margin: 0 32px 32px;
  padding: 16px;
  color: #52657a;
  background: #f7f9fa;
  border-radius: 0;
  font-size: 12px;
  line-height: 1.65;
}

.warranty-detail {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding: 32px;
  color: #17263a;
  background: #ffffff;
  border: 1px solid #d6dee5;
  border-top: 4px solid #b8891a;
  border-radius: 8px;
  box-shadow: none;
}

.warranty-detail__visual {
  min-height: 240px;
  padding: 24px;
  color: #062a5c;
  background: #fff8e4;
  border: 0;
  border-radius: 0;
}

.warranty-detail__content > h3 {
  color: #062a5c;
  font-size: 30px;
  font-weight: 800;
}

.warranty-detail__content > p:not(.section-kicker) {
  color: #52657a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.warranty-detail__points {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-top: 24px;
}

.warranty-detail__points article {
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid #d6dee5;
  border-radius: 0;
}

.warranty-detail__points article:last-child {
  border-bottom: 1px solid #d6dee5;
}

.warranty-detail__points article > span {
  color: #062a5c;
  background: #fff8e4;
  border: 1px solid #b8891a;
  border-radius: 4px;
  font-size: 12px;
}

.warranty-detail__points h4 {
  color: #17263a;
  font-size: 15px;
}

.warranty-detail__points p {
  color: #52657a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.warranty-detail__action a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #062a5c;
  border-radius: 8px;
  font-size: 14px;
}

.warranty-detail__action small {
  color: #52657a;
  font-size: 12px;
  line-height: 1.65;
  text-align: left;
}

.reasons-section {
  background: #ffffff;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #d6dee5;
}

.reason-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 24px;
  background: transparent;
  border: 0;
  border-right: 1px solid #d6dee5;
  border-bottom: 1px solid #d6dee5;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.reason-card:nth-child(even) {
  border-right: 0;
}

.reason-card__media {
  overflow: hidden;
  border-radius: 4px;
}

.reason-card__media img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.reason-card__media figcaption {
  position: static;
  margin-top: 8px;
  padding: 0;
  color: #52657a;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}

.reason-card__body {
  padding: 0 0 0 24px;
}

.reason-card__body h3 {
  color: #17263a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.reason-card__body p {
  margin-top: 8px;
  color: #52657a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.works-section {
  background: #062a5c;
}

.works-section .section-heading {
  max-width: 900px;
}

.works-section .section-heading h2 {
  color: #ffffff;
}

.works-section .section-heading > p {
  color: #d7e3ef;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.works-list > .work-pair:first-child {
  grid-column: 1 / -1;
}

.works-list > .work-pair:last-child {
  grid-column: auto;
  width: auto;
  justify-self: stretch;
}

.work-pair {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #d6dee5;
  border-radius: 4px;
  box-shadow: none;
}

.work-pair header p {
  color: #0874c9;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.work-pair header h3 {
  color: #17263a;
  font-size: 20px;
  font-weight: 700;
}

.work-pair header span {
  color: #52657a;
  font-size: 12px;
}

.work-images {
  gap: 8px;
  margin-top: 16px;
}

.work-images figure {
  border-radius: 4px;
}

.work-images figure > span {
  padding: 5px 9px;
  border-radius: 4px;
  box-shadow: none;
  font-size: 12px;
}

.flow-section {
  background: #f7f9fa;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #d6dee5;
  border-bottom: 1px solid #d6dee5;
}

.flow-list > li {
  padding: 24px;
  background: transparent;
  border: 0;
  border-right: 1px solid #d6dee5;
  border-radius: 0;
  box-shadow: none;
}

.flow-list > li:last-child {
  border-right: 0;
}

.flow-list > li::after {
  display: none;
}

.flow-visual {
  border-radius: 4px;
}

.flow-visual img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.flow-visual figcaption {
  position: static;
  margin-top: 8px;
  padding: 0;
  color: #52657a;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}

.flow-copy {
  padding: 20px 0 0;
}

.flow-step {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #062a5c;
  border-radius: 4px;
  font-family: var(--en);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.flow-copy h3 {
  margin-top: 16px;
  color: #17263a;
  font-size: 20px;
  font-weight: 700;
}

.flow-copy > p:not(.flow-step) {
  color: #52657a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.flow-copy small {
  color: #52657a;
  font-size: 12px;
  line-height: 1.65;
}

.subsidy-section {
  color: #ffffff;
  background: #062a5c;
}

.subsidy-copy h2 {
  font-size: 36px;
  font-weight: 800;
}

.subsidy-copy p {
  font-size: 15px;
  line-height: 1.75;
}

.subsidy-checks {
  color: #17263a;
  background: #ffffff;
  border: 1px solid #d6dee5;
  border-radius: 4px;
  box-shadow: none;
}

.subsidy-checks h3 {
  font-size: 18px;
}

.subsidy-checks li,
.subsidy-checks p {
  font-size: 13px;
  line-height: 1.7;
}

.faq-section {
  background: #ffffff;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  border-top: 1px solid #d6dee5;
}

.faq-list details {
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid #d6dee5;
  border-radius: 0;
  box-shadow: none;
}

.faq-list summary {
  min-height: 64px;
  padding: 20px 0;
  color: #17263a;
  font-size: 16px;
  font-weight: 700;
}

.faq-list summary:focus-visible {
  outline: 3px solid #0874c9;
  outline-offset: 4px;
}

.faq-list details > p {
  padding: 0 0 24px;
  color: #52657a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.company-section {
  background: #f7f9fa;
}

.company-section > .estimate-panel {
  margin-top: 0;
}

.estimate-panel {
  gap: 32px;
  padding: 32px;
  background: #062a5c;
  border-radius: 8px;
  box-shadow: none;
}

.estimate-panel h2 {
  font-size: 30px;
  font-weight: 800;
}

.estimate-panel p {
  font-size: 15px;
  line-height: 1.75;
}

.estimate-button {
  min-height: 56px;
  background: #08752d;
  border-radius: 8px;
  box-shadow: none;
  font-size: 16px;
}

.site-footer {
  background: #031f47;
}

.site-footer p span,
.site-footer small {
  font-size: 12px;
}

.reasons-section .section-heading > p {
  max-width: 900px;
}

@media (min-width: 768px) {
  .cost-guide__formula {
    grid-template-columns: minmax(0, 1fr) 32px minmax(0, 0.82fr) 32px minmax(0, 1.18fr);
  }

  .budget-routes {
    grid-template-columns: minmax(230px, 1.2fr) repeat(3, minmax(0, 1fr));
  }

  .quick-selector__form,
  .quick-selector__form:nth-child(n) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-selector__form > button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .lp-content .lp-section {
    padding: 48px 20px;
  }

  .lp-content .section-heading {
    margin-bottom: 32px;
  }

  .lp-content .section-heading h2 {
    font-size: 28px;
    line-height: 1.45;
  }

  .lp-content .section-heading > p {
    font-size: 16px;
  }

  .reasons {
    grid-template-columns: minmax(0, 1fr);
  }

  .reasons > h2 {
    padding: 20px;
  }

  .reasons > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons li {
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid #d6dee5;
  }

  .reasons li:nth-child(even) {
    border-right: 0;
  }

  .reasons li > img {
    width: 40px;
    height: 40px;
  }

  .reasons h3 {
    font-size: 14px;
  }

  .reasons li p {
    font-size: 12px;
  }

  .cost-guide__formula article {
    border-bottom: 1px solid #d6dee5;
  }

  .cost-guide__formula article:last-child {
    border-bottom: 0;
  }

  .cost-guide__operator {
    min-height: 32px;
  }

  .budget-routes {
    grid-template-columns: minmax(0, 1fr);
  }

  .budget-routes > p,
  .budget-routes > a {
    border-right: 0;
    border-bottom: 1px solid #d6dee5;
  }

  .budget-routes > a:last-child {
    border-bottom: 0;
  }

  .price-card {
    border-radius: 8px;
  }

  .price-card__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-card__image {
    max-width: 240px;
    margin-inline: auto;
  }

  .price-card__description {
    font-size: 14px;
  }

  .quick-selector {
    margin-top: 40px;
  }

  .quick-selector__header {
    padding: 24px 20px;
  }

  .quick-selector__header h3 {
    font-size: 24px;
  }

  .quick-selector__form {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
  }

  .quick-selector__form fieldset {
    padding: 20px 0;
    border-right: 0;
  }

  .quick-selector__result {
    margin: 0 16px 16px;
  }

  .installation-package {
    margin-top: 40px;
  }

  .installation-package__title,
  .installation-package__intro {
    padding: 24px 20px;
  }

  .installation-package__header,
  .installation-package__intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .installation-package__title {
    border-right: 0;
    border-bottom: 1px solid #d6dee5;
  }

  .installation-package__price {
    margin: 20px;
  }

  .installation-package__title h3 {
    font-size: 25px;
  }

  .installation-package__works-heading {
    padding: 0 20px;
  }

  .installation-work-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 0 20px;
  }

  .installation-work-item {
    border-right: 0;
  }

  .installation-package__extra {
    margin: 24px 20px;
    padding: 20px;
  }

  .installation-package__note {
    margin: 0 20px 24px;
  }

  .warranty-detail {
    grid-template-columns: minmax(0, 1fr);
    padding: 20px;
  }

  .warranty-detail__visual {
    min-height: 190px;
    border-bottom: 1px solid #e4cf91;
  }

  .warranty-detail__content > h3 {
    font-size: 26px;
  }

  .reason-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reason-card {
    grid-template-columns: 112px minmax(0, 1fr);
    padding: 16px 0;
    border-right: 0;
  }

  .reason-card__media img {
    height: 88px;
  }

  .reason-card__media figcaption {
    font-size: 11px;
  }

  .reason-card__body {
    padding-left: 16px;
  }

  .reason-card__body h3 {
    font-size: 17px;
  }

  .reason-card__body p {
    font-size: 14px;
  }

  .works-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .works-list > .work-pair:first-child {
    grid-column: auto;
  }

  .work-pair {
    padding: 16px;
  }

  .flow-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .flow-list > li {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #d6dee5;
  }

  .flow-list > li:last-child {
    border-bottom: 0;
  }

  .flow-visual img {
    height: 96px;
  }

  .flow-copy {
    padding-top: 0;
  }

  .flow-copy h3 {
    margin-top: 12px;
    font-size: 18px;
  }

  .subsidy-copy h2 {
    font-size: 30px;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .estimate-panel {
    padding: 24px 20px;
  }

  .estimate-panel h2 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-content *,
  .lp-content *::before,
  .lp-content *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
