:root{
  --container: 1100px;
  --bg-max: 1920px;

  --navy: #0d1b35;
  --navy2:#0a1427;
  --gold: #c9a14a;
  --red:  #d3172a;

  --bg: #F6F4F1;   /* ベージュ */
  --text:#111;
  --muted:#666;

  --radius: 18px;
  --shadow: 0 14px 30px rgba(0,0,0,.14);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; overflow-x: hidden;}
body{
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  background:#fff;
  overflow-x:hidden; /* 100vw対策 */
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* 見出し */
.h2{
  font-size: clamp(34px, 4.3vw, 50px);
  line-height:1.2;
  margin:0 0 80px;
  text-align:center;
  position:relative;
}
.h2::after{
  content:"";
  display:block;
  width: 120px;
  height: 4px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 999px;
  opacity:.95;
}
.p{ margin:0 0 14px; }
.p--small{ font-size: 15px; color:#2a2a2a; opacity:.9; }
.lead-center{ text-align:center; max-width: 920px; margin: 0 auto 18px; font-size: 20px;}
@media (max-width: 900px){
  .lead-center{ text-align:center; }
  .h2 {margin: 0 0 40px;}
}

/* スマホの時だけ改行させるクラス */
.br-sp {
  display: none;
}

@media (max-width: 600px) {
  .br-sp {
    display: inline; /* block でもOK */
  }
}

.section{ padding: 72px 0; }
.section--beige{ background: var(--bg); }
.section--white{ background:#fff; }
.section--light{ background:#f7f7f7; }

/* =========================
   KV
========================= */


/* 青帯：ブラウザ全幅 */
.kv__band{
  margin-top: 18px;
  background: var(--navy);
  color:#fff;
  padding: 26px 0;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.kv__desc{ margin:0; font-weight:700; font-size:18px; text-align:center; }

/* CTA Banner */
.cta-banner{
  margin-top: 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns: 280px 1fr;
  min-height: 120px;
}
.cta-banner__left img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cta-banner__right{
  background: var(--red);
  color:#fff;
  padding: 18px 18px 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
}
.cta-banner__pill{
  display:inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 10px;
  border-radius: 999px;
  width: fit-content;
  font-weight:800;
}
.cta-banner__btn{
  font-size: 28px;
  font-weight: 900;
  letter-spacing:.02em;
}
.cta-banner__arrow{ font-size: 34px; line-height:1; }
.cta-banner__sub{ font-size: 14px; opacity:.95; }
@media (max-width: 900px){
  .cta-banner{ grid-template-columns: 1fr; }
  .cta-banner__left{ display:none; }
  .cta-banner__btn{ font-size: clamp(18px, 5vw, 24px); }
}


/* =========================
   Problems cards
========================= */
.cards{
    margin: 28px 0; /* もともと 28px 100px; */
    display: grid;
    gap: 30px;
}
.cards--3{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){
  .cards--3{ grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cards--3{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    
  }
  .cards{
    margin: 28px 0; /* もともと 28px 100px; */
    display: grid;
    gap: 24px; /* 余白はお好み */
  }
}
.card{
  background:#fff;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
}
.card__img{ width:100%; height: 170px; object-fit:cover; }
.card__txt{ margin: 0; padding: 14px 14px 16px; font-weight:700; font-size: 1.2rem; text-align: center;}

/* =========================
   Deliverables
========================= */
.deliverables__lead{
    text-align: center;
    margin: 0 0 22px;
    font-size: 23px;
}
.deliverables__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}
.deliverables__media{
  display:flex;
  justify-content:center;
}
.deliverables__media img{
  width:min(520px, 100%);
}
@media (max-width: 900px){
  .deliverables__lead{ text-align:center; }
  .deliverables__grid{ grid-template-columns: 1fr; }
}

/* チェックリスト（白帯） */
.list-check{
  margin: 8px 0 10px;
  padding:0;
  list-style:none;
  display:grid;
  gap: 14px;
}
.list-check li{
    background: rgba(255, 255, 255, .9);
    padding: 12px 16px 12px 54px;
    border-radius: 6px;
    position: relative;
    font-weight: 800;
    font-size: 21px;
}
.list-check li::before{
  content:"✓";
  position:absolute;
  left:18px; top:14px;
  font-weight:900;
  color: var(--navy);
}

/* =========================
   Check items panel + CTA strip
========================= */
.panel{
  margin-top: 22px;
  background:#fff;
  border-radius: 20px;
  padding: 26px 26px;
  box-shadow: var(--shadow);
}
.panel__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.panel ul{ margin:0; padding-left: 22px; }
.panel li{ margin: 10px 0; }
@media (max-width: 900px){
  .panel__cols{ grid-template-columns: 1fr; }
}

.cta-strip{
  margin-top: 28px;
  display:flex;
  justify-content:center;
}
.cta-strip__btn{
  width:min(980px, 100%);
  background: var(--red);
  color:#fff;
  padding: 22px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
}
.cta-strip__arrow{ font-size: 26px; line-height:1; }
.cta-strip--bottom{ margin-top: 36px; }

/* =========================
   Plans
========================= */
.plans{
  width: min(820px, 100%);
  margin: 26px auto 0;
  display:grid;
  gap: 18px;
}
.plan{
  background:#fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.plan__body{ padding: 18px 22px; }
.plan__meta{ margin: 12px 0 0; padding-left: 22px; }
.plan__meta li{ margin: 8px 0; }

/* =========================
   Features
========================= */
.features{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature{
  background:#fff;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
}
.feature__img{ aspect-ratio: 16/9; background:#eee; }
.feature__img img{ width:100%; height:100%; object-fit:cover; }
.feature__title{
    font-weight: 900;
    margin: 5px 14px 12px;
    text-align: center;
    font-size: 22px;
    border-bottom: 1px solid #ccc;
}
.feature__txt{ margin: 0 14px 16px; font-size: 15px; line-height: 1.7; color:#333; text-align: center;}

@media (max-width: 1024px){ .features{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .features{ grid-template-columns: 1fr; } }




/* =========================
   Footer
========================= */
/* ===== LP Footer ===== */
.lp-footer{
  background:#222;
  color:#fff;
  padding: 22px 0 18px;
}

.lp-footer__inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.lp-footer__links{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; /* スマホで折り返しても崩れない */
  justify-content: center;
}

.lp-footer__link{
  color:#fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
  transition: opacity .2s ease, text-decoration-color .2s ease;
}

.lp-footer__link:hover{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lp-footer__sep{
  opacity: .55;
  font-size: 14px;
  line-height: 1;
}

.lp-footer__copy{
  display: block;
  margin-top: 10px;
  font-size: 13px;
  opacity: .7;
}

/* SP微調整 */
@media (max-width: 480px){
  .lp-footer{ padding: 18px 0 14px; }
  .lp-footer__inner{ padding: 0 16px; }
  .lp-footer__link, .lp-footer__sep{ font-size: 13px; }
}



/* ロゴ */
.kv__logo{
  height: 22px;
  width: auto;
  display: block;
}
.kv__tagline{
  margin: 6px 0 0;
  font-size: 14px;
  color: #666;
}

/* 青帯：グラデーションをやめて #000828 の1色に */
.kv__band{
  background: #000828 !important;  /* ★ここが要件 */
  color: #fff;
}

/* SP */
@media (max-width: 900px){
  .kv__title{ font-size: clamp(23px, 7vw, 44px); }
  .kv__title span{ padding: 8px 12px; font-size: 70%; }
  .kv__checks{margin-left: 0px !important; margin-top: 0px !important; padding-left: 0px;}
}
/* ===== KVここまで ===== */

/* =========================
   KV（メインビジュアル）専用
   ========================= */

.kv{
  background:#F6F4F1;
}

/* 上段：背景画像あり */
.kv__top{
  position:relative;
  overflow:hidden;
  padding: 36px 0 0;
  min-height: 560px;
}

/* 背景（右にヒーロー画像＋左は薄く） */
.kv__top::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    url("./assets/img/hero.jpg") top center / cover no-repeat;
  z-index:0;
}

.kv__inner{
  position:relative;
  z-index:1;
  padding-bottom: 18px;
}

/* ロゴ */
.kv__brand{
  margin-bottom: 18px;
}
.kv__logo{
  width: 190px;
  height: auto;
  display:block;
}
.kv__tagline{
  margin: 6px 0 0;
  font-size: 14px;
  color: rgba(0,0,0,0.55);
}

/* タイトル：左揃え（ここが今回の要望） */
.kv__title{
  margin: 38px 0 18px;
  text-align:left;     /* ★左揃え */
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.15;
}

/* 2行を必ず縦に積む（横並び崩れ防止） */
.kv__titleLine{
    display: block;
    width: fit-content;
    background: #0d1b35;
    color: #fff;
    padding: 0px 8px 5px 8px;
    margin-bottom: 18px;
}

/* チェック3行 */
.kv__checks{
    list-style: none;
    max-width: 450px;
    display: grid;
    gap: 12px;
    margin-left: 50px;
    margin-top: 40px;
}
.kv__checks li{
    background: rgba(255, 255, 255, 0.86);
    padding: 5px 16px 5px 54px;
    border-radius: 4px;
    font-weight: 700;
    position: relative;
    font-size: 20px;
}
.kv__checks li::before{
  content:"✓";
  position:absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color:#0d1b35;
  font-size: 20px;
}

/* 青帯：グラデーション禁止 → #000828 1色（ここが今回の要望） */
.kv__band{
  position:relative;
  z-index:1;
  margin-top: 26px;
  background: #000828;   /* ★単色 */
  color:#fff;
  padding: 28px 0;
}

.kv__desc{
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  text-align:center;
}
.kv__note{
  margin: 10px 0 0;
  font-size: 18px;
  opacity: .9;
  text-align:center;
}

/* 下段（CTA） */
.kv__bottom{
  padding: 22px 0 44px;
}

/* スマホ最適化 */
@media (max-width: 900px){
  .kv__top{
    min-height: auto;
    padding-top: 24px;
  }
  .kv__top::before{
    background:
      url("./assets/img/hero.jpg") 60% / cover no-repeat;
  }
  .kv__desc{ font-size: 20px; text-align:left; }
  .kv__note{ text-align:left; }
  .kv__checks li { font-size: 100%;}
}

/* =========================
   KV CTA（赤いカード）
========================= */
.kv-cta{
  margin: 46px auto 0;
  width: min(1040px, 90%);
  display: grid;
  grid-template-columns: 340px 1fr;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  text-decoration: none;
  color: inherit;
}

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

.kv-cta__right{
  position: relative;
  background: #d3172a;
  color: #fff;
  padding: 22px 26px 22px 54px; /* 斜めカット分、左に余白を足す */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.kv-cta__pill{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: #d3172a;
  font-weight: 800;
  font-size: 21px;
  line-height: 1;
}

.kv-cta__title{
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 30px);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 30px;
  letter-spacing: .01em;
}

.kv-cta__arrow{
  font-size: 1.2em;
  line-height: 1;
}

.kv-cta__sub{
  font-size: 16px;
  opacity: .95;
}

/* SP */
@media (max-width: 900px){
  .kv-cta{
    grid-template-columns: 1fr;
  }
  .kv-cta__left{
    display: none; /* スマホは左画像を非表示（必要なら消さないでもOK） */
  }
  .kv-cta__right{
    clip-path: none;
    padding: 20px 18px;
  }
  .kv-cta__title{
  gap: 5px;
  }
}

/* iPad Air(820px) を含むタブレット縦：CTAを左右配置に固定 */
@media (min-width: 768px) and (max-width: 900px) {

  a.kv-cta{
    display: grid;
    grid-template-columns: 1fr 1fr; /* 好みで 45% 55% でもOK */
    align-items: stretch;
  }

  /* ここが重要：スマホ用の“縦積み指定”を打ち消す */
  .kv-cta__left{
    display: block;          /* ← もし none になってても復活させる */
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;        /* 画像のはみ出し防止 */
  }

  .kv-cta__right{
    grid-column: 2;
    grid-row: 1;
  }

  /* 画像が潰れて見えない対策（高さが0/小さい問題の保険） */
  .kv-cta__left{
    min-height: 180px;       /* 好みで調整 */
  }
  .kv-cta__left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}



/* =========================
   診断で確認する項目（例）
========================= */

.section--items{
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

/* リード文 */
.items__lead{
  text-align: center;
  margin: 26px 0 34px;
  line-height: 2;
  font-size:20px
}

/* 表の囲み */
.items__table{
  width: min(1100px, 100%);
  margin: 0 auto;
  background: #fff;
}

.items__table table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.items__table th,
.items__table td{
  border: 1px solid #e6e6e6;
  padding: 18px 22px;
  font-size: 18px;
  vertical-align: middle;
}

.items__table th{
  width: 34%;
  background: #f7f7f7;
  font-weight: 700;
  text-align: left;
}

.items__note{
  width: min(1100px, 100%);
  margin: 22px auto 0;
  text-align: left;
  font-size: 16px;
  opacity: .9;
}

@media (max-width: 900px){
  .section{ padding: 32px 0; }
  .section--items{ padding: 64px 0; }
  .items__lead{ text-align: left; }
  .items__table th,
  .items__table td{ font-size: 16px; padding: 14px 14px; }
}

/* 「診断後にご提案できる進め方」背景図形 */
.section--plans{
  position: relative;
  overflow: hidden; /* 図形のはみ出しを綺麗に切る */
}

/* コンテンツを図形より前面に */
.section--plans > .container{
  position: relative;
  z-index: 1;
}

/* 左図形 */
.section--plans::before{
  content:"";
  position:absolute;
  left: -140px;      /* はみ出し量：好みで調整 */
  top: 0px;
  width: 520px;      /* 図形サイズ：好みで調整 */
  height: 520px;
  background-image: url("https://blancnoir.co.jp/free-audit/assets/img/bg-section-07-left.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

/* 右図形 */
.section--plans::after{
  content:"";
  position:absolute;
  right: -160px;     /* はみ出し量：好みで調整 */
  bottom: -120px;
  width: 560px;      /* 図形サイズ：好みで調整 */
  height: 560px;
  background-image: url("https://blancnoir.co.jp/free-audit/assets/img/bg-section-07-right.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

/* スマホは図形を少し小さく（崩れ防止） */
@media (max-width: 900px){
  .section--plans::before{
    left: -220px;
    top: 10px;
    width: 440px;
    height: 440px;
  }
  .section--plans::after{
    right: -240px;
    bottom: -180px;
    width: 460px;
    height: 460px;
  }
}

/* =========================================
   SECTION: NEXT STEPS（section--plans）
   ========================================= */

.section--plans{
  /* 背景が section--gold で付いてる想定。必要ならここで補強 */
  padding: 72px 0 88px;
}

.section--plans .h2{
  text-align: center;
  font-weight: 800;
  letter-spacing: .02em;
}

.section--plans .h2::after{
  content:"";
  display:block;
  width: 88px;
  height: 4px;
  background: #c9a75c;
  border-radius: 999px;
  margin: 16px auto 0;
}

.section--plans > .container > .p{
  text-align: center;
  margin: 0 0 34px;
  font-size: 20px;
}

/* 3つのボックスの並び */
.plans{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* カード本体 */
.plan{
  background: #fff;
  border-radius: 22px;
  overflow: hidden; /* 帯の角丸を効かせる */
  box-shadow: 0 18px 42px rgba(0,0,0,.10);
}

/* 見出し帯（共通） */
.plan > .h3{
  margin: 0;
  padding: 22px 24px;
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  background: #000828; /* デフォは紺 */
}

/* 帯の色分け */
.plan--navy > .h3{ background:#000828; }
.plan--gold > .h3{ background:#c9a75c; }
.plan--gold2 > .h3{ background:#c9a75c; }

/* 本文側（帯の下） */
.plan > .p,
.plan > .plan__meta,
.plan > .p--small{
  padding-left: 34px;
  padding-right: 34px;
}

.plan > .p{
  margin: 18px 0 0;
  line-height: 1.9;
}

.plan__meta{
  margin: 14px 0 0;
  padding-top: 0;
  padding-bottom: 26px;
  padding-left: 34px;  /* 上で入れてるが念のため */
  list-style: none;    /* デフォの黒丸を消して整える */
}

.plan__meta li{
  position: relative;
  padding-left: 1.2em;
  margin: 10px 0;
  line-height: 1.85;
}

.plan__meta li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}

/* 注釈 */
.plan .p--small{
  margin: 10px 0 0;
  padding-bottom: 26px;
  font-size: 14px;
  opacity: .9;
  line-height: 1.7;
}

/* 最後のカード（文章だけのときでも余白が不足しないように） */
.plan--gold2 > .p:last-child,
.plan--gold2 > .p--small:last-child{
  padding-bottom: 26px;
}

/* SP */
@media (max-width: 768px){
  .section--plans{
    padding: 54px 0 70px;
  }

  .section--plans > .container > .p{
    margin-bottom: 24px;
  }

  .plan > .h3{
    font-size: 18px;
    padding: 16px 16px;
  }

  .plan > .p,
  .plan > .plan__meta,
  .plan > .p--small{
    padding-left: 18px;
    padding-right: 18px;
  }

  .plan__meta{
    padding-bottom: 18px;
  }

  .plan .p--small{
    font-size: 13px;
    padding-bottom: 18px;
  }
}


/* ===== SECTION: plans ===== */
.section--plans{
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: #f6f4ef; /* 近い生成り。必要なら調整 */
}

/* 背景の装飾（左右） */
.section--plans::before,
.section--plans::after{
  content:"";
  position:absolute;
  pointer-events:none;
  background-repeat:no-repeat;
  background-size:contain;
  opacity: 1;
}

.section--plans::before{
  left: 0;
  top: 80px;
  width: 360px;
  height: 560px;
  background-image:url("https://blancnoir.co.jp/free-audit/assets/img/bg-section-07-left.svg");
  background-position:left top;
}

.section--plans::after{
  right: 0;
  bottom: 0;
  width: 360px;
  height: 560px;
  background-image:url("https://blancnoir.co.jp/free-audit/assets/img/bg-section-07-right.svg");
  background-position:right bottom;
}

/* 中身を前面に */
.section--plans .container{
  position: relative;
  z-index: 1;
}

.plans{
  margin-top: 32px;
  display:flex;
  flex-direction:column;
  gap: 28px;
  align-items:center;
}

/* カード */
.plan{
  width: min(760px, 100%);
  background:#fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  border-radius: 0;      /* 参考画像寄せ：角丸なし */
  overflow: hidden;      /* ヘッダー帯をピタッと */
}

/* ヘッダー帯 */
.plan__head{
  padding: 6px 24px;
  text-align:center;
  color:#fff;
}

.plan--navy .plan__head{ background:#000828; }
.plan--gold .plan__head,
.plan--gold2 .plan__head{ background:#c8a24a; } /* ゴールドは必要なら調整 */

.plan__title{
  margin:0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .02em;
}

.plan__sub{
  margin: 0;
  font-size: 18px;
  opacity: .9;
}

/* 本文 */
.plan__body{
  padding: 22px 28px 26px;
}

.plan__lead{
  margin: 0 0 14px;
  line-height: 1.9;
}

.plan__example{
  margin: 12px 0 16px;
  padding: 10px 12px;
  border: 1px solid #d7d7d7;
  background:#fff;
}

/* 表 */
.plan__table{
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.plan__table th,
.plan__table td{
  border: 1px solid #d7d7d7;
  padding: 14px 16px;
  vertical-align: middle;
}

.plan__table th{
  width: 32%;
  background: #f2f2f2;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.plan__note{
  margin-top: 12px;
  font-size: 13px;
  color: #333;
  line-height: 1.7;
}

/* 画面が狭い時 */
@media (max-width: 768px){
  .section--plans{ padding: 64px 0; }

  .section--plans::before,
  .section--plans::after{
    width: 220px;
    height: 320px;
    opacity: .75;
  }
  .section--plans::before{ top: 40px; }
  .section--plans::after{ bottom: -20px; }

  .plan__body{ padding: 18px 18px 22px; }
  .plan__title{ font-size: 18px; }

  .plan__table th{
    width: 40%;
    white-space: normal;
  }
}


/* FLOW: ご利用の流れ */
.section--flow .steps {
  margin-top: 40px;
}

.steps--cards {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.step__label {
  width: 160px;
  flex: 0 0 160px;
  background: #c9a24a; /* ゴールド */
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 14px;
  font-size: 20px;
  display: flex;          /* 中央寄せ用 */
  align-items: center;    /* 縦中央 */
  justify-content: center;/* 横中央 */
}

.step__body {
  padding: 8px 28px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
}

/* 下の「対応方法・返信目安」 */
.flow-note {
  margin: 28px auto 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px 28px;
  width: 940px;
}

.flow-note__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  color: #111;
}

.flow-note__list {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.9;
  font-size: 18px;
}


.flow-footnote {
    width: 940px;
    margin: 14px auto 0;
}

/* ===== 横はみ出し対策（まずこれ） ===== */
.flow-note,
.steps,
.flow-footnote{
  width: min(940px, 100%);
  margin-left: auto;
  margin-right: auto;
}


/* SP調整 */
@media (max-width: 768px) {
  .step__label {
    width: 80px;
    flex-basis: 80px;
    padding: 16px 10px;
    font-size: 16px;
  }
  .step__body {
    padding: 16px 18px;
    font-size: 18px;
  }
  .flow-note {
    padding: 20px 18px;
  }
  .flow-note__title {
    font-size: 18px;
  }
  .flow-note__list {
    font-size: 16px;
  }
}

/* ご利用の流れ：左の 1. 2. 3... を消す（olの連番対策） */
.steps{
  list-style: none !important;
  padding-left: 0 !important;
  width: 940px;
}

.steps > li{
  list-style: none !important;
}

/* ブラウザによって残るmarker対策 */
.steps > li::marker{
  content: "" !important;
}

/* もしCSSで番号を ::before 生成している場合の保険 */
.steps > li::before{
  content: none !important;
}




/* ===== FAQ（表形式） ===== */
.faq-table{
  width: min(940px, 100%);
  margin: 40px auto;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

.faq-row + .faq-row{
  border-top: 1px solid rgba(0,0,0,.12);
}

/* Q行（グレー帯） */
.faq-q{
  background: #efefef;
  padding: 12px 26px;
  font-size: 22px;
  font-weight: 800;
}

/* A行（白） */
.faq-a{
  padding: 12px 70px;
  font-size: 18px;
  line-height: 1.9;
  border-top: 1px solid rgba(0,0,0,.12);
}

/* SP */
@media (max-width: 768px){
  .faq-q{ font-size: 18px; padding: 18px 16px; }
  .faq-a{ font-size: 16px; padding: 18px 16px 18px  40px; }
  .steps{ width: 340px; }
  .faq-table{ margin: 40px auto 0; }
}


/* =========================================
   Problems（こんなお悩みはありませんか？）
   背景図形：左右（上・下） 4枚
========================================= */

.section--light{
  position: relative;
  overflow: hidden; /* はみ出しを綺麗に切る */
}

/* 中身を前面に */
.section--light > .container{
  position: relative;
  z-index: 1;
}

/* 左（上＋下） */
.section--light::before{
      content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url(https://blancnoir.co.jp/free-audit/assets/img/bg-section-01-left.svg), url(https://blancnoir.co.jp/free-audit/assets/img/bg-section-02-left.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left -100px top 0px, left -20px bottom 0px;
    background-size: 240px auto, 240px auto;
}

/* 右（上＋下） */
.section--light::after{
  content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url(https://blancnoir.co.jp/free-audit/assets/img/bg-section-01-right.svg), url(https://blancnoir.co.jp/free-audit/assets/img/bg-section-02-right.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: right -80px top 0px, right -30px bottom 0px;
    background-size: 240px auto, 240px auto;
}

/* SPは少し小さく＆外に逃がす（カードに被りづらくする） */
@media (max-width: 900px){
  .section--light::before{
    background-position:
      left -160px top 0px,
      left -180px bottom 0px;
    background-size:
      160px auto,
      160px auto;
  }
  .section--light::after{
    background-position:
      right -160px top 0px,
      right -180px bottom 0px;
    background-size:
      160px auto,
      160px auto;
  }
}


/* ===== Deliverables：背景図形 ===== */
.deliverables{
  position: relative;
  overflow: hidden;
}

.deliverables > .container{
  position: relative;
  z-index: 1;
}

.deliverables::before{
  content:"";
  position:absolute;
  left: -140px;
  bottom: 0px;
  width: 380px;
  height: 380px;
  background: url("https://blancnoir.co.jp/free-audit/assets/img/bg-section-03-left.svg") no-repeat;
  background-size: contain;
  pointer-events:none;
  z-index: 0;
}

.deliverables::after{
    content: "";
    position: absolute;
    right: -220px;
    top: 0px;
    width: 380px;
    height: 380px;
    background: url(https://blancnoir.co.jp/free-audit/assets/img/bg-section-03-right.svg) no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 900px){
  .deliverables::before{
    left: -240px;
    top: 10px;
    width: 420px;
    height: 420px;
    opacity: .85;
  }
  .deliverables::after{
    right: -260px;
    top: -30px;
    width: 440px;
    height: 440px;
    opacity: .85;
  }
}


/* =========================
   Items：背景図形（左右）
   ========================= */
.section--items{
  position: relative;
  overflow: hidden;

  background-image:
    url("https://blancnoir.co.jp/free-audit/assets/img/bg-section-04-left.svg"),
    url("https://blancnoir.co.jp/free-audit/assets/img/bg-section-04-right.svg");
  background-repeat: no-repeat, no-repeat;

  background-size:
    clamp(160px, 18vw, 340px),
    clamp(160px, 18vw, 340px);

  background-position: left 10px top 0px, right -120px bottom 390px;
}

.section--items > .container{
  position: relative;
  z-index: 1;
}

@media (max-width: 768px){
  .section--items{
    background-size: 180px, 180px;
    background-position: left -120px top 20px, right -120px bottom 10px;
  }
}

/* ===== FAQ 背景 ===== */
.section--faqbg{
  position: relative;
  overflow: hidden;
}

.section--faqbg > .container{
  position: relative;
  z-index: 1;
}

.section--faqbg::before{
  content:"";
  position:absolute;
  left: -100px;
  bottom: 350px;
  width: 320px;
  height: 320px;
  background: url("https://blancnoir.co.jp/free-audit/assets/img/bg-section-08-left.svg") no-repeat left bottom / contain;
  pointer-events:none;
  z-index: 0;
}

.section--faqbg::after{
  content:"";
  position:absolute;
  right: -80px;
  top: 0px;
  width: 280px;
  height: 280px;
  background: url("https://blancnoir.co.jp/free-audit/assets/img/bg-section-08-right.svg") no-repeat right top / contain;
  pointer-events:none;
  z-index: 0;
}

@media (max-width: 768px){
  .section--faqbg::before{ left: -260px; width: 360px; height: 360px; opacity:.65; }
  .section--faqbg::after{ right:-260px; width: 360px; height: 360px; opacity:.65; }
}

/* ===== CTA：光を「青枠（全体）」から走らせる版 ===== */
.kv-cta{
  position: relative;
  overflow: hidden;              /* 光をCTA内に収める */
  isolation: isolate;            /* 重なりの事故防止 */
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease;
}

.kv-cta:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0,0,0,.20);
}

/* 光（CTA全体に乗せる） */
.kv-cta::after{
  content:"";
  position:absolute;
  top:-30%;
  left:-60%;
  width: 40%;
  height: 160%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 45%,
    rgba(255,255,255,.45) 50%,
    rgba(255,255,255,.18) 55%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-12deg);
  opacity: 0;
  pointer-events:none;
  z-index: 3;                   /* コンテンツより上 */
  mix-blend-mode: screen;       /* 白い光っぽく */
}

/* hover で左（青枠端）→右へ */
.kv-cta:hover::after{
  opacity: 1;
  animation: kvCtaShine .75s ease;
}

@keyframes kvCtaShine{
  from{ left:-60%; }
  to  { left:120%; }
}

/* CTAの中身は光より下に */
.kv-cta__left,
.kv-cta__right{
  position: relative;
  z-index: 2;
}

/* 右側だけ少し明るく（任意：やりすぎ防止） */
.kv-cta:hover .kv-cta__right{
  filter: brightness(1);
}

/* 矢印も少し動かす */
.kv-cta__arrow{
  display:inline-block;
  transition: transform .22s ease;
}
.kv-cta:hover .kv-cta__arrow{
  transform: translateX(6px);
}

/* キーボードでも */
.kv-cta:focus-visible{
  outline: 3px solid rgba(201,161,74,.65);
  outline-offset: 4px;
  border-radius: 28px;
}
.kv-cta:focus-visible::after{
  opacity: 1;
  animation: kvCtaShine .75s ease;
}

/* 動きを減らす */
@media (prefers-reduced-motion: reduce){
  .kv-cta,
  .kv-cta__arrow{ transition:none; }
  .kv-cta:hover{ transform:none; }
  .kv-cta:hover::after{
    animation:none;
    left:120%;
  }
}

/* ===== プライバシーポリシーリンク ===== */
.form-note{
  margin: 12px 0 0;
  font-family: var(--font-gothic);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(17,17,17,.75);
  text-align: center;
}
.form-note a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}