@charset "UTF-8";
/* =====================================================
   フォーム共通スタイル（お問い合わせ / 会員退会）
===================================================== */
body.form-page{
  background:#eef2f6;
  min-height:100vh;display:flex;flex-direction:column;
}

.page{flex:1;padding:56px 36px 76px;}
.page-inner{max-width:780px;margin:0 auto;}
.page-head{text-align:center;margin-bottom:34px;}
.page-title{font-size:30px;font-weight:900;color:var(--ink);letter-spacing:.5px;}
.page-title::after{
  content:'';display:block;width:50px;height:4px;border-radius:3px;
  background:var(--blue);margin:14px auto 0;
}
.page-sub{margin-top:18px;font-size:14px;color:var(--text);line-height:1.8;}

/* ---- ステップ表示 ---- */
.fsteps{display:flex;justify-content:center;margin-bottom:30px;list-style:none;}
.fstep{
  position:relative;flex:0 0 140px;
  display:flex;flex-direction:column;align-items:center;gap:9px;text-align:center;
}
.fstep::before{
  content:'';position:absolute;top:18px;left:-50%;
  width:100%;height:2px;background:var(--border);z-index:0;
}
.fstep:first-child::before{display:none;}
.fstep-num{
  position:relative;z-index:1;
  width:38px;height:38px;border-radius:50%;
  background:#fff;border:2px solid var(--border);color:#aab0bb;
  font-size:15px;font-weight:900;
  display:flex;align-items:center;justify-content:center;
}
.fstep-label{font-size:13px;font-weight:700;color:#aab0bb;}
.fstep.current .fstep-num,
.fstep.done .fstep-num{background:var(--blue);border-color:var(--blue);color:#fff;}
.fstep.current .fstep-label{color:var(--blue);}
.fstep.done .fstep-label{color:var(--ink);}
.fstep.current::before,
.fstep.done::before{background:var(--blue);}

/* ---- カード ---- */
.card{
  background:#fff;border:1px solid var(--border);border-radius:16px;
  padding:42px 46px;box-shadow:0 12px 32px rgba(20,40,90,.07);
}

/* ---- フォーム ---- */
.form-lead{font-size:14px;color:var(--text);margin-bottom:26px;line-height:1.95;}
.req-note{font-size:12.5px;}
.form-alert{
  background:#fdecea;border:1px solid #f0b3ae;color:var(--red-d);
  font-size:13.5px;font-weight:700;line-height:1.7;
  padding:13px 16px;border-radius:8px;margin-bottom:22px;
}

/* ---- 注意書きボックス ---- */
.notice-box{
  background:#fdeeec;border:1px solid #eaa9a3;border-left:5px solid var(--red);
  border-radius:8px;padding:17px 20px;margin-bottom:26px;
}
.notice-box .nb-ttl{
  display:flex;align-items:center;gap:8px;
  font-size:14px;font-weight:900;color:var(--red-d);margin-bottom:7px;
}
.notice-box .nb-text{font-size:13px;color:#6a4b48;line-height:1.9;}

.field{margin-bottom:24px;}
.field-label{
  display:flex;align-items:center;gap:9px;
  font-size:14.5px;font-weight:700;color:var(--ink);margin-bottom:9px;
}
.req{
  display:inline-block;font-size:11px;font-weight:700;color:#fff;
  background:var(--red);padding:3px 8px;border-radius:4px;letter-spacing:.5px;line-height:1.3;
}
.input{
  width:100%;font-family:inherit;font-size:15px;color:var(--ink);
  background:#fbfcfd;border:1.5px solid var(--border);border-radius:8px;
  padding:13px 14px;transition:border-color .15s,box-shadow .15s,background .15s;
}
.input::placeholder{color:#aab0bb;}
.input:focus{
  outline:none;border-color:var(--blue);background:#fff;
  box-shadow:0 0 0 3px rgba(31,111,214,.12);
}
.input.is-error{border-color:var(--red);background:#fdf3f2;}
.textarea{resize:vertical;min-height:180px;line-height:1.85;}
.error{margin-top:7px;font-size:13px;color:var(--red-d);font-weight:700;}
.privacy-note{
  font-size:12px;color:#8b919c;line-height:1.8;
  background:#f6f8fa;border-radius:8px;padding:12px 14px;margin-top:4px;
}

/* ---- ボタン ---- */
.form-actions{margin-top:30px;display:flex;justify-content:center;}
.form-actions.two{gap:16px;flex-wrap:wrap;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:inherit;font-size:15.5px;font-weight:700;
  padding:15px 38px;border-radius:999px;border:2px solid transparent;
  cursor:pointer;min-width:230px;
  transition:transform .12s,box-shadow .2s,background .15s;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--blue);color:#fff;box-shadow:0 8px 20px rgba(31,111,214,.34);}
.btn-primary:hover{background:var(--blue-d);box-shadow:0 11px 24px rgba(31,111,214,.42);}
.btn-ghost{background:#fff;color:var(--text);border-color:var(--border);}
.btn-ghost:hover{background:#f4f6f9;color:var(--ink);}
.btn-danger{background:var(--red);color:#fff;box-shadow:0 8px 20px rgba(226,59,50,.32);}
.btn-danger:hover{background:var(--red-d);box-shadow:0 11px 24px rgba(226,59,50,.42);}

/* ---- 確認画面 ---- */
.confirm{margin-bottom:8px;}
.confirm-row{
  display:flex;gap:20px;
  border-bottom:1px solid var(--border);padding:18px 6px;
}
.confirm-row:first-child{border-top:1px solid var(--border);}
.confirm-row dt{
  flex:0 0 170px;font-size:14px;font-weight:700;color:var(--ink);padding-top:1px;
}
.confirm-row dd{flex:1;font-size:14.5px;color:#333;word-break:break-word;line-height:1.85;}

/* ---- 完了画面 ---- */
.complete{text-align:center;padding:16px 0 6px;}
.complete-icon{
  width:74px;height:74px;margin:0 auto 22px;border-radius:50%;
  background:#e7f6ec;color:#1faf54;
  display:flex;align-items:center;justify-content:center;
}
.complete-icon.leave{background:#eef1f5;color:#7c8698;}
.complete-ttl{font-size:23px;font-weight:900;color:var(--ink);margin-bottom:16px;}
.complete-text{font-size:14px;color:var(--text);line-height:2;margin-bottom:6px;}

/* ---- レスポンシブ ---- */
@media(max-width:768px){
  .page{padding:38px 16px 56px;}
  .page-title{font-size:25px;}
  .fstep{flex:0 0 108px;}
  .card{padding:26px 20px;}
  .confirm-row{flex-direction:column;gap:6px;padding:15px 2px;}
  .confirm-row dt{flex:none;}
  .form-actions.two{flex-direction:column-reverse;align-items:stretch;}
  .btn{width:100%;min-width:0;}
}
@media(max-width:380px){
  .fstep{flex:0 0 92px;}
  .fstep-label{font-size:12px;}
}
