body{
    font-family: 'Noto sans JP';
    width: 100vw;
    background-color: #fff;
  }

/* STEP2以降を初期では非表示 */

#form__confirmation{
  display: none;
}

.sp_hide{
  display: block;
}
/* 上から */

.form__all{
    max-width: 990px;
    margin: 0 auto;
    min-width: 355px;
}

.form__headingTitle{
    font-size: 24px;
    color: #20337A;
    text-align: center;
    padding: 40px;
}

.form__text{
    font-size: 14px;
    padding-bottom:40px;
}
    .form__text-paddingTop{
        padding-top: 32px;
    }


/* ステップバー */

.form__stepWrapper{
    display:flex;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

.form__stepBer{
    width: 32%;
    color: #666666;
    background-color: #F5F5FB;
    padding: 8px 2.2vw;
    position: relative;
    border-color: #F5F5FB;
}

.form__stepBerSelected{
    color: #fff;
    background-color: #20337A;
    border-color: #20337A;
}

.form__stepBer:not(:last-child):after{
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    right: -1.5rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #F5F5FB;
    border-width: 1.4rem 0.8rem;
}

.form__stepBerSelected:not(:last-child):after{
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    right: -1.5rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #20337A;
    border-width: 1.4rem 0.8rem;
}

/* ステップバー 　ここまで*/


.form__attention{
    display: inline-block;
    font-size: 12px;
    color: #D9101D;
    padding-bottom: 8px;
}

.textRequired::after{
    content: "*";
    color: #D9101D;
    font-size: 16px;
}

.form__recordWrap{
    border: solid 1px #EEEEF0 ;

}

.form__recordWrapp_2{
    display: flex;
}

/* バリデーション位置制御よう */
.form__validationGrid{
  display:grid;
}
/* バリデーション位置制御よう 　ここまで*/

/* 左側 */
.form__left{
    width: 32%;
    background-color: #FAFAFD;
    white-space: nowrap;
}

.form__leftText{
    padding: 16px 0 16px 16px;
}
/* 左側 ここまで*/

/* 右側 */
.form__right{
  width: 68%;
  padding: 12px 10px;
  flex-grow: 1;
}
.form__rightText{
    display: block;
    padding: 0 8px 8px 0;
}


.form__rightContents {
    gap: 8px; 
  }

.form__rightFlex{
    display: flex;
    gap: 10px; 
    white-space: nowrap;
}

.form__rightColumn{
    display: flex;
    align-items: flex-start;
    padding-bottom: 8px;
    gap: 16px;
}

    /* 日付部分 */
    .form__dateText{
      /* display: flex; */
      align-items: center;
    }

.form__annotation{
  padding-top: 6px;
  font-size: 14px;
  color: #999999;
}

/* 右側 ここまで*/

  /* 入力フィールドのあしらい */
  .form__inputField{
    padding: 16px 12px;
    border-radius: 4px;
    border: #cccccc solid 1px;
    background-color: #fff;
    margin-right: 10px;
    width: 25vw;
    max-width: 300px;
    height: 48px;
  }

  .form__inputField:focus{
    outline: #20337A 2px solid;
  }
  .form__inputLong{
    width: 100%;
    max-width: 900px;
    height: 120px;
  }

  ::placeholder{
    color: #999999;
  }

    /* エラーバリデーション */
    .form__inputField.is-error{
      outline: #D9101D 2px solid;
      background-color: #FDE7E8;
    }
    /* エラーバリデーション 　ここまで*/

    /* ファイルを選択ボタン */

    .form__inputFileButton{
      width: 100%;
    }

    .form__selectField{
      padding: 10px;
    }

    .form__inputFileButton::file-selector-button{
      padding: 6px 16px;
      margin-right: 16px;
      border-radius:4px;
      border: #cccccc 1px solid;
      background-color: #f5f5f5;
    }
     /* ファイルを選択ボタン 　ここまで*/

     /* カレンダーのクリック範囲を拡大*/
     .js-setTodayOnCalendar::-webkit-calendar-picker-indicator {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
    }
    
    .js-setTodayOnCalendar::-webkit-inner-spin-button{
      -webkit-appearance: none;
    }
    
    .js-setTodayOnCalendar::-webkit-clear-button{
      -webkit-appearance: none;
    }
    
    .js-setTodayOnCalendar{
      position: relative;
    }
    /* カレンダーのクリック範囲を拡大　ここまで*/

  /* 入力フィールドのあしらい　ここまで */

  /* ボタンエリア */

  .form__buttonArea{
    display: flex;
    /* margin: 0 auto; */
    justify-content: center;
    padding-top: 20px;
    gap: 32px;
  }

.buttonArrow{
  margin-bottom: 2px;
}  

  /* 色違いボタン共通のcss */
  .form__buttonCommon{
    text-decoration: none;
    border: #20337A solid 2px;
    transition-duration: 100ms;
    white-space: nowrap;

  }

  .buttan__form-nohover {
    display: flex;
    width: 250px;
    border-radius: 6px;
    padding: 12px 38px 12px 32px;
    background-color: #20337A;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    text-align: center;
    color: #F5F5FB;
    font-weight: 700;
    word-wrap: break-word;
    margin-bottom: 16px;
    gap: 16px;
  }

.form__buttonCommon:hover {
    border: #2ad9ca solid 2px;
}

.form__buttonCommon:focus {
  border: #2ad9ca solid 3px;
}

.buttan__form-inversion {
    background-color: #fff;
    color: #20337A;
    border: #20337A solid 2px;
    height: 52px;
    min-width: 200px;
    align-items: center;
    font-size: 16px;
    text-align: center;
    padding: 12px 44px;
    font-weight: 700;
    border-radius: 6px;
    white-space: nowrap;
}

  /* ボタンエリア　ここまで */

  .form__linkText{
    color: #0088C3;

  }
  .linkImg{
    display: inline;
    height: 12px;
  }

  /* バリデーションエンジン上書き用 */

  .formError .formErrorContent{
    z-index: 0;
  }

   .ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary {
    font-weight: normal;
  }

  /* バリデーションエンジン上書き用 ここまで*/

  @media (max-width: 767px) {

    /* sp共通 */
    .sp_hide{
      display: none;
    }

    /* sp共通 */

    .form__all{
      width: 95vw;
    }

      /* ヘッダー処理 */
      header {
        position: initial;
        box-shadow: 0px 0px 0px 0px white;
        padding-top: 16px;
    }

    .header__logo-wh{
      height: 64px;
    }

  /* h1 */

    .form__headingTitle{
      font-size: 20px;
      font-weight: 600;
      text-align: start;
      padding: 28px 0;
    }

 /* ステップバー */

  .form__stepWrapper{
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 20px;
  }

  .form__stepBer{
    width: 32%;
    padding: 8px 2.2vw;
    position: relative;
  }


  .form__stepBer:not(:last-child):after{
    right: -0.7rem;
    border-width: 1.1rem 0.4rem;
  }

  .form__stepBerSelected:not(:last-child):after{
    right: -1.0rem;
    border-width: 1.1rem 0.5rem;
  }

/* ステップバー 　ここまで*/


/* フォーム枠 */

  .form__recordWrap{
    border: none;
  }

    /* 縦積みに */
    .form__recordWrapp_2{
        display: block;
        padding-bottom: 40px;
    }
    
/* 左側 */
    .form__left{
      width: 100%;
      background-color: #fff;
      white-space: nowrap;
  }

  .form__leftText{
    font-size: 16px;
    font-weight: 500;
    padding: 0 0 10px 0;
}

/* 右側（下） */
    .form__right{
      width: 100%;
      padding: 0;
      flex-grow: 1;
    }
    .form__rightFlex{
      display: grid;
      gap: 6px; 
      white-space: nowrap;
  }

  .form__rightText{
    font-size: 14px;
    padding-top: 12px;
  }

  .form__rightTextCheck{
    padding-bottom: 12px;
    border-bottom: #cccccc 1px solid;
  }

  /* 右（下）日付部分を縦並びに調整 */
  .form__rightColumn{
    display: block;
  }
  .form__dateText {
    display: block;
  }

    /* 入力フィールドのあしらい */
    .form__inputField{
      width: 100%;
      max-width: none;
      padding: 8px 12px;
    }
    .form__inputLong{
      width: 100%;
      max-width: none;
    }
    
    /* 入力フィールドのあしらい　ここまで */

  /* ボタンエリア */
    .form__buttonArea{
      gap: 10px;
    }

    .buttan__form-nohover {
      display: flex;
      width: 100%;
  }

  .buttan__form-inversion {
    max-width: 100px;
    padding: 10px 24px;
    min-width:1px;
  }

  /* ボタンエリア　ここまで */

  }