@charset "utf-8";

/*
* formrun用換装につき使用する共通CSS
*/

/* form用パーツ
-----------------------------------------------*/
.form-ui-checkbox-list{
}
.form-ui-checkbox-list__item:not(:last-child){
  margin-bottom: 2px;
}

.form-ui-checkbox{}

.form-ui-checkbox__input{
  margin-right: 5px;
}

.form-ui-checkbox__label{}


.form-ui-error{
  display: block;
  color:#D24B4B;
}
.form-ui-error--center{
  text-align: center;
}

.recaptcha-box{
  margin-top: 40px;
}

/* formrunのJS向けコード */
[data-formrun-hide-if-confirm]{
  width: 100%;
  box-sizing: border-box;
}

/* v2 reCAPTCHA用（非表示を使用しているため未使用）
---------------------------------------------------*/
/*
#g-recaptcha {
  display: flex;
  justify-content: center;
}
*/

._formrun_gotcha {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* v2 非表示reCAPTCHA用
---------------------------------------------------*/
.grecaptcha-badge{
  z-index: 1000;
}

/* 
下記2Pのみ使用
/counselling/
/retention_document/
*/
.formrun .form-btn--back_retention,
.formrun .form-btn--submit_retention{
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  max-width: 100%;
  padding: 9px;
  width: auto;
}

.formrun .form-btn--back_retention{
  margin: 0 20px 0 0;
}

@media screen and (max-width: 768px){
  .formrun .form-btn--back_retention,
  .formrun .form-btn--submit_retention{
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .formrun .form-btn--back_retention{
    margin: 0 0 20px;
  }
}