@font-face {
  font-family: "MadoYuGothic";
  src: url("file:///C:/Windows/Fonts/YuGothB.ttc") format("truetype");
  font-weight: 700 900;
}

@font-face {
  font-family: "MadoNoto";
  src: url("file:///C:/Windows/Fonts/NotoSansJP-VF.ttf") format("truetype");
  font-weight: 100 900;
}

.sp-only {
  display: none;
}

@media (max-width: 700px) {
  .sp-only {
    display: inline;
  }
}

:root {
  --blue: #0069bf;
  --teal: #0caeb0;
  --orange: #ff7800;
  --brown: #382315;
  --panel: #fffefb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-bottom: 58px;
  background: #eaf8ff;
  color: var(--brown);
  font-family: "MadoNoto", "MadoYuGothic", "Yu Gothic", "Meiryo", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.lp-shell {
  width: min(941px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 63%, #e9f8ff 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.first-view {
  order: 1;
}

.subsidy-section {
  order: 2;
}

.worry-section {
  order: 3;
}

.flow-section {
  order: 4;
}

.consult-section {
  order: 5;
}

#solution-cards,
#countermeasure-icons,
#flow-section,
#consult-section,
#cta-area,
#line {
  scroll-margin-top: 150px;
}

.fixed-cta-bar {
  position: fixed;
  left: 50%;
  bottom: 6px;
  z-index: 120;
  width: min(941px, calc(100% - 24px));
  height: 44px;
  transform: translateX(-50%);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(0, 109, 145, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 4px 14px rgba(0, 44, 80, .14);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.fixed-cta-bar.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.fixed-cta-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.fixed-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 34px;
  border-radius: 7px;
  color: #fff;
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.15;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .1);
}

.fixed-cta-consult {
  background: linear-gradient(180deg, #ff8d1b 0%, #ff6500 100%);
}

.fixed-cta-line {
  background: linear-gradient(180deg, #19c85a 0%, #08a943 100%);
}

@media (min-width: 1080px) {
  .fixed-cta-bar {
    left: auto;
    right: max(12px, calc((100vw - 941px) / 2 - 166px));
    bottom: 24px;
    width: 150px;
    height: auto;
    grid-template-columns: 1fr;
    display: none;
    transform: translateY(12px);
  }

  .fixed-cta-bar.is-active {
    display: grid;
    transform: none;
  }

  .fixed-cta-bar.is-hidden {
    transform: translateY(12px);
  }

  .fixed-cta {
    height: 38px;
    font-size: 14px;
  }
}

.first-view {
  min-height: auto;
}

.first-view {
  position: relative;
  width: 100%;
  min-height: 1672px;
  padding-bottom: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 135px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 108px;
  align-items: center;
  padding: 15px 22px 13px 28px;
  background: #fff;
  border-bottom: 1px solid #d4dbe0;
  box-shadow: 0 2px 10px rgba(0, 31, 72, .08);
}

.brand-logo {
  display: block;
  width: 210px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .8));
}

.brand-sub {
  margin-top: 5px;
  color: #061d4e;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.5px;
}

.header-contact {
  padding-top: 4px;
  min-width: 0;
  text-align: center;
}

.header-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #061d4e;
  font-size: clamp(26px, 3.8vw, 38px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.phone-icon-img {
  display: block;
  width: 49px;
  height: 49px;
  object-fit: contain;
  flex: 0 0 auto;
}

.header-time {
  margin-top: 10px;
  text-align: center;
  color: #111827;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 650;
  white-space: nowrap;
}

.menu-button {
  width: 92px;
  height: 92px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: #0876cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-family: inherit;
  box-shadow: inset 0 -4px 0 rgba(0, 65, 126, .1);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
}

.menu-button b {
  margin-top: 0;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(15px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
}

.menu-button span {
  transition: transform .2s ease, opacity .2s ease;
}

.global-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 24px;
  width: 280px;
  padding: 12px;
  border: 3px solid #0b7fd0;
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 12px 30px rgba(0, 42, 92, .2);
}

.global-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 36px;
  width: 18px;
  height: 18px;
  border-left: 3px solid #0b7fd0;
  border-top: 3px solid #0b7fd0;
  background: #fff;
  transform: rotate(45deg);
}

.global-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  color: #06295b;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.global-menu a+a {
  border-top: 1px solid #e3f1fa;
}

.global-menu a:hover,
.global-menu a:focus-visible {
  background: #e8f7ff;
  outline: none;
}

.hero-source-wrap {
  position: relative;
  width: 100%;
  background: #fff;
}

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

.hero-benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 34px 0;
  background: #fff;
}

.hero-benefit-cards img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 38, 82, .08));
}

.hero-step-row {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  align-items: center;
  gap: 8px;
  padding: 18px 36px 8px;
  background: #fff;
}

.hero-step-row img {
  display: block;
  width: 100%;
  aspect-ratio: 2.15 / 1;
  height: auto;
  object-fit: contain;
}

.hero-step-row span {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  clip-path: polygon(0 22%, 56% 22%, 56% 0, 100% 50%, 56% 100%, 56% 78%, 0 78%);
  background: #0fb0b3;
}

.service-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 24px;
  margin-top: -48px;
}

.service-card {
  height: 424px;
  padding: 19px 18px 16px;
  border: 3px solid #1d86dc;
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 20px rgba(20, 93, 130, .12);
  overflow: hidden;
}

.service-card-door {
  border-color: #0caeb0;
}

.service-card-wall {
  border-color: #f1a436;
}

.card-heading {
  display: grid;
  grid-template-columns: 49px 1fr;
  align-items: center;
  min-height: 58px;
  margin-bottom: 13px;
}

.card-heading h2 {
  margin: 0;
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--blue);
  text-shadow: 0 2px 0 #fff;
  white-space: nowrap;
}

.service-card-door .card-heading h2 {
  color: var(--teal);
}

.service-card-wall .card-heading h2 {
  color: var(--orange);
  font-size: 32px;
  letter-spacing: -1.5px;
}

.card-mark {
  width: 39px;
  height: 43px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .9));
}

.card-mark-window {
  background-image: url("assets/icon-window-mini.png");
}

.card-mark-door {
  background-image: url("assets/icon-door-mini.png");
}

.card-mark-wall {
  background-image: url("assets/icon-wall-mini.png");
}

.card-visual {
  height: 246px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fbfb;
}

.card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-window .card-visual img {
  object-position: 47% 47%;
}

.service-card-door .card-visual img {
  object-position: 50% 42%;
}

.service-card-wall .card-visual img {
  object-position: 52% 50%;
}

.service-card p {
  margin: 16px 0 0;
  color: #251b16;
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 20px;
  line-height: 1.48;
  font-weight: 700;
  letter-spacing: -1px;
  white-space: nowrap;
}

.service-card-door p {
  font-size: 19.5px;
  letter-spacing: -1.25px;
}

.service-card-wall p {
  font-size: 19.5px;
  letter-spacing: -1.15px;
}

.benefit-icons {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: center;
  padding: 27px 88px 0;
  min-height: 184px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #e7f8ff 100%);
}

.benefit-icons article {
  width: 154px;
  height: 154px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  display: grid;
  grid-template-rows: 94px 1fr;
  justify-items: center;
  align-items: center;
  box-shadow: 0 3px 14px rgba(0, 108, 170, .14);
}

.benefit-icons img {
  width: 84px;
  height: 80px;
  object-fit: contain;
  align-self: end;
  object-position: center center;
}

.benefit-icons h3 {
  margin: 2px 0 21px;
  color: #09245b;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.5px;
  white-space: nowrap;
}

.benefit-temp img {
  width: 87px;
  transform: translateX(-1px) translateY(1px);
}

.benefit-condensation img {
  width: 83px;
  transform: translateX(0) translateY(1px);
}

.benefit-noise img {
  width: 82px;
  transform: translateX(0) translateY(2px);
}

.benefit-energy img {
  width: 82px;
  transform: translateX(2px) translateY(2px);
}

.dot-separator {
  width: 4px;
  height: 58px;
  justify-self: center;
  background: radial-gradient(circle, #18a6db 2px, transparent 3px) center top / 4px 14px repeat-y;
}

.cta-area {
  padding: 6px 31px 0;
}


.phone-box {
  height: 155px;
  margin-top: -6px;
  border: 3px solid #ffe4c4;
  border-radius: 24px;
  background: #fff;
  color: var(--orange);
  text-decoration: none;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 96px 1fr;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  padding: 12px 34px 18px;
}

.phone-box .phone-icon-img {
  grid-row: 1 / span 1;
  width: 64px;
  height: 64px;
  justify-self: center;
  margin-right: 0;
}

.phone-box strong {
  font-size: clamp(36px, 6.2vw, 62px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: center;
}

.phone-box small {
  grid-column: 1 / -1;
  color: #322116;
  text-align: center;
  justify-self: center;
  font-size: clamp(14px, 2.2vw, 22px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  align-self: start;
  margin-top: 4px;
}

.worry-section {
  position: relative;
  padding: 34px 23px 44px;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 230, 93, .22), transparent 13%),
    radial-gradient(circle at 92% 8%, rgba(27, 136, 221, .11), transparent 15%),
    linear-gradient(180deg, #fff 0%, #fff 74%, #e8f8ff 100%);
  overflow: hidden;
}

.section-sparkles span {
  display: none;
}

.section-sparkles span:nth-child(1) {
  left: 108px;
  top: 86px;
}

.section-sparkles span:nth-child(2) {
  right: 72px;
  top: 126px;
  transform: scale(.72);
}

.section-sparkles span:nth-child(3) {
  left: 121px;
  top: 1042px;
  transform: scale(.68);
}

.section-sparkles span:nth-child(4) {
  right: 132px;
  top: 1045px;
  transform: scale(.58);
}

.worry-title,
.solution-title {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  color: #3a2518;
  font-weight: 650;
  letter-spacing: 0;
}

.worry-title {
  font-size: clamp(28px, 4.8vw, 48px);
  line-height: 1.18;
}

.worry-title span {
  color: #0870d8;
  font-size: clamp(34px, 6vw, 60px);
}

.blue {
  color: #0069bf;
}

.teal {
  color: #0caeb0;
}

.orange {
  color: #ff7800;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 14px;
  margin-top: 34px;
}

.worry-card {
  height: 424px;
  padding: 22px 14px 17px;
  border: 2px solid #eadfd5;
  border-radius: 18px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 5px 14px rgba(68, 44, 21, .06);
}

.worry-heading {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 52px;
}

.worry-heading img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.worry-heading h3 {
  margin: 0;
  color: #332015;
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(20px, 3.1vw, 31px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.worry-visual {
  display: block;
  width: 100%;
  height: 206px;
  margin-top: 14px;
  border-radius: 10px;
  object-fit: cover;
}

.worry-card p {
  margin: 15px 0 0;
  color: #2d201a;
  text-align: center;
  font-size: clamp(15px, 2.1vw, 21px);
  line-height: 1.42;
  font-weight: 650;
  letter-spacing: 0;
}

.solution-title {
  margin-top: 42px;
  font-size: clamp(28px, 4.8vw, 48px);
  line-height: 1.22;
}

.solution-title .blue,
.solution-title .teal {
  font-size: 58px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 24px;
}

.solution-card {
  height: 346px;
  padding: 16px 16px 14px;
  border: 2px solid #58baf2;
  border-radius: 15px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 13px rgba(0, 108, 170, .12);
  overflow: hidden;
}

.solution-door {
  border-color: #63d0d1;
}

.solution-wall {
  border-color: #f5c174;
}

.solution-heading {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  min-height: 48px;
  margin-bottom: 12px;
}

.solution-heading h3 {
  margin: 0;
  color: #0069bf;
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.solution-door h3 {
  color: #0caeb0;
}

.solution-wall h3 {
  color: #ff7800;
  font-size: 25px;
  letter-spacing: -1.4px;
}

.solution-card .card-mark {
  width: 36px;
  height: 38px;
}

.solution-card>img {
  display: block;
  width: 100%;
  height: 151px;
  border-radius: 11px;
  object-fit: cover;
}

.solution-card p {
  margin: 13px 0 0;
  color: #2f2119;
  font-size: 17px;
  line-height: 1.46;
  font-weight: 650;
  letter-spacing: 0;
}

.solution-title span {
  color: #0caeb0;
  font-size: clamp(36px, 6.4vw, 64px);
}

.solution-card h3 {
  margin: 0 0 10px;
  color: #0aa6aa;
  text-align: center;
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.solution-card:nth-child(3) h3 {
  font-size: 27px;
}

.solution-card>img {
  height: 168px;
  object-fit: contain;
  background: #f7fdff;
}

.solution-card p {
  text-align: center;
  color: #08275c;
  font-size: clamp(14px, 1.9vw, 19px);
  line-height: 1.45;
}

.countermeasure-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 34px auto 0;
  max-width: 850px;
}

.countermeasure-icons article {
  text-align: center;
}

.countermeasure-icons img {
  display: block;
  width: 156px;
  height: 156px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.countermeasure-icons h3 {
  margin: 0;
  color: #0aa6aa;
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}

@media (max-width: 640px) {
  .solution-title {
    margin-top: 30px;
    font-size: 28px;
    line-height: 1.22;
  }

  .solution-title span {
    font-size: 38px;
  }

  .solution-cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 0 2px 8px;
    scrollbar-width: none;
  }

  .solution-cards::-webkit-scrollbar {
    display: none;
  }

  .solution-card {
    scroll-snap-align: center;
    height: auto;
    min-height: 0;
    padding: 13px 14px 15px;
  }

  .solution-card>img {
    height: 168px;
  }

  .solution-card p {
    font-size: 15px;
  }

  .countermeasure-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
    margin-top: 22px;
  }

  .countermeasure-icons img {
    width: 112px;
    height: 112px;
  }

  .countermeasure-icons h3 {
    font-size: 15px;
  }
}

.benefit-icons-second {
  margin-top: 16px;
  padding-top: 0;
  min-height: 164px;
  background: transparent;
}

.flow-section {
  position: relative;
  min-height: 1672px;
  padding: 51px 38px 7px;
  background:
    radial-gradient(circle at 7% 9%, rgba(255, 224, 65, .18), transparent 13%),
    radial-gradient(circle at 92% 12%, rgba(14, 126, 214, .11), transparent 12%),
    linear-gradient(180deg, #fff 0%, #fff 92%, #e8f8ff 100%);
  overflow: hidden;
}

.flow-title {
  margin: 0;
  text-align: center;
  color: #372217;
  font-family: "MadoYuGothic", "MadoNoto", sans-serif;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: 0;
}

.flow-title span {
  font-size: clamp(38px, 6.5vw, 65px);
}

.flow-ribbon {
  position: relative;
  width: min(540px, 90%);
  height: 64px;
  margin: 24px auto 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #10b9bd, #04a4aa);
  color: #fff;
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(22px, 3.3vw, 33px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
  clip-path: polygon(6% 0, 94% 0, 100% 50%, 94% 100%, 6% 100%, 0 50%);
}

.flow-ribbon span {
  color: #fff44a;
  font-size: clamp(28px, 4.8vw, 48px);
  margin: 0 7px;
}

.flow-list {
  display: grid;
  gap: 8px;
}

.flow-card {
  position: relative;
  height: 282px;
  display: grid;
  grid-template-columns: 134px 365px 1fr;
  align-items: stretch;
  border: 2px solid #eadfd1;
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 6px 14px rgba(81, 48, 18, .09);
  overflow: hidden;
}

.step-badge {
  width: 132px;
  height: 118px;
  padding-top: 22px;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, #0eb7ba 0%, #00a4aa 100%);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}

.step-badge b {
  display: block;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.step-badge span {
  display: block;
  margin-top: 6px;
  font-size: 56px;
  line-height: .9;
  font-weight: 700;
}

.flow-copy {
  padding: 37px 14px 18px 20px;
}

.flow-copy h3 {
  margin: 0 0 23px;
  color: #0069bf;
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  font-size: clamp(24px, 3.8vw, 38px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.flow-copy p {
  margin: 0;
  color: #332016;
  font-size: clamp(15px, 2.2vw, 21.5px);
  line-height: 1.72;
  font-weight: 600;
  letter-spacing: -.3px;
}

.flow-card:nth-of-type(3) .flow-copy h3,
.flow-card:nth-of-type(4) .flow-copy h3 {
  margin-bottom: 18px;
}

.flow-card:nth-of-type(4) .flow-copy p {
  line-height: 1.62;
}

.flow-card>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.flow-card:nth-of-type(3)>img {
  object-position: left center;
}

.subsidy-note {
  width: 310px;
  margin-top: 9px;
  padding: 7px 14px;
  border: 2px solid #bcecef;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  color: #04a4aa;
  font-size: 18px;
  font-weight: 650;
  white-space: nowrap;
}

.flow-down {
  width: 46px;
  height: 34px;
  justify-self: center;
  margin: -7px 0 -5px;
  position: relative;
}

.flow-down::before,
.flow-down::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 30px;
  height: 11px;
  border-radius: 999px;
  background: #27bfc2;
}

.flow-down::before {
  left: 0;
  transform: rotate(45deg);
}

.flow-down::after {
  right: 0;
  transform: rotate(-45deg);
}

.flow-assurance {
  height: 140px;
  margin-top: 18px;
  padding: 16px 31px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 18px rgba(0, 99, 146, .12);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 22px;
  align-items: center;
}

.assurance-item {
  display: grid;
  grid-template-columns: 106px 1fr;
  align-items: center;
  gap: 20px;
}

.assurance-item+.assurance-item {
  border-left: 3px dotted #85d8e5;
  padding-left: 28px;
}

.assurance-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eaf8ff;
  position: relative;
}

.heart-line::before {
  content: "♡";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #0069bf;
  font-size: 70px;
  font-weight: 700;
}

.smile-line::before {
  content: "☺";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #66a52d;
  font-size: 62px;
  font-weight: 700;
}

.assurance-item p {
  margin: 0;
  color: #0069bf;
  font-size: clamp(16px, 2.5vw, 25px);
  line-height: 1.36;
  font-weight: 700;
}

.assurance-item p span {
  white-space: nowrap;
}

.subsidy-section {
  position: relative;
  min-height: 1672px;
  padding: 62px 31px 24px;
  background:
    radial-gradient(circle at 2% 0%, rgba(174, 222, 248, .7), transparent 18%),
    radial-gradient(circle at 100% 98%, rgba(174, 222, 248, .55), transparent 14%),
    linear-gradient(180deg, #fff 0%, #fff 88%, #eaf8ff 100%);
  overflow: hidden;
}

.subsidy-skyline {
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%;
  height: 250px;
  object-fit: cover;
  opacity: .55;
  pointer-events: none;
}

.subsidy-title {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  color: #382315;
  font-family: "MadoYuGothic", "MadoNoto", sans-serif;
  font-size: clamp(28px, 4.9vw, 49px);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: -1px;
}

.subsidy-title span {
  font-size: clamp(36px, 6.2vw, 62px);
}

.subsidy-lead {
  position: relative;
  z-index: 1;
  margin: 28px 0 52px;
  text-align: center;
  color: #251b16;
  font-size: clamp(18px, 2.7vw, 27px);
  line-height: 1.35;
  font-weight: 700;
}

.program-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.program-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.34;
  object-fit: contain;
  filter: drop-shadow(0 5px 13px rgba(0, 76, 130, .12));
}

.program-card {
  height: 548px;
  padding: 30px 28px 20px;
  border: 2px solid #0caeb0;
  border-radius: 21px;
  background: rgba(255, 255, 255, .98);
  text-align: center;
  overflow: hidden;
}

.program-tokyo {
  border-color: #69b72f;
}

.program-card-crop {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.program-label {
  width: 270px;
  height: 52px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #13aeb5, #078f98);
  color: #fff;
  font-size: 29px;
  font-weight: 700;
  clip-path: polygon(6% 0, 94% 0, 100% 50%, 94% 100%, 6% 100%, 0 50%);
}

.program-tokyo .program-label {
  background: linear-gradient(180deg, #87c943, #5fae22);
}

.program-card h3 {
  margin: 0;
  color: #088d98;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
}

.program-tokyo h3 {
  color: #58a31f;
}

.program-line {
  height: 2px;
  margin: 23px 18px 18px;
  background: repeating-linear-gradient(90deg, #13aeb5 0 5px, transparent 5px 11px);
}

.program-tokyo .program-line {
  background: repeating-linear-gradient(90deg, #74b935 0 5px, transparent 5px 11px);
}

.program-amount {
  display: grid;
  grid-template-columns: 54px auto 72px;
  justify-content: center;
  align-items: end;
  color: #382315;
}

.program-amount span {
  writing-mode: vertical-rl;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 12px;
}

.program-amount strong {
  color: #0caeb0;
  font-size: 92px;
  line-height: .9;
  font-weight: 650;
}

.program-tokyo .program-amount strong {
  color: #68b12e;
}

.program-amount b {
  font-size: 35px;
  line-height: 1;
  padding-bottom: 12px;
}

.program-visual {
  display: block;
  width: calc(100% + 18px);
  height: 192px;
  margin: 24px -9px 0;
  object-fit: contain;
}

.refund-badge {
  position: relative;
  z-index: 3;
  width: 246px;
  height: 246px;
  margin: -104px auto 10px;
  display: block;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 8px #fff,
    0 6px 18px rgba(0, 0, 0, .14);
}

.refund-badge img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.subsidy-warning {
  min-height: 0;
  border: 0;
  display: block;
  margin: 4px 0 0;
}

.subsidy-warning img {
  display: block;
  width: 100%;
  height: auto;
}

.support-title {
  margin: 30px 0 17px;
  text-align: center;
  color: #06295b;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.2;
  font-weight: 700;
}

.support-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-steps>img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.32;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 88, 130, .08));
}

.support-steps article {
  position: relative;
  height: 288px;
  padding: 22px 14px 10px;
  border: 2px solid #8ee2f0;
  border-radius: 15px;
  background: rgba(255, 255, 255, .96);
  text-align: center;
  overflow: visible;
}

.support-steps i {
  position: absolute;
  left: -14px;
  top: -18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0aa9b2;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}

.support-steps h4 {
  margin: 0 0 10px;
  color: #0997a5;
  font-size: 26px;
  line-height: 1.28;
  font-weight: 700;
}

.support-steps img {
  width: 100%;
  height: 178px;
  display: block;
  object-fit: contain;
}

.support-steps .support-check {
  width: 92%;
  height: 166px;
  margin: 0 auto;
}

.support-steps .support-consultant,
.support-steps .support-staff {
  width: 94%;
  height: 176px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
}

.support-steps>img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.32;
  object-fit: contain;
}

.subsidy-note-bottom {
  margin: 18px 22px 0;
  color: #111;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.consult-section {
  position: relative;
  min-height: 1672px;
  padding: 62px 31px 28px;
  background:
    radial-gradient(circle at 94% 5%, rgba(255, 255, 255, .75), transparent 9%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .55), transparent 8%),
    linear-gradient(180deg, #eaf9ff 0%, #f8fdff 43%, #eaf9ff 100%);
}

.consult-sparkle {
  display: none;
}

.sparkle-left {
  left: 47px;
  top: 204px;
}

.sparkle-right {
  right: 45px;
  top: 205px;
}

.consult-title {
  margin: 0 0 48px;
  text-align: center;
  color: var(--brown);
  font-family: "MadoNoto", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 49px;
  line-height: 1.48;
  font-weight: 650;
  letter-spacing: 0;
  text-shadow:
    0 4px 0 #fff,
    4px 0 0 #fff,
    -4px 0 0 #fff,
    0 -4px 0 #fff,
    0 7px 13px rgba(0, 60, 110, .16);
}

.consult-title span {
  font-size: 62px;
}

.consult-title .blue {
  color: #0064b7;
}

.consult-heading-img {
  display: block;
  width: 100%;
  max-width: 880px;
  margin: 0 auto 22px;
  height: auto;
}

.consult-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.consult-cards>img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.32;
  object-fit: contain;
}

.consult-card {
  height: 356px;
  padding: 30px 18px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 5px 17px rgba(0, 68, 120, .14);
  text-align: center;
}

.consult-card h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -1px;
}

.card-blue h3 {
  color: #005baa;
}

.card-teal h3 {
  color: #0aa0a6;
}

.card-orange h3 {
  color: #ff7900;
}

.consult-card img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
  margin: 31px auto 23px;
}

.consult-card p {
  margin: 0;
  color: #111;
  font-size: 20px;
  line-height: 1.58;
  font-weight: 750;
  letter-spacing: -.4px;
}

.faq-title {
  position: relative;
  margin: 0 0 22px;
  text-align: center;
  color: var(--brown);
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.faq-title-img {
  display: block;
  width: min(620px, 100%);
  margin: 8px auto 10px;
  height: auto;
}

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

.faq-item {
  border: 2px solid #b9def8;
  border-radius: 19px;
  background: rgba(255, 255, 255, .96);
  overflow: hidden;
  box-shadow: 0 2px 9px rgba(0, 88, 160, .08);
}

.faq-q {
  list-style: none;
  height: 95px;
  display: grid;
  grid-template-columns: 76px 1fr 44px;
  align-items: center;
  gap: 12px;
  padding: 0 24px 0 23px;
  cursor: pointer;
  user-select: none;
}

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

.faq-item[open] .faq-q {
  border-bottom: 2px solid #d9edf9;
}

.faq-q-icon {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0054aa, #0e8dda);
  color: #fff;
  font-size: 30px;
  font-weight: 650;
}

.faq-q strong {
  color: #005baa;
  font-size: clamp(20px, 3.1vw, 31px);
  line-height: 1.15;
  font-weight: 700;
}

.faq-chevron {
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: #0caeb0;
  transition: transform .25s ease;
}

.faq-chevron::before {
  left: 4px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-chevron::after {
  right: 4px;
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item[open] .faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item[open] .faq-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  min-height: 84px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  padding: 16px 28px 17px 23px;
  background: rgba(255, 255, 255, .98);
}

.faq-a-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d9efff;
  color: #005baa;
  font-size: 30px;
  font-weight: 650;
}

.faq-a p {
  margin: 0;
  color: #111;
  font-size: clamp(15px, 2.2vw, 22px);
  line-height: 1.52;
  font-weight: 750;
}

.consult-cta {
  margin-top: 18px;
}

.cta-image,
.cta-image img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-primary {
  width: min(856px, 100%);
  margin: 0 auto 10px;
}

.sub-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 8px;
}

.consult-note {
  margin: 22px 0 0;
  text-align: center;
  color: #333;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 650;
}

@media (max-width: 700px) {
  body {
    padding-bottom: 58px;
  }

  .fixed-cta-bar {
    display: grid;
    bottom: 6px;
    width: calc(100% - 18px);
    height: 42px;
    gap: 6px;
    padding: 5px;
    border-radius: 9px;
  }

  .fixed-cta {
    height: 32px;
    border-radius: 8px;
    font-size: 14px;
  }

  .first-view {
    min-height: 0;
    padding-bottom: 22px;
  }

  .site-header {
    height: auto;
    grid-template-columns: 1fr 74px;
    gap: 8px;
    padding: 12px 14px;
  }

  .brand-logo {
    width: 145px;
    height: 54px;
  }

  .brand-sub {
    font-size: 12px;
    margin-top: 8px;
  }

  .header-contact {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0;
    text-align: center;
  }

  .header-tel {
    justify-content: center;
    font-size: clamp(22px, 7vw, 30px);
  }


  .header-time {
    text-align: center;
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.25;
  }

  .menu-button {
    width: 72px;
    height: 72px;
  }

  .menu-button span {
    width: 36px;
    height: 4px;
  }

  .menu-button b {
    font-size: 12px;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 14px;
    margin-top: -24px;
  }

  .service-card {
    height: auto;
    min-height: 0;
    padding: 16px 15px 20px;
    border-width: 2px;
  }

  .card-heading {
    grid-template-columns: 40px 1fr;
    min-height: 46px;
    margin-bottom: 10px;
  }

  .card-heading h2,
  .service-card-wall .card-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: -1px;
  }

  .card-mark {
    width: 33px;
    height: 36px;
  }

  .card-visual {
    height: 210px;
  }

  .service-card p {
    font-size: 18.5px;
    line-height: 1.52;
    margin-top: 12px;
    letter-spacing: -.8px;
    white-space: normal;
  }

  .service-card-door p,
  .service-card-wall p {
    font-size: 18.2px;
    letter-spacing: -.9px;
  }

  .benefit-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 18px 18px 0;
  }

  .dot-separator {
    display: none;
  }

  .benefit-icons article {
    width: 134px;
    height: 134px;
    grid-template-rows: 79px 1fr;
  }

  .benefit-icons img {
    width: 70px;
    height: 68px;
  }

  .benefit-icons h3 {
    font-size: 15px;
    margin-bottom: 17px;
    letter-spacing: -.5px;
  }

  .benefit-temp img {
    width: 73px;
    transform: translateX(-1px) translateY(2px);
  }

  .benefit-condensation img {
    width: 70px;
    transform: translateX(0) translateY(2px);
  }

  .benefit-noise img {
    width: 69px;
    transform: translateX(0) translateY(2px);
  }

  .benefit-energy img {
    width: 69px;
    transform: translateX(2px) translateY(2px);
  }

  .hero-benefit-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 14px 0;
  }

  .hero-benefit-cards img {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }

  .hero-step-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 30px 6px;
  }

  .hero-step-row img {
    aspect-ratio: 2.15 / 1;
    max-height: 112px;
    object-fit: contain;
  }

  .hero-step-row span {
    width: 18px;
    height: 18px;
    transform: rotate(90deg);
  }

  .cta-area {
    padding: 20px 14px 0;
  }


  .phone-box {
    height: auto;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    justify-content: center;
    gap: 0 10px;
    padding: 14px 12px;
    margin-top: 8px;
  }

  .phone-box .phone-icon-img {
    width: 36px;
    height: 36px;
  }

  .phone-box strong {
    font-size: clamp(29px, 8.2vw, 38px);
    letter-spacing: 0;
    text-align: center;
  }

  .phone-box small {
    font-size: clamp(11px, 3.2vw, 13px);
    margin-top: 8px;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }


  .worry-section {
    min-height: 0;
    padding: 26px 14px 24px;
  }

  .worry-title {
    font-size: clamp(26px, 7.5vw, 32px);
    line-height: 1.22;
  }

  .worry-title span {
    font-size: clamp(30px, 9vw, 39px);
  }

  .worry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding: 0;
  }

  .worry-card {
    height: auto;
    min-height: 0;
    padding: 18px 14px 18px;
  }

  .worry-heading {
    grid-template-columns: 42px 1fr;
  }

  .worry-heading img {
    width: 38px;
    height: 38px;
  }

  .worry-heading h3 {
    font-size: clamp(24px, 7vw, 30px);
    letter-spacing: -1px;
  }

  .worry-visual {
    height: 205px;
  }

  .worry-card p {
    font-size: clamp(15px, 4.5vw, 18px);
  }

  .solution-title {
    margin-top: 30px;
    font-size: clamp(26px, 7.5vw, 32px);
  }

  .solution-title .blue,
  .solution-title .teal {
    font-size: clamp(30px, 9vw, 39px);
  }

  .solution-card {
    height: auto;
  }

  .solution-card>img {
    height: 190px;
  }

  .solution-card p {
    font-size: clamp(14px, 4.2vw, 17px);
  }

  .flow-section {
    min-height: 0;
    padding: 34px 14px 24px;
  }

  .flow-title {
    font-size: clamp(26px, 7.5vw, 32px);
  }

  .flow-title span {
    font-size: clamp(32px, 9.5vw, 40px);
  }

  .flow-ribbon {
    width: min(330px, 100%);
    height: 48px;
    font-size: clamp(18px, 5.5vw, 24px);
  }

  .flow-ribbon span {
    font-size: clamp(26px, 8vw, 34px);
  }

  .flow-card {
    height: auto;
    grid-template-columns: 76px 1fr;
    grid-template-rows: auto 190px;
  }

  .step-badge {
    width: 76px;
    height: 86px;
    padding-top: 15px;
  }

  .step-badge b {
    font-size: 15px;
  }

  .step-badge span {
    font-size: 40px;
  }

  .flow-copy {
    padding: 24px 14px 16px;
  }

  .flow-copy h3 {
    font-size: clamp(22px, 6.5vw, 28px);
    margin-bottom: 12px;
    white-space: normal;
  }

  .flow-card:nth-of-type(3) .flow-copy h3 {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .flow-copy p {
    font-size: clamp(14px, 4.5vw, 18px);
  }

  .flow-card>img {
    grid-column: 1 / -1;
  }

  .subsidy-note {
    width: 100%;
    font-size: 15px;
  }

  .flow-assurance {
    height: auto;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .assurance-item {
    grid-template-columns: 86px 1fr;
  }

  .assurance-item+.assurance-item {
    border-left: 0;
    border-top: 2px dotted #85d8e5;
    padding-left: 0;
    padding-top: 18px;
  }

  .assurance-icon {
    width: 82px;
    height: 82px;
  }

  .heart-line::before {
    font-size: 58px;
  }

  .smile-line::before {
    font-size: 52px;
  }

  .assurance-item p {
    font-size: clamp(18px, 5.5vw, 22px);
  }

  .subsidy-section {
    min-height: 0;
    padding: 38px 18px 24px;
  }

  .subsidy-skyline {
    top: 34px;
    height: 180px;
    opacity: .45;
  }

  .subsidy-title {
    font-size: clamp(29px, 7.8vw, 35px);
    line-height: 1.28;
    letter-spacing: 0;
  }

  .subsidy-title span {
    font-size: clamp(37px, 9.8vw, 45px);
  }

  .subsidy-lead {
    margin: 24px 0 24px;
    font-size: clamp(20px, 5.8vw, 25px);
  }

  .program-cards {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 0 9% 8px;
    scrollbar-width: none;
    margin-top: 64px;
  }

  .program-cards .program-card-img {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .program-cards .program-card-img:first-child {
    margin-left: 0;
  }

  .program-cards::-webkit-scrollbar {
    display: none;
  }

  .program-card-img {
    scroll-snap-align: center;
    aspect-ratio: 1 / 1.28;
    max-height: 430px;
  }

  .program-card {
    height: auto;
    aspect-ratio: auto;
    padding: 24px 20px 20px;
  }

  .program-label {
    width: min(270px, 82%);
    height: 48px;
    margin-bottom: 18px;
    font-size: 25px;
  }

  .program-card h3 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .program-amount strong {
    font-size: clamp(78px, 21vw, 92px);
  }

  .program-visual {
    height: 178px;
    margin-top: 18px;
  }

  .refund-badge {
    width: 118px;
    height: 118px;
    aspect-ratio: 1 / 1;
    margin: 8px auto 12px;
    box-shadow:
      0 0 0 4px #fff,
      0 4px 10px rgba(0, 0, 0, .13);
  }

  .refund-badge-line {
    gap: 3px;
    margin-top: -2px;
  }

  .refund-badge-line span {
    font-size: 22px;
  }

  .refund-badge-line strong {
    font-size: 50px;
  }

  .refund-badge-line em {
    margin-left: -1px;
    font-size: 15px;
  }

  .refund-badge-bottom {
    margin-top: 2px;
    font-size: 23px;
  }

  .refund-badge-bottom small {
    margin-left: 1px;
    font-size: 10px;
  }

  .subsidy-warning {
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .subsidy-warning img {
    width: 100%;
  }

  .support-title {
    margin: 24px 0 16px;
    font-size: clamp(24px, 6.8vw, 30px);
  }

  .support-steps {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    gap: 10px;
    padding: 0 2px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .support-steps::-webkit-scrollbar {
    display: none;
  }

  .support-steps>img {
    scroll-snap-align: center;
    aspect-ratio: 1 / 1.2;
    max-height: 320px;
  }

  .support-steps article {
    height: auto;
    min-height: 292px;
    padding: 22px 16px 12px;
  }

  .subsidy-note-bottom {
    margin: 18px 4px 0;
    font-size: 16px;
    line-height: 1.65;
  }

  .consult-section {
    min-height: 0;
    padding: 38px 18px 24px;
  }

  .consult-heading-img {
    width: 100%;
    margin-bottom: 12px;
  }

  .consult-title {
    margin-bottom: 28px;
    font-size: clamp(31px, 8.6vw, 38px);
    line-height: 1.45;
    letter-spacing: 0;
  }

  .consult-title span {
    font-size: clamp(39px, 10.8vw, 48px);
  }

  .consult-sparkle {
    width: 42px;
    height: 42px;
  }

  .sparkle-left {
    left: 18px;
    top: 128px;
  }

  .sparkle-right {
    right: 18px;
    top: 132px;
  }

  .consult-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-bottom: 14px;
  }

  .consult-cards>img {
    aspect-ratio: 1 / 1.32;
    max-height: none;
  }

  .consult-card {
    height: auto;
    padding: 24px 18px 22px;
  }

  .consult-card h3 {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  .consult-card img {
    width: 118px;
    height: 118px;
    margin: 22px auto 16px;
  }

  .consult-card p {
    font-size: clamp(14px, 4.5vw, 18px);
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-title-img {
    width: 100%;
    margin: 4px auto 6px;
  }

  .faq-list {
    gap: 6px;
  }

  .faq-q {
    height: auto;
    min-height: 82px;
    grid-template-columns: 58px 1fr 36px;
    gap: 9px;
    padding: 13px 14px;
  }

  .faq-q-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .faq-q strong {
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.3;
  }

  .faq-a {
    grid-template-columns: 54px 1fr;
    padding: 13px 14px;
  }

  .faq-a-icon {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .faq-a p {
    font-size: clamp(14px, 4.2vw, 17px);
    line-height: 1.55;
  }


  .cta-primary {
    width: 100%;
    margin-bottom: 8px;
  }

  .sub-cta-row {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 0;
  }

  .consult-note {
    font-size: 15px;
  }
}

/* ============================================
   タブレット (701px - 1079px)
   ============================================ */
@media (min-width: 701px) and (max-width: 1079px) {

  /* ヘッダー */
  .site-header {
    height: auto;
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
    gap: 8px;
  }

  .brand-logo {
    width: 160px;
    height: 56px;
  }

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

  .header-contact {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
  }

  .header-tel {
    font-size: clamp(24px, 4vw, 34px);
  }

  .header-time {
    font-size: clamp(13px, 2vw, 16px);
  }

  .menu-button {
    width: 80px;
    height: 80px;
  }

  /* ファーストビュー */
  .hero-benefit-cards {
    gap: 10px;
    padding: 16px 24px 0;
  }

  .hero-step-row {
    padding: 14px 28px 6px;
  }

  .cta-area {
    padding: 12px 24px 0;
  }

  .phone-box {
    height: auto;
    padding: 14px 24px;
  }

  .phone-box strong {
    font-size: clamp(38px, 6vw, 56px);
  }

  .phone-box small {
    font-size: clamp(14px, 2.2vw, 20px);
  }

  /* flow-ribbon */
  .flow-ribbon {
    width: min(540px, 90%);
    font-size: clamp(22px, 3.5vw, 33px);
  }

  .flow-ribbon span {
    font-size: clamp(32px, 5vw, 48px);
  }

  /* flow-card */
  .flow-card {
    grid-template-columns: 110px 1fr 1fr;
  }

  .flow-copy h3 {
    font-size: clamp(24px, 3.8vw, 38px);
  }

  .flow-copy p {
    font-size: clamp(16px, 2.4vw, 21px);
  }

  /* cta-primary・consult */
  .cta-primary {
    width: min(856px, 100%);
  }

  .sub-cta-row {
    padding: 0;
  }

  /* subsidy */
  .subsidy-title {
    font-size: clamp(34px, 5.5vw, 49px);
  }

  .subsidy-title span {
    font-size: clamp(44px, 7vw, 62px);
  }

  .subsidy-lead {
    font-size: clamp(20px, 3.2vw, 27px);
  }

  /* worry */
  .worry-title {
    font-size: clamp(34px, 5.5vw, 48px);
  }

  .worry-title span {
    font-size: clamp(42px, 7vw, 60px);
  }

  .worry-heading h3 {
    font-size: clamp(22px, 3.5vw, 31px);
  }

  .worry-card p {
    font-size: clamp(16px, 2.5vw, 21px);
  }

  /* FAQ */
  .faq-q strong {
    font-size: clamp(22px, 3.5vw, 31px);
  }

  .faq-a p {
    font-size: clamp(18px, 2.8vw, 22px);
  }

  /* assurance */
  .assurance-item p {
    font-size: clamp(20px, 3.2vw, 25px);
  }
}

/* スワイプヒント */
.swipe-hint {
  display: none;
}

@media (max-width: 700px) {
  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px auto 0;
    color: #888;
    font-size: clamp(12px, 3.2vw, 14px);
    font-weight: 600;
    opacity: 0.75;
    animation: swipe-hint-fade 2s ease-in-out infinite;
  }

  .swipe-hint-icon {
    font-size: clamp(16px, 4vw, 18px);
    animation: swipe-hint-move 2s ease-in-out infinite;
  }

  .swipe-hint-icon:last-child {
    animation-delay: 0.2s;
  }

  @keyframes swipe-hint-fade {

    0%,
    100% {
      opacity: 0.75;
    }

    50% {
      opacity: 0.4;
    }
  }

  @keyframes swipe-hint-move {

    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(4px);
    }
  }
}