﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/***********************************2017/07 h.nakajima add s*/
/* 検索欄 */
.searchinput {
    width: 300px;
}

/* 検索欄内削除ボタン */
#searchclear {
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    height: 20px;
    margin: auto;
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
}

/* 検索欄内削除ボタンに文字が被らないようにする */
.has-feedback {
    position: relative;
}

/* テキスト／パスワードボックス内のボタンを非表示にする(IE用) */
.msclear::-ms-clear {
    display: none;
}

/* Change Autocomplete styles in Chrome*/
/* 参考：https://css-tricks.com/snippets/css/change-autocomplete-styles-webkit-browsers/ */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    transition: background-color 5000s ease-in-out 0s;
}
/***********************************2017/07 h.nakajima add e*/

/***********************************2019/05 h.nakajima add s */
.div-overlay { /*親div*/
    position: relative; /*相対配置*/
}

.div-overlay p {
    position: absolute; /*絶対配置*/
    color: white; /*文字は白に*/
    top: 5px;
    left: 5px;
}

.div-overlay img {
    width: 100%;
}
/***********************************2019/05 h.nakajima add e */

/***********************************2021/12 h.nakajima add s */
#loading {
    display: table;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.8;
    /*z-index: 9999;*/ /* 全画面ロックしたい場合は解除 */
}

    #loading .loadingMsg {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        /*padding-top: 140px;*/
        /*background: url("[LoadingイメージのURL]") center center no-repeat;*/
    }
/***********************************2021/12 h.nakajima add e */