@charset "UTF-8";


/* =========================================================
   新日本ホーム｜住宅沈下修正LP
   横並び中心レイアウト／最大幅 720px

   ブランドカラー：
     主役  リーフグリーン       #7ac577
     強調  ディープグリーン     #127b31
     補助  アイボリーベージュ   #f3f1e9
     文字  チャコールグレー     #333333
     ベース ホワイト             #ffffff
   ========================================================= */
:where(.lp-root),
:where(.lp-root) *,
:where(.lp-root) *::before,
:where(.lp-root) *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
.lp-root {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Yu Gothic", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg-outer);
  display: flex;
  flex-direction: column;
  align-items: center;
}
:where(.lp-root) img {
  max-width: 100%;
  height: auto;
  display: block;
}
:where(.lp-root) a {
  color: inherit;
  text-decoration: none;
}
:where(.lp-root) ul,
:where(.lp-root) ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
:root {
  --c-leaf: #7ac577;
  --c-deep: #127b31;
  --c-deep-dark: #0e6228;
  --c-ivory: #f3f1e9;
  --c-warn: #d9534f;
  --c-accent: #ee8434;       /* アクセント：暖色（無料／重要バッジ用） */
  --c-accent-dark: #c8631c;
  --c-text: #333333;
  --c-bg: #ffffff;
  --c-bg-outer: #e8e6df;
  --c-text-muted: #6b7280;
  --c-border: #e2dfd3;

  --lp-max: 720px;
}
/* ---------- 共通レイアウト ---------- */
.lp-root .site-header,
.lp-root .lp-main,
.lp-root .site-footer {
  width: 100%;
  max-width: var(--lp-max);
  background: var(--c-bg);
}
.lp-root .lp-main {
  flex: 1;
  /* 装飾要素（円・波形など）が横方向にはみ出しても、横スクロールを出さない */
  overflow-x: hidden;
}
/* ---------- セクション区切り：ベタ塗り波形 ---------- */
/* 各セクションの背景色をCSS変数で交互に設定。
   セクションの上端に「自身の背景色でベタ塗りした波形」を擬似要素で配置し、
   上のセクションを波の形でカバーして「波線で背景が切り替わる」見た目を作る。 */
.lp-root .lp-main > section {
  --section-bg: #ffffff;
  background: var(--section-bg);
  position: relative;
}
/* セクション別の背景色：selfcheck以降は「白 → 薄グリーン → 薄ベージュ」の3色サイクル
   波形マスク(::before)は自身のセクション色なので、自動的に色が揃って自然な繋がりになる */
.lp-root .fv { --section-bg: #ffffff; }
/* 白 */
.lp-root .subsidy { --section-bg: #eaf5e8; }
/* 薄グリーン：補助金訴求の特別感 */
.lp-root .check { --section-bg: #ffffff; }
/* 白（サイクル開始） */
.lp-root .benefits { --section-bg: #eaf5e8; }
/* 薄グリーン */
.lp-root .reasons { --section-bg: #f3f1e9; }
/* 薄ベージュ */
.lp-root .flow { --section-bg: #ffffff; }
/* 白 */
.lp-root .about { --section-bg: #eaf5e8; }
/* 薄グリーン */
.lp-root .method { --section-bg: #f3f1e9; }
/* 薄ベージュ */
.lp-root .works { --section-bg: #ffffff; }
/* 白 */
.lp-root .faq { --section-bg: #eaf5e8; }
/* 薄グリーン */
.lp-root .final-cta { --section-bg: #f3f1e9; }
/* 薄ベージュ */
/* セクション2（補助金訴求）の波形は非表示：FV画像にかぶるのを防止 */
.lp-root .subsidy::before {
  display: none !important;
}
/* セクション区切り：波形マスクで自然な繋がりを作る
   各セクションが自身の背景色でベタ塗りした波形を、
   上のセクションの最下部に「乗せる」ことで、波線で背景色が切り替わる演出。 */
.lp-root .lp-main > section + section::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  height: 24px;
  background: var(--section-bg);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 24' preserveAspectRatio='none'><path d='M0 24 L0 14 Q25 2 50 14 T100 14 L100 24 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 24' preserveAspectRatio='none'><path d='M0 24 L0 14 Q25 2 50 14 T100 14 L100 24 Z' fill='black'/></svg>");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  pointer-events: none;
  z-index: 3;
}
/* ---------- スクロールフェードイン ---------- */
.lp-root .lp-main > section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.lp-root .lp-main > section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 1番目（FV）はページ読み込み時すぐ表示（白いままを避ける） */
.lp-root .lp-main > section:first-child {
  opacity: 1;
  transform: none;
  transition: none;
}

/* 動きを嫌うユーザー向け：transitionを無効化 */
@media (prefers-reduced-motion: reduce) {
.lp-root .lp-main > section {
    opacity: 1;
    transform: none;
    transition: none;
  }}
/* ---------- ヘッダー ---------- */
.lp-root .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
}
.lp-root .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
}
.lp-root .site-header__brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}
.lp-root .site-header__logo {
  height: 52px;
  width: auto;
  display: block;
}
/* ヘッダーのブランドテキスト（ロゴ画像の代わり） */
.lp-root .site-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  gap: 2px;
}
.lp-root .site-header__brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.06em;
}
.lp-root .site-header__brand-main {
  font-size: 17px;
  font-weight: 900;
  color: var(--c-deep);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lp-root .site-header__brand-main em {
  font-style: normal;
  color: var(--c-leaf);
  margin-left: 3px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.lp-root .site-header__brand-company {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.lp-root .site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.lp-root .site-header__contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: 1.2;
}
.lp-root .site-header__tel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
  white-space: nowrap;
  line-height: 1;
}
.lp-root .site-header__tel-icon {
  font-size: 14px;
  color: var(--c-deep);
}
.lp-root .site-header__mail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--c-text);
  white-space: nowrap;
  line-height: 1;
}
.lp-root .site-header__mail-icon {
  font-size: 12px;
  color: var(--c-deep);
}
.lp-root .site-header__mail-addr {
  font-weight: 500;
}
.lp-root .site-header__hours {
  font-size: 10px;
  color: var(--c-text-muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.lp-root .site-header__cta {
  display: inline-block;
  padding: 10px 16px;
  background: var(--c-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1.4;
  text-align: center;
}
/* ---------- 共通：セクション見出し（英字+日本語） ---------- */
.lp-root .section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 28px;
  padding-bottom: 16px;
  line-height: 1.4;
  color: var(--c-text);
  text-align: center;
}
.lp-root .section-title__en {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--c-leaf);
  text-transform: uppercase;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}
.lp-root .section-title__ja {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--c-text);
}
.lp-root .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-leaf), var(--c-deep));
  border-radius: 2px;
}
.lp-root .section-lead {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--c-text);
}
.lp-root .placeholder-note {
  margin: 12px 0 0;
  padding: 10px;
  font-size: 11px;
  color: var(--c-text-muted);
  background: rgba(0, 0, 0, 0.03);
  border: 1px dashed var(--c-border);
  border-radius: 6px;
  text-align: center;
}
.lp-root .placeholder-text {
  color: #9a9789 !important;
  font-style: normal;
  font-weight: 500 !important;
  background: rgba(0, 0, 0, 0.025);
  border: 1px dashed #b8b6ac;
  border-radius: 4px;
  padding: 3px 6px;
  display: inline-block;
}
/* ---------- 画像差し替え用プレースホルダー ---------- */
.lp-root .img-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(122, 197, 119, 0.05);
  border: 2px dashed #b8b6ac;
  border-radius: 6px;
  color: var(--c-text-muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  padding: 6px;
}
.lp-root .img-box__icon {
  font-size: 18px;
  color: #b8b6ac;
}
.lp-root .img-box__label {
  font-size: 10px;
  letter-spacing: 0.02em;
}
/* FV：1枚画像固定（CTA領域のみ透明リンクを重ねてクリック可） */
.lp-root .fv__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--c-ivory);
  line-height: 0; /* 画像下の余白除去 */
}
.lp-root .fv__img {
  width: 100%;
  height: auto;
  display: block;
}
/* CTAボタン「今すぐ無料相談する」の位置に重ねる透明リンク（fv.png 1662x946 基準・右下配置） */
.lp-root .fv__cta-link {
  position: absolute;
  left: 50.5%;
  width: 46.5%;
  top: 82%;
  height: 13%;
  border-radius: 999px;
  z-index: 2;
  /* デバッグ用：一時的に薄い色を出したい場合は下行を有効化
  background: rgba(255, 0, 0, 0.2); */
}
.lp-root .fv__cta-link:focus-visible {
  outline: 3px solid var(--c-deep);
  outline-offset: 2px;
}
/* FV：フル幅スライドショー（旧構造・現状未使用） */
.lp-root .fv__slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  background: var(--c-ivory);
}
.lp-root .fv__slides {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-root .fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.lp-root .fv__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.lp-root .fv__slide-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.lp-root .fv__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-root .fv__slide-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 9px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.lp-root .fv__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}
.lp-root .fv__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.lp-root .fv__dot.is-active {
  background: #fff;
}
.lp-root .fv__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
/* SVGアイコン共通：自動生成のラインアイコン */
.lp-root .svg-icon {
  display: block;
  fill: none;
  stroke: var(--c-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--c-deep);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}
/* hover: セクション別の動き */
.lp-root .check__item:hover .svg-icon--sym {
  animation: iconBounce 0.6s ease;
}
.lp-root .benefits__card:hover .svg-icon--bnf {
  transform: scale(1.18) rotate(-4deg);
}
.lp-root .flow__step:hover .svg-icon--flw {
  animation: iconWobble 0.6s ease;
}
.lp-root .about__card:hover .svg-icon--abt {
  transform: scale(1.18) translateY(-2px);
}
.lp-root .fv__point:hover .svg-icon--pt {
  transform: scale(1.22);
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  35%      { transform: translateY(-6px) scale(1.08); }
  60%      { transform: translateY(0) scale(1.04); }
}

@keyframes iconWobble {
  0%, 100% { transform: rotate(0) scale(1.1); }
  25%      { transform: rotate(-10deg) scale(1.1); }
  75%      { transform: rotate(10deg) scale(1.1); }
}
/* カードのモダン化：角丸大きめ、多層シャドウ、微グラデ背景 */
.lp-root .benefits__card,
.lp-root .flow__step,
.lp-root .about__card,
.lp-root .fv__point,
.lp-root .works__item,
.lp-root .faq__item,
.lp-root .check__item {
  border-radius: 18px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbf9f3 100%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.25s ease;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 14px rgba(0, 0, 0, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.04);
}
.lp-root .benefits__card:hover,
.lp-root .flow__step:hover,
.lp-root .about__card:hover,
.lp-root .works__item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 24px rgba(18, 123, 49, 0.16),
    0 22px 44px rgba(0, 0, 0, 0.1);
}
/* アイコンカードの内パディングを増やし、立体感を高める */
.lp-root .benefits__card,
.lp-root .flow__step,
.lp-root .about__card {
  padding: 22px 14px;
}
/* アイコンサイズを拡大 */
.lp-root .svg-icon--sym { width: 44px; height: 44px; }
.lp-root .svg-icon--bnf { width: 52px; height: 52px; }
.lp-root .svg-icon--flw { width: 48px; height: 48px; }
.lp-root .svg-icon--abt { width: 50px; height: 50px; }
/* アイコン背景の丸装飾（背景色によって視認性を変える） */
.lp-root .flow__step .svg-icon {
  padding: 8px;
  background: rgba(122, 197, 119, 0.18);
  border-radius: 50%;
  box-sizing: content-box;
}
/* 緑背景セクション（benefits/about/faq）はアイコン円を白＋緑ボーダーで視認性確保 */
.lp-root .benefits__card .svg-icon,
.lp-root .about__card .svg-icon {
  padding: 8px;
  background: #ffffff;
  border: 1.5px solid var(--c-leaf);
  border-radius: 50%;
  box-sizing: content-box;
}
/* チェック済みカードのアクセント */
.lp-root .check__item:has(.check__input:checked) {
  background: linear-gradient(180deg, #f0fbef 0%, #d8ecd6 100%) !important;
  border-color: var(--c-deep) !important;
  box-shadow: 0 8px 18px rgba(18, 123, 49, 0.18) !important;
}
/* FVスライドショー：フル幅・影なし */
.lp-root .fv__slideshow {
  border-radius: 0;
  box-shadow: none;
}
/* 写真系の角丸統一 */
.lp-root .method__figure,
.lp-root .works__photo {
  border-radius: 14px;
}
.lp-root .works__photo {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.lp-root .method__figure {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}
/* セクション背景に変化：装飾SVG */
.lp-root .check::after,
.lp-root .flow::after,
.lp-root .about::after,
.lp-root .faq::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at top right, rgba(122, 197, 119, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.lp-root .benefits::after,
.lp-root .method::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at bottom left, rgba(18, 123, 49, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.lp-root .check > *,
.lp-root .flow > *,
.lp-root .about > *,
.lp-root .faq > *,
.lp-root .benefits > *,
.lp-root .method > * {
  position: relative;
  z-index: 1;
}
.lp-root .benefits__card:hover,
.lp-root .flow__step:hover {
  transform: translateY(-2px);
}
.lp-root .about__card:hover {
  transform: translateY(-3px);
  background: rgba(122, 197, 119, 0.22);
}
.lp-root .fv__point:hover {
  background: rgba(122, 197, 119, 0.25);
}
.lp-root .svg-icon--sym {
  width: 38px;
  height: 38px;
}
/* 症状チェック用のイラストSVG（塗り込みイラスト風） */
.lp-root .check__illust {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto 6px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}
.lp-root .check__item:hover .check__illust {
  animation: iconBounce 0.6s ease;
}
.lp-root .check__item:has(.check__input:checked) .check__illust {
  transform: scale(1.06);
}
.lp-root .svg-icon--bnf {
  width: 44px;
  height: 44px;
}
.lp-root .svg-icon--flw {
  width: 40px;
  height: 40px;
}
.lp-root .svg-icon--abt {
  width: 42px;
  height: 42px;
}
/* セクション3：症状チェックのアイコン（旧プレースホルダ用、未使用化） */
.lp-root .img-box--icon-sm {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 4px;
}
.lp-root .img-box--icon-sm .img-box__icon {
  font-size: 22px;
}
.lp-root .img-box--icon-sm .img-box__label {
  display: none;
}
/* セクション4・5・7：中サイズアイコン */
.lp-root .img-box--icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.lp-root .img-box--icon .img-box__icon {
  font-size: 20px;
}
.lp-root .img-box--icon .img-box__label {
  display: none;
}
/* セクション6：流れのステップアイコン */
.lp-root .img-box--step {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.lp-root .img-box--step .img-box__icon {
  font-size: 18px;
}
.lp-root .img-box--step .img-box__label {
  display: none;
}
/* セクション8：工法イラスト（右カラム） */
.lp-root .img-box--method {
  width: 100%;
  aspect-ratio: 4 / 3;
}
.lp-root .img-box--method .img-box__icon {
  font-size: 28px;
}
.lp-root .method__figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.lp-root .method__img {
  width: 100%;
  /* イラスト全体を見せる必要があるため cover でのトリミングをやめ、
     素材の比率(3:2)に合わせて contain 表示にする（2026/09/06） */
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #fff;
  display: block;
}
.lp-root .method__caption {
  position: absolute;
  bottom: 6px;
  left: 6px;
  padding: 3px 9px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  border-radius: 999px;
}
/* セクション9：施工前/施工後 写真 */
.lp-root .img-box--ba {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.04);
}
.lp-root .img-box--ba .img-box__icon {
  font-size: 20px;
}
.lp-root .img-box--ba .img-box__label {
  font-size: 10px;
  font-weight: 700;
  color: var(--c-deep);
}
.lp-root .works__photo {
  margin: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
}
.lp-root .works__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
/* 事例01 アフター：家全体を見切れなく表示する */
.lp-root .works__photo-img--contain {
  object-fit: contain !important;
  background: #f5f5f5;
}
/* 施工前：グレー背景のプレースホルダー */
.lp-root .works__photo--before {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #cfd0d1 0%, #a4a6a8 100%);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}
.lp-root .works__photo-placeholder {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.lp-root .works__photo-placeholder small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.lp-root .works__item:hover .works__photo img {
  transform: scale(1.05);
}
.lp-root .works__photo-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 2px 7px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.lp-root .works__photo-tag--after {
  background: var(--c-deep);
}
/* ---------- セクション1：ファーストビュー（フル幅スライドショー） ---------- */
.lp-root .fv {
  position: relative;
  padding: 0;
  background: var(--c-bg);
  overflow: hidden;
}
.lp-root .fv__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.lp-root .fv__visual {
  align-self: stretch;
}
.lp-root .fv__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-root .fv__title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.lp-root .fv__title em {
  font-style: normal;
  display: block;
  color: var(--c-text);
}
.lp-root .fv__lead {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: var(--c-text);
}
.lp-root .fv__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 4px 0 0;
  padding: 0;
}
.lp-root .fv__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  background: linear-gradient(180deg, #ffffff 0%, #faf6ea 100%);
  color: var(--c-text);
  border-radius: 12px;
  border: 1px solid rgba(122, 197, 119, 0.3);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.lp-root .svg-icon--pt {
  width: 28px;
  height: 28px;
}
/* 実績用：大きな数字 */
.lp-root .fv__point--stat {
  background: linear-gradient(135deg, var(--c-deep) 0%, #0a5223 100%);
  color: #fff;
  border-color: var(--c-deep);
  gap: 0;
  padding: 8px 4px;
}
.lp-root .fv__stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.lp-root .fv__stat-num {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #fff;
}
.lp-root .fv__stat-big {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.lp-root .fv__stat-plus {
  font-size: 16px;
  font-weight: 900;
  color: var(--c-leaf);
  margin-left: 1px;
}
.lp-root .fv__stat-unit {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.92;
  margin-top: 2px;
}
.lp-root .fv__cta {
  margin-top: 6px;
}
/* CTAボタン共通：3倍目立たせる */
.lp-root .btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 24px;
  border-radius: 12px;
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease, filter 0.2s ease;
  overflow: hidden;
}
.lp-root .btn:active {
  transform: translateY(2px) scale(0.98);
}
.lp-root .btn__main {
  font-size: 18px;
  letter-spacing: 0.04em;
  z-index: 1;
}
.lp-root .btn__sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  z-index: 1;
}
.lp-root .btn__icon {
  display: inline-block;
  margin-right: 4px;
}
.lp-root .btn--primary {
  background: linear-gradient(135deg, var(--c-leaf) 0%, var(--c-deep) 100%);
  color: #fff;
  box-shadow:
    0 4px 14px rgba(18, 123, 49, 0.35),
    0 0 0 0 rgba(122, 197, 119, 0.6);
  animation: btnPulse 2.6s ease-in-out infinite;
}
.lp-root .btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-leaf) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lp-root .btn--primary > * {
  position: relative;
  z-index: 1;
}
.lp-root .btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 10px 28px rgba(18, 123, 49, 0.42),
    0 0 0 8px rgba(122, 197, 119, 0.18);
}
.lp-root .btn--primary:hover::before {
  opacity: 1;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(18, 123, 49, 0.35), 0 0 0 0 rgba(122, 197, 119, 0.5); }
  50%      { box-shadow: 0 4px 14px rgba(18, 123, 49, 0.35), 0 0 0 10px rgba(122, 197, 119, 0); }
}
/* ---------- セクション2：補助金訴求（特別感を強化） ---------- */
.lp-root .subsidy {
  padding: 56px 22px 48px;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(122, 197, 119, 0.18) 0%, rgba(122, 197, 119, 0) 70%),
    var(--c-ivory) !important;
}
/* 背景装飾：右下に大きな緑円 + 左上に薄い緑円 */
.lp-root .subsidy::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(18, 123, 49, 0.08);
  bottom: -80px;
  right: -60px;
  pointer-events: none;
  z-index: 0;
}
.lp-root .subsidy > * {
  position: relative;
  z-index: 1;
}
.lp-root .subsidy__amount {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 auto 16px;
  padding: 28px 24px;
  width: 100%;
  max-width: none;
  background: #fff;
  border: 1px solid rgba(122, 197, 119, 0.4);
  border-radius: 20px;
  box-shadow:
    0 20px 40px rgba(18, 123, 49, 0.14),
    0 4px 10px rgba(0, 0, 0, 0.05),
    inset 0 0 0 6px rgba(122, 197, 119, 0.08);
}
/* リボン型ラベル：「最大補助額」 */
.lp-root .subsidy__amount-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px 8px 26px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  letter-spacing: 0.12em;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(238, 132, 52, 0.35);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
}
.lp-root .subsidy__amount-label::before {
  content: "★";
  font-size: 12px;
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}
/* 数字周りの装飾は無し（シンプルに） */
.lp-root .subsidy__amount-num {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-text);
}
.lp-root .subsidy__amount-big {
  display: inline-block;
  min-width: 1.4em;
  font-size: 104px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-deep);
  margin: 0 4px;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  text-align: right;
  transition: transform 0.5s ease;
}
.lp-root .subsidy__amount-big.is-pulsing {
  animation: subsidyPulse 0.6s ease-out;
}

@keyframes subsidyPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.lp-root .subsidy__amount-unit {
  font-size: 26px;
  font-weight: 900;
  color: var(--c-deep);
}
.lp-root .subsidy__amount-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
}
.lp-root .subsidy__desc {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-text);
  text-align: center;
}
.lp-root .subsidy__note {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  color: var(--c-text-muted);
  text-align: center;
}
/* ---------- セクション3：症状セルフチェック（5列） ---------- */
.lp-root .check {
  padding: 36px 22px;
  background: var(--c-bg);
}
.lp-root .check__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 0;
  text-align: center;
}
.lp-root .check__item {
  position: relative;
  padding: 8px 4px 8px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  font-size: 10px;
  line-height: 1.4;
  color: var(--c-text);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lp-root .check__input {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 14px;
  height: 14px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--c-deep);
  z-index: 2;
}
.lp-root .check__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0 2px;
}
.lp-root .check__text {
  font-size: 10px;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.2s ease;
}
/* チェック時のカード見た目変化（モダンブラウザ） */
.lp-root .check__item:has(.check__input:checked) {
  background: rgba(122, 197, 119, 0.18);
  border-color: var(--c-deep);
}
.lp-root .check__item:has(.check__input:checked) .check__text {
  color: var(--c-deep);
  font-weight: 700;
}
.lp-root .check__item:has(.check__input:checked) .svg-icon--sym {
  color: var(--c-deep);
  transform: scale(1.05);
}
/* ホバー時のカード浮き */
.lp-root .check__item:hover {
  border-color: var(--c-leaf);
  transform: translateY(-2px);
}
.lp-root .check__cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--c-leaf) 0%, var(--c-deep) 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(18, 123, 49, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-root .check__cta-bar::after {
  content: "›";
  font-size: 22px;
  font-weight: 900;
  margin-left: 4px;
}
.lp-root .check__cta-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 123, 49, 0.35);
}
/* ========== セルフチェック進捗表示 ========== */
.lp-root .check__progress {
  margin: 0 0 20px;
  padding: 18px 22px;
  background: rgba(122, 197, 119, 0.1);
  border: 1.5px solid rgba(122, 197, 119, 0.28);
  border-radius: 14px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.lp-root .check__progress-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.lp-root .check__progress-label {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lp-root .check__progress-count {
  font-size: 20px;
  font-weight: 900;
  color: var(--c-deep);
  font-variant-numeric: tabular-nums;
}
.lp-root .check__progress-count [data-check-count] {
  font-size: 26px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.lp-root .check__progress-bar {
  position: relative;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}
.lp-root .check__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-leaf), var(--c-deep));
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4, 1.4, 0.5, 1), background 0.3s ease;
}
.lp-root .check__progress-msg {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.55;
  transition: color 0.3s ease;
  min-height: 20px;
}
/* チェック数 1〜2：軽い注意 */
.lp-root .check__progress.is-low {
  background: rgba(122, 197, 119, 0.16);
}
.lp-root .check__progress.is-low .check__progress-msg {
  color: var(--c-deep);
}
/* チェック数 3以上：強調モード（オレンジ系で注意喚起） */
.lp-root .check__progress.is-high {
  background: linear-gradient(135deg, rgba(238, 132, 52, 0.12) 0%, rgba(238, 132, 52, 0.2) 100%);
  border-color: rgba(238, 132, 52, 0.5);
  animation: hiPulse 2.4s ease-in-out infinite;
}
.lp-root .check__progress.is-high .check__progress-label,
.lp-root .check__progress.is-high .check__progress-count,
.lp-root .check__progress.is-high .check__progress-count [data-check-count] {
  color: var(--c-accent-dark);
}
.lp-root .check__progress.is-high .check__progress-fill {
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
}
.lp-root .check__progress.is-high .check__progress-msg {
  color: var(--c-accent-dark);
  font-size: 14px;
}

@keyframes hiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238, 132, 52, 0.35); }
  50%      { box-shadow: 0 0 0 8px rgba(238, 132, 52, 0); }
}
/* 3個以上チェック時：CTAバーも脈打つ */
.lp-root .check.is-high .check__cta-bar {
  animation: ctaAttention 1.4s ease-in-out infinite;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  box-shadow: 0 10px 28px rgba(238, 132, 52, 0.4);
}

@keyframes ctaAttention {
  0%, 100% { box-shadow: 0 10px 28px rgba(238, 132, 52, 0.4), 0 0 0 0 rgba(238, 132, 52, 0.55); }
  50%      { box-shadow: 0 10px 28px rgba(238, 132, 52, 0.4), 0 0 0 14px rgba(238, 132, 52, 0); }
}
/* カウントアップ時のバンス */
.lp-root .check__progress-count [data-check-count].is-bumping {
  animation: countBump 0.4s ease;
}

@keyframes countBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); color: var(--c-leaf); }
  100% { transform: scale(1); }
}
/* ---------- セクション4：無料補助金診断で分かること（5列） ---------- */
.lp-root .benefits {
  padding: 36px 22px;
  background: var(--c-bg);
}
.lp-root .benefits__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0;
}
.lp-root .benefits__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  background: var(--c-bg);
  text-align: center;
}
.lp-root .benefits__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-leaf);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.lp-root .benefits__title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}
.lp-root .benefits__desc {
  display: none;
}
/* ---------- セクション5：注意喚起（3列・横並び） ---------- */
.lp-root .reasons {
  padding: 40px 22px;
  /* 背景は --section-bg で適用 */
}
.lp-root .reasons__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}
.lp-root .reasons__item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
}
.lp-root .reasons__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-warn);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.lp-root .reasons__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  font-weight: 700;
}
/* PC時（デフォルト）: モバイル専用の改行を隠す（ユーティリティクラス） */
.lp-root .br-mobile {
  display: none;
}
/* ---------- セクション6：ご相談から工事完了までの流れ（5列） ---------- */
.lp-root .flow {
  padding: 36px 22px;
  background: var(--c-bg);
}
.lp-root .flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 0;
  padding: 8px 0;
}
.lp-root .flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 14px 4px 12px;
  background: #fff;
  border-radius: 8px;
}
/* 流れの矢印（最後のステップ以外に右側→を表示） */
.lp-root .flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 30px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--c-leaf);
  border-right: 3px solid var(--c-leaf);
  transform: rotate(45deg);
  display: block;
  z-index: 1;
  border-radius: 2px;
}
.lp-root .flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  background: var(--c-deep);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 0;
}
.lp-root .flow__num::before {
  content: attr(data-num);
}
.lp-root .flow__title {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}
.lp-root .flow__desc {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  color: var(--c-text-muted);
}
/* ---------- セクション7：新日本ホームに相談する理由（4列） ---------- */
.lp-root .about {
  padding: 36px 22px;
  background: var(--c-bg);
}
.lp-root .about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
}
.lp-root .about__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: var(--c-ivory);
  border-radius: 8px;
  text-align: center;
}
.lp-root .about__text-card {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--c-text);
  font-weight: 700;
}
/* ---------- セクション8：ハイブリッド工法とは（2カラム） ---------- */
.lp-root .method {
  padding: 36px 22px;
  background: var(--c-bg);
}
/* 2026/09/06：基準はモバイルの縦積み
   （タイトル→説明文→バッジ→画像→注記）。PCは末尾のメディアクエリで2カラムに戻す */
.lp-root .method__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.lp-root .method__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-root .method__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.85;
  color: var(--c-text);
  text-align: left;
}
.lp-root .method__merits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.lp-root .method__merit {
  display: inline-block;
  padding: 5px 12px;
  background: var(--c-deep);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
/* ---------- セクション9：施工事例（3列） ---------- */
.lp-root .works {
  padding: 36px 22px;
  background: var(--c-bg);
}
/* 施工事例：1列縦並び（写真と情報を大きく見やすく） */
/* 事例テキストは横スクロール（カルーセル風） */
.lp-root .works__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0 -22px 10px;
  padding: 4px 22px 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.lp-root .works__list::-webkit-scrollbar {
  height: 6px;
}
.lp-root .works__list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 3px;
}
.lp-root .works__item {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  scroll-snap-align: start;
}
.lp-root .works__note {
  margin: 8px 0 24px;
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.6;
  text-align: left;
}
/* 施工写真ギャラリー：事例テキストとは独立ブロック */
.lp-root .works__gallery {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--c-border);
}
.lp-root .works__gallery-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.04em;
}
/* 写真ギャラリーも横スクロール */
.lp-root .works__gallery-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0 -22px;
  padding: 4px 22px 12px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.lp-root .works__gallery-list::-webkit-scrollbar {
  height: 6px;
}
.lp-root .works__gallery-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 3px;
}
.lp-root .works__gallery-list li {
  flex: 0 0 240px;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
}
.lp-root .works__gallery-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-root .works__gallery-note {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.6;
  text-align: left;
}
/* 事例番号ピル：カード左上 */
.lp-root .works__num {
  margin: 0;
  align-self: flex-start;
  padding: 4px 14px;
  background: var(--c-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
/* 二重定義：色を白に統一（緑ピル上に載る白文字） */
.lp-root .works__ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}
.lp-root .works__arrow {
  font-size: 16px;
  color: var(--c-text);
  font-weight: 700;
}
.lp-root .works__meta {
  display: grid;
  grid-template-columns: 60px 1fr;
  row-gap: 4px;
  column-gap: 10px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}
.lp-root .works__meta dt {
  color: var(--c-text-muted);
  font-weight: 500;
}
.lp-root .works__meta dd {
  margin: 0;
  color: var(--c-text);
}
.lp-root .works__more {
  display: block;
  text-align: right;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-muted);
}
.lp-root .works__more:hover {
  text-decoration: underline;
}
/* ---------- セクション10：よくある質問 ---------- */
.lp-root .faq {
  padding: 36px 22px;
  background: var(--c-bg);
}
.lp-root .faq__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  text-align: left;
}
.lp-root .faq__item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  overflow: hidden;
}
.lp-root .faq__q {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--c-text);
}
.lp-root .faq__q-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-deep);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.lp-root .faq__q-text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.lp-root .faq__q-icon {
  flex-shrink: 0;
  position: relative;
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}
.lp-root .faq__q-icon::before,
.lp-root .faq__q-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--c-deep);
  transform: translate(-50%, -50%);
}
.lp-root .faq__q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease;
}
.lp-root .faq__q[aria-expanded="true"] .faq__q-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.lp-root .faq__a {
  display: none;
  align-items: flex-start;
  gap: 8px;
  padding: 0 12px 10px 12px;
  background: var(--c-ivory);
}
.lp-root .faq__item.is-open .faq__a {
  display: flex;
}
.lp-root .faq__a-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--c-leaf);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.lp-root .faq__a-text {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-text);
}
/* ---------- セクション11：最終CTA（画像参考の2段構成） ---------- */
.lp-root .final-cta {
  padding: 44px 22px 50px;
}
.lp-root .final-cta__card {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
/* 上段：グリーン帯 */
.lp-root .final-cta__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--c-deep);
  color: #ffffff;
}
.lp-root .final-cta__catch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}
/* オペレーターアイコン：白丸は無し、SVGのみを白線で表示 */
.lp-root .final-cta__catch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-root .final-cta__catch-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}
.lp-root .final-cta__catch-text {
  color: #ffffff;
}
.lp-root .final-cta__sub {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* 「相談無料」白い丸バッジ */
.lp-root .final-cta__sub-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  background: #ffffff;
  color: var(--c-deep);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
/* 下段：白背景 2カラム */
.lp-root .final-cta__bottom {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: #ffffff;
}
.lp-root .final-cta__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-root .final-cta__lead {
  margin: 0;
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.lp-root .final-cta__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  line-height: 1;
}
.lp-root .final-cta__tel svg {
  width: 30px;
  height: 30px;
  color: var(--c-deep);
  flex-shrink: 0;
}
.lp-root .final-cta__tel-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--c-text);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.lp-root .final-cta__right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.lp-root .final-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--c-leaf) 0%, var(--c-deep) 100%);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(18, 123, 49, 0.35);
}
.lp-root .final-cta__btn-main {
  flex: 1;
  text-align: center;
}
.lp-root .final-cta__btn-arrow {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.lp-root .final-cta__btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-deep-dark) 100%);
  box-shadow: 0 10px 22px rgba(18, 123, 49, 0.45);
}
.lp-root .final-cta__note {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.4;
}
.lp-root .final-cta__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.lp-root .final-cta__catch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
}
/* 旧デザインの緑丸装飾（::before）は削除 */
/* 重複定義削除：final-cta__subの外側ピル装飾は削除。中の .final-cta__sub-badge のみが白ピル */
.lp-root .final-cta__lead {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--c-text-muted);
  text-align: center;
}
.lp-root .final-cta__bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  align-items: center;
}
/* 最終CTA：電話／メール 横並びチャネル */
.lp-root .final-cta__contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.lp-root .final-cta__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 12px;
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: 14px;
  color: var(--c-text);
  text-align: center;
  line-height: 1.3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-root .final-cta__channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.lp-root .final-cta__channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
}
.lp-root .final-cta__channel-icon svg {
  width: 22px;
  height: 22px;
}
.lp-root .final-cta__channel-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
}
.lp-root .final-cta__channel-detail {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-muted);
  word-break: break-all;
}
.lp-root .final-cta__channel--tel {
  border-color: var(--c-deep);
}
.lp-root .final-cta__channel--tel .final-cta__channel-icon {
  background: var(--c-deep);
}
.lp-root .final-cta__channel--tel:hover {
  border-color: var(--c-deep);
  background: linear-gradient(180deg, #ffffff 0%, #effaee 100%);
}
.lp-root .final-cta__channel--mail {
  border-color: var(--c-leaf);
}
.lp-root .final-cta__channel--mail .final-cta__channel-icon {
  background: var(--c-leaf);
}
.lp-root .final-cta__channel--mail:hover {
  border-color: var(--c-leaf);
}
.lp-root .final-cta__channel--line {
  border-color: #06c755;
}
.lp-root .final-cta__channel--line .final-cta__channel-icon {
  background: #06c755;
}
.lp-root .final-cta__channel--line:hover {
  border-color: #06c755;
  background: linear-gradient(180deg, #ffffff 0%, #e9faea 100%);
}
.lp-root .final-cta__btn {
  margin: 0;
}
.lp-root .final-cta__btn .btn__main {
  font-size: 13px;
}
.lp-root .final-cta__note {
  display: block;
  margin: 8px 0 0;
  font-size: 10px;
  color: var(--c-text-muted);
  text-align: center;
}
/* ---------- フッター ---------- */
.lp-root .site-footer {
  padding: 18px 16px 22px;
  background: var(--c-text);
  color: #fff;
  text-align: center;
}
.lp-root .site-footer__line {
  margin: 0 0 4px;
  font-size: 11px;
  line-height: 1.6;
  color: #fff;
  opacity: 0.92;
}
.lp-root .site-footer__copy {
  margin: 10px 0 0;
  font-size: 10px;
  color: #fff;
  opacity: 0.6;
  letter-spacing: 0.04em;
}

/* ---------- PC外側余白 ---------- */
@media (min-width: 760px) {
.lp-root {
    padding: 0;
    background: var(--c-bg-outer);
  }
.lp-root .site-header,
.lp-root .lp-main,
.lp-root .site-footer {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.06);
  }}
/* ========== モバイル固定CTAバー（画面下部） ========== */
.lp-root .mobile-cta {
  display: none; /* デスクトップでは非表示 */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 6px;
  align-items: stretch;
}
.lp-root .mobile-cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.15s ease, background 0.2s ease;
}
.lp-root .mobile-cta__item svg {
  width: 20px;
  height: 20px;
}
.lp-root .mobile-cta__item:active {
  transform: scale(0.96);
}
.lp-root .mobile-cta__item--tel {
  background: #fff;
  color: var(--c-deep);
  border: 1.5px solid var(--c-deep);
}
.lp-root .mobile-cta__item--mail {
  background: #fff;
  color: var(--c-deep);
  border: 1.5px solid var(--c-leaf);
}
.lp-root .mobile-cta__item--main {
  background: linear-gradient(135deg, var(--c-leaf) 0%, var(--c-deep) 100%);
  color: #fff;
  font-size: 11px;
  box-shadow: 0 3px 10px rgba(18, 123, 49, 0.35);
  animation: mobileCtaPulse 2.4s ease-in-out infinite;
}

@keyframes mobileCtaPulse {
  0%, 100% { box-shadow: 0 3px 10px rgba(18, 123, 49, 0.35), 0 0 0 0 rgba(122, 197, 119, 0.55); }
  50%      { box-shadow: 0 3px 10px rgba(18, 123, 49, 0.35), 0 0 0 8px rgba(122, 197, 119, 0); }
}

/* ---------- 狭い画面（〜520px）：内部要素を折り返し ---------- */
@media (max-width: 520px) {
.lp-root .fv__inner {
    grid-template-columns: 1fr;
  }
.lp-root .check__list,
.lp-root .benefits__list {
    grid-template-columns: repeat(2, 1fr);
  }
/* 流れはモバイルでも5列横並び（コンパクトに） */
.lp-root .flow__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 4px 0;
  }
.lp-root .flow__step {
    padding: 10px 3px 8px;
  }
.lp-root .flow__num {
    width: 22px;
    height: 22px;
    font-size: 11px;
    margin-bottom: 4px;
  }
.lp-root .flow__title {
    font-size: 9px;
    line-height: 1.3;
    margin-bottom: 2px;
  }
.lp-root .flow__desc {
    font-size: 8px;
    line-height: 1.35;
  }
.lp-root .svg-icon--flw {
    width: 24px;
    height: 24px;
  }
.lp-root .flow__step .svg-icon--flw {
    padding: 4px;
  }
/* 矢印を小さく */
.lp-root .flow__step:not(:last-child)::after {
    right: -3px;
    top: 18px;
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
.lp-root .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
.lp-root .works__item {
    flex: 0 0 78%;
  }
.lp-root .works__gallery-list li {
    flex: 0 0 70%;
  }
/* 注意喚起はモバイルでも3列横並び維持（コンパクトに見せる） */
.lp-root .reasons__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
.lp-root .reasons__item {
    flex-direction: column;
    text-align: center;
    padding: 10px 6px;
  }
.lp-root .reasons__text {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
  }
/* モバイル時: PC専用の改行を消し、モバイル専用の改行を有効化 */
.lp-root .br-desktop {
    display: none;
  }
.lp-root .br-mobile {
    display: inline;
  }
.lp-root .reasons__icon {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }
.lp-root .method__body,
.lp-root .final-cta__bottom,
.lp-root .final-cta__top {
    grid-template-columns: 1fr;
  }
/* 最終CTA：モバイル最適化 */
.lp-root .final-cta {
    padding: 32px 12px 40px;
  }
.lp-root .final-cta__card {
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
.lp-root .final-cta__top {
    padding: 14px 16px;
    gap: 10px;
  }
.lp-root .final-cta__catch {
    justify-content: center;
    font-size: 14px;
    gap: 8px;
  }
.lp-root .final-cta__catch svg {
    width: 24px;
    height: 24px;
  }
.lp-root .final-cta__sub {
    padding: 10px 0 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    justify-content: center;
  }
.lp-root .final-cta__sub-badge {
    padding: 7px 20px;
    font-size: 13px;
  }
.lp-root .final-cta__catch-icon svg {
    width: 28px;
    height: 28px;
  }
.lp-root .final-cta__bottom {
    padding: 22px 18px 24px;
    gap: 18px;
  }
.lp-root .final-cta__left,
.lp-root .final-cta__right {
    align-items: center;
  }
.lp-root .final-cta__lead {
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
  }
.lp-root .final-cta__tel {
    justify-content: center;
    gap: 8px;
  }
.lp-root .final-cta__tel svg {
    width: 32px;
    height: 32px;
  }
.lp-root .final-cta__tel-num {
    font-size: 34px;
    letter-spacing: 0.01em;
  }
.lp-root .final-cta__btn {
    padding: 18px 20px;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 6px 16px rgba(18, 123, 49, 0.35);
  }
.lp-root .final-cta__btn-arrow {
    font-size: 24px;
  }
.lp-root .final-cta__note {
    font-size: 12px;
  }
.lp-root .subsidy__amount {
    flex-direction: column;
    gap: 8px;
    padding: 24px 16px;
  }
.lp-root .subsidy__amount-sub {
    white-space: normal;
    text-align: center;
    font-size: 14px;
  }
.lp-root .subsidy__amount-big {
    font-size: 80px;
  }
/* ヘッダー：モバイル時に簡素化 */
.lp-root .site-header__inner {
    padding: 10px 12px;
    gap: 6px;
  }
.lp-root .site-header__brand-sub {
    display: none;  /* 「能登・石川県対応」を非表示 */
  }
.lp-root .site-header__brand-main {
    font-size: 15px;
  }
.lp-root .site-header__brand-main em {
    font-size: 17px;
  }
.lp-root .site-header__brand-company {
    font-size: 10px;
  }
.lp-root .site-header__contact-block {
    display: none;  /* 電話・メール・受付時間ブロックはヘッダーから隠す（下部固定バーへ移動） */
  }
.lp-root .site-header__cta {
    padding: 8px 12px;
    font-size: 11px;
  }
/* モバイルCTAバー表示 */
.lp-root .mobile-cta {
    display: grid;
  }
/* 固定バー分の下パディング */
.lp-root .lp-main {
    padding-bottom: 90px;
  }
.lp-root .site-footer {
    padding-bottom: calc(22px + 90px);
  }}


/* =========================================================
   CMS移植用の追記（2026/08/11）
   この独自CSSはこのページ専用に読み込まれるため、
   main / section への指定を書いても他ページには影響しない。
   ========================================================= */

/* CMSのスクロールアニメーション。
   .delay1>*{transform:translate(0,60px)} が .content_wrapper に効き、
   祖先に transform があると position:sticky / fixed が画面基準でなくなる。
   これでLPヘッダーの追従と、モバイル固定CTAバーの位置が壊れるため無効化する。 */
main > section,
main > section > * {
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}

/* cmn.css: main{overflow:hidden/clip} もスクロールコンテナを作り sticky を壊す */
main {
  overflow: visible !important;
}

/* 横方向のはみ出し防止。sticky をやめたので clip を掛けても副作用がない。
   cmn.css の html{overflow-x:hidden} のままだと、はみ出し時に
   ページが画面より広くなって中身が左に寄るため clip で抑える。 */
html,
body {
  overflow-x: clip !important;
}

/* ヘッダーだけ左寄りになる件（2026/08/11）。
   本文・フッターと同じ max-width:1200px だが、ヘッダーは position:sticky のため
   flex の align-items による中央寄せが効かないことがある。
   auto マージンなら flex でも block でも確実に中央に来るので明示する。 */
.lp-root .site-header {
  margin-left: auto;
  margin-right: auto;
}

/* ヘッダーの追従（sticky）を全画面幅で無効化（エミリさん指示 2026/08/11）。
   このCMSは html / body / main に overflow が何層も掛かっており sticky と相性が悪い。
   PC・モバイルとも通常の要素として一緒にスクロールさせる。
   !important は、元CSSの .lp-root .site-header{position:sticky}（同じ詳細度）を
   確実に上書きするため。 */
.lp-root .site-header {
  position: static !important;
}

/* ページ上部のパンくず帯を非表示（エミリさん指示 2026/08/11）。
   この独自CSSはこのページ専用なので、他ページのパンくずには影響しない。 */
#pan {
  display: none;
}

/* .lp-root にはクリップを掛けない。ここはヘッダーの直近の祖先なので、
   クリップするとモバイルで「スクロールして戻るとヘッダーがFVに重なる」等の
   sticky の不具合が出るため。装飾のはみ出しは .lp-main 側で受け持つ。 */

/* CMSはパーツを <section><div class="content_wrapper"> で包み、
   左右20pxの余白と max-width:1200px を付ける。LPは全幅背景が前提なので解除 */
main > section {
  padding: 0 !important;
  margin: 0 !important;
}
/* cmn.css の .width_fixed>.content_wrapper{max-width:1200px !important}（詳細度0,2,0）に
   勝てるよう、こちらも詳細度を上げる（0,2,2）。両方importantの場合は詳細度勝負になるため。 */
main > section[class*="width_"] > .content_wrapper,
main > section > .content_wrapper,
main .content_wrapper {
  max-width: none !important;
  padding: 0 !important;
}

/* cmn.css: .block_html ul li{list-style-type:disc; padding-left:10px} が
   LPの箇条書き（ギャラリー・FAQ・BENEFITS等）に黒点と左余白を付けるのを打ち消す。
   li 自身への指定なので ul への list-style:none では消えない。 */
.lp-root ul li,
.lp-root ol li {
  list-style: none;
  padding-left: 0;
}

/* cmn.css: img,a img{pointer-events:none} で画像リンクが押せなくなるのを戻す */
.lp-root img,
.lp-root a img {
  pointer-events: auto;
}


/* =========================================================
   PC表示（2026/08/11 エミリさん指示）
   ・全体を最大1200pxで中央寄せ（左右に外側背景の余白が出る）
     CMSの他ページも width_fixed=1200px なのでサイト全体と幅が揃う
   ・文字は一律1.35倍（元LPは720px幅前提で9〜14pxと小さいため）
   ========================================================= */
:root {
  --lp-max: 1200px;
}

@media (min-width: 1024px) {
  /* 背景は全幅のまま、中身だけ1200pxに収めて中央寄せ。
     セレクタに .lp-root を付けて詳細度0,2,2にしているのは、
     前置済みのLP側ルール（0,2,0）の margin に負けないようにするため。 */
  .lp-root .lp-main > section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  /* FVは元画像の実サイズ1536pxで打ち止め。エミリさん指示 2026/08/11。
     全幅だと大きすぎる／引き伸ばしで甘くなるため、拡大しない上限にする */
  .lp-root .fv > .fv__frame {
    max-width: 1536px;
  }
  .lp-root .site-header__inner,
  .lp-root .site-footer > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  /* セクションの上下余白を広げる */
  .lp-root .lp-main > section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  /* ---- 文字サイズ 1.35倍 ---- */
  .lp-root { font-size: 18px; }
  .lp-root .site-header__brand-sub { font-size: 15px; }
  .lp-root .site-header__brand-main { font-size: 23px; }
  .lp-root .site-header__brand-main em { font-size: 27px; }
  .lp-root .site-header__brand-company { font-size: 15px; }
  .lp-root .site-header__tel { font-size: 22px; }
  .lp-root .site-header__tel-icon { font-size: 19px; }
  .lp-root .site-header__mail { font-size: 15px; }
  .lp-root .site-header__mail-icon { font-size: 16px; }
  .lp-root .site-header__hours { font-size: 14px; }
  .lp-root .site-header__cta { font-size: 16px; }
  .lp-root .section-title__en { font-size: 18px; }
  .lp-root .section-title__ja { font-size: 27px; }
  .lp-root .section-lead { font-size: 16px; }
  .lp-root .placeholder-note { font-size: 15px; }
  .lp-root .img-box { font-size: 14px; }
  .lp-root .img-box__icon { font-size: 24px; }
  .lp-root .img-box__label { font-size: 14px; }
  .lp-root .fv__slide-tag { font-size: 14px; }
  .lp-root .img-box--icon-sm .img-box__icon { font-size: 30px; }
  .lp-root .img-box--icon .img-box__icon { font-size: 27px; }
  .lp-root .img-box--step .img-box__icon { font-size: 24px; }
  .lp-root .img-box--method .img-box__icon { font-size: 38px; }
  .lp-root .method__caption { font-size: 14px; }
  .lp-root .img-box--ba .img-box__icon { font-size: 27px; }
  .lp-root .img-box--ba .img-box__label { font-size: 14px; }
  .lp-root .works__photo-placeholder { font-size: 20px; }
  .lp-root .works__photo-placeholder small { font-size: 14px; }
  .lp-root .works__photo-tag { font-size: 12px; }
  .lp-root .fv__title { font-size: 27px; }
  .lp-root .fv__lead { font-size: 16px; }
  .lp-root .fv__point { font-size: 15px; }
  .lp-root .fv__stat-label { font-size: 12px; }
  .lp-root .fv__stat-big { font-size: 38px; }
  .lp-root .fv__stat-plus { font-size: 22px; }
  .lp-root .fv__stat-unit { font-size: 14px; }
  .lp-root .btn__main { font-size: 24px; }
  .lp-root .btn__sub { font-size: 15px; }
  .lp-root .subsidy__amount-label { font-size: 18px; }
  .lp-root .subsidy__amount-label::before { font-size: 16px; }
  .lp-root .subsidy__amount-num { font-size: 27px; }
  .lp-root .subsidy__amount-big { font-size: 140px; }
  .lp-root .subsidy__amount-unit { font-size: 35px; }
  .lp-root .subsidy__amount-sub { font-size: 22px; }
  .lp-root .subsidy__desc { font-size: 16px; }
  .lp-root .subsidy__note { font-size: 14px; }
  .lp-root .check__item { font-size: 14px; }
  .lp-root .check__text { font-size: 14px; }
  .lp-root .check__cta-bar { font-size: 20px; }
  .lp-root .check__cta-bar::after { font-size: 30px; }
  .lp-root .check__progress-label { font-size: 15px; }
  .lp-root .check__progress-count { font-size: 27px; }
  .lp-root .check__progress-count [data-check-count] { font-size: 35px; }
  .lp-root .check__progress-msg { font-size: 18px; }
  .lp-root .check__progress.is-high .check__progress-msg { font-size: 19px; }
  .lp-root .benefits__num { font-size: 16px; }
  .lp-root .benefits__title { font-size: 15px; }
  .lp-root .reasons__icon { font-size: 27px; }
  .lp-root .reasons__text { font-size: 22px; }
  .lp-root .flow__num { font-size: 18px; }
  .lp-root .flow__title { font-size: 15px; }
  .lp-root .flow__desc { font-size: 14px; }
  .lp-root .about__text-card { font-size: 15px; }
  .lp-root .method__desc { font-size: 16px; }
  .lp-root .method__merit { font-size: 15px; }
  .lp-root .works__note { font-size: 15px; }
  .lp-root .works__gallery-title { font-size: 19px; }
  .lp-root .works__gallery-note { font-size: 15px; }
  .lp-root .works__num { font-size: 18px; }
  .lp-root .works__arrow { font-size: 22px; }
  .lp-root .works__meta { font-size: 16px; }
  .lp-root .works__more { font-size: 15px; }
  .lp-root .faq__q-mark { font-size: 15px; }
  .lp-root .faq__q-text { font-size: 18px; }
  .lp-root .faq__a-mark { font-size: 15px; }
  .lp-root .faq__a-text { font-size: 18px; }
  .lp-root .final-cta__catch { font-size: 19px; }
  .lp-root .final-cta__sub-badge { font-size: 19px; }
  .lp-root .final-cta__lead { font-size: 16px; }
  .lp-root .final-cta__tel-num { font-size: 43px; }
  .lp-root .final-cta__btn { font-size: 19px; }
  .lp-root .final-cta__btn-arrow { font-size: 30px; }
  .lp-root .final-cta__note { font-size: 15px; }
  .lp-root .final-cta__channel-icon { font-size: 24px; }
  .lp-root .final-cta__channel-label { font-size: 18px; }
  .lp-root .final-cta__channel-detail { font-size: 16px; }
  .lp-root .final-cta__btn .btn__main { font-size: 18px; }
  .lp-root .site-footer__line { font-size: 15px; }
  .lp-root .site-footer__copy { font-size: 14px; }
  .lp-root .mobile-cta__item { font-size: 14px; }
  .lp-root .mobile-cta__item--main { font-size: 15px; }
}

/* ヘッダーのブランドテキストを h1 にしたため（2026/08/21）、
   h1 のブラウザ既定値を打ち消す。188行目の指定は margin と font-size を
   宣言していないので、そのままだと margin:.67em 0 と font-size:2em が効いて
   ヘッダーが縦に広がる。 */
.lp-root .site-header__brand-text {
  margin: 0;
  font-size: inherit;
}


/* ---------- METHOD：画像内テキストのHTML化（2026/09/06） ---------- */
/* 注記とSTEP説明が画像に焼き込まれていて小さく読めなかったため、
   画像は画像・文字はテキストに分離した */
/* 注記は method__body の3番目の子。モバイルは自動配置で画像の直後、
   PCはメディアクエリで右カラム（画像の真下）に置く */
.lp-root .method__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--c-text-muted);
  text-align: center;
}
.lp-root .method__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0 0;
}
.lp-root .method__step {
  padding: 18px 20px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 12px;
}
.lp-root .method__step-label {
  margin: 0 0 8px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-deep);
}
.lp-root .method__step-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text);
  text-align: left;
}
/* モバイル・タブレット：本体は1カラムの縦積み
   （タイトル→説明文→バッジ→画像→注記）。STEPのみ2列に並べる。
   境界を767pxにしているのは、2カラムだと画像が狭くなりすぎるため。
   LP全体の共通ブレークポイント(520px)とは別に、METHODだけ広めに取っている */
@media (max-width: 767px) {
  /* 1カラム時は説明文と緑バッジを中央揃えにする */
  .lp-root .method__desc {
    text-align: center;
  }
  .lp-root .method__merits {
    justify-content: center;
  }
  .lp-root .method__steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .lp-root .method__step {
    display: block;
    padding: 12px 12px;
  }
  .lp-root .method__step-label {
    margin: 0 0 5px;
    font-size: 15px;
    letter-spacing: 0.04em;
  }
  .lp-root .method__step-text {
    font-size: 12px;
    line-height: 1.75;
  }
  .lp-root .method__note { font-size: 11px; }
}

/* ---------- METHOD：PC(768px〜)は2カラム ---------- */
/* 左カラム＝説明文＋バッジ、その下にSTEP.1／STEP.2を縦積み。
   右カラム＝画像、その下に注記。
   画像を1〜2行にまたがらせているのは、右の画像が背高なぶんの余白を
   左カラムの2行に分散させ、テキストとSTEPの間が大きく空くのを防ぐため */
@media (min-width: 768px) {
  .lp-root .method__body {
    grid-template-columns: 1fr 1.15fr;
    column-gap: 36px;
    row-gap: 14px;
    align-items: start;
  }
  .lp-root .method__text {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    gap: 18px;
  }
  .lp-root .method__steps {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
  }
  .lp-root .method__visual {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
  .lp-root .method__note {
    grid-column: 2;
    grid-row: 3;
  }
  /* 左カラムは幅が半分なので、ラベル左・本文右の横並びで高さを抑える */
  .lp-root .method__step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    column-gap: 16px;
    padding: 14px 18px;
  }

