/*
*
* umekomi-formの動きを制御するcssです
* ステップバー以下は自由に書き換えてください
*
*/

/*reCAPCHA非表示*/
.grecaptcha-badge { 
  visibility: hidden; 
}

[v-cloak] {
    display: none;
}


/*住所検索中のスピナー*/
.js-spinner {
    width: 0.7em;
    height: 0.7em;
    border: 2px solid;
    border-bottom: 2px solid transparent;
    border-radius: 100%;
    animation: spin 1s infinite;
  }
  
  @keyframes spin {
    from { transform: rotateZ(0deg); }
    to { transform: rotateZ(360deg); }
  }

  .preview-div{
    position: relative;
    width: 45%;
    margin: 1%;
    border: 5px #555 solid;
    display: inline-block;
  }
  
  /* Make the image responsive */
  .preview-div img, .preview-div video, .preview-div audio {
    width: 100%;
    height: revert;
  }

  .deletion {
    position: absolute;
    top: 5%;
    left: 97%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #fff;
    color: white;
    font-size: 16px;
    padding: 12px 12px;
    border: 1px #555 solid;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
  }

  .deletion:not(.input-only){
    display: none;
  }

  .square_btn {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background: #fff; /* ボタンの背景色 */
  }
   
  .square_btn::before, .square_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px; /* 棒の幅（太さ） */
    height: 27px; /* 棒の高さ */
    background: #555; /* バツ印の色 */
  }
   
  .square_btn::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
   
  .square_btn::after {
    transform: translate(-50%,-50%) rotate(-45deg);
  }

  /*以下削除しても問題なし*/

  /*ステップバー*/
  .flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex.ai-cen {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex.jc-cen {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form-area__bread{
    padding: 0;
    list-style: none;
    border:1px solid #e8e8e8;
    background-color:#fff;
    margin-bottom:70px;
    align-items: center;
  }
  .form-area__bread-list{
    width:33.33%;
    padding:3em 0;
  }
  .form-area__bread-list._current._current{
    background-color:#ffeced;
  }
  .form-area__bread-list._current._current::before{
    background-color:#ffeced;
  }
  .form-area__bread-list._current._current::after{
    content:none
  }
  .form-area__bread-list:not(:last-of-type){
    position:relative
  }
  .form-area__bread-list:not(:last-of-type)::before{
    content:"";
    position:absolute;
    right:-10%;
    background-color:#e8e8e8;
    width:10%;
    height:100%;
    clip-path:polygon(0 0, 0 100%, 100% 50%)
  }
  .form-area__bread-list:not(:last-of-type)::after{
    content:"";
    position:absolute;
    right:-10%;
    background-color:#fff;
    width:10%;
    height:100%;
    clip-path:polygon(0 1px, 0 calc(100% - 1px), calc(100% - 1px) 50%)
  }

  /*期間指定の時に背景色が薄すぎるので*/
  .dp__range_between {
    background: lightblue !important;
  }

  /*checkbox+label*/
/* .label-check{
  width: 90%;
  margin: 0 auto;
  border: 1px solid #008045;
  border-radius: 3px;
  display: flex;
  margin-bottom: 10px;
  padding: 0.8em;
  background-color: #fff;
  cursor: pointer;
}

.label-check:has(.checkbtn:checked){
  background-color: #008045;
  font-weight:bold;
} */

/*file+label*/
/* .label-file > .input-file {
  display: none;
}

.label-file {
  padding: 1em 5em;
  border: solid 1px #888;
  display: flex;
} 

.label-file::after {
  content: '>';
  font-size: 1rem;
  color: #888;
  padding-left: 1rem;
}

.invalid{
  color: red !important;
} */

/*個人情報同意部分のスクロール*/
/* .for-scroll{
  height:8em;
  overflow-y: scroll;

} */



