@charset "UTF-8";

html {
  font-size: 13px;
}

.navbar.withLabel:before {
/*メインナビラベル部分は任意のbackground-colorに変更可*/
}

@media (min-width: 768px) {
  .navbar .navbar-header {
/*メインナビヘッダ部分は任意のbackground-colorに変更可*/
  }
}

.ui-widget { /*jquery-uiの記述を上書き*/
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-size: 10px;
}

label.required {
    color: #E00;
}

label.required:after {
    content: " *";
    color: #E00;
}
.loading_wheel{
    position:fixed;
    top:0;right:0;bottom:0;left:0;
    margin:auto;
    width:150px;
    height:150px;
    display:none;

     -webkit-animation: loading_wheel linear 0.75s infinite;
    animation:loading_wheel 0.75s linear infinite;
    -webkit-animation:loading_wheel linear 1.5s infinite;
    animation:loading_wheel 01.5s linear infinite;
    z-index:11000;
}
.loading_wheel.sm {
}
.loading_wheel.sm{
    -webkit-animation:loading_wheel_sm linear 0.6s infinite;
    animation:loading_wheel_sm 1.0s linear infinite;
    -webkit-animation:loading_wheel_sm linear 0.6s infinite;
    animation:loading_wheel_sm 1.0s linear infinite;
}
.loading_wheel.lg{
    -webkit-animation:loading_wheel_lg linear 0.9s infinite;
    animation:loading_wheel_lg 1.8s linear infinite;
    -webkit-animation:loading_wheel_lg linear 0.9s infinite;
    animation:loading_wheel_lg 1.8s linear infinite;
}

#overlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.50);
    z-index:10000;
    display: none;
}
@-webkit-keyframes loading_wheel{
    from{-webkit-transform:rotate(0deg) scale(0.92,0.92);}
    to{-webkit-transform:rotate(360deg) scale(0.92,0.92);}
}
@keyframes loading_wheel{
    from{transform:rotate(0deg) scale(0.92,0.92);}
    to{transform:rotate(360deg) scale(0.92,0.92);}
}
@-webkit-keyframes loading_wheel_sm{
    from{-webkit-transform:rotate(0deg) scale(0.84,0.84);}
    to{-webkit-transform:rotate(360deg) scale(0.84,0.84);}
}
@keyframes loading_wheel_sm{
    from{transform:rotate(0deg) scale(0.84,0.84);}
    to{transform:rotate(360deg) scale(0.84,0.84);}
}
@-webkit-keyframes loading_wheel_lg{
    from{-webkit-transform:rotate(0deg) scale(1.0,1.0);}
    to{-webkit-transform:rotate(360deg) scale(1.0,1.0);}
}
@keyframes loading_wheel_lg{
    from{transform:rotate(0deg) scale(1.0,1.0);}
    to{transform:rotate(360deg) scale(1.0,1.0);}
}
