:root {
  --blue: #066be8;
  --blue-deep: #004bb9;
  --blue-soft: #eef6ff;
  --orange: #f2a21a;
  --text: #111827;
  --muted: #606b7a;
  --line: #e4ebf4;
  --paper: #fff;
  --cream: #fbf8f1;
  --shadow: 0 18px 42px rgba(13, 54, 110, 0.12);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(16, 36, 68, 0.06);
  backdrop-filter: blur(14px);
}

.lp-header__inner {
  width: min(calc(100% - 40px), 1280px);
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.lp-brand img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  clip-path: inset(0 0 24% 0);
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 14px;
  font-weight: 800;
}

.lp-nav a {
  padding: 25px 0;
}

.lp-nav a:hover {
  color: var(--blue);
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111722;
  font-weight: 900;
  white-space: nowrap;
}

.lp-phone-link svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.lp-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(6, 107, 232, 0.24);
  white-space: nowrap;
}

.lp-header__cta svg {
  width: 18px;
  height: 18px;
}

.aircon-hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.97) 38%, rgba(255,255,255,0.75) 52%, rgba(255,255,255,0.12) 70%, rgba(255,255,255,0.02) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(232, 243, 255, 0.08)),
    url("../images/aircon-work-hero.jpg") right 30% center / auto 100% no-repeat,
    linear-gradient(180deg, #fff, #f5f9ff);
}

.aircon-hero__inner {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

.aircon-hero__copy {
  width: min(100%, 630px);
  padding: 46px 0 48px;
}

.aircon-eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.aircon-eyebrow::before,
.aircon-eyebrow::after {
  content: "\\";
  display: inline-block;
  margin: 0 10px;
  color: var(--blue);
}

.aircon-eyebrow::after {
  content: "/";
}

.aircon-hero h1 {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.aircon-hero h1 .line {
  display: block;
}

.aircon-hero h1 .line-accent {
  color: var(--blue);
}

.aircon-hero__lead {
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
}

.award-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.award-item {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid rgba(6, 107, 232, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  box-shadow: 0 12px 24px rgba(15, 55, 110, 0.08);
}

.award-item strong {
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.award-item span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.hero-contact {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.phone-card,
.mail-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  border-radius: 7px;
  border: 2px solid transparent;
  font-weight: 900;
}

.phone-card {
  min-width: 260px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 16px 30px rgba(6, 107, 232, 0.24);
}

.mail-card {
  min-width: 210px;
  background: #fff;
  border-color: #aab4c2;
}

.phone-card svg,
.mail-card svg,
.contact-phone svg {
  width: 28px;
  height: 28px;
}

.phone-card b,
.mail-card b,
.contact-phone b,
.contact-form b {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.phone-card small,
.mail-card small,
.contact-phone small,
.contact-form small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.2;
}

.lp-section {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 58px 0;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(27px, 3.6vw, 38px);
  line-height: 1.35;
  font-weight: 900;
}

.section-heading p {
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.section-heading span {
  color: var(--blue);
}

.worry-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 58px max(22px, calc((100% - var(--max)) / 2)) 74px;
  background: linear-gradient(180deg, #fff, var(--cream));
}

.worry-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -44px;
  z-index: 2;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 118px solid transparent;
  border-right: 118px solid transparent;
  border-top: 44px solid var(--cream);
  filter: drop-shadow(0 16px 18px rgba(16, 36, 68, 0.08));
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(100%, 880px);
  margin: 0 auto;
}

.worry-grid article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 36, 68, 0.06);
}

.worry-grid span,
.solution-grid span,
.flow-grid span {
  color: var(--blue);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.worry-grid p {
  margin: 0;
  font-weight: 900;
  line-height: 1.7;
}

.solution-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 92px max(22px, calc((100% - var(--max)) / 2)) 58px;
  background: #fff;
}

.solution-layout {
  display: block;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.solution-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 250px;
  padding: 28px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 26px rgba(16, 36, 68, 0.06);
}

.solution-grid h3,
.flow-grid h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.solution-grid p,
.flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.service-area-section {
  border-top: 1px solid var(--line);
  padding-top: 50px;
  padding-bottom: 42px;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.service-area-list li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid #b8d3f8;
  border-radius: 999px;
  color: var(--blue-deep);
  background: linear-gradient(180deg, #fff, #f3f8ff);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(16, 65, 130, 0.06);
}

.service-area-list li.area-link-item {
  padding: 0;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(6, 107, 232, 0.2);
}

.service-area-list li.area-link-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}

.service-area-list li.area-link-item a::after {
  content: "›";
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.service-area-list li.area-link-item:hover {
  transform: translateY(-1px);
  background: #075bc4;
}

.flow-section {
  border-top: 1px solid var(--line);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.flow-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 11px;
  min-height: 236px;
  padding: 30px 16px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 26px rgba(16, 36, 68, 0.06);
}

.flow-grid article + article::before {
  content: "›";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  color: #111827;
  font-size: 30px;
  font-weight: 900;
}

.flow-grid b {
  position: absolute;
  top: -14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  line-height: 1;
}

.price-section {
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding: 58px max(22px, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 14px;
  min-height: 180px;
  padding: 28px;
  border: 1px solid #c8ddfa;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 65, 130, 0.09);
}

.price-card strong {
  display: block;
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 900;
}

.price-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-card p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  white-space: nowrap;
}

.subsidy-block {
  max-width: 1060px;
  margin: 34px auto 0;
  padding: 26px;
  border: 1px solid #d5e6fb;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.subsidy-heading {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin-bottom: 20px;
}

.subsidy-heading span {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
}

.subsidy-heading h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.35;
  font-weight: 900;
}

.subsidy-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.subsidy-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 34%);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #9fc5f8 #edf5ff;
}

.subsidy-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 270px;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 5px solid #12b76a;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f5fff9);
  scroll-snap-align: start;
}

.subsidy-card__top {
  display: flex;
  align-items: center;
}

.subsidy-card__top span {
  font-weight: 900;
}

.subsidy-card__top span {
  color: #087443;
  font-size: 20px;
}

.subsidy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.72;
}

.subsidy-card a {
  align-self: end;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status-yes {
  border-top-color: #12b76a;
}

.status-best {
  border-top-color: #12b76a;
}

.sakura-aircon-page .service-area-list li.is-etc {
  min-height: 0;
  padding: 8px 4px;
  color: #8a95a3;
  border: 0;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
}

.sakura-aircon-page .subsidy-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

.sakura-aircon-page .subsidy-highlights article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 150px;
  padding: 20px 18px 18px;
  overflow: hidden;
  border: 1px solid #c8ddfa;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(6, 107, 232, 0.1), rgba(255, 255, 255, 0) 48%),
    #fff;
  box-shadow: 0 12px 26px rgba(16, 65, 130, 0.08);
}

.sakura-aircon-page .subsidy-highlights article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(6, 107, 232, 0.08);
}

.sakura-aircon-page .subsidy-highlights b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(6, 107, 232, 0.2);
}

.sakura-aircon-page .subsidy-highlights strong {
  color: #111827;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.sakura-aircon-page .subsidy-highlights span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.sakura-aircon-page .subsidy-summary {
  display: grid;
  gap: 20px;
  overflow: visible;
  scrollbar-color: #9fc5f8 #edf5ff;
}

.sakura-aircon-page .subsidy-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #9fc5f8 #edf5ff;
}

.sakura-aircon-page .subsidy-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #d8e5f4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(16, 36, 68, 0.05);
}

.sakura-aircon-page .subsidy-table th,
.sakura-aircon-page .subsidy-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5edf7;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.7;
}

.sakura-aircon-page .subsidy-table th {
  color: #1f3351;
  background: #f1f7ff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.sakura-aircon-page .subsidy-table td:first-child {
  width: 28%;
  color: #162338;
  font-weight: 900;
}

.sakura-aircon-page .subsidy-table tr:last-child td {
  border-bottom: 0;
}

.sakura-aircon-page .status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.sakura-aircon-page .status-maybe {
  color: #8a5a00;
  background: #fff3cf;
}

.sakura-aircon-page .status-check {
  color: #075985;
  background: #e0f2fe;
}

.sakura-aircon-page .status-strong {
  color: #064e3b;
  background: #d1fae5;
}

.sakura-aircon-page .subsidy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
}

.sakura-aircon-page .subsidy-card {
  min-height: 0;
}

.sakura-aircon-page .subsidy-card__top span {
  color: #2f415d;
  line-height: 1.45;
}

.sakura-aircon-page .subsidy-card .subsidy-note {
  padding: 10px 12px;
  border-radius: 8px;
  color: #344357;
  background: rgba(255, 255, 255, 0.72);
}

.sakura-aircon-page .status-maybe-card {
  border-top-color: #f2a21a;
  background: linear-gradient(180deg, #fff, #fff9ec);
}

.sakura-aircon-page .status-check-card {
  border-top-color: var(--blue);
  background: linear-gradient(180deg, #fff, #f2f8ff);
}

.sakura-aircon-page .status-strong-card {
  border-top-color: #12b76a;
  background: linear-gradient(180deg, #fff, #f5fff9);
}

.sakura-aircon-page .subsidy-action {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid #c8ddfa;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.sakura-aircon-page .subsidy-action h4 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 20px;
  font-weight: 900;
}

.sakura-aircon-page .subsidy-action p {
  margin: 0;
  color: #344357;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.sakura-aircon-page .subsidy-action ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.sakura-aircon-page .subsidy-action li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.sakura-aircon-page .subsidy-action li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
}

.sakura-aircon-page .subsidy-action__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 46px;
  margin-top: 4px;
  padding: 0 20px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(6, 107, 232, 0.2);
}

.message-section {
  padding-top: 54px;
}

.message-card {
  display: grid;
  grid-template-columns: minmax(300px, 390px) 1fr;
  align-items: center;
  gap: 36px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.message-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
}

.message-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center;
}

.message-card figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.message-card p {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.9;
}

.message-card p + p {
  margin-top: 18px;
}

.faq-section {
  padding-top: 46px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(16, 36, 68, 0.05);
}

.faq-grid summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 50px 15px 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 25px;
  font-weight: 500;
}

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

.faq-grid summary span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  flex: 0 0 auto;
}

.faq-grid p {
  margin: 0;
  padding: 0 18px 18px 52px;
  color: #2c3542;
  font-size: 14px;
  font-weight: 700;
}

.faq-grid p b {
  margin-right: 8px;
}

.contact-band {
  padding: 50px 22px 58px;
  color: #fff;
  background: linear-gradient(135deg, #0072ef, #0048b9);
  text-align: center;
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.35;
  font-weight: 900;
}

.contact-band p {
  margin: 8px 0 26px;
  color: #fff6db;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 900;
}

.contact-band__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 450px));
  justify-content: center;
  gap: 30px;
}

.contact-phone,
.contact-form {
  min-height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 22px;
  border-radius: 7px;
  color: var(--text);
  background: #fff;
  text-align: left;
  box-shadow: 0 14px 28px rgba(0, 25, 75, 0.18);
}

.contact-phone svg {
  color: var(--blue);
  fill: currentColor;
}

.contact-form {
  border: 2px solid rgba(6, 107, 232, 0.18);
}

.contact-form svg {
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.contact-phone b {
  color: var(--blue);
  font-size: clamp(24px, 3vw, 34px);
}

.contact-form b {
  color: var(--text);
  font-size: clamp(21px, 2.5vw, 30px);
}

@media (max-width: 1180px) {
  .aircon-hero {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.98) 44%, rgba(255,255,255,0.78) 59%, rgba(255,255,255,0.12) 80%, rgba(255,255,255,0.02) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.06), rgba(232, 243, 255, 0.12)),
      url("../images/aircon-work-hero.jpg") right -120px center / auto 100% no-repeat,
      linear-gradient(180deg, #fff, #f5f9ff);
  }
}

@media (max-width: 980px) {
  .lp-nav {
    display: none;
  }

  .lp-phone-link {
    display: none;
  }

  .aircon-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.96) 45%, rgba(255,255,255,0.34) 72%, rgba(255,255,255,0.08) 100%),
      url("../images/aircon-work-hero.jpg") center bottom / cover no-repeat;
  }

  .aircon-hero__copy {
    width: 100%;
    min-height: 760px;
  }

  .award-list,
  .worry-grid,
  .solution-layout,
  .message-card,
  .faq-grid,
  .contact-band__cards {
    grid-template-columns: 1fr;
  }

  .award-list {
    max-width: 580px;
  }

  .hero-contact {
    flex-wrap: wrap;
  }

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

  .flow-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .flow-grid article + article::before {
    content: "⌄";
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .lp-header__inner {
    width: min(calc(100% - 28px), 1180px);
    min-height: 62px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
  }

  .lp-brand {
    font-size: 20px;
  }

  .lp-brand img {
    width: 46px;
    height: 46px;
  }

  .lp-header__cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .aircon-hero__inner,
  .lp-section {
    width: min(calc(100% - 28px), var(--max));
  }

  .aircon-hero__copy {
    min-height: 720px;
    padding: 35px 0 30px;
  }

  .aircon-eyebrow {
    font-size: 13px;
  }

  .aircon-eyebrow::before,
  .aircon-eyebrow::after {
    margin: 0 5px;
  }

  .aircon-hero h1 {
    font-size: 35px;
  }

  .award-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .award-item {
    min-height: 76px;
    padding: 10px 8px;
  }

  .award-item strong {
    font-size: 14px;
  }

  .award-item span {
    font-size: 10px;
  }

  .phone-card,
  .mail-card {
    width: 100%;
    min-width: 0;
  }

  .worry-section,
  .solution-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .worry-section {
    padding-bottom: 58px;
  }

  .worry-section::after {
    bottom: -30px;
    border-left-width: 76px;
    border-right-width: 76px;
    border-top-width: 30px;
  }

  .solution-section {
    padding-top: 72px;
  }

  .worry-grid article {
    min-height: 104px;
    padding: 18px;
  }

  .service-area-list {
    justify-content: flex-start;
  }

  .service-area-list li {
    min-height: 40px;
    padding: 7px 14px;
    font-size: 13px;
  }

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

  .solution-grid article {
    min-height: 0;
  }

  .price-cards {
    grid-template-columns: 1fr;
  }

  .price-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .subsidy-block {
    padding: 18px;
  }

  .subsidy-carousel {
    grid-auto-columns: minmax(260px, 86%);
  }

  .sakura-aircon-page .subsidy-highlights {
    grid-template-columns: 1fr;
  }

  .sakura-aircon-page .subsidy-highlights article {
    min-height: 0;
  }

  .sakura-aircon-page .subsidy-table,
  .sakura-aircon-page .subsidy-table thead,
  .sakura-aircon-page .subsidy-table tbody,
  .sakura-aircon-page .subsidy-table tr,
  .sakura-aircon-page .subsidy-table th,
  .sakura-aircon-page .subsidy-table td {
    display: block;
  }

  .sakura-aircon-page .subsidy-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .sakura-aircon-page .subsidy-table tr {
    border-bottom: 1px solid #e5edf7;
  }

  .sakura-aircon-page .subsidy-table tr:last-child {
    border-bottom: 0;
  }

  .sakura-aircon-page .subsidy-table td {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 10px;
    width: 100%;
    border-bottom: 0;
  }

  .sakura-aircon-page .subsidy-table td:first-child {
    width: 100%;
  }

  .sakura-aircon-page .subsidy-table td::before {
    color: #667085;
    font-size: 12px;
    font-weight: 900;
  }

  .sakura-aircon-page .subsidy-table td:nth-child(1)::before {
    content: "制度";
  }

  .sakura-aircon-page .subsidy-table td:nth-child(2)::before {
    content: "対象ケース";
  }

  .sakura-aircon-page .subsidy-table td:nth-child(3)::before {
    content: "活用ポイント";
  }

  .sakura-aircon-page .subsidy-grid {
    grid-template-columns: 1fr;
  }

  .message-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .message-card figure {
    max-height: 360px;
  }

  .contact-phone,
  .contact-form {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .sakura-aircon-page .subsidy-summary {
    display: grid;
    overflow: visible;
    padding-bottom: 0;
  }

  .sakura-aircon-page .subsidy-table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .sakura-aircon-page .subsidy-table {
    display: table;
    min-width: 760px;
  }

  .sakura-aircon-page .subsidy-table thead {
    position: static;
    display: table-header-group;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .sakura-aircon-page .subsidy-table tbody {
    display: table-row-group;
  }

  .sakura-aircon-page .subsidy-table tr {
    display: table-row;
    border-bottom: 0;
  }

  .sakura-aircon-page .subsidy-table th,
  .sakura-aircon-page .subsidy-table td {
    display: table-cell;
    width: auto;
    border-bottom: 1px solid #e5edf7;
  }

  .sakura-aircon-page .subsidy-table td:first-child {
    width: 28%;
  }

  .sakura-aircon-page .subsidy-table td::before {
    content: none;
    display: none;
  }

  .sakura-aircon-page .subsidy-table td:nth-child(1)::before,
  .sakura-aircon-page .subsidy-table td:nth-child(2)::before,
  .sakura-aircon-page .subsidy-table td:nth-child(3)::before {
    content: none;
    display: none;
  }

  .sakura-aircon-page .subsidy-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}
