@charset "UTF-8";

/* =============================================================
   MacLogicRepair - ロジックボード修理サービスページ
   Figmaデザイン反映版（PC1440 / SP375）
   ----------------------------------------------------------------
   ・Figmaどおり：1440px全幅セクション + 内側900pxコンテンツ
   ・SWELLの既存 post_content h2/h3 装飾を打ち消し
   ・新規セクション部分（.wf-newblocks）のみスコープ
============================================================= */

/* ===== リセット（.wf-newblocks 配下のみ） ===== */
*, *::before, *::after { box-sizing: border-box; }
.wf-newblocks p,
.wf-newblocks ul,
.wf-newblocks ol,
.wf-newblocks li,
.wf-newblocks h1,
.wf-newblocks h2,
.wf-newblocks h3 { margin: 0; padding: 0; }
.wf-newblocks ul,
.wf-newblocks ol { list-style: none; }
.wf-newblocks img,
.wf-newblocks svg { max-width: 100%; height: auto; display: block; }
.wf-newblocks a { color: inherit; text-decoration: none; }
.wf-newblocks .swell-block-button__link { color: #fff !important; }
.wf-newblocks button { font: inherit; cursor: pointer; background: none; border: 0; }

/* SWELL .post_content h2/h3 装飾を WF 配下で打ち消す */
.wf-newblocks h2,
.wf-newblocks h3 {
  background: none !important;
  color: inherit !important;
  padding: 0 !important;
}
.wf-newblocks h2::before,
.wf-newblocks h2::after,
.wf-newblocks h3::before,
.wf-newblocks h3::after {
  display: none !important;
  border: 0 !important;
  background: none !important;
  content: none !important;
}

/* ===== カラーパレット ===== */
:root {
  --mlr-primary: #002792;            /* メイン青 (rgb(0,39,146)) */
  --mlr-primary-overlay: rgba(0, 39, 146, 0.61);
  --mlr-accent: #FF5A5F;             /* 赤系強調（推測：実装でFigmaと突合） */
  --mlr-text: #1F1F1F;
  --mlr-text-2: #5A5A5A;
  --mlr-bg-light-blue: #E1F4FF;
  --mlr-bg-white: #FFFFFF;
  --mlr-line: #DCDCDC;
  --mlr-form: #F36060;               /* CTAボタン色 (既存ブランド) */
  --mlr-line-soft: rgba(0, 39, 146, 0.15);
  --mlr-gold: #FFC107;
}

/* ===== FV が先頭にあるページで、l-content のトップ余白を解除 ===== */
.l-content:has(.wf-fv) {
  padding-top: 0 !important;
}

/* 上部タイトル帯（l-topTitleArea）は functions.php の swell_is_show_ttltop
   フィルターでサーバー側から出力停止する（CSSの display:none では帯内の
   <h1 class="c-pageTitle"> がDOMに残り隠しテキスト＝スパム扱いになるため）。
   新FVには可視H1 <h1 class="wf-fv__catch"> があるのでH1は失われない。 */

/* ===== セクション共通：全幅外枠 + 内側900pxラッパー ===== */
.wf-newblocks {
  /* max-width 廃止：各セクションが画面全幅で表示 */
  width: 100%;
}
.wf-newblocks > section {
  width: 100%;
  position: relative;
}
.wf-section__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

/* セクション全幅の外枠で本番SWELLの .l-mainContent 制約を超える */
.wf-newblocks {
  position: relative;
  /* 親要素が幅制限している場合に画面いっぱい広げる */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

/* =============================================================
   FV（ファーストビュー） Figma 仕様 100% 準拠 再構築版
   PC: 1440 × 563 / inner: 900px / main: 456px
============================================================= */

/* ===== FV枠（Figma仕様 563px） ===== */
.wf-fv {
  position: relative;
  width: 100%;
  min-height: 563px;   /* 固定高だとサービス名H1追加でバッジが見切れるため min-height 化 */
  background: #E1F4FF;
  overflow: hidden;
}

/* ===== 背景レイヤー ===== */
.wf-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.wf-fv__img-left,
.wf-fv__img-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.wf-fv__img-left { left: 0; }
.wf-fv__img-right { right: 0; }
.wf-fv__img-left img,
.wf-fv__img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wf-fv__img-left::after,
.wf-fv__img-right::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wf-fv__img-left::after {
  background: linear-gradient(90deg, rgba(115,115,115,1) 2%, rgba(217,217,217,0) 100%);
}
.wf-fv__img-right::after {
  background: linear-gradient(90deg, rgba(217,217,217,0) 2%, rgba(115,115,115,1) 100%);
}
.wf-fv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 39, 146, 0.61); /* fill_NLRUZZ */
  z-index: 2;
}

/* ===== inner（900px ラッパー, Figma layout_84457C: column alignItems center, justifyContent default = flex-start） ===== */
.wf-fv__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px 32px;   /* 下部余白：min-height化でバッジが下端に来ても見切れ・密着しないように */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  color: #fff;
  box-sizing: border-box;
}

/* ===== main（456px、column gap 40） ===== */
.wf-fv__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 456px;
  max-width: 100%;
}

/* ===== upper（上半分、 padding-top:56） ===== */
.wf-fv__upper {
  position: relative;
  width: 100%;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  box-sizing: border-box;
}

/* ===== Rectangle 4（fv-rect4.svg, absolute x:15 y:0, 426×328） ===== */
.wf-fv__deco-rect {
  position: absolute;
  top: 0;
  left: 15px;
  width: 426px;
  height: 328px;
  background-image: url('../images/service_logicboard/fv-rect4.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 0;
  pointer-events: none;
}

/* ===== content（Frame 625625: メダル absolute の基準） ===== */
.wf-fv__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 13px;
}

/* ===== メダル（absolute x:-8 y:-32, 92×92, content 基準） ===== */
.wf-fv__medal {
  position: absolute;
  top: -32px;
  left: -8px;
  width: 92px;
  height: 92px;
  z-index: 10;
}
.wf-fv__medal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== heading（314.33px column stretch gap 4） ===== */
.wf-fv__heading {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  width: 314.33px;
  max-width: 100%;
}

/* ===== FV内の可視H1：サービス名（キーワード見出し） =====
   上部タイトル帯を廃止した代わりに、ページの主見出し(H1)をFV内へ配置。
   ユーザーに見えるアイブロウ（ピル型）として表示。catch は H2 に降格済み。 */
/* SWELL の .post_content h1（高特異度）に勝つため .wf-newblocks でスコープ＋!important */
.wf-newblocks .wf-fv__service {
  align-self: center;          /* heading は align-items:stretch のため個別に中央寄せ */
  display: inline-block;
  width: auto;
  margin: 0 0 6px !important;
  padding: 5px 16px !important;
  font-family: "YuGothic", "Yu Gothic", "游ゴシック体", sans-serif;
  font-weight: 700;
  font-size: 14px !important;
  line-height: 1.3 !important;
  letter-spacing: 0.03em;
  color: #fff !important;
  background: rgba(0, 39, 146, 0.55) !important;   /* ブランド青の半透明 */
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  max-width: 100%;
  white-space: normal;        /* 長いサービス名（例:ファームウェアパスワード解除）でもSP横溢れせず折返す（横展開対応） */
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* ===== lead（Subtitle/14, white, center） ===== */
.wf-fv__lead {
  font-family: "YuGothic", "Yu Gothic", "游ゴシック体", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin: 0;
}

/* ===== h1（column center stretch gap -10） ===== */
.wf-fv__catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  position: relative;
  margin: 0;
  gap: 0;
}

/* ===== catch-main（288px column stretch） ===== */
.wf-fv__catch-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 288px;
  max-width: 100%;
}

/* ===== catch-top（Frame 625604: column flex-end stretch gap 5） ===== */
.wf-fv__catch-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  gap: 5px;
}

/* ===== 5楕円（Frame 625603: row center hug gap 26 padding 0 12） ===== */
.wf-fv__ellipses {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 12px;
}
.wf-fv__ellipses span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFA639; /* accent/primary */
}

/* ===== データを残したまま（heading/Ja/h1_32 + Q77CNM） ===== */
.wf-fv__catch-text {
  width: 100%;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow: 0px 4px 4px rgba(0, 106, 212, 1);
}

/* ===== catch-bottom（Frame 625605: row baseline stretch） ===== */
.wf-fv__catch-bottom {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  align-self: stretch;
  justify-content: center;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ===== 復旧 / を目指します ===== */
.wf-fv__catch-big {
  color: #fff;
  text-align: center;
  display: inline-block;
  text-shadow: 0px 4px 4px rgba(0, 106, 212, 1);
}
.wf-fv__catch-big--lg {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
}
.wf-fv__catch-big--md {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}

/* ===== img-marker（314.33×25.56, 文字の下に配置） ===== */
.wf-fv__marker {
  width: 314.33px;
  height: 25.56px;
  max-width: 100%;
  margin-top: 4px;
  display: block;
  align-self: center;
}

/* ===== チェックリスト（横一列、 nowrap） ===== */
.wf-fv__checklist {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
}

/* ===== チェックチップ（Figmaにチェックマークなし、テキストのみ） ===== */
.wf-fv__check-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 8px;
  background: #FFFFFF;
  color: #0177ED;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

/* ===== sub（Frame 625614: 340 column stretch gap 4） ===== */
.wf-fv__sub {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 340px;
  max-width: 100%;
  gap: 4px;
  margin: 0;
}
.wf-fv__sub span {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}
.wf-fv__sub strong {
  color: #FBFF00;
  font-weight: 700;
}

/* ===== 5バッジ（Frame 625623: row wrap center stretch gap 8） ===== */
.wf-fv__badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-self: stretch;
  gap: 8px;
}

/* ===== バッジ（120×120 完全な円, padding 16, bg rgba(255,255,255,0.8)） ===== */
.wf-fv__badge {
  width: 120px;
  height: 120px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
}

/* ===== バッジアイコン（44×44） ===== */
.wf-fv__badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-fv__badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== バッジテキストブロック ===== */
.wf-fv__badge-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

/* ===== ラベル（Subtitle/10, #333333） ===== */
.wf-fv__badge-label {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 14.3px;
  color: #333333;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

/* ===== 値（row baseline） ===== */
.wf-fv__badge-value {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  white-space: nowrap;
}
.wf-fv__badge-value strong {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #0177ED;
}
.wf-fv__badge-value small {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}

/* =============================================================
   CTA上 Figma 仕様 100% 準拠
   PC: padding 80/270, inner 900px / SP: padding 56/16, inner 343px
============================================================= */

.wf-cta--top {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 80px 270px;
  box-sizing: border-box;
}
.wf-cta__inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px;
  background: #0177ED;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  overflow: visible;
}

/* ===== 上半分：ヘッダー ===== */
.wf-cta__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  gap: 16px;
  z-index: 2;
  position: relative;
}
.wf-cta__main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 16px;
}

/* 白ピル「Apple正規修理や…」 */
.wf-cta__pill-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 24px;
  width: 100%;
  max-width: 466px;
  box-sizing: border-box;
}
.wf-cta__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 32px;
  background: #FFFFFF;
  border-radius: 40px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  text-align: center;
  white-space: nowrap;
}
.wf-cta__pill-deco {
  position: relative;
  width: 11.31px;
  height: 11.31px;
  background: #FFFFFF;
  margin-top: -6px;
  transform: rotate(45deg);
  z-index: -1;
}

/* タイトル「まずは 無料でご相談 ください!」 */
.wf-cta__title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
}
.wf-cta__title > span {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #FFFFFF;
}
.wf-cta__title-em {
  font-size: 24px !important;
  color: #FBFF00 !important;
  text-decoration: underline;
  text-decoration-color: #FBFF00;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* 注意書き */
.wf-cta__notice {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background: #F0F7FF;
  border-radius: 4px;
  box-sizing: border-box;
}
.wf-cta__notice-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border: 2px solid #FFA639;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #FFA639;
  line-height: 1;
  box-sizing: border-box;
}
.wf-cta__notice-text {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}
.wf-cta__notice-text strong {
  font-size: 16px;
  color: #333333;
}

/* ===== 中央：CTAボックス + 営業時間 ===== */
.wf-cta__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 725.36px;
  gap: 16px;
}

.wf-cta__cta-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  gap: 16px;
  padding: 24px 16px;
  background: #FFFFFF;
  border: 4px solid #7CBDFF;
  border-radius: 10px;
  box-sizing: border-box;
}

/* 3ラベル */
.wf-cta__labels {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wf-cta__label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  color: #333333;
}
.wf-cta__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 1px solid #7CBDFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.wf-cta__check svg {
  width: 12px;
  height: 10px;
  fill: none;
  stroke: #0177ED;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 3ボタン */
.wf-cta__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  justify-content: center;
}
.wf-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: 4px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.1), 0 4px 8px -4px rgba(0,0,0,0.2);
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.0625em;
  color: #FFFFFF !important;
  text-decoration: none;
  flex: 1;
  padding: 0 12px;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease;
}
.wf-cta__btn:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 12px 24px -12px rgba(0,0,0,0.2);
}
.wf-cta__btn--form { background: #F74A4A; max-width: 240.97px; }
.wf-cta__btn--line { background: #00B900; max-width: 213.42px; }
.wf-cta__btn--tel { background: #0177ED; max-width: 206.97px; }
.wf-cta__btn-icon {
  width: 19.36px;
  height: 19.36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-cta__btn-icon svg {
  width: 100%;
  height: 100%;
}

/* 営業時間 */
.wf-cta__hours {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 560px;
  gap: 4px;
}
.wf-cta__hours-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  align-self: stretch;
  white-space: nowrap;
  justify-content: center;
}
.wf-cta__hours-label {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
  flex-shrink: 0;
}
.wf-cta__hours-row span:last-child {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
}

/* 背景装飾 img-CTA */
.wf-cta__deco {
  position: absolute;
  top: -26px;
  right: -50px;
  width: 200px;
  height: 150px;
  background-image: url('../images/service_logicboard/cta-top-img.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 1;
  pointer-events: none;
}

/* ===== メディアクエリ ===== */
@media (max-width: 1279px) {
  .wf-cta--top {
    padding: 60px 24px;
  }
}

@media (max-width: 767px) {
  .wf-cta--top {
    padding: 56px 16px;
  }
  .wf-cta__inner {
    max-width: 343px;
    padding: 32px 0;
  }
  .wf-cta__pill-wrap {
    max-width: 100%;
  }
  .wf-cta__pill {
    white-space: normal;
    padding: 6px 16px;
    font-size: 12px;
  }
  .wf-cta__title {
    font-size: 18px;
  }
  .wf-cta__title > span {
    font-size: 18px;
  }
  .wf-cta__title-em {
    font-size: 22px !important;
  }
  .wf-cta__notice {
    padding: 8px 12px;
  }
  .wf-cta__notice-text {
    font-size: 12px;
  }
  .wf-cta__notice-text strong {
    font-size: 14px;
  }
  .wf-cta__center {
    max-width: 311px;
  }
  .wf-cta__cta-box {
    padding: 24px 16px;
  }
  .wf-cta__labels {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .wf-cta__buttons {
    flex-direction: column;
    gap: 12px;
  }
  .wf-cta__btn {
    flex: 0 0 auto;
    max-width: 100% !important;
    width: 100%;
    padding: 12px 32px;
  }
  .wf-cta__hours {
    max-width: 100%;
  }
  .wf-cta__hours-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .wf-cta__hours-label,
  .wf-cta__hours-row span:last-child {
    font-size: 12px;
  }
  .wf-cta__deco {
    width: 104px;
    height: 78px;
    top: -46px;
    right: -10px;
  }
}

/* =============================================================
   caution（症状一覧） Figma 仕様 100% 準拠
   PC: padding 80/270, inner 899px / SP: padding 0, inner 375px
============================================================= */

.wf-caution {
  width: 100%;
  background: #FFFFFF;
  padding: 80px 270px;
  box-sizing: border-box;
}

.wf-caution__inner {
  width: 100%;
  max-width: 899px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  box-sizing: border-box;
}

/* ヘッダー */
.wf-caution__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 832px;
}

.wf-caution__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 16px;
}

.wf-caution__icon {
  flex-shrink: 0;
  width: 60px;
  height: 56px;
}
.wf-caution__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wf-caution__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}

.wf-caution__title-sub {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  color: #0177ED;
  margin: 0;
  display: block;
}

.wf-caution__title-main {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  align-self: stretch;
  margin: -10px 0 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  gap: 0;
  padding: 0;
  flex-wrap: wrap;
}

.wf-caution__title-em {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.wf-caution__title-em > span {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.8;
  color: #0177ED;
  position: relative;
  z-index: 1;
}

.wf-caution__title-em img {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  width: 100%;
  height: 25.56px;
  z-index: 0;
}

.wf-caution__title-suffix {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  color: #0177ED;
}

.wf-caution__sub {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
}

/* 12項目グリッド（個別角丸ボックスとして配置） */
.wf-caution__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 832px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wf-caution__grid .wf-caution__item,
.wf-caution__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 8px 24px !important;
  background: #F0F7FF;
  border-radius: 4px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: #1F1F1F;
  box-sizing: border-box;
  min-height: 74px;
}

.wf-caution__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #0177ED;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.wf-caution__check svg {
  width: 16px;
  height: 14px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* Frame 625664: 三角＋文言＋CTAバッジ */
.wf-caution__cta-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  width: 100%;
  max-width: 832px;
  margin: 0;
}

.wf-caution__triangle {
  width: 60px;
  height: 32px;
  background: linear-gradient(0deg, #59ACFF 0%, #0177ED 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.wf-caution__cta-info-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  text-align: center;
}

.wf-caution__cta-info-text p {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
  text-align: center;
}

.wf-caution__cta-info-underline {
  display: inline;
  text-decoration: wavy underline #FFA639;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-skip-ink: none;
}

.wf-caution__cta-info-bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.wf-caution__cta-info-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #0177ED;
  color: #FFFFFF !important;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}
a.wf-caution__cta-info-badge:hover {
  background: #0066D0;
}

.wf-caution__cta-info-suffix {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

/* ===== メディアクエリ ===== */
@media (max-width: 1279px) {
  .wf-caution {
    padding: 60px 24px;
  }
}

@media (max-width: 767px) {
  .wf-caution {
    padding: 16px;
  }
  .wf-caution__inner {
    max-width: 375px;
    padding: 0;
    gap: 16px;
  }
  .wf-caution__header {
    max-width: 100%;
    gap: 16px;
  }
  .wf-caution__icon {
    width: 60px;
    height: 32px;
  }
  .wf-caution__title-sub {
    font-size: 16px;
    line-height: 1.5;
  }
  .wf-caution__title-em > span {
    font-size: 24px;
    line-height: 1.5;
  }
  .wf-caution__title-em img {
    height: 18px;
  }
  .wf-caution__title-suffix {
    font-size: 16px;
    line-height: 1.5;
  }
  .wf-caution__grid {
    grid-template-columns: 1fr;
  }
  .wf-caution__item {
    min-height: 60px;
  }
  .wf-caution__cta-info-text p {
    font-size: 14px;
    text-align: left;
  }
  .wf-caution__cta-info-bottom {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .wf-caution__cta-info-badge {
    font-size: 16px;
  }
  .wf-caution__cta-info-suffix {
    font-size: 14px;
  }
}

/* =============================================================
   reason（データ保持訴求） Figma 仕様 100% 準拠
   PC: padding 72/270, inner 899px / SP: padding 56/16
============================================================= */

.wf-reason {
  width: 100%;
  background: #F0F7FF;
  padding: 72px 270px;
  box-sizing: border-box;
}

.wf-reason__inner {
  width: 100%;
  max-width: 899px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

/* h2 ブロック */
.wf-reason__h2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 280px;
  max-width: 100%;
}
.wf-reason__eng {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
  color: #7CBDFF;
  margin: 0;
  display: block;
}
.wf-newblocks .wf-reason__title {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 28px !important;
  line-height: 1.6;
  color: #0177ED !important;
  margin: 0;
}

/* メイン（テキスト + 画像） */
.wf-reason__main {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
}

.wf-reason__text {
  width: 449px;
  flex-shrink: 0;
}
.wf-reason__text p {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin: 0 0 16px 0;
}
.wf-reason__text p:last-child {
  margin-bottom: 0;
}
.wf-reason__text strong {
  font-weight: 700;
}

/* 画像コンテナ（円＋写真＋拡大鏡） */
.wf-reason__img {
  position: relative;
  width: 304px;
  height: 323px;
  flex-shrink: 0;
}
.wf-reason__img-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: #D9D9D9;
  border: 1px solid #CDDCEA;
  border-radius: 50%;
  overflow: hidden;
}
.wf-reason__img-photo {
  position: absolute;
  top: 0;
  left: -76px;
  width: 451px;
  height: 300px;
  background-image: url('../images/service_logicboard/reason-board-repair.png');
  background-size: cover;
  background-position: center;
  clip-path: circle(150px at 226px 150px);
}
.wf-newblocks .wf-reason__img-magnifying {
  position: absolute;
  top: 0;
  left: 0;
  width: 312px !important;
  height: 331px !important;
  max-width: none !important;
  z-index: 2;
  pointer-events: none;
}

/* 4ポイントカード（2×2） */
.wf-reason__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.wf-reason__point {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #FFFFFF;
  box-shadow: 0 4px 4px rgba(221, 227, 234, 1);
  border-radius: 4px;
  overflow: visible;
}
.wf-reason__point-head {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  background: #0177ED;
  color: #FFFFFF;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  align-self: flex-start;
  border-radius: 4px 0 0 0;
}
.wf-reason__point-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  flex: 1;
  background: #FFFFFF;
  border-radius: 0 4px 4px 4px;
}
.wf-reason__point-body p {
  margin: 0;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  text-align: left;
}
.wf-reason__point-body strong {
  color: #0177ED;
  font-weight: 700;
}

/* 注釈 */
.wf-reason__caveat {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  margin: 16px 0 0;
}

/* ===== メディアクエリ ===== */
@media (max-width: 1279px) {
  .wf-reason {
    padding: 56px 24px;
  }
}

@media (max-width: 767px) {
  .wf-reason {
    padding: 56px 16px;
  }
  .wf-reason__inner {
    padding: 0;
    gap: 16px;
  }
  .wf-reason__h2 {
    width: 100%;
  }
  .wf-reason__title {
    font-size: 22px;
  }
  .wf-reason__main {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .wf-reason__text {
    width: 100%;
  }
  .wf-reason__text p {
    font-size: 14px;
  }
  .wf-reason__img {
    width: 280px;
    height: 280px;
  }
  .wf-reason__img-circle {
    width: 280px;
    height: 280px;
  }
  .wf-reason__img-photo {
    width: 420px;
    height: 280px;
    left: -70px;
    /* radius を Ring の内側に少し収めて photo の縁が外にはみ出さないように */
    clip-path: circle(135px at 210px 140px);
  }
  .wf-newblocks .wf-reason__img-magnifying {
    width: 291.2px !important;
    height: 308.9px !important;
  }
  .wf-reason__points {
    grid-template-columns: 1fr;
  }
  .wf-reason__point-body {
    font-size: 14px;
  }
}

/* =============================================================
   CTA下（お見積もり・ご相談） Figma 仕様 100% 準拠
   PC: padding 80px 270px / inner 900 bg #0177ED / card 725.36
   SP: padding 56px 16px / inner fill / 縦並びボタン
============================================================= */
.wf-cta--bot {
  background: #FFFFFF;
  padding: 80px 270px;
  box-sizing: border-box;
}
.wf-cta--bot__inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #0177ED;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  overflow: visible;
}

/* 装飾画像 laptop SVG (PC: 200×150, x:699 y:-26) */
.wf-newblocks .wf-cta--bot__img {
  position: absolute;
  top: -26px;
  right: 1px;
  width: 200px !important;
  height: 150px !important;
  max-width: none !important;
  pointer-events: none;
  z-index: 1;
}

/* 見出し */
.wf-cta--bot__title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 0;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
  z-index: 2;
}
.wf-cta--bot__title-row {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.wf-newblocks .wf-cta--bot__title,
.wf-newblocks .wf-cta--bot__title > span,
.wf-newblocks .wf-cta--bot__title-row > span {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
}
.wf-cta--bot__title-row > span {
  font-size: 24px;
  line-height: 1.3;
  color: #FFFFFF;
}
.wf-cta--bot__em {
  color: #FBFF00 !important;
  text-decoration: underline;
  text-decoration-color: #FBFF00;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.wf-cta--bot__title-suffix {
  font-size: 20px !important;
  line-height: 1.3;
  color: #FFFFFF;
}

/* 白カード */
.wf-cta--bot__card {
  width: 100%;
  max-width: 725.36px;
  background: #FFFFFF;
  border: 4px solid #7CBDFF;
  border-radius: 10px;
  padding: 24px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* 理由バッジ 3つ */
.wf-cta--bot__reasons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wf-cta--bot__reason {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #333333;
}
.wf-cta--bot__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 1px solid #7CBDFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.wf-cta--bot__check svg {
  width: 12px;
  height: 10px;
  fill: none;
  stroke: #0177ED;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* サブテキスト */
.wf-cta--bot__lead {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 26.6px;
  color: #333333;
  margin: 0;
  text-align: center;
}
.wf-cta--bot__lead-em {
  color: #0177ED;
}

/* ボタン 3つ */
.wf-cta--bot__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  gap: 16px;
}
.wf-cta--bot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: 4px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.1), 0 4px 8px -4px rgba(0,0,0,0.2);
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.0625em;
  color: #FFFFFF !important;
  text-decoration: none;
  flex: 1;
  padding: 0 12px;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease;
}
.wf-cta--bot__btn:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 12px 24px -12px rgba(0,0,0,0.2);
}
.wf-cta--bot__btn--form { background: #F74A4A; max-width: 240.97px; }
.wf-cta--bot__btn--line { background: #00B900; max-width: 213.42px; }
.wf-cta--bot__btn--tel  { background: #0177ED; max-width: 206.97px; }
.wf-cta--bot__btn-icon {
  width: 19.36px;
  height: 19.36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-cta--bot__btn-icon svg {
  width: 100%;
  height: 100%;
}

/* タブレット */
@media (max-width: 1279px) {
  .wf-cta--bot {
    padding: 60px 24px;
  }
}

/* SP */
@media (max-width: 767px) {
  .wf-cta--bot {
    padding: 56px 16px;
  }
  .wf-cta--bot__inner {
    padding: 32px 16px;
    gap: 24px;
  }
  .wf-newblocks .wf-cta--bot__img {
    width: 104px !important;
    height: 78px !important;
    top: -45.88px;
    right: -16px;
  }
  .wf-cta--bot__title {
    flex-direction: column;
    gap: 4px;
  }
  .wf-cta--bot__card {
    padding: 24px 16px;
  }
  .wf-cta--bot__reasons {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .wf-cta--bot__lead {
    text-align: left;
  }
  .wf-cta--bot__buttons {
    flex-direction: column;
    gap: 16px;
  }
  .wf-cta--bot__btn {
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 12px 32px;
  }
}

/* =============================================================
   difference（Apple正規修理との違い） Figma 仕様 100% 準拠
   PC: padding 80px 270px / inner 802px / SP: padding 24px 16px / 2テーブル
============================================================= */
.wf-difference {
  background: #FDFEFF;
  padding: 80px 270px;
  box-sizing: border-box;
}
.wf-difference__inner {
  max-width: 802px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  box-sizing: border-box;
}

/* h2 ブロック */
.wf-difference__h2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.wf-difference__eng {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
  color: #7CBDFF;
  display: block;
  margin: 0;
}
.wf-newblocks .wf-difference__title {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700 !important;
  font-size: 28px !important;
  line-height: 1.6 !important;
  color: #0177ED !important;
  margin: 0 !important;
  text-align: center !important;
}
.wf-difference__sub {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
  text-align: center;
}

/* PC テーブル（1表 3列） */
.wf-difference__table--pc {
  display: grid;
  grid-template-columns: 230px 1fr 1fr;
  gap: 2px;
  width: 100%;
}

/* SP 2テーブル（PCでは非表示） */
.wf-difference__sp-tables {
  display: none;
}

/* セル共通 */
.wf-difference__cell {
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  box-sizing: border-box;
  min-height: 37px;
}

/* ヘッダーセル共通 */
.wf-difference__cell--header {
  min-height: 56px;
}

.wf-difference__cell--item-header {
  background: #FFFFFF;
}

/* MLR ヘッダー（青 + おすすめバッジ）
   Figma: cell 56px固定、badge は cell の上に飛び出る配置 */
.wf-difference__cell--mlr-header {
  background: #0177ED;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: 56px;
  min-height: 56px;
  position: relative;
  overflow: visible;
}
.wf-difference__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid #0177ED;
  border-radius: 20px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #0177ED;
  line-height: 21px;
  white-space: nowrap;
  z-index: 2;
  display: inline-block;
}
.wf-difference__brand {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
  display: inline-block;
  text-align: center;
}

/* Apple ヘッダー（gray + 中央揃え） */
.wf-difference__cell--apple-header {
  background: #F5F5F5;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #333333;
  padding: 8px 16px;
}

/* 項目セル（gray + 右寄せ Bold） */
.wf-difference__cell--item {
  background: #F5F5F5;
  justify-content: flex-end;
  font-weight: 700;
  color: #333333;
  text-align: right;
}

/* MLR データセル（薄青 + 左寄せ Bold） */
.wf-difference__cell--mlr {
  background: #F0F7FF;
  justify-content: flex-start;
  font-weight: 700;
  color: #333333;
  text-align: left;
}

/* Apple データセル（極薄gray + 左寄せ Medium） */
.wf-difference__cell--apple {
  background: #FDFDFD;
  justify-content: flex-start;
  font-weight: 500;
  color: #333333;
  text-align: left;
}

/* 注釈 */
.wf-difference__caveat {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
  text-align: left;
}

/* タブレット */
@media (max-width: 1279px) {
  .wf-difference {
    padding: 56px 24px;
  }
}

/* SP（〜767px）: PCテーブル非表示 → 2テーブル縦並び */
@media (max-width: 767px) {
  .wf-difference {
    padding: 24px 16px;
  }
  .wf-difference__inner {
    gap: 38px;
  }
  .wf-difference__table--pc {
    display: none;
  }
  .wf-difference__sp-tables {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }
  .wf-difference__table--sp {
    display: grid;
    grid-template-columns: 154px 1fr;
    gap: 2px;
    width: 100%;
  }
  .wf-newblocks .wf-difference__title {
    font-size: 22px !important;
  }
}

/* =============================================================
   FV SP（〜767px）— Figma 2006:1229 仕様 100% 準拠
   container 375×759 / bg #E1F4FF / 上下分割画像 + ブルーオーバーレイ
============================================================= */
@media (max-width: 767px) {
  /* コンテナ */
  .wf-fv {
    min-height: 759px;   /* SPも固定高→min-height化（バッジ見切れ防止） */
  }

  /* 背景画像を上下に分割再配置 */
  .wf-fv__img-left,
  .wf-fv__img-right {
    width: 100%;
    height: 390px;
  }
  /* 上半分: pc-hand（右画像をSPでは上に） */
  .wf-fv__img-right {
    top: 0;
    left: 0;
    right: auto;
  }
  /* 下半分: keyboard（左画像をSPでは下に） */
  .wf-fv__img-left {
    top: auto;
    bottom: 0;
    left: 0;
  }
  /* グラデーションオーバーレイを上下方向に変更 */
  .wf-fv__img-right::after {
    background: linear-gradient(180deg, rgba(217,217,217,0) 18%, rgba(115,115,115,1) 100%);
  }
  .wf-fv__img-left::after {
    background: linear-gradient(181deg, rgba(115,115,115,1) 0%, rgba(217,217,217,0) 100%);
  }

  /* inner */
  .wf-fv__inner {
    padding: 0 16px 32px;
    gap: 24px;
    justify-content: flex-start;
  }

  /* main: SP では幅 100% / gap 40 維持 */
  .wf-fv__main {
    width: 100%;
    gap: 40px;
  }

  /* upper: padding-top を 96 に（Figma SP） */
  .wf-fv__upper {
    padding-top: 96px;
  }

  /* deco-rect（fv-rect4.svg）: SP は 351×389 at x:-8.5 */
  .wf-fv__deco-rect {
    left: 50%;
    transform: translateX(-50%);
    width: 351px;
    height: 389px;
    max-width: calc(100% + 16px);
  }

  /* content 内: gap 13 (Figma) */
  .wf-fv__content {
    gap: 13px;
  }

  /* メダル: Figma SP x:46.5 y:-85 から content への相対位置を再計算
     Figma main 456 中央寄せ → viewport 375 だと medal 左端は viewport x:6 が目標
     content 左端は viewport x:8.5 なので left:-2.5 で medal viewport 左端を 6 にする */
  .wf-fv__medal {
    top: -85px;
    left: -2.5px;
    transform: none;
    width: 92px;
    height: 92px;
  }

  /* heading: 314.33px (Figma) */
  .wf-fv__heading {
    width: 314.33px;
    max-width: 100%;
  }

  /* lead: 14px (Figma SP) */
  .wf-fv__lead {
    font-size: 14px;
  }

  /* catch-main: 288px (Figma SP) */
  .wf-fv__catch-main {
    width: 288px;
  }

  /* マーカー: 314.33×25.56 (Figma SP) */
  .wf-fv__marker {
    width: 314.33px;
    max-width: 100%;
    height: 25.56px;
  }

  /* チェックリスト: wrap、padding 16、width 297、border 1px #0177ED */
  .wf-fv__checklist {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
    width: 297px;
    max-width: 100%;
    border: 1px solid #0177ED;
    align-self: center;
  }
  .wf-fv__check-item {
    font-size: 14px;
    padding: 4px 8px;
    box-shadow: 0 4px 4px rgba(0, 106, 212, 0.4);
    letter-spacing: 0;
  }

  /* sub: 340 column gap 4 (PC と同じ) */
  .wf-fv__sub {
    width: 340px;
    max-width: 100%;
  }
  .wf-fv__sub span {
    font-size: 20px;
  }

  /* 5バッジ: row wrap 8 gap, width 351、parent 内で中央寄せ */
  .wf-fv__badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 351px;
    max-width: 100%;
    align-self: center;
    margin: 0 auto;
  }
  .wf-fv__badge {
    width: 100px;
    height: 104px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #7CBDFF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }
  /* SP: Figma Subtitle/14 (1:4) 14px / Subtitle/10 (1:15) 10px に縮小 */
  .wf-fv__badge-value strong {
    font-size: 14px;
  }
  .wf-fv__badge-value small {
    font-size: 10px;
  }

  /* 他セクションの SP 調整（既存） */
  .wf-cta { padding: 56px 16px; }
  .wf-cta__buttons { flex-direction: column; }
  .wf-cta__btn { max-width: 100%; }
  .wf-cta__title { font-size: 22px; }
  .wf-cta__assure { gap: 8px; }
  .wf-cta__assure li { font-size: 11px; padding: 4px 12px; }

  .wf-caution { padding: 56px 16px; }
  .wf-caution__title { font-size: 22px; }
  .wf-caution__grid { grid-template-columns: 1fr; }

  .wf-reason { padding: 56px 16px; }
  .wf-reason__title { font-size: 22px; }
  .wf-reason__body { gap: 24px; }
}
