@charset "utf-8";
/* ============================================================
   ccus.css ― page-ccus.php（CCUS申請代行LP）専用の追加スタイル
   ・共通パーツは top-add.css の .lp コンポーネントを流用
   ・ここではCCUS独自パーツ（料金3枚カード／実費テーブル／
     モデルケース）だけを .lp スコープで定義する
   ・1rem=10px (html font-size:62.5%) を前提
   ・カラー変数は top-add.css の :root を利用
   ============================================================ */

/* ============================================================
   セクション背景の割り当て
   このLPは top-add.css のセクションを流用しているため、
   そのままだとティール背景が連続して重くなる。
   明→暗が交互になるよう .lp-ccus スコープで背景だけ上書きする。
   （順序：hero teal / worries teal / reasons 白 / timesave teal /
     price 白 / case 生成り / 実費 白 / 必要書類 生成り /
     flow 白 / faq 生成り / 月額導線 teal / fcta teal）
   ============================================================ */
.lp-ccus .lp-cost{background:var(--paper-2);}
.lp-ccus .lp-flow{background:var(--paper);}
.lp-ccus .lp-faq{background:var(--paper-2);}

/* ---- REASON をティールから白基調へ ---- */
.lp-ccus .lp-reasons{background:var(--paper);color:var(--ink);}
.lp-ccus .lp-reasons .sec-title{color:var(--ink);}
.lp-ccus .lp-reasons .eyebrow{color:var(--teal);}
.lp-ccus .lp-reasons .r-card{
  background:var(--paper);
  border:1px solid var(--hair);
  box-shadow:var(--shadow);
}
.lp-ccus .lp-reasons .r-card .rn{color:var(--hair-teal);}
.lp-ccus .lp-reasons .r-card .ri{background:var(--teal-soft);}
.lp-ccus .lp-reasons .r-card .ri svg{fill:var(--teal-d);}
.lp-ccus .lp-reasons .r-card h3{color:var(--ink);}
.lp-ccus .lp-reasons .r-card h3 .hl{
  background:linear-gradient(transparent 60%,rgba(28,190,161,.28) 60%);
  color:var(--ink);
  border-radius:0;
}
.lp-ccus .lp-reasons .r-card p{color:var(--gray);}

/* ---- 料金3枚カード ---- */
.lp .ccus-plans{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:stretch;
  margin-bottom:56px;
}
.lp .ccus-plan{
  position:relative;
  background:var(--paper);
  border:2px solid var(--hair);
  border-radius:20px;
  padding:32px 26px 30px;
  text-align:center;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}
.lp .ccus-plan.is-reco{
  border-color:var(--teal);
  background:linear-gradient(180deg,var(--teal-tint),#fff 42%);
  box-shadow:var(--shadow-h);
}
.lp .cp-ribbon{
  position:absolute;top:-15px;left:50%;transform:translateX(-50%);
  background:var(--accent);color:#fff;
  font-size:1.3rem;font-weight:700;letter-spacing:.06em;
  padding:5px 20px;border-radius:999px;white-space:nowrap;
  box-shadow:0 4px 12px rgba(245,130,31,.32);
}
.lp .cp-head{
  font-family:'Montserrat',"Noto Sans JP",sans-serif;
  font-weight:700;
  font-size:2.1rem;
  color:var(--teal-dd);
  margin-bottom:6px;
}
.lp .cp-target{
  font-size:1.3rem;
  color:var(--gray);
  line-height:1.7;
  margin-bottom:18px;
  min-height:4.4rem;
}
.lp .cp-price{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  line-height:1;
  color:var(--ink);
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:2px;
}
.lp .cp-price .n{font-size:clamp(4.4rem,7vw,5.6rem);letter-spacing:-.01em;}
.lp .cp-price .y{font-size:2.2rem;}
.lp .cp-price .u2{font-size:1.6rem;color:var(--gray);margin-left:4px;}
.lp .cp-tax{font-size:1.3rem;color:var(--gray-l);margin-top:6px;}
.lp .cp-off{
  display:inline-block;
  margin:12px auto 0;
  background:#fff3e6;
  border:1px solid #f8cfa4;
  color:#c25c00;
  font-size:1.35rem;
  padding:6px 14px;
  border-radius:999px;
}
.lp .cp-off b{font-weight:700;}
.lp .cp-list{
  margin-top:22px;
  padding-top:20px;
  border-top:1px dashed var(--hair);
  text-align:left;
}
.lp .cp-list li{
  position:relative;
  padding-left:24px;
  font-size:1.45rem;
  line-height:1.85;
  color:var(--ink-2);
  margin-bottom:6px;
}
.lp .cp-list li::before{
  content:"";
  position:absolute;left:0;top:.72em;
  width:14px;height:8px;
  border-left:2px solid var(--teal);
  border-bottom:2px solid var(--teal);
  transform:rotate(-45deg);
}

/* ---- 小見出し ---- */
.lp .ccus-subhead{
  font-family:'Montserrat',"Noto Sans JP",sans-serif;
  font-weight:700;
  font-size:2rem;
  color:var(--ink);
  text-align:center;
  margin-bottom:8px;
  padding-top:8px;
}
.lp .ccus-note-lead{
  text-align:center;
  font-size:1.4rem;
  color:var(--gray);
  line-height:1.85;
  margin-bottom:20px;
}

/* ---- 各種手続き（小さい料金リスト） ---- */
.lp .ccus-mini{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:22px 0 16px;
}
.lp .cm{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:var(--paper);
  border:1px solid var(--hair);
  border-radius:12px;
  padding:16px 20px;
}
.lp .cm-t{font-size:1.5rem;color:var(--ink-2);line-height:1.6;}
.lp .cm-p{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:2rem;
  color:var(--teal-dd);
  white-space:nowrap;
  text-align:right;
  line-height:1.25;
}
.lp .cm-p small{
  display:block;
  font-family:"Noto Sans JP",sans-serif;
  font-weight:400;
  font-size:1.15rem;
  color:var(--gray-l);
}
.lp .ccus-cta{text-align:center;margin-top:34px;}

/* ---- モデルケース ---- */
.lp .ccus-cases{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.lp .cc{
  background:var(--paper);
  border:1px solid var(--hair);
  border-radius:16px;
  padding:26px 20px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}
.lp .cc-n{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:1.2rem;
  letter-spacing:.12em;
  color:var(--teal);
  margin-bottom:8px;
}
.lp .cc h4{
  font-size:1.7rem;
  font-weight:700;
  line-height:1.5;
  color:var(--ink);
  margin-bottom:8px;
}
.lp .cc-cond{
  font-size:1.3rem;
  color:var(--gray);
  line-height:1.7;
  margin-bottom:14px;
  flex:1 0 auto;
}
.lp .cc-sum{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:3rem;
  line-height:1.15;
  color:var(--teal-dd);
  border-top:1px dashed var(--hair);
  padding-top:14px;
}
.lp .cc-sum small{
  display:block;
  font-family:"Noto Sans JP",sans-serif;
  font-weight:400;
  font-size:1.2rem;
  color:var(--gray-l);
}
.lp .cc-bd{
  font-size:1.25rem;
  color:var(--gray);
  line-height:1.7;
  margin-top:8px;
}

/* ---- 実費テーブル ---- */
.lp .ccus-fee-box{
  background:var(--paper);
  border:1px solid var(--hair);
  border-radius:20px;
  padding:38px 34px 30px;
  box-shadow:var(--shadow);
}
.lp .ccus-fee-box .ccus-subhead{margin-top:34px;}
.lp .ccus-fee-box .ccus-subhead:first-child{margin-top:0;}
.lp .ccus-table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  margin-bottom:6px;
}
.lp .ccus-table{
  width:100%;
  border-collapse:collapse;
  font-size:1.45rem;
  min-width:400px;
}
.lp .ccus-table th,
.lp .ccus-table td{
  border:1px solid var(--hair);
  padding:12px 16px;
  line-height:1.6;
  text-align:left;
}
.lp .ccus-table thead th{
  background:var(--teal-soft);
  color:var(--teal-dd);
  font-weight:700;
  font-size:1.4rem;
  white-space:nowrap;
}
.lp .ccus-table thead th:last-child{text-align:right;}
.lp .ccus-table tbody tr:nth-child(even) td{background:var(--paper-2);}
.lp .ccus-table td.num{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  text-align:right;
  white-space:nowrap;
  color:var(--ink);
}

/* ---- 必要書類（2枚のときは中央寄せ） ---- */
.lp .ccus-docs{grid-template-columns:repeat(2,1fr);max-width:860px;margin-left:auto;margin-right:auto;}

/* ---- TIME SAVE：4枚を1行に ---- */
.lp-ccus .ts-cards{grid-template-columns:repeat(4,1fr);max-width:880px;}

/* ---- 月額プラン導線（ティール背景セクション）の調整 ---- */
.lp-ccus .lp-extras .sec-lead{color:#eafaf6;}
.lp-ccus .extra-box{text-align:center;}
.lp-ccus .extra-box p{max-width:760px;margin:0 auto;}
.lp-ccus .extra-tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  max-width:760px;
  margin:18px auto 0;
}
.lp-ccus .extra-tags span{
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.3);
  border-radius:999px;
  padding:6px 16px;
  font-size:1.35rem;
  color:#fff;
  line-height:1.6;
}

/* ---- 月額プラン導線 ---- */
.lp .ccus-linkline{text-align:center;margin-top:24px;}
.lp .btn-ghost-teal{
  border-color:var(--teal);
  color:var(--teal-dd);
  background:#fff;
}
.lp .btn-ghost-teal:hover{background:var(--teal);color:#fff;}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media screen and (max-width:900px){
  .lp-ccus .ts-cards{grid-template-columns:repeat(2,1fr);max-width:460px;}
  .lp .ccus-plans{grid-template-columns:1fr;max-width:460px;margin-left:auto;margin-right:auto;gap:26px;}
  .lp .cp-target{min-height:0;}
  .lp .ccus-cases{grid-template-columns:repeat(2,1fr);}
  .lp .ccus-docs{grid-template-columns:1fr;max-width:460px;}
}
@media screen and (max-width:680px){
  .lp .ccus-mini{grid-template-columns:1fr;}
  .lp .ccus-cases{grid-template-columns:1fr;}
  .lp .ccus-fee-box{padding:24px 14px 20px;border-radius:16px;}
  .lp .cm{padding:14px 16px;}
  .lp .cm-t{font-size:1.4rem;}
  /* 横スクロールさせず、画面内に金額まで収める */
  .lp .ccus-table{min-width:0;font-size:1.25rem;}
  .lp .ccus-table th,
  .lp .ccus-table td{padding:9px 8px;}
  .lp .ccus-table thead th{white-space:normal;font-size:1.2rem;}
}
