/*
*
* chatformの動きを制御するcssです
* 触らないでください
*
*/

[v-cloak] {
    display: none;
}

/*最初は画面外(下から)*/
.js-chatbody.js-bottom.js-hide {
    transform: translate(0, 200%) !important;
}
/*最初は画面外(右から)*/
.js-chatbody.js-right.js-hide{
    transform: translate(200%, 0) !important;
}
/*出現
.js-chatbody.js-show {
    transform: translate(0, 0) !important;
}
*/
.js-chatbody.js-overlay{
    overflow: hidden !important;
}

/*
*プログレスバー全体
*上から垂れ下がる感じ
*/
.js-progress{
    transition: visibility .5s, max-height .5s;
    overflow: hidden;
}
.js-progress.js-hide{
    visibility:hidden;
    max-height: 0;
    padding:0;
}
.js-progress.js-show{
    visibility:visible;
}

/*
*プログレスバーの中身
*浮き出る感じ
*/
.js-progress-inner{
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
    opacity:0;
}
.js-progress-inner.js-hide, .js-confirm-button.js-hide, .js-submit-button.js-hide{
    opacity:0;
}
.js-progress-inner.js-show, .js-confirm-button.js-show, .js-submit-button.js-show{
    opacity: 1;
    transition: all .5s;
}

/*main-bundle 部分*/
.js-intro_Parent.js-hide, .js-QA_Parent.js-hide,.js-confirm_Parent.js-hide, .js-end_Parent.js-hide{
    display:none !important;
}

/*左からの吹き出し*/
.js-intro, .js-Q, .js-confirm_Q,.js-submit_Q, .js-end, .js-submit{
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    transform-origin: bottom left;
}
/*最初は非表示*/
.js-intro.js-hide, .js-Q.js-hide, .js-confirm_Q.js-hide, .js-submit_Q.js-hide, .js-end.js-hide, .js-submit.js-hide{
    transform: translate(-10px, 10px) scale(0, 0);
}
/*左下から飛び出る感じ*/
.js-intro.js-show, .js-Q.js-show, .js-confirm_Q.js-show, .js-submit_Q.js-show, .js-end.js-show, .js-submit.js-show{
    /* transform: translate(2px, -5px) scale(1, 1) !important; */
    transform: translate(0, 0) scale(1, 1) !important;
}

/*右からの吹き出し*/
.js-A, .js-confirm_A{
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
/*最初は非表示*/
.js-A.js-hide,.js-confirm_A.js-hide{
    /* transform: translate(800px, 0px); */
    transform: translate(100%, 10px) scale(0, 0);
}
/*右からフェードインする感じ*/
.js-A.js-show,.js-confirm_A.js-show{
    /* transform: translate(0px, 0px)!important; */
    transform: translate(0, 0) scale(1, 1) !important;
}

/*住所検索中のスピナー*/
.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); }
  }

  /*ここから*/

  /* @scope (#js-chatform) {

    .section-chatform .chatform-header-text {
        font-size: 1.2rem!important;
    }

    
    .chatform-main-wrap p{
        line-height: 1.2;
    }

    .chatform-main-scroll {
        padding: 10px 10px 10px 10px !important;
    }

    .chatform-main-bundle-text {
        font-size: 1.2rem !important;
    }

    .reCAPTCHA {
        font-size: 0.7rem!important;
    }

    .chatform-btn-submit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }

    .js-confirm-button, .js-submit-button{
        font-size: 1.2rem !important;
    }

    .chatform-confirm-list__dt {
        font-size: 1.0rem !important;
        font-weight: 800 !important;
        
    }

    .chatform-confirm-list__dd {
        font-size: 1.3rem !important;
        margin-top: 0.3rem !important;
    }

    .chatform-policy-text {
        font-size: 1rem;
    }

    .chatform-policy-content {
        font-size: 1rem !important;
        height: 15rem !important;
    }

  } */


