﻿@charset "utf-8";

/* ユーザー一覧
---------------------------------------------------------------------------- */
/*検索*/
.user-filter{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 20px 0;
}
.user-filter-item{
    margin: 0 15px 10px 0;
}
.user-filter__title{
    line-height: 1;
    font-size: 0.8em;
    margin: 0 0 5px 0;
}
.user-filter input{
    padding: 10px;
}
.search-btn{
    padding: 15px 0 0 0;
}
@media screen and (max-width: 900px) {

}
/*テーブル*/
.table-sort{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0 0 20px 0;
}
.table-sort div{
    margin: 0 0 10px 20px;
}

/*テーブル*/
.user-table{
    width: 100% !important;
    min-width: 1200px !important;/*スクロール*/
    white-space: nowrap;/*スクロール*/
    border-left: 1px solid #CCCCCC;
	font-size: 0.9em;
}
/*
.user-table tr:nth-child(even) {
    background: #f0f0f6;
}
*/
.user-table tr:hover{
    cursor: pointer;
    background: #dadaf7;
}
.user-table th{
	padding: 2px;
    background: #EEEEEE;
    text-align: center;
	border-top: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
/*
.user-table tr:nth-child(even) {
    background: #f0f0f6;
}
*/
.user-table tr:hover{
    cursor: pointer;
    background: #dadaf7;
}
.user-table td{
	padding: 2px;
    text-align: center;
	border-top: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
.user-table a.edit,
.user-table a.copy,
.user-table a.delete{
    display: block;
    margin: -15px 0 0 0;
}
.user-table a img:hover{
    opacity: 0.8;
}
.user-table a.edit img,
.user-table a.copy img,
.user-table a.delete img{
    width: 20px;
    height: 20px;
}
.user-table a img:hover{
    opacity: 0.8;
}



/* 所属企業詳細
---------------------------------------------------------------------------- */
.count{
    font-size: 0.8em;
    text-align: right;
}
.title-form-wrap{
    display: flex;
    justify-content: left;
}
.title-form-wrap div{
    margin: 0 20px 0 0;
}
.title-form-item__title{
    font-size: 0.8em;
    margin: 0 0 5px 0;
}
.annotation{
    color: #666666;
    font-size: 0.8em;
}
.post-btn-wrap{
    display: flex;
    justify-content: left;
}
.post-btn-wrap .btn-action{
    margin: 3px 0 0 10px;
}
.bank-name,
.branch-name{
    font-size: 0.9em;
    margin: 0 0 0 5px;
}



/* モーダルウィンドウ
---------------------------------------------------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
}

/* 背景黒色部分 */
.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
/* コンテンツ表示部分 */
.modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;/*モーダルサイズ*/
  max-height: 80%;/*モーダルサイズ*/
  padding: 20px;
  background: #e5e5eb;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; /* 慣性スクロール */
  z-index: 999;
}

.box-btn {
  text-align: right;
}

.btn-modal {
  border: none;
  appearance: none;
  padding: 0;
  margin-right: 0.5em;
  background: transparent; /* ボタン背景を透明に */
  cursor: pointer;
  font-size: 3em;
}

.btn-more {
  border: 1px solid #000;
  appearance: none;
  padding: 0.3em 0.5em;
  background: transparent; /* ボタン背景を透明に */
  cursor: pointer;
}

/*リスト*/
.bank-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 0 -2%;
}
.bank-list li{
    width: 31%;
    margin: 0 0 5px 2%;
}
.bank-list li a{
    display: block;
    width: 100%;
    padding: 5px 10px 5px 10px;
    border: 1px solid #CCCCCC;
    text-decoration: none;
    color: #323333;
    font-size: 0.9em;
    transition: all 0.3s;
}
.bank-list li a:hover{
    color: #FFFFFF;
    background: #b39354;
    border: 1px solid #b39354;
}