@charset "utf-8";

/* ===== Base ===== */
:root {
  --gray: #F0F0F0;
  --pink: #fff0eb;
  --yellow: #fff700;
  --dark: #333333;
  --orange: #ff6236;
  --red: #FF6237;
  --grad: linear-gradient(135deg, #ff6e43 0%, #f84b2c 100%);
  --grad-v: linear-gradient(180deg, #ff6236 0%, #f9593f 100%);
  --grad-or: linear-gradient(135deg, #ff6237 0%, #f04c4c 100%);
  --inner: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  overflow-x: hidden;
}

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

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

/* 視覚的に隠す（スクリーンリーダー・SEO向け） */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* ===== Section titles ===== */
.sec-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .03em;
  margin: 0 0 40px;
}

.pill {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  padding: 10px 40px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.pill-wrap {
  text-align: center;
  margin-bottom: 34px;
}

/* div→ 見出し/p 化で付く UA デフォルトマージンを打ち消す */
.cta-head,
.pill,
.reasons-title,
.product-name,
.support-title {
  margin: 0;
}

/* ===== Header ===== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: 1400px;
}

.header .logo {
  width: 150px;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-btns a {
  transition: opacity .2s;
  display: block;
}

.header-btns a:hover {
  opacity: .85;
}

.header-btns .h-line img {
  height: 52px;
  width: auto;
}

.header-btns .h-photo img {
  height: 52px;
  width: auto;
}

/* ===== FV ===== */
.fv {
  background: #fff;
  padding-top: 74px;
}

.fv-hero {
  width: 100%;
  margin: 0 auto;
}

.fv-hero img {
  width: 100%;
}

/* ===== CTA block ===== */
.cta {
  padding: 46px 0;
}

.cta-box {
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: 0 auto;
  border: 4px solid var(--yellow);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.cta-box.inner {
  padding: 0;
}

.cta-head {
  background: var(--yellow);
  color: var(--dark);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 12px 0;
}

.cta-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 2%;
  justify-content: center;
}

.cta-box .cta-body {
  padding: 20px 3% 25px;
}

.cta-tel {
  /* flex: 1 1 37%; */
  flex: 1 1 47%;
}

.cta-btns {
  display: flex;
  gap: 3%;
  flex:1;
  /* flex: 1 1 40%; */
}

.cta-btns a {
  flex: 1;
  transition: transform .15s;
}

.cta-btns a:hover {
  transform: translateY(-2px);
}

.cta-note {
  flex-basis: 100%;
  text-align: right;
  font-size: 12px;
  color: #666;
  margin: -7px 0 0;
}

/* FV CTA (no header) */
.fv-cta {
  padding: 8px 0 0;
}

.fv-cta .cta-body {
  transform: translateY(-40%);
  max-width: 66.5vw;
}

/* ===== Intro (知っていますか) ===== */
.intro {
  background: var(--gray);
  padding: 100px 0 100px;
  position: relative;
}

.intro::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 26px 25px 0 25px;
  border-color: var(--gray) transparent transparent transparent;
  z-index: 1;
}

.intro-bubble {
  text-align: center;
  margin-bottom: 26px;
}

.intro-bubble img {
  display: inline-block;
  width: 340px;
  max-width: 80%;
}

.intro-box {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 1000px;
}

.intro-box img {
  display: inline-block;
  width: 100%;
}

.intro-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-cards img {
  border-radius: 12px;
}

.intro-lead {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  margin-top: 34px;
}

.intro-lead .big {
  font-size: 36px;
}

/* ===== 補助金 (price_txt) ===== */
.subsidy {
  background-image: url("../img/webp/price_bg_pc.webp");
  background-size: 100% calc(100% - 200px);
  background-repeat: no-repeat;
  background-position: center top;
  padding: 70px 0 10px;
}

.subsidy-arrow {
  width: 65px;
  margin: 0 auto 10px;
}

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

.subsidy-txt {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 32px);
}

/* ===== 6 reasons ===== */
.reasons {
  padding: 66px 0 74px;
}

.reasons-head {
  text-align: center;
  margin-bottom: 40px;
}

.reasons-head .pill {
  margin-bottom: 0;
}

.reasons-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.4;
}

.reasons-title .num {
  color: var(--red);
  font-size: 90px;
  vertical-align: -4px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.reason-card {
  background: #fff;
  border-radius: 16px;
  padding: 0 0 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
  border: 2px solid #333;
  position: relative;
}

/* 黒枠の下に密着するオレンジの角丸ライン */
.reason-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 30px;
  background: var(--orange);
  border-radius: 0 0 17px 17px;
  z-index: -1;
}

.reason-card>img {
  width: calc(100% - 32px);
  margin-inline: auto;
  margin-top: 10px;
}

.reason-body {
  padding: 4px 22px 0;
  position: relative;
}

.reason-name {
  color: var(--red);
  font-size: 24px;
  font-weight: 700;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
  margin: 10px 0 12px;
  position: relative;
  z-index: 1;
}

.reason-name .rn {
  position: absolute;
  right: 3px;
  top: auto;
  font-size: 65px;
  color: #ffede7;
  font-weight: 700;
  z-index: 0;
  line-height: 1;
  z-index: -1;
  bottom: -2px;
}

.reason-desc {
  font-size: 16px;
  margin: 0;
}

.reason-note {
  font-size: 12px;
  margin: 8px 0 0;
  text-align: left;
  max-width: 1000px;
  margin: 14px auto 0;
  width: fit-content;
  margin-right: calc((100% - 1000px)/2);
}

.reason-card .reason-note {
  margin-right: 0;
  max-width: 100%;
}

/* ===== Logos ===== */
.logos {}

.logos-glay-wrapper {
  background: var(--gray);
  padding: 20px 0 30px;
}

.logos-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: .05em;
}

.logos-title::before,
.logos-title::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin: 0 16px;
}

.logos-img {
  max-width: 1000px;
  margin: 0 auto 18px;
}

/* PC: 1枚画像 / SP: Swiperマーキー */
.logos-marquee {
  display: none;
}

.logos-lead {
  text-align: center;
  font-size: 16px;
}

/* ===== 商品ラインナップ ===== */
.products {
  background-color: #fff;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url("../img/webp/lineup-bg.webp");
  padding: 13vw 0 20px;
}

.product-grid {
  display: flex;
  gap: 34px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.product-card {
  flex: 1;
  background: #fff;
  border: 3px solid var(--orange);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.product-top {
  background: var(--orange);
  display: flex;
  align-items: center;
  padding: 22px 22px 0;
  gap: 6px;
  border-radius: 13px 13px 0 0;
}

.product-meta {
  color: #fff;
  flex: 1;
}

.product-name {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.product-brand {
  display: inline-block;
  width: 210px;
  background: #fff;
  border-radius: 999px;
  margin-top: 12px;
  margin-bottom: 16px;
  max-width: 100%;
}

.product-brand img {
  width: 100%;
  display: block;
}

.product-photo {
  width: 46%;
  align-self: flex-end;
  margin-top: -40px;
  margin-bottom: -10px;
}

.product-desc {
  padding: 30px 24px;
  font-size: 16px;
  margin: 0;
  min-height: 250px;
}

.product-price {
  padding: 0 18px 22px;
}

.product-price img {
  width: 100%;
}

/* ===== 費用 ===== */
.cost {
  background: var(--grad-or);
  padding: 100px 0 100px;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.cost .inner {
  max-width: 1232px;
}

.cost .pill {
  background: var(--dark);
}

.cost-card {
  background: #fff;
  border-radius: 10px;
  max-width: 100%;
  margin: 34px auto 0;
  padding: 40px 6% 44px;
}

.cost-items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.cost-item {
  flex: 1;
  border: 2px solid #ffd9cd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 15px;
  background: #fff;
}

.cost-item .ci-icon {
  width: 115px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cost-item .ci-icon img {
  width: 115px;
}

.cost-item .ci-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.cost-item .ci-sub {
  font-size: 12px;
  color: #666;
}

.cost-plus {
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -5px;
  position: relative;
  z-index: 2;
}

.cost-plus img {
  width: 34px;
}

.cost-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 6px 18px;
  margin-top: 12px;
  cursor: pointer;
}

.cost-toggle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .3s;
  margin-top: -4px;
}

.cost-toggle.open::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.cost-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.cost-details-inner {
  background: var(--pink);
  border-radius: 14px;
  padding: 24px;
  margin-top: 20px;
}

.cost-details-inner h4 {
  text-align: center;
  font-size: 18px;
  margin: 0 0 18px;
  font-weight: 700;
}

.cost-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.05em;
}

.cost-tags span {
  background: #fff;
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 3px;
  padding: 10px 23px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.cost-free {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.cost-free-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cost-free-item img {
  height: 48px;
}

.cost-free-item b {
  color: var(--red);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cost-free-pc {
  display: none;
}

.cost-note {
  font-size: 12px;
  color: #666;
  margin: 16px 0 0;
}

/* ===== アフターサポート ===== */
.support {
  background: var(--pink);
  padding: 140px 0 100px;
  margin-top: -40px;
}

.support-head {
  text-align: center;
  margin-bottom: 20px;
}

.support-head .pill {
  margin-bottom: 10px;
}

.support-title {
  font-size: 45px;
  font-weight: 700;
}

.support-title span {
  color: var(--orange);
}

.support-card {
  background: #fff;
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.support-col {
  flex: 1;
  text-align: center;
}

.support-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  border-radius: 999px;
  padding: 8px 50px 5px;
  margin-bottom: 18px;
}

.support-cert {
  max-width: 153px;
  margin: 0 auto;
}

.support-badge2 {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  border-radius: 999px;
  padding: 8px 50px 5px;
  margin-bottom: 0px;
}

.support-lead {
  font-size: 30px;
  font-weight: 700;
  margin: 6px 0 18px;
}

.support-lead span {
  color: var(--orange);
}

.support-person {
  max-width: 320px;
  margin: 0 auto;
}

/* ===== お客様の声 ===== */
.voice {
  padding: 66px 0 74px;
}

.voice .sec-title {
  margin-bottom: 20px;
}

.voice-grid {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}

.voice-card {
  flex: 1;
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: 14px;
  box-shadow: 4px 5px 0 rgba(249, 78, 46, .5);
  padding: 20px 20px 14px;
}

.voice-star {
  margin-bottom: 12px;
}

.voice-star img {
  height: 26px;
}

.voice-main {
  display: flex;
  gap: 14px;
}

.voice-face {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.voice-text {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.voice-card.open .voice-text {
  -webkit-line-clamp: unset;
}

.voice-more {
  display: block;
  margin: 8px 0 0 auto;
  background: none;
  border: none;
  color: #999;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.voice-more::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .3s;
}

.voice-card.open .voice-more::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.voice-pr {
  text-align: right;
  font-size: 12px;
  color: #888;
  max-width: 1000px;
  margin: 20px auto 0;
}

/* ===== 流れ ===== */
.flow {}

.flow-bg-wrapper {
  background: var(--gray);
  padding: 100px 0 100px;
}

.flow-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.flow-track {
  display: flex;
  gap: 20px;
}

.flow-item {
  flex: 1;
  text-align: center;
}

.flow-icon {
  position: relative;
}

.flow-icon img {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ステップ間をつなぐ線（PC） */
.flow-item:not(:last-child) .flow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
  z-index: 0;
}

.flow-name {
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0 8px;
}

.flow-desc {
  font-size: 14px;
  text-align: left;
  margin: 0;
}

.flow-desc .warranty {
  color: var(--red);
  font-weight: 700;
}

.flow-nav,
.flow-bar {
  display: none;
}

/* ===== FAQ ===== */
.faq {
  padding: 60px 0 70px;
}

.faq .sec-title {
  font-size: 40px;
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  /* button要素のUAスタイルをリセット */
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: inherit;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.faq-q .qmark {
  color: var(--red);
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-q .chev {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s;
}

.faq-item.open .faq-q .chev {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a-inner {
  display: flex;
  gap: 16px;
  padding: 0 40px 24px 0;
  font-size: 16px;
  color: #333;
}

.faq-a-inner .amark {
  color: var(--dark);
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== 対応エリア ===== */
.area {
  background: var(--grad-or);
  color: #fff;
  padding: 60px 0 66px;
  border-radius: 26px;
  max-width: 100%;
  margin: 40px auto 0;
}

.area-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 7px;
}

.area-lead {
  text-align: center;
  font-size: 16px;
  margin: 0 0 36px;
}

.area-cards {
  display: flex;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.area-card {
  flex: 1;
  background: #fff;
  color: var(--dark);
  border-radius: 10px;
  padding: 22px 5%;
}

.area-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
}

.area-card h3 span {
  color: var(--red);
}

.area-card p {
  margin: 0;
  font-size: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--gray);
  padding: 44px 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: opacity .2s;
  width: 270px;
}

.footer-links a:hover {
  opacity: .88;
}

.footer-links a img {
  width: 18px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: #929292;
  margin-bottom: 0;
}

.sp-only {
  display: none;
}

/* ===== PC：費用の内訳は常時表示 ===== */
@media (min-width: 768px) {
  .cost-toggle {
    display: none;
  }

  .cost-details {
    max-height: none !important;
  }

  .cost-free {
    display: none;
  }

  .cost-note {
    display: none;
  }

  .cost-free-pc {
    display: block;
    margin-top: 30px;
  }
}

@media (max-width: 1250px) {
  .cost-card {
    padding: 40px 5% 44px;
  }

  .fv-hero img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .fv-cta .cta-body {
    max-width: 85.5vw;
    transform: translateY(-32%);
  }

  .cost-item {
    padding: 10px 1.5%;
  }

  .cost-item .ci-icon {
    width: 8vw;
  }

  .cost-item .ci-icon img {
    width: 8vw;
  }

  .cost-item .ci-title {
    font-size: 2.1vw;
  }

  .cost-item .ci-sub {
    line-height: 1.5;
    display: inline-block;
  }

  .support-lead {
    font-size: 26px;
  }
}

@media (max-width: 1050px) {
  .reason-name {
    font-size: 2vw;
  }

  .reason-name .rn {
    font-size: 6.5vw;
  }

  .reason-note {
    max-width: 100%;
    margin-right: 0;
  }

  .product-brand {
    width: 17vw;
  }

  .product-name {
    font-size: 3vw;
  }

  .flow-name {
    font-size: 1.8vw;
  }

  .cta-note br{
    display: inline;
  }
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .sp-only {
    display: inline-block;
  }

  .fv-hero img {
    aspect-ratio: initial;
  }

  .sec-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .pill {
    font-size: 4.6vw;
    padding: 2vw 6vw;
  }

  .header .inner {
    height: 17vw;
    padding: 0 3vw;
  }

  .header .logo {
    width: 27vw;
  }

  .header-btns {
    gap: 8px;
  }

  .header-btns .h-line img {
    height: 11vw;
  }

  .header-btns .h-photo img {
    height: 11vw;
  }

  .fv {
    padding-top: 5vw;
    padding-bottom: 20px;
  }

  .fv-cta .cta-body {
    transform: translateY(0);
    max-width: 100vw;
    margin-bottom: 0;
  }

  .cta {
    padding: 7vw 0;
  }

  .fv-cta {
    padding: 0;
  }

  .cta-box {
    border-width: 3px;
  }

  .cta-head {
    font-size: 5.7vw;
    padding: 3vw 0;
    line-height: 1.5
  }

  .cta-body {
    padding: 4.6vw 3.6vw 3.6vw;
    gap: 3.6vw;
  }

  .cta-tel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-btns {
    flex: 1 1 100%;
    gap: 8px;
    flex:initial;
    width: 97%;
  }

  .cta-note {
    font-size: 2.4vw;
    text-align: left;
  }

  .fv .cta-note {
    font-size: 2.6vw;
  }

  .intro {
    padding: 14vw 0;
  }

  .intro-bubble img {
    width: 80vw;
  }

  .intro-bubble {
    margin-bottom: 3vw;
  }

  .intro-box {
    margin: 0 4vw 2vw;
  }

  .intro-cards {
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
  }

  .intro-lead {
    font-size: 5vw;
    margin-bottom: 0;
  }

  .intro-lead .big {
    font-size: 7vw;
  }

  .intro::after {
    border-width: 6vw 5vw 0 5vw;
  }

  .subsidy-arrow {
    width: 18vw;
    margin: 0 auto -9vw;
  }

  .subsidy {
    padding: 44px 0 6px;
  }

  .reasons {
    padding: 5vw 0 10vw;
  }

  .reasons-title {
    font-size: 7.7vw;
  }

  .reasons-title .num {
    font-size: 14vw;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 100%;
  }

  .reason-card::after {
    bottom: -1.5vw;
    height: 15vw;
    border-radius: 0 0 3vw 3vw;
    z-index: -1;
    width: 100%;
  }

  .reason-name {
    font-size: 6.7vw;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #ccc;
  }

  .reason-name .rn {
    font-size: 17vw;
    right: 0;
  }

  .reasons-head {
    margin-bottom: 3vw;
  }

  .reason-body {
    padding: 3vw 5vw;
  }

  .reason-desc {
    font-size: 3.8vw;
  }

  .reason-card {
    padding: 0 0 2vw;
  }

  .logos-title {
    font-size: 6vw;
    margin-bottom: 5vw;
    margin-top: 3vw;
  }

  .logos-title::before,
  .logos-title::after {
    width: 11vw;
    margin: 0 2vw;
  }

  /* SP: ロゴマーキー（上段→右／下段→左に自動スクロール） */
  .logos-pc {
    display: none;
  }

  .logos-marquee {
    display: block;
    margin: 0 -16px 4vw;
    overflow: hidden;
  }

  .logos-swiper {
    overflow: hidden;
  }

  .logos-swiper--top {
    margin-bottom: 3vw;
  }

  .logos-swiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
  }

  .logos-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
  }

  .logos-swiper .swiper-slide img {
    height: 13vw;
    width: auto;
    max-width: none;
  }

  .logos-lead {
    font-size: 4.6vw;
  }

  .products {
    padding: 25vw 0 5vw;
    background-image: url("../img/webp/lineup-bg-sp.webp");
  }

  .products .pill {
    font-size: 5.6vw;
    padding: 2vw 9vw;
  }

  /* 商品カード：375px基準でvw可変 */
  .product-grid {
    flex-direction: column;
    gap: 7vw;
    max-width: 88vw;
    margin: 8vw auto 0;
  }

  .product-card {
    border-width: 0.8vw;
    border-radius: 4.8vw;
  }

  .product-top {
    padding: 3.6vw 4.6vw 0;
    gap: 1.6vw;
    border-radius: 3.5vw 3.5vw 0 0;
  }

  .product-name {
    font-size: 6.8vw;
  }

  .product-brand {
    width: 31vw;
    margin-top: 3.2vw;
    margin-bottom: 4vw;
  }

  .product-photo {
    width: 34vw;
    margin-top: -8vw;
    margin-bottom: -2.6vw;
  }

  .product-desc {
    padding: 8vw 6.4vw;
    font-size: 3.9vw;
    min-height: 0;
  }

  .product-price {
    padding: 0 4.8vw 5.9vw;
  }

  .products .reason-note {
    font-size: 3.2vw;
  }

  /* 費用：375px基準でvw可変 */
  .cost {
    padding: 11vw 0 13vw;
  }

  .cost .pill {
    font-size: 6vw;
    padding: 2vw 9vw;
  }

  .cost-card {
    /* padding: 6.4vw 4.8vw 8vw;
    border-radius: 4.8vw;*/
    margin: 4vw auto 0;
    padding: 0;
    border-radius: 0;
    margin: 4vw auto 0;
    background: transparent;
  }

  .cost-items {
    flex-direction: column;
    gap: 0;
  }

  .cost-item {
    width: 100%;
    gap: 3.7vw;
    padding: 2vw 6vw;
    border: none;
  }

  .cost-item .ci-icon {
    width: 27vw;
  }

  .cost-item .ci-icon img {
    width: 27vw;
  }

  .cost-item .ci-title {
    font-size: 7.3vw;
    letter-spacing: 0.05em;
  }

  .cost-item .ci-sub {
    font-size: 3vw;
  }

  .cost-plus {
    flex-basis: auto;
    padding: 0;
    margin: -1vw 0;
  }

  .cost-plus img {
    width: 7vw;
  }

  .cost-toggle {
    font-size: 2.5vw;
    gap: 2vw;
    padding: 1.6vw 4.8vw;
    margin-top: 1.2vw;
    border-radius: 5px;
    width: 100%;
    justify-content: center;
  }

  .cost-toggle::after {
    width: 1.7vw;
    height: 1.7vw;
  }

  .cost-details-inner {
    padding: 6.4vw;
    margin-top: 5.3vw;
    border-radius: 3.7vw;
  }

  .cost-details-inner h4 {
    font-size: 4.3vw;
    margin-bottom: 4.8vw;
  }

  .cost-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2vw;
  }

  .cost-tags span {
    font-size: 3.5vw;
    padding: 2.6vw 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cost-free {
    gap: 0.4vw;
    flex-direction: column;
    align-items: stretch;
    margin-top: 6.9vw;
  }

  .cost-free-item {
    justify-content: space-between;
    gap: 1.7vw;
  }

  .cost-free-item img {
    height: 14vw;
  }

  .cost-free-item b {
    font-size: 9.3vw;
    white-space: nowrap;
  }

  .cost-note {
    font-size: 2.7vw;
    margin-top: 4.3vw;
    color: #fff;
  }

  .sp-none {
    display: none;
  }

  .support {
    padding: 18vw 0 18vw;
  }

  .support .inner {
    padding: 0;
  }

  .support-title {
    font-size: 7.5vw;
  }

  .support-head .pill {
    margin-bottom: 2vw;
    font-size: 5vw;
    padding: 2vw 10vw 1vw;
  }

  .support-card {
    flex-direction: column;
    gap: 10vw;
    padding: 0 4vw 11vw;
    align-items: center;
    border-radius: 0;
  }

  .support-card .support-col:first-child {
    margin-top: -6vw;
  }

  .support-badge {
    font-size: 7vw;
    padding: 2vw 15vw 1vw;
    margin-bottom: 5vw;
  }

  .support-badge2 {
    font-size: 5.5vw;
    padding: 2vw 8vw 1.5vw;
  }

  .support-lead {
    font-size: 8vw;
    margin: 2vw 0 5vw;
  }

  .support-head {
    margin-bottom: 10vw;
  }

  .voice {
    padding: 15vw 0 5vw;
  }

  .voice .sec-title {
    font-size: 8vw;
    margin-bottom: 5vw;
  }

  .voice-grid {
    flex-direction: column;
    gap: 5vw;
    max-width: 100%;
  }

  .voice-pr {
    text-align: center;
    font-size: 3vw;
  }

  .voice-star img {
    height: 9.4vw;
  }

  .voice-face {
    width: 19vw;
    height: 19vw;
  }

  .voice-main {
    gap: 3vw;
  }

  .voice-text {
    font-size: 4vw;
  }

  .voice-more {
    font-size: 3.3vw;
  }

  .voice-more::after {
    width: 2vw;
    height: 2.2vw;
  }

  .voice-card {
    border-radius: 4vw;
    box-shadow: 1vw 1vw 0 rgba(249, 78, 46, .5);
    padding: 5vw;
  }

  /* Flow slider on SP */
  .flow {
    padding: 10vw 0;
  }

  .flow-wrap {
    max-width: 100%;
    padding: 0 4vw;
  }

  .flow-viewport {
    overflow: hidden;
  }

  .flow-track {
    transition: transform .4s ease;
    gap: 0;
  }

  .flow-item {
    flex: 0 0 100%;
    padding: 0 6px;
  }

  .flow-icon img {
    width: 90%;
  }

  .flow-item:not(:last-child) .flow-icon::after {
    display: none;
  }

  .flow-name {
    font-size: 5.6vw;
  }

  .flow-desc {
    font-size: 4.2vw;
  }

  .flow-nav {
    display: flex;
    position: absolute;
    top: 32vw;
    width: 100%;
    justify-content: space-between;
    left: 0;
    pointer-events: none;
  }

  .flow-nav button {
    pointer-events: auto;
    width: 12vw;
    height: 12vw;
    border-radius: 50%;
    border: none;
    background: #c9c9c9;
    color: #fff;
    font-size: 5vw;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
  }

  .flow-nav button.active {
    background: var(--dark);
  }

  .flow-bar {
    display: block;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    margin: 6vw auto 0;
    max-width: 100%;
    overflow: hidden;
  }

  .flow-bar span {
    display: block;
    height: 100%;
    background: var(--red);
    border-radius: 2px;
    transition: width .4s;
  }

  .flow-bg-wrapper {
    padding: 15vw 0;
  }

  .flow .sec-title {
    font-size: 8vw;
    margin-bottom: 5vw;
  }

  .faq {
    padding: 0 0 10vw;
  }

  .faq-q {
    font-size: 4.6vw;
    padding: 4vw 7vw 4vw 0;
  }

  .faq .sec-title {
    font-size: 8vw;
    margin-bottom: 6vw;
  }

  .faq-q .chev {
    width: 3vw;
    height: 3vw;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
  }

  .faq-q .qmark,
  .faq-a-inner .amark {
    font-size: 8vw;
  }

  .faq-a-inner {
    font-size: 4.6vw;
  }

  .area {
    padding: 18vw 0;
    border-radius: 20px;
    margin: 8vw auto;
  }

  .area-title {
    font-size: 6vw;
    margin: 0 0 2vw;
  }

  .area-cards {
    flex-direction: column;
    gap: 4vw;
    max-width: 100%;
  }

  .area-lead {
    text-align: left;
    font-size: 4vw;
    margin: 0 0 7vw;
  }

  .area-card h3 {
    font-size: 5.5vw;
    margin: 0 0 3vw;
    padding-bottom: 1.5vw;
  }

  .area-card p {
    font-size: 4.6vw;
  }

  .area-card {
    padding: 5vw 5%;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    width: 100%;
    max-width: 90%;
    font-size: 4vw;
    padding: 2.5vw 3vw;
  }

  .cost-sp-group {
    padding: 6.4vw 6vw 8vw;
    border-radius: 10px;
    background: #fff;
  }

  .cost-sp-group .cost-plus {
    display: none;
  }

  .cost-sp-group .cost-item:first-child {
    margin-bottom: 3vw;
  }

  .cost-sp-group .cost-item {
    padding: 0;
  }
}

/* ===== スクロールアニメーション（fadeUp） ===== */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}

.anim.is-in {
  opacity: 1;
  transform: none;
}

/* SP：introカードは 左・右・左 で出す */
@media (max-width: 767px) {
  .anim.anim-left {
    transform: translateX(-48px);
  }

  .anim.anim-right {
    transform: translateX(48px);
  }

  .anim.anim-left.is-in,
  .anim.anim-right.is-in {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}