@charset "utf-8";

/*  *** css/common.css ***  */
/*  汎用性の高い全アプリ共通CSS */


.disnon{
    display: none;
}
.perfectDisnon{
    display: none !important;
}

.debugsBlock{
    margin: 15rem 10rem;
}

/*ボタンBOX用*/
.btnBox{
    text-align: center;
}
.btnBoxRight{
    text-align: right;
}
.btnBoxLeft{
    text-align: left;
}
.btnBoxNotEdit{
    text-align: inherit;
}

/*追加マージン用*/
.bottomMargin{
    margin-bottom: 30px;
}
.bottomMargin10{
    margin-bottom: 10px;
}
.bottomMargin0{
    margin-bottom: 0px;
}
.topMargin15{
    margin-top: 15px;
}
.noMargin{
    margin: 0;
}
.mt0{margin-top: 0px !important;}
.mt5{margin-top: 5px !important;}
.mt10{margin-top: 10px !important;}
.mt20{margin-top: 20px !important;}
.mt30{margin-top: 30px !important;}
.mt40{margin-top: 40px !important;}
.mt50{margin-top: 50px !important;}
.mt60{margin-top: 60px !important;}
.mb0{margin-bottom: 0px !important;}
.mb10{margin-bottom: 10px !important;}
.mb20{margin-bottom: 20px !important;}
.mb30{margin-bottom: 30px !important;}
.mb40{margin-bottom: 40px !important;}
.mb50{margin-bottom: 50px !important;}
.mb60{margin-bottom: 60px !important;}

/*フォントサイズ*/
.small-font{
  font-size: 90%;
}
.smaller-font{
  font-size: 80%;
}


/*幅固定用*/

.fixWidth800{
    min-width: 800px;
}
.fixWidth{
    overflow: scroll;
}


/*Form関連*/
@media (min-width: 992px) {
    .shortInput{
        width:30%;
    }
}
@media (max-width: 991px) {
    .shortInput{
        width:100%;
    }
}

/*Vue.js用*/
[v-cloak] {
  display: none;
}

/*ToolTip用*/

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-size: 12px;
    line-height: 1.8;
    visibility: visible;
    filter: alpha(opacity=85);
    opacity: .85;
}
.tooltip.in {
    filter: alpha(opacity=75);
    opacity: .75;
}
.tooltip-inner {
    padding: 5px 10px;
    max-width: 400px;
}