/*-----------------------------------------------
共通
------------------------------------------------*/
.valid_message{
    color: red;
    font-size: 13px;
}

input[type=checkbox], input[type=checkbox] + label{
    cursor: pointer;
}

.checkbox_label{
    display: inline-block;
    margin: 5px;
    position:relative;
    bottom:1px;
}

.radio_label{
    display: inline-block;
    margin: 5px;
}

textarea{
    width: 80%;
    height: 100px;
}

.success-block{
    color: #000000;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #bbd0ff;
}

.error-block {
    padding: 10px;
    background-color: #f8ecec;
    color: #000000;
    border-radius: 4px;
    margin-bottom: 20px;
}

.sort_wrap{
    float: right;
}

.sort{
    letter-spacing: -3px;
    font-size: 13px;
    margin-top: 2px;
    cursor: pointer;
}
/*-----------------------------------------------
LOGIN
------------------------------------------------*/
.login_container{
    padding: 0 50px;
    height: 500px;
    position: relative;
}

.login_container .error-block{
    position: absolute;
    top: -60px;
    width: 450px;
    right: 0;
}

.login_wrap{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 450px;
    height: fit-content;
    margin: auto;
    padding: 15px 30px;
    border-radius: 10px;
    background-color: rgb(253, 253, 253);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .1);
}

.login_content{
    margin-bottom: 10px;
}

.login_content label{
    display: block;
    font-size: 14px;
    padding: 3px 0;
    color: rgb(31 41 55);
    letter-spacing: -1px;
}

.login_content input{
    width: 100%;
    padding: 13px 10px;
    border-radius: 8px;
    border: 1px solid rgb(209 213 219);
    font-size: 15px;
}

.login_button_wrwp button{
    background-color: rgb(31 41 55);
    color: white;
    border: white;
    padding: 8px 14px;
    border-radius: 7px;
    margin: 0;
    font-size: 12px;
}

.login_button_wrwp{
    margin-top: 15px;
    text-align: right;
}

.login_button_wrwp button:hover{
    background-color: rgb(55 65 81);
}



/*-----------------------------------------------
INQUIRY
------------------------------------------------*/
.inquiry-filter{
    display: flex;
    margin: 20px 0;
}

.inquiry-filter--content{
    margin-right: 30px;
}

.inquiry-filter--content select{
    width: 150px;
}
/*-----------------------------------------------
MODAL
------------------------------------------------*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
    min-width: 1000px;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: fit-content;
    min-width: 400px;
    max-width: 800px;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
    position: relative;
	background: #fff;
	text-align: left;
	padding: 30px 30px 10px 30px;
    border-radius: 10px;
}

#inputFile {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
}

.status_invalid{
    color: rgb(211, 70, 70);
}

/*-----------------------------------------------
USER SHOW
------------------------------------------------*/
.user-show-list{
    display: flex;
    margin-bottom: 10px;
}

.user-show-title{
    width: 120px;
    margin-right: 30px;
}

.user-show-button{
    position: absolute;
    right: 30px;
}

/*-----------------------------------------------
GROUP SHOW
------------------------------------------------*/
.group-show-list{
    display: flex;
    margin-bottom: 10px;
}

.group-show-list p{
    word-break: break-all;
}

.group-show-title{
    min-width: 220px;
    margin-right: 10px;
}

.group-show-button{
    position: absolute;
    right: 30px;
}


/*-----------------------------------------------
PAGINATION
------------------------------------------------*/
.pagination-wrap{
    margin-bottom: 50px;

}

.paginate{
    float: left;
    color: #666;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
    min-width: 14px;
    padding: 0 7px;
    margin: 0 5px 0 0;
    border-radius: 4px;
    background-color: #f5f5f5;
    border: 1px solid #D2D2D2;
}

.paginate:hover:not(.p-disabled){
    background-color: #244377;
    color: #FFF;
}

.p-disabled{
    text-decoration: none;
    background: #D2D2D2;
    border: 1px solid #D2D2D2;
    color: #fff;
}

.p-current{
    background: #244377;
    border: 1px solid #244377;
    color: #FFF;
    cursor: default;
}

/*-----------------------------------------------
ORDER
------------------------------------------------*/

.order-container{
    margin: 0 0 30px 30px;
}

.order-container p{
    font-weight: bold;
    font-size: 18px;
}

.order-content{
    margin: 5px 0 0 30px;
    min-width: fit-content;
    padding: 5px 30px;
    font-size: 16px;
    border: #777 1px solid;
    color: #777;
}

.order-content:hover{
    color: #777;
    background-color: #eee;
}
