@charset "UTF-8";
/* =========================================================
   業者向けTOP（/partner/）専用CSS
   ・既存CSSは編集せず、tokens.css の変数と components/layout の
     既存クラス(.mk-btn 等)を利用。足りない分だけここに追加。
   ・PC/SP は1ファイルでレスポンシブ。数値は Figma(233:1519/233:1922)準拠。
   ========================================================= */

/* ---- ページ土台 ---- */
.pt {
  font-family: var(--mk-font);
  color: var(--mk-black);
  line-height: 1.7;
  background: var(--mk-white);
}
.pt * { box-sizing: border-box; }
.pt img { max-width: 100%; }

/* 中央寄せコンテナ：Figmaの本文幅1040px＋左右ガター */
.pt-inner { width: min(1040px, 100% - 48px); margin-inline: auto; }
.pt-inner--wide { width: min(1240px, 100% - 48px); margin-inline: auto; }

/* セクション共通 */
.pt-section { padding: var(--mk-space-8) 0; }              /* 80px */
.pt-title {
  font-family: "Zen Kaku Gothic New", var(--mk-font);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.4;
  text-align: center;
  color: var(--mk-black);
  margin: 0 0 var(--mk-space-7);                           /* 48px */
}

/* ロゴを含む見出し（「見つける君」ロゴ＋テキスト）用 */
.pt-logo-inline { height: 48px; width: auto; vertical-align: middle; }

/* =========================================================
   ヘッダー
   ========================================================= */
.pt-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--mk-white);
  height: 96px;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--mk-space-5);
  padding: var(--mk-space-5) var(--mk-space-4) var(--mk-space-5) var(--mk-space-6); /* 16 / 12 / 16 / 32 */
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.pt-header__logo { height: 48px; width: 240px; max-width: 46vw; }
.pt-header__logo img { height: 100%; width: auto; object-fit: contain; }
.pt-nav { display: flex; flex-wrap: wrap; gap: var(--mk-space-2) var(--mk-space-2); justify-content: flex-end; }
.pt-nav a {
  display: inline-flex; align-items: center; height: 40px; padding: var(--mk-space-1) var(--mk-space-2);
  font-weight: 700; font-size: var(--mk-text-lg-size); line-height: var(--mk-text-lg-lh);
  color: var(--mk-black); text-decoration: none; white-space: nowrap;
}
.pt-nav a:hover { color: var(--mk-orange-hover); }
.pt-header__actions { display: flex; align-items: center; gap: var(--mk-space-5); }
.pt-header__divider { width: 1px; height: 36px; background: var(--mk-gray); }
/* ハンバーガー／ドロワー（既定は非表示。1240px以下で有効化） */
.pt-navtoggle { display: none; }
.pt-header__toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; cursor: pointer; flex: none; }
.pt-header__toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--mk-black); transition: transform .25s ease, opacity .2s ease; }
.pt-drawer { display: none; }
.pt-drawer__overlay { display: none; }
.pt-navtoggle:checked ~ .pt-header__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pt-navtoggle:checked ~ .pt-header__toggle span:nth-child(2) { opacity: 0; }
.pt-navtoggle:checked ~ .pt-header__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.pt-navtoggle:checked ~ .pt-drawer { transform: translateX(0); }
.pt-navtoggle:checked ~ .pt-drawer__overlay { opacity: 1; visibility: visible; }

/* =========================================================
   FV（ヒーロー）
   ========================================================= */
.pt-fv { background: var(--mk-logo-blue); padding: 120px 0 var(--mk-space-8); overflow: hidden; }
.pt-fv__inner {
  width: min(1240px, 100% - 48px); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,560px);
  align-items: center; gap: var(--mk-space-7);
}
.pt-fv__body { display: flex; flex-direction: column; gap: var(--mk-space-7); } /* 48 */
.pt-fv__copy { display: flex; flex-direction: column; gap: 24px; }
.pt-fv__lead { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; line-height: 1.4; margin: 0; }
.pt-fv__h {
  font-family: "Zen Kaku Gothic New", var(--mk-font); font-weight: 900;
  font-size: 72px; line-height: 80px; margin: 0; color: var(--mk-black); white-space: nowrap;
}
.pt-fv__hline { display: inline-flex; align-items: center; gap: var(--mk-space-4); }
.pt-fv__hbox {
  background: var(--mk-white); color: var(--mk-orange);
  border-radius: var(--mk-space-2); padding: var(--mk-space-2) var(--mk-space-6);
  line-height: 80px; white-space: nowrap;
}
.pt-fv__desc { font-weight: 500; font-size: var(--mk-text-lg-size); line-height: 24px; max-width: 560px; margin: 0; }

.pt-chips { display: grid; grid-template-columns: repeat(2, max-content); gap: var(--mk-space-5); }
.pt-chip { display: inline-flex; align-items: center; gap: var(--mk-space-2); font-weight: 700; font-size: 24px; white-space: nowrap; }
.pt-chip__ico { width: 32px; height: 32px; flex: none; }

.pt-fv__cta { display: flex; flex-wrap: wrap; gap: var(--mk-space-6); }

/* FVメディア（画像＋スマホモック） */
.pt-fv__media { position: relative; min-height: 392px; }
.pt-fv__photo {
  width: 536px; max-width: 100%; height: 392px; object-fit: cover;
  border: 2px solid var(--mk-black); border-right: none;
  border-radius: 40px 0 0 40px;
}
.pt-fv__phone { position: absolute; left: 0; bottom: -80px; width: 200px; height: auto; }

/* =========================================================
   issue：こんな課題、ありませんか？（FVと同じ logo-blue 背景）
   ========================================================= */
.pt-issue { background: var(--mk-logo-blue); padding: 40px 0; }
.pt-issue__head { display: flex; align-items: center; justify-content: center; gap: var(--mk-space-6); }
.pt-issue__parts { height: 184px; width: auto; flex: none; }
.pt-issue__title { text-align: center; }
.pt-issue__title-sub { font-weight: 700; font-size: var(--mk-text-lg-size); line-height: var(--mk-text-lg-lh); margin: 0; }
.pt-issue__title-main { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; margin: 0; }
.pt-issue__cards { display: flex; gap: var(--mk-space-5); justify-content: center; margin-top: var(--mk-space-6); flex-wrap: wrap; }
.pt-issue__card {
  background: var(--mk-white); border: 2px solid var(--mk-black);
  border-radius: 24px 56px 24px 8px;
  padding: var(--mk-space-5) var(--mk-space-6) var(--mk-space-6);
  width: 336px; max-width: 100%;
  display: flex; flex-direction: column; gap: var(--mk-space-5);
}
.pt-issue__num { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; color: var(--mk-blue); line-height: 1; }
.pt-issue__num::after { content: ""; display: block; width: 32px; height: 2px; background: var(--mk-black); margin-top: var(--mk-space-1); }
.pt-issue__ctitle { font-weight: 700; font-size: 24px; margin: 0 0 var(--mk-space-2); }
.pt-issue__ctext { font-weight: 400; font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: 0; }

/* =========================================================
   service：見つける君が、その課題を解決します（ivory背景）
   ========================================================= */
.pt-service { background: var(--mk-ivory); padding: var(--mk-space-6) 0 120px; }
.pt-service__head { text-align: center; }
.pt-service__title { display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--mk-space-1); font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; margin: 0; }
.pt-service__title img { height: 48px; width: auto; }
.pt-service__lead { font-weight: 700; font-size: var(--mk-text-lg-size); line-height: var(--mk-text-lg-lh); margin: var(--mk-space-6) 0 0; }
.pt-service__card { position: relative; background: var(--mk-white); border: 2px solid var(--mk-black); border-radius: 24px; padding: var(--mk-space-8) var(--mk-space-8) var(--mk-space-7); margin-top: var(--mk-space-8); }
.pt-service__label { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); background: var(--mk-black); color: var(--mk-white); border-radius: 24px; padding: var(--mk-space-2) 72px; font-weight: 700; font-size: 24px; white-space: nowrap; }
.pt-service__diagram { display: block; width: 720px; max-width: 100%; height: auto; margin: 0 auto; }

/* =========================================================
   feature：主な機能（ivory背景・serviceから連続）
   ========================================================= */
.pt-feature { background: var(--mk-ivory); padding: var(--mk-space-8) 0; }
.pt-feature__head { border-bottom: 2px solid var(--mk-black); padding-bottom: var(--mk-space-5); margin-bottom: var(--mk-space-8); }
.pt-feature__title { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; margin: 0; }
.pt-feat-row { position: relative; display: grid; grid-template-columns: 480px minmax(0,1fr); gap: var(--mk-space-8); align-items: end; margin-bottom: 96px; }
.pt-feat-row--rev { grid-template-columns: minmax(0,1fr) 480px; }
.pt-feat-img { height: 320px; background: #d9d9d9; border-radius: var(--mk-radius); width: 100%; position: relative; z-index: 1; overflow: hidden; }
.pt-feat-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.pt-feat-num { position: absolute; top: -84px; font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 240px; line-height: 1; color: var(--mk-light-blue); z-index: 0; pointer-events: none; }
.pt-feat-row .pt-feat-num { right: 16%; }
.pt-feat-row--rev .pt-feat-num { left: 0; }
.pt-feat-text { position: relative; z-index: 1; max-width: 447px; display: flex; flex-direction: column; gap: var(--mk-space-7); align-self: center; }
.pt-feat-head { display: flex; align-items: center; gap: var(--mk-space-2); }
.pt-feat-head img { height: 25px; width: auto; }
.pt-feat-head span { font-weight: 700; font-size: 24px; color: var(--mk-blue); }
.pt-feat-desc { font-weight: 400; font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: 0; }
.pt-feat-mini { display: flex; gap: var(--mk-space-5); flex-wrap: wrap; justify-content: center; }
.pt-feat-mcard { background: var(--mk-white); border: 1px solid var(--mk-black); border-radius: var(--mk-space-2); width: 336px; max-width: 100%; padding: var(--mk-space-5); }
.pt-feat-mcard__head { display: flex; align-items: center; gap: var(--mk-space-2); margin-bottom: var(--mk-space-2); }
.pt-feat-mcard__head img { height: 24px; width: auto; }
.pt-feat-mcard__head span { font-weight: 700; font-size: 24px; color: var(--mk-blue); }
.pt-feat-mcard p { font-weight: 400; font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: 0; }

/* =========================================================
   plan：見つける君で最適化（blue背景）
   ========================================================= */
.pt-plan { background: var(--mk-blue); color: var(--mk-white); padding: 104px 0; }
.pt-plan__head { display: flex; align-items: center; justify-content: center; gap: var(--mk-space-1); flex-wrap: wrap; margin-bottom: 64px; }
.pt-plan__head img { height: 48px; width: auto; }
.pt-plan__head span { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; color: var(--mk-white); }
.pt-plan__benefits { display: flex; gap: 72px; justify-content: center; flex-wrap: wrap; }
.pt-plan__benefit { width: 240px; display: flex; flex-direction: column; align-items: center; gap: var(--mk-space-6); text-align: center; }
.pt-plan__bicon { width: 200px; height: 200px; border-radius: 100px; background: var(--mk-ivory); display: flex; align-items: center; justify-content: center; }
.pt-plan__bicon img { width: 160px; height: 160px; object-fit: contain; }
.pt-plan__btitle { font-weight: 700; font-size: 24px; margin: 0; }
.pt-plan__btext { font-weight: 400; font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: 0; }
.pt-plan__price-head { text-align: center; margin: 120px 0 var(--mk-space-7); }
.pt-plan__price-title { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; margin: 0 0 var(--mk-space-6); }
.pt-plan__price-lead { font-weight: 700; font-size: var(--mk-text-lg-size); line-height: var(--mk-text-lg-lh); margin: 0; }
.pt-price-card { background: var(--mk-white); border: 2px solid var(--mk-black); border-radius: 16px; box-shadow: 8px 8px 0 var(--mk-black); padding: 48px 80px; color: var(--mk-black); }
.pt-price-fee { position: relative; background: #FFF0DA; border-radius: 16px; padding: 40px 80px 24px; margin-top: 20px; text-align: center; }
.pt-price-badge { position: absolute; top: -25px; left: 50%; transform: translateX(-50%); background: var(--mk-orange); color: var(--mk-white); border-radius: var(--mk-radius); padding: 2px 40px; font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; white-space: nowrap; }
.pt-price-fee__row { display: flex; align-items: flex-end; justify-content: center; gap: var(--mk-space-3); flex-wrap: wrap; }
.pt-price-fee__label { font-weight: 700; font-size: 24px; text-align: left; line-height: 1.3; }
.pt-price-fee__amt { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 900; font-size: 100px; line-height: 1; }
.pt-price-fee__unit { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 40px; }
.pt-price-fee__note { font-weight: 400; font-size: var(--mk-text-md-size); margin: var(--mk-space-4) 0 0; }
.pt-price-free { display: flex; align-items: center; justify-content: center; gap: var(--mk-space-3); flex-wrap: wrap; margin-top: var(--mk-space-6); }
.pt-price-free__chips { display: flex; flex-wrap: wrap; gap: var(--mk-space-2); justify-content: center; align-items: center; }
.pt-chip-blue { background: var(--mk-light-blue); color: var(--mk-blue); border-radius: 32px; padding: var(--mk-space-2) var(--mk-space-6); font-weight: 700; font-size: 24px; white-space: nowrap; }
.pt-price-free__etc { font-weight: 700; font-size: 24px; color: var(--mk-black); }
.pt-price-free__amt { display: inline-flex; align-items: baseline; white-space: nowrap; }
.pt-price-fee__amtwrap { display: inline-flex; align-items: baseline; white-space: nowrap; }
.pt-price-free__zero { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 900; font-size: 72px; line-height: 1; color: var(--mk-black); }
.pt-price-free__yen { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 40px; color: var(--mk-black); }
.pt-campaign { position: relative; background: var(--mk-white); border-radius: 16px; padding: 40px 80px; color: var(--mk-black); margin-top: 64px; }
.pt-campaign__badge { position: absolute; top: -42px; left: 40px; width: 120px; height: 120px; border-radius: 80px; background: var(--mk-orange); border: 8px solid var(--mk-ivory); display: flex; align-items: center; justify-content: center; color: var(--mk-white); font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 26px; }
.pt-campaign__name { text-align: center; font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; color: var(--mk-blue); margin: 0; padding: var(--mk-space-2) 0; border-top: 2px solid var(--mk-black); border-bottom: 2px solid var(--mk-black); }
.pt-campaign__lead { font-weight: 700; font-size: 24px; margin: var(--mk-space-6) 0 var(--mk-space-4); }
.pt-campaign__text { font-weight: 400; font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: 0; }

/* =========================================================
   flow：ご利用はカンタン3ステップ（light-blue背景）
   ========================================================= */
.pt-flow { background: var(--mk-light-blue); padding: var(--mk-space-8) 0; }
.pt-flow__title { display: flex; align-items: flex-end; justify-content: center; gap: var(--mk-space-1); font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; margin: 0 0 var(--mk-space-8); }
.pt-flow__title .t { font-size: 32px; }
.pt-flow__title .n { font-size: 72px; line-height: 1; color: var(--mk-orange); }
.pt-flow__card { background: var(--mk-white); border-radius: 24px; padding: 48px 40px; }
.pt-flow__steps { display: flex; gap: var(--mk-space-6); align-items: center; justify-content: center; flex-wrap: wrap; }
.pt-flow__step { width: 240px; display: flex; flex-direction: column; align-items: center; gap: var(--mk-space-2); text-align: center; }
.pt-flow__badge { background: var(--mk-orange); color: var(--mk-white); border-radius: 16px; padding: var(--mk-space-1) var(--mk-space-6); font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: var(--mk-text-md-size); }
.pt-flow__stitle { font-weight: 700; font-size: var(--mk-text-lg-size); line-height: var(--mk-text-lg-lh); margin: 0; }
.pt-flow__phone { width: 159px; height: auto; display: block; }
.pt-flow__stext { font-weight: 400; font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: 0; }
.pt-flow__arrow { width: 20px; height: 45px; flex: none; background: var(--mk-orange); -webkit-mask: var(--mk-icon-chevron-right) no-repeat center / contain; mask: var(--mk-icon-chevron-right) no-repeat center / contain; }

/* =========================================================
   voice：お客様の声（light-blue背景・下160pxは白）
   ========================================================= */
.pt-voice { background: var(--mk-light-blue); padding: var(--mk-space-8) 0; position: relative; }
.pt-voice::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 160px; background: var(--mk-white); z-index: 0; }
.pt-voice__inner { position: relative; z-index: 1; }
.pt-voice__head { margin-bottom: var(--mk-space-8); }
.pt-voice__title { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; margin: 0; line-height: 1.4; }
.pt-voice__sub { font-weight: 400; font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: var(--mk-space-5) 0 0; }
.pt-voice__cards { display: flex; gap: var(--mk-space-6); flex-wrap: wrap; justify-content: center; }
.pt-voice__card { background: var(--mk-white); border: 2px solid var(--mk-black); box-shadow: 8px 8px 0 var(--mk-black); border-radius: 16px; padding: var(--mk-space-6); width: 320px; max-width: 100%; display: flex; flex-direction: column; gap: var(--mk-space-5); }
.pt-voice__profile { display: flex; gap: var(--mk-space-6); align-items: center; }
.pt-voice__avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex: none; }
.pt-voice__name { font-weight: 700; font-size: var(--mk-text-lg-size); line-height: var(--mk-text-lg-lh); margin: 0 0 var(--mk-space-2); }
.pt-voice__meta { display: flex; gap: var(--mk-space-2); align-items: center; }
.pt-voice__region { background: var(--mk-light-blue); color: var(--mk-blue); font-size: var(--mk-text-sm-size); padding: 0 var(--mk-space-5); height: 24px; display: flex; align-items: center; }
.pt-voice__staff { font-size: var(--mk-text-md-size); }
.pt-voice__stars { color: var(--mk-orange); font-size: 20px; letter-spacing: 2px; line-height: 1; }
.pt-voice__text { font-weight: 400; font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: 0; }

/* =========================================================
   faq：よくあるご質問（白背景・アコーディオン）
   ========================================================= */
.pt-faq { background: var(--mk-white); padding: var(--mk-space-7) 0 120px; }
.pt-faq__inner { width: min(680px, 100% - 48px); margin-inline: auto; }
.pt-faq__title { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; margin: 0 0 var(--mk-space-7); }
.pt-faq__list { display: flex; flex-direction: column; gap: var(--mk-space-6); }
.pt-faq__item { background: var(--mk-ivory); border: 2px solid var(--mk-black); border-radius: var(--mk-space-2); padding: var(--mk-space-6); }
.pt-faq__q { list-style: none; cursor: pointer; display: flex; align-items: center; gap: var(--mk-space-6); }
.pt-faq__q::-webkit-details-marker { display: none; }
.pt-faq__qmark { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 24px; }
.pt-faq__qtext { flex: 1; font-weight: 700; font-size: var(--mk-text-lg-size); line-height: var(--mk-text-lg-lh); }
.pt-faq__toggle { width: 19px; height: 19px; flex: none; position: relative; }
.pt-faq__toggle::before, .pt-faq__toggle::after { content: ""; position: absolute; background: var(--mk-black); }
.pt-faq__toggle::before { left: 0; right: 0; top: 50%; height: 3px; transform: translateY(-50%); }
.pt-faq__toggle::after { top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); }
.pt-faq__item[open] .pt-faq__toggle::after { display: none; }
.pt-faq__a { font-weight: 400; font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: var(--mk-space-5) 0 0; }

/* =========================================================
   cta-form：無料会員登録フォーム（ivory→logo-blueグラデ）
   ========================================================= */
.pt-cta { background: linear-gradient(190deg, var(--mk-ivory) 6%, var(--mk-logo-blue) 93%); padding: var(--mk-space-8) 0; }
.pt-cta__inner { display: flex; flex-direction: column; align-items: center; gap: var(--mk-space-7); }
.pt-cta__head { display: flex; align-items: center; justify-content: center; gap: var(--mk-space-6); flex-wrap: wrap; }
.pt-cta__htext { max-width: 448px; }
.pt-cta__title { font-family: "Zen Maru Gothic", var(--mk-font); font-weight: 700; font-size: 32px; margin: 0 0 var(--mk-space-6); }
.pt-cta__lead { font-weight: 700; font-size: var(--mk-text-lg-size); line-height: var(--mk-text-lg-lh); margin: 0; }
.pt-cta__deco { width: 160px; height: auto; flex: none; }
.pt-cta__card { background: var(--mk-ivory); border: 2px solid var(--mk-black); border-radius: 16px; padding: var(--mk-space-6); width: min(560px, 100%); }
.pt-cta__form-title { font-weight: 700; font-size: 24px; text-align: center; margin: 0 0 var(--mk-space-6); }
.pt-form { display: flex; flex-direction: column; gap: var(--mk-space-6); }
.pt-form__row { display: flex; gap: var(--mk-space-5); }
.pt-form__row > * { flex: 1; min-width: 0; }
.pt-field { display: flex; flex-direction: column; gap: var(--mk-space-2); }
.pt-field__label { font-size: var(--mk-text-sm-size); }
.pt-field input, .pt-field select, .pt-field textarea { width: 100%; background: var(--mk-white); border: 1px solid var(--mk-gray); border-radius: var(--mk-radius); padding: var(--mk-space-4) var(--mk-space-5); font-size: var(--mk-text-md-size); font-family: var(--mk-font); color: var(--mk-black); box-sizing: border-box; }
.pt-field textarea { min-height: 104px; resize: vertical; line-height: var(--mk-text-md-lh); }
.pt-field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.pt-field__label .pt-req { margin-left: var(--mk-space-2); color: var(--mk-orange); font-size: var(--mk-text-sm-size); font-weight: 700; }
.pt-agree { display: flex; align-items: flex-start; gap: var(--mk-space-2); font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); cursor: pointer; }
.pt-agree input { width: 16px; height: 16px; margin-top: 3px; flex: none; accent-color: var(--mk-blue); }
.pt-link { color: var(--mk-blue); text-decoration: underline; }
.pt-cta__submit.mk-btn { width: 100%; }

/* =========================================================
   footer（白背景）
   ========================================================= */
.pt-footer { background: var(--mk-white); padding: var(--mk-space-8) 0; border-top: 1px solid #eee; }
.pt-footer__inner { display: flex; gap: var(--mk-space-8); justify-content: space-between; align-items: flex-start; flex-wrap: wrap; }
.pt-footer__brand { display: flex; flex-direction: column; gap: var(--mk-space-7); max-width: 440px; }
.pt-footer__logo { width: 336px; max-width: 100%; height: auto; }
.pt-footer__tagline { font-size: var(--mk-text-md-size); line-height: var(--mk-text-md-lh); margin: var(--mk-space-5) 0 0; }
.pt-footer__copy { font-size: var(--mk-text-sm-size); color: var(--mk-gray); margin: 0; }
.pt-footer__nav { display: flex; flex-direction: column; gap: var(--mk-space-6); align-items: flex-end; }
.pt-footer__main { display: flex; flex-wrap: wrap; gap: var(--mk-space-2) var(--mk-space-5); justify-content: flex-end; }
.pt-footer__main a { font-weight: 700; font-size: var(--mk-text-lg-size); color: var(--mk-black); text-decoration: none; white-space: nowrap; }
.pt-footer__sub { display: flex; flex-wrap: wrap; gap: var(--mk-space-2) var(--mk-space-5); justify-content: flex-end; }
.pt-footer__sub a { font-size: var(--mk-text-md-size); color: var(--mk-black); text-decoration: none; white-space: nowrap; }
.pt-footer a:hover { color: var(--mk-orange-hover); }

/* round：blue→white の白いカーブ区切り */
.pt-curve { height: 80px; background: var(--mk-logo-blue); position: relative; overflow: hidden; }
.pt-curve::before { content: ""; position: absolute; left: -10%; right: -10%; bottom: 0; height: 160px; background: var(--mk-white); border-radius: 50% 50% 0 0; }

/* =========================================================
   レスポンシブ（ヘッダー：〜1400px）
   ・ナビ（〜「よくあるご質問」）が折り返し始める幅でハンバーガー化
   ========================================================= */
@media (max-width: 1400px) {
  .pt-header { height: 64px; padding: var(--mk-space-2) var(--mk-space-5); }
  .pt-header__logo { width: 200px; }
  .pt-nav { display: none; }
  .pt-header__actions { display: none; }
  .pt-header__toggle { display: flex; }

  .pt-drawer__overlay { display: block; position: fixed; inset: 0; top: 64px; background: rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease; z-index: 55; }
  .pt-drawer { display: flex; flex-direction: column; gap: var(--mk-space-4); position: fixed; top: 64px; right: 0; width: min(320px, 82vw); height: calc(100vh - 64px); background: var(--mk-white); padding: var(--mk-space-6) var(--mk-space-6) var(--mk-space-8); transform: translateX(105%); transition: transform .28s ease; z-index: 60; overflow-y: auto; box-shadow: -10px 0 30px rgba(0,0,0,.14); }
  .pt-drawer > a:not(.mk-btn) { font-weight: 700; font-size: var(--mk-text-lg-size); color: var(--mk-black); text-decoration: none; padding: var(--mk-space-4) var(--mk-space-1); border-bottom: 1px solid #eee; }
  .pt-drawer > a:not(.mk-btn):hover { color: var(--mk-orange-hover); }
  .pt-drawer__cta { margin-top: var(--mk-space-2); }
  .pt-drawer__cta.mk-btn { width: 100%; }
}

/* =========================================================
   レスポンシブ（FV：〜1240px）
   ・2カラムが窮屈になる幅で縦積み＋見出し折返し＋スマホモック非表示（重なり防止）
   ========================================================= */
@media (max-width: 1240px) {
  .pt-fv { padding: var(--mk-space-8) 0 var(--mk-space-8); }
  .pt-fv__inner { grid-template-columns: 1fr; gap: var(--mk-space-6); }
  .pt-fv__h { font-size: clamp(40px, 6vw, 64px); line-height: 1.25; white-space: normal; }
  .pt-fv__hline { flex-wrap: wrap; }                 /* 「向こうから」と「届く。」は行単位で折返し */
  .pt-fv__hline > span { white-space: nowrap; }      /* 各語は途中で割らない */
  .pt-fv__hbox { line-height: 1.3; padding: var(--mk-space-1) var(--mk-space-5); }
  .pt-fv__media { min-height: 0; }
  .pt-fv__photo { width: 100%; height: 360px; object-position: center 15%; border: 2px solid var(--mk-black); border-radius: 32px; }
  .pt-fv__phone { display: none; }
}

/* =========================================================
   レスポンシブ（SP：〜768px）
   ========================================================= */
@media (max-width: 768px) {
  .pt-title { font-size: 26px; margin-bottom: var(--mk-space-6); }

  .pt-header { height: 64px; padding: var(--mk-space-2) var(--mk-space-4); }
  .pt-header__logo { width: 180px; }
  .pt-nav { display: none; }                 /* SPはメニュー非表示（トグル用） */
  .pt-header__actions .pt-header__divider { display: none; }
  .pt-header__actions .mk-btn { padding-inline: var(--mk-space-4); }

  .pt-fv { padding: var(--mk-space-7) 0 var(--mk-space-7); }
  .pt-fv__inner { grid-template-columns: 1fr; gap: var(--mk-space-6); }
  .pt-fv__body { gap: var(--mk-space-6); }
  .pt-fv__lead { font-size: 22px; }
  .pt-fv__h { font-size: 40px; line-height: 1.25; }
  .pt-fv__hbox { line-height: 1.25; padding: var(--mk-space-1) var(--mk-space-4); }
  .pt-fv__hline { gap: var(--mk-space-2); }
  .pt-chips { grid-template-columns: 1fr 1fr; gap: var(--mk-space-3) var(--mk-space-4); }
  .pt-chip { font-size: 16px; }
  .pt-chip__ico { width: 24px; height: 24px; }
  .pt-fv__cta { gap: var(--mk-space-4); }
  .pt-fv__cta .mk-btn { width: 100%; }

  .pt-fv__media { min-height: 0; }
  .pt-fv__photo { width: 100%; height: 220px; border-radius: 24px 0 0 24px; }
  .pt-fv__phone { display: none; }

  .pt-issue__head { gap: var(--mk-space-3); }
  .pt-issue__parts { height: 96px; }
  .pt-issue__title-main { font-size: 24px; }
  .pt-issue__cards { flex-direction: column; align-items: center; }
  .pt-curve::before { height: 100px; }

  .pt-service { padding: var(--mk-space-6) 0 var(--mk-space-8); }
  .pt-service__title { font-size: 22px; }
  .pt-service__title img { height: 36px; }
  .pt-service__card { padding: var(--mk-space-7) var(--mk-space-4) var(--mk-space-5); }
  .pt-service__label { padding: var(--mk-space-2) var(--mk-space-6); font-size: 18px; }

  .pt-feature__title { font-size: 24px; }
  .pt-feat-row, .pt-feat-row--rev { grid-template-columns: 1fr; gap: var(--mk-space-4); margin-bottom: var(--mk-space-8); }
  .pt-feat-num { font-size: 110px; top: -40px; right: 0 !important; left: auto !important; }
  .pt-feat-img { height: 200px; }
  .pt-feat-text { max-width: none; gap: var(--mk-space-4); }
  .pt-feat-mini { flex-direction: column; align-items: center; }

  .pt-plan { padding: var(--mk-space-7) 0; }
  .pt-plan__head span { font-size: 22px; }
  .pt-plan__benefits { gap: var(--mk-space-6); }
  .pt-plan__price-head { margin: var(--mk-space-8) 0 var(--mk-space-6); }
  .pt-plan__price-title { font-size: 24px; }
  .pt-price-card { padding: var(--mk-space-6) var(--mk-space-4); }
  .pt-price-fee { padding: var(--mk-space-7) var(--mk-space-4) var(--mk-space-5); }
  .pt-price-badge { font-size: 22px; }
  .pt-price-fee__amt { font-size: 64px; }
  .pt-price-fee__unit, .pt-price-free__yen { font-size: 28px; }
  .pt-price-free__zero { font-size: 48px; }
  .pt-chip-blue, .pt-price-free__etc, .pt-price-fee__label { font-size: 16px; }
  .pt-campaign { padding: var(--mk-space-6) var(--mk-space-4); margin-top: var(--mk-space-8); }
  .pt-campaign__badge { width: 88px; height: 88px; font-size: 20px; top: -30px; left: var(--mk-space-4); }
  .pt-campaign__name { font-size: 24px; }

  .pt-flow__title .n { font-size: 48px; }
  .pt-flow__title .t { font-size: 22px; }
  .pt-flow__card { padding: var(--mk-space-6) var(--mk-space-4); }
  .pt-flow__steps { flex-direction: column; }
  .pt-flow__arrow { transform: rotate(90deg); }

  .pt-voice__title { font-size: 24px; }
  .pt-voice__cards { flex-direction: column; align-items: center; }

  .pt-faq__title { font-size: 24px; }
  .pt-faq { padding: var(--mk-space-7) 0 var(--mk-space-8); }

  .pt-cta__deco { width: 120px; }
  .pt-cta__title { font-size: 24px; }
  .pt-cta__form-title { font-size: 20px; }
  .pt-form__row { flex-direction: column; gap: var(--mk-space-6); }

  .pt-footer__inner { flex-direction: column; gap: var(--mk-space-7); }
  .pt-footer__nav { align-items: flex-start; }
  .pt-footer__main { justify-content: flex-start; }
  .pt-footer__sub { display: none; }   /* SPは意図的に間引き（サブ4件を非表示） */

  .pt-section { padding: var(--mk-space-7) 0; }
}

/* =========================================================
   実機UIモック（画像の代わりに HTML/CSS で描画）
   ・各枠を container にして cqw基準の font-size で内容をスケール
   ・機能/項目は実データ準拠、体裁は見栄え優先
   ========================================================= */

/* ---- 共通：スマホ筐体（FV / flow 共用） ---- */
.pt-phone { container-type: inline-size; background: #15171c; border-radius: 26px; padding: 5px; box-shadow: 0 14px 30px rgba(0,0,0,.22); }
.pt-phone__scr { height: 100%; border-radius: 21px; overflow: hidden; background: var(--mk-ivory); font-family: var(--mk-font); color: var(--mk-black); font-size: calc(100cqw / 15.5); line-height: 1.35; display: flex; flex-direction: column; }
.pt-phone__sb { display: flex; justify-content: space-between; align-items: center; padding: .5em .9em .1em; font-size: .62em; font-weight: 700; }
.pt-phone__sig { display: inline-flex; gap: .18em; align-items: flex-end; }
.pt-phone__sig i { width: .5em; height: .75em; background: var(--mk-black); opacity: .75; border-radius: 1px; }
.pt-phone__hd { display: flex; justify-content: space-between; align-items: center; padding: .55em .8em; background: var(--mk-white); border-bottom: 1px solid #eee; font-weight: 700; font-size: .82em; }
.pt-phone__hd b { color: var(--mk-blue); font-size: 1.05em; }
.pt-phone__bd { flex: 1; padding: .7em; display: flex; flex-direction: column; gap: .55em; background: var(--mk-light-blue); overflow: hidden; }
.pt-phone__bd--pad { background: var(--mk-white); gap: .5em; }
.pt-phone__bd--chat { gap: .5em; }
.pt-phone__lead { font-weight: 700; font-size: .78em; margin: .1em 0 0; }

/* 案件カード（スマホ内） */
.pt-mcard { position: relative; background: var(--mk-white); border: 1px solid #e6e6e6; border-radius: .6em; padding: .6em; display: flex; flex-direction: column; gap: .3em; }
.pt-mcard--hot { border-color: var(--mk-orange); box-shadow: 0 .3em .8em rgba(236,148,24,.18); }
.pt-mcard__tag { position: absolute; top: -.55em; right: .6em; background: var(--mk-orange); color: #fff; font-size: .58em; font-weight: 700; padding: .18em .55em; border-radius: 1em; letter-spacing: .04em; }
.pt-mcard__ttl { font-weight: 700; font-size: .82em; line-height: 1.3; margin: 0; }
.pt-mcard__meta { font-size: .72em; color: var(--mk-gray-hover); margin: 0; }
.pt-mcard__acts { display: flex; gap: .4em; margin-top: .15em; }
.pt-mbtn { font-size: .72em; font-weight: 700; padding: .38em .6em; border-radius: .4em; text-align: center; white-space: nowrap; }
.pt-mbtn--primary { background: var(--mk-orange); color: #fff; }
.pt-mbtn--ghost { border: 1px solid var(--mk-orange); color: var(--mk-orange); }
.pt-mbtn--block { display: block; margin-top: .3em; }

/* 登録フォーム（STEP01） */
.pt-fld { display: flex; flex-direction: column; gap: .15em; }
.pt-fld > span { font-size: .68em; color: var(--mk-gray-hover); }
.pt-fld > em { font-style: normal; font-size: .78em; border: 1px solid var(--mk-gray); border-radius: .35em; padding: .42em .55em; background: var(--mk-white); }
.pt-fld--sel { display: flex; justify-content: space-between; align-items: center; color: var(--mk-black); }
.pt-fld--sel::after { content: "▾"; color: var(--mk-gray-hover); }
.pt-mchk { font-size: .74em; margin: .1em 0; }

/* 通知トースト（STEP02） */
.pt-toast { background: var(--mk-white); border-left: .3em solid var(--mk-orange); border-radius: .4em; padding: .5em .6em; display: flex; flex-direction: column; gap: .1em; box-shadow: 0 .3em .8em rgba(0,0,0,.1); }
.pt-toast b { font-size: .78em; }
.pt-toast span { font-size: .68em; color: var(--mk-gray-hover); }

/* チャット（STEP03） */
.pt-bub { font-size: .74em; padding: .42em .6em; border-radius: .7em; max-width: 82%; line-height: 1.3; }
.pt-bub--in { background: var(--mk-white); border: 1px solid #e6e6e6; align-self: flex-start; }
.pt-bub--out { background: #dcf5c6; align-self: flex-end; }
.pt-qchip { align-self: flex-end; background: var(--mk-white); border: 1px solid var(--mk-blue); color: var(--mk-blue); font-weight: 700; font-size: .74em; padding: .35em .6em; border-radius: .4em; }
.pt-ok { align-self: center; margin-top: auto; background: var(--mk-orange); color: #fff; font-weight: 700; font-size: .82em; padding: .4em .9em; border-radius: 1em; }

/* FVスマホ／flowスマホの寸法（筐体） */
.pt-fv__phone.pt-phone { height: 408px; }
.pt-flow__phone.pt-phone { width: 159px; height: 322px; }

/* ---- feature：PC画面モック（.pt-feat-img を container 化） ---- */
.pt-feat-img { container-type: inline-size; }
.pt-shot { position: absolute; inset: 0; overflow: hidden; font-family: var(--mk-font); color: var(--mk-black); font-size: calc(100cqw / 46); display: flex; flex-direction: column; }
.pt-shot--app { background: var(--mk-white); }
.pt-shot--paper { background: #eceef1; padding: 1.1em; }
.pt-appbar { display: flex; align-items: center; gap: .8em; padding: .7em 1em; background: var(--mk-white); border-bottom: 1px solid #ededed; }
.pt-appbar__dots { display: inline-flex; gap: .35em; }
.pt-appbar__dots i { width: .7em; height: .7em; border-radius: 50%; background: var(--mk-gray); opacity: .55; }
.pt-appbar__tab { font-weight: 700; font-size: 1.15em; }
.pt-appbody { flex: 1; padding: 1em; background: var(--mk-ivory); display: flex; flex-direction: column; gap: .8em; }
.pt-appbody--match { gap: .55em; background: var(--mk-white); }

/* KPI */
.pt-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: .6em; }
.pt-kpi { background: var(--mk-white); border: 1px solid #ececec; border-radius: .5em; padding: .6em; display: flex; flex-direction: column; gap: .2em; }
.pt-kpi span { font-size: .82em; color: var(--mk-gray-hover); }
.pt-kpi b { font-size: 1.35em; }
.pt-kpi .pt-o { color: var(--mk-orange); }

/* カンバン */
.pt-board { display: grid; grid-template-columns: repeat(3,1fr); gap: .6em; flex: 1; }
.pt-kcol { background: #f4f6f8; border-radius: .5em; padding: .5em; display: flex; flex-direction: column; gap: .5em; }
.pt-kcol--blue { box-shadow: inset 0 .3em 0 var(--mk-blue); }
.pt-kcol--green { box-shadow: inset 0 .3em 0 #2fa36b; }
.pt-kcol__h { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: .95em; margin: 0; }
.pt-kcol__h span { background: var(--mk-white); border-radius: 1em; min-width: 1.6em; text-align: center; padding: 0 .4em; font-size: .85em; }
.pt-kc { position: relative; background: var(--mk-white); border: 1px solid #ececec; border-radius: .4em; padding: .5em .5em .5em; display: flex; flex-direction: column; gap: .15em; }
.pt-kc b { font-size: .9em; line-height: 1.25; padding-right: .8em; }
.pt-kc em { font-style: normal; font-size: .8em; color: var(--mk-gray-hover); }
.pt-pin { position: absolute; top: .5em; right: .5em; width: .5em; height: .5em; border-radius: 50%; background: var(--mk-orange); }

/* 見積書（paper） */
.pt-doc { flex: 1; background: var(--mk-white); border-radius: .4em; box-shadow: 0 .4em 1.2em rgba(0,0,0,.10); padding: 1.1em 1.3em; display: flex; flex-direction: column; gap: .55em; overflow: hidden; }
.pt-doc__ttl { text-align: center; font-weight: 700; font-size: 1.7em; letter-spacing: .18em; margin: 0; }
.pt-doc__sub { text-align: center; font-size: .78em; color: var(--mk-gray-hover); margin: 0; }
.pt-doc__pt { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 2px solid var(--mk-black); padding-bottom: .3em; }
.pt-doc__to { font-weight: 700; font-size: 1.1em; }
.pt-doc__from { text-align: right; font-size: .85em; }
.pt-doc__total { display: flex; justify-content: space-between; align-items: center; border: 1.5px solid var(--mk-black); border-radius: .3em; padding: .5em .8em; font-weight: 700; font-size: .95em; }
.pt-doc__total b { font-size: 1.5em; }
.pt-doc__sec { font-weight: 700; font-size: .95em; margin: .1em 0 0; border-left: .35em solid var(--mk-blue); padding-left: .45em; }
.pt-doc__tbl { width: 100%; border-collapse: collapse; font-size: .8em; }
.pt-doc__tbl th { background: #f4f6f8; border: 1px solid #e2e2e2; padding: .35em .4em; font-weight: 700; }
.pt-doc__tbl td { border: 1px solid #e2e2e2; padding: .35em .4em; }
.pt-doc__tbl td:nth-child(3) { text-align: center; }
.pt-doc__tbl td:nth-child(4) { text-align: right; }

/* マッチング設定（chips / checks） */
.pt-mlabel { font-weight: 700; font-size: .95em; margin: .15em 0 0; }
.pt-chiprow, .pt-chkrow { display: flex; flex-wrap: wrap; gap: .4em; }
.pt-sc { border: 1px solid var(--mk-gray); border-radius: 1em; padding: .28em .8em; font-size: .88em; background: var(--mk-white); }
.pt-sc--on { background: var(--mk-orange); border-color: var(--mk-orange); color: #fff; font-weight: 700; }
.pt-ck { display: inline-flex; align-items: center; gap: .35em; border: 1px solid #e2e2e2; border-radius: .3em; padding: .28em .6em; font-size: .88em; background: var(--mk-white); }
.pt-ck::before { content: ""; width: .95em; height: .95em; border: 1.5px solid var(--mk-gray); border-radius: .2em; box-sizing: border-box; }
.pt-ck--on { border-color: var(--mk-blue); color: var(--mk-blue); font-weight: 700; }
.pt-ck--on::before { background: var(--mk-blue); border-color: var(--mk-blue); }
.pt-savebtn { margin-top: auto; text-align: center; padding: .5em; font-size: .95em; font-weight: 700; color: #fff; background: var(--mk-orange); border-radius: .4em; }

@media (max-width: 768px) {
  /* SPは枠が横長寄りになるため基準を少し大きめに */
  .pt-shot { font-size: calc(100cqw / 42); }
  .pt-flow__phone.pt-phone { width: 168px; height: 340px; }
}
