﻿/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/

/* 入力フォームでのエラー表示関連 */
.text-danger {
  color: #b94a48;
}

.field-validation-error
{
  color: #ff0000;
}

.field-validation-valid
{
  display: none;
}

.input-validation-error
{
  border: 1px solid #ff0000;
  background-color: #ffeeee;
}

.validation-summary-errors
{
  font-weight: bold;
  color: #ff0000;
}

.validation-summary-valid
{
  display: none;
}

/* Accoutのフォームタイトル関連 */
.account-title{
    color: #1432a0;
    font-size: 1.2rem;
    font-weight: bold;
}

hr.account-title{
    margin-top: 2px;
    border: 0.5px solid #1432a0;
}

/* page.cshtml */
.detail_head_bg{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.ml2rem{
    margin-left: 2rem;
}

.ml1rem{    /* 2020.02.13 追加 */
    margin-left: 1rem;
}


/* テーブル関連 */
.table{
    background-color: #fff;
}

/* モーダルダイアログの設定 */
.modal-dialog {
    width: 1000px !important;
    margin: 50px auto !important;
}
.modal-large .modal-dialog {
    width: 1200px !important;
}
.modal-small .modal-dialog {
    width: 800px !important;
}
.modal-xs .modal-dialog {
    width: 700px !important;
}

.modal-header {
    padding: 30px 30px 15px 30px; /*padding: 15px;*/
}

.modal-body {
    padding: 15px 30px 15px 30px; /*padding: 15px;*/
}

.modal-footer {
    padding: 15px 30px 30px 30px; /*padding: 15px;*/
    text-align: center;
}
/* モーダルダイアログのタイトルで使用 */
.modal-header h3 {
    font-weight: bold;
    position: relative;
    padding: .10em 0 .10em .75em;
    border-left: 6px solid #8389bb;
    z-index: 1;
    background: -prefix-linear-gradient(left, rgb(162, 167, 204), rgb(255, 255, 255));
    background: linear-gradient(to right, rgb(162, 167, 204), rgb(255, 255, 255));
}

.modal-header h3::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 0;
    border-bottom: 1px solid #626aa9;
    z-index: 2;
}

.modal-header .close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: #000;
    opacity: 0.5;
    z-index: 3;
}

.modal-body > .dl-horizontal > dt{
    padding: 5px 30px 5px 0;
    width: 350px;
    float: left;
    clear: both;
}
.modal-body > .dl-horizontal > dt:after {
    content: "：";
}
.modal-body > .dl-horizontal > dd {
    padding: 5px 0 5px 0;
    width: 580px;
    margin-left: 350px;
}

/* 必須入力のマーク */
.required {
    /*color: #E00;*/
}
.required:after {
    /*content: " *";*/
    content: " (必須)";
    font-size: 10px;
    color: #FF0F0F;
}

/* bootstrap-table 関連 */
.detail-view p {
    margin-bottom: 0;
}

/* 編集用のポップアップが隠れるため */
.table-responsive {
    overflow: visible;
}

/* ボタン郡の枠線 */
.boxButton {
    padding:15px;               /*0.5em 1em;*/
    /*margin: 2em 0;*/
    margin-bottom:15px;
    font-weight: bold;
    color: #333;                /*文字色*/
    background: #FFF;
    border: solid 1px #2c3e50;  /*線*/
    border-radius: 4px;         /*角の丸み*/
}

/* 非表示 */
.display-none{
    display: none;
}

.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}
.text-center{
	text-align: center;
}
.mb0{
    margin-bottom: 0 !important;
}

.search_tbl_tr label{
    font-weight: normal !important;
}

.vertical-top{
	vertical-align: top;
}

.vertical-middle {
    vertical-align: middle;
}

.vertical-bottom {
    vertical-align: bottom;
}