/*==================================
　共通： ボタンクリック防止
===================================*/
.normalButton.isDisabled,
.contentButtonBlue.isDisabled {
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 0.5;
}

/*==================================
　SP： 構造エラー修正による不具合パッチ
===================================*/
/* ステップ3 本人確認の PayPay銀行 行だけ flex をやめて縦並び */
.flowVerticalIner .inputList.bgGry {
  display: block;
}

/* ラジオラベルはそのまま 1 行使う */
.flowVerticalIner .inputList.bgGry > label {
  display: block;
  width: 100%;
}

/* オプションのチェックボックスは通常のオプションエリアっぽく左に揃える */
.flowVerticalIner .inputList.bgGry .inputListOptionAreaAlwaysVisible {
  display: block;
  padding: 0 14px 5px 45px;
  box-sizing: border-box;
}


/*==================================
　PC： 構造エラー修正による不具合パッチ
===================================*/
/* PC eKYC用：label崩れ対策（このページ内だけ上書き） */
.registrationBackgroundGray .preOrderItem.bgGry {
  display: block;
}

.registrationBackgroundGray .preOrderLabel {
  display: block;
  width: 100%;
  padding: 10px 10px 10px 43px;
}

/* ============================================================
   eKYC PC チェックボックス用 最終パッチ（上書きだけで修正）
   ※ HTML 構造は今のままで OK
   ============================================================ */
   /* チェックボックス：左のマージン空ける */
   .preOrderOptionArea{
     margin-left: 40px;
   }
  /* ラベルのレイアウト（旧構造と同じくらいの余白） */
  .registrationBackgroundGray .preOrderCheckBoxLabel {
    position: relative;
    display: block;
    padding: 10px 16px 10px 52px;
    line-height: 1.6;
    box-sizing: border-box;
    cursor: pointer;
  }
  
  /* OFF（未チェック）状態の四角 */
  .registrationBackgroundGray .preOrderCheckBoxLabel .preOrderCheckBoxed {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 2px;
    box-sizing: border-box;
    border: 2px solid #ddd;
    background: #fff;
  }
  
  /* ON（チェックあり）状態の四角 */
  .registrationBackgroundGray
    .preOrderCheckbox:checked + .preOrderCheckBoxLabel .preOrderCheckBoxed {
    border: 2px solid #1A75FF;
    background: #1A75FF;
  }
  
  /* ON（チェックあり）状態の ✓ チェックマーク */
  .registrationBackgroundGray
    .preOrderCheckbox:checked + .preOrderCheckBoxLabel .preOrderCheckBoxed::after {
    content: '';
    position: absolute;
    box-sizing: content-box;
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-top: none;
    border-right: none;
    background: none;
    transform: rotate(-45deg);
    top: 6px;
    left: 6px;
  }
  
  /* ON SPは✓ チェックマークの調整のみ*/
  .formSelectedCheckBox label::after {
    width: 8px;
    height:4px;
  }