@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Overpass:wght@700&display=swap);
@import url(cmn.css);

/*----------------------------link etc--------------------------------*/

a,
input,
button{
	outline: 0;
}
input::-moz-focus-inner,
button::-moz-focus-inner{
	border: 0;
}
a{
	text-decoration: none;
	color: #595998;
}
a:hover{
	color: #8484aa;
}
svg{
	display: block;
	width: 20px;
	height: 20px;
}
#wrapper{
	position: relative;
	width: 100%;
	padding-top: 65px;
}
@media screen and (max-width: 768px){
	#wrapper{
		padding-top: 55px;
	}
}
.cap{
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.5;
}

/*----------------------------load-----------------------------------*/

#load{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 100;
}
#load div:nth-of-type(1){
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.8s ease-in-out;
	background: #fff;
}
#load .loader{
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 2px solid #5e81f4;
	border-radius: 50%;
	animation: spin 0.75s infinite linear;
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	display: block;
	box-sizing: content-box;
}
#load .loader::before,
#load .loader::after {
	left: -2px;
	top: -2px;
	display: none;
	position: absolute;
	content: '';
	width: inherit;
	height: inherit;
	border: inherit;
	border-radius: inherit;
}
#load .loader,
#load .loader::before {
	display: inline-block;
	border-color: transparent;
	border-top-color: #5e81f4;
}
#load .loader::before {
	animation: spin 1.5s infinite ease;
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/*----------------------------header-------------------------------*/

header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 65px;
	background: #fff;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding: 10px 20px;
	text-align: center;
	z-index: 3;
	box-shadow: 0 0 4px rgba(0,0,0,0.2);
	font-size: 1.4rem;
}
header #close{
	display: flex;
	align-items: stretch;
	justify-content: center;
}
header #close a{
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
header #close a i,
header #close a i:before,
header #close a i:after{
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	background: #2a2a49;
	position: absolute;
	top: 50%;
	left: 8px;
	transition: 0.2s;
}
header #close a i:before{
	top: -8px;
	left: 0;
}
header #close a i:after{
	top: 8px;
	left: 0;
}
header #close a:hover i:before{
	transform: rotate(-225deg);
	left: -4px;
	top: -7px;
	width: 20px;
}
header #close a:hover i:after{
	transform: rotate(225deg);
	left: -4px;
	top: 7px;
	width: 20px;
}
.close header #close a:hover i:before{
	transform: rotate(45deg);
	left: 10px;
	top: -7px;
	width: 20px;
}
.close header #close a i:after{
	transform: rotate(180deg);
}
.close header #close a i:before{
	transform: rotate(-180deg);
}
.close header #close a:hover i:after{
	transform: rotate(-45deg);
	left: 10px;
	top: 7px;
	width: 20px;
}
header .logo{
	position: absolute;
	top: 10px;
	left: calc(50% - 100px);
	width: 200px;
	height: calc(100% - 20px);
	display: flex;
	align-items: stretch;
	justify-content: center;
}
header .logo a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
header .logo img{
	display: block;
	object-fit: contain;
	width: 100%;
	height: 100%;
}
header #submenu{
	display: none;
	align-items: stretch;
	justify-content: center;
}
header #submenu a{
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
header #submenu a i,
header #submenu a i:before,
header #submenu a i:after{
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	background: #2a2a49;
	position: absolute;
	top: calc(50% - 2px);
	left: calc(50% - 2px);
	transition: 0.2s;
	border-radius: 100px;
}
header #submenu a i:before{
	top: -7px;
	left: 0;
}
header #submenu a i:after{
	top: 7px;
	left: 0;
}
header ul{
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
}
header ul li{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 5px;
}
header ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	width: 44px;
	height: 44px;
	border-radius: 100px;
	transition: 0.2s;
}
header ul li a:hover{
	background: #e5e9f9;
}
header ul li a svg{
	width: 20px;
	height: 20px;
	fill: #5e81f4;
	transition: 0.2s;
}
header ul li a:hover svg{
	fill: #5e81f4;
}
@media screen and (max-width: 768px){
	header{
		height: 55px;
		padding: 5px 10px;
	}
	header .logo{
		left: calc(50% - 80px);
		width: 160px;
	}
	header #submenu{
		display: flex;
	}
	header ul{
		position: absolute;
		top: 55px;
		left: 100%;
		width: 100%;
		opacity: 0;
		transition: 0.3s ease-in-out;
		background: #565584;
		background-size: cover;
	}
	.opensubmenu header ul{
		left: 0;
		opacity: 1;
	}
	header ul li{
		width: 33.3%;
	}
	header ul li a{
		background-color: transparent !important;
		width: 100%;
	}
	header ul li a svg{
		fill: #fff;
	}
}
@media screen and (max-width: 400px){
	header{
		padding: 10px 5px;
	}
}

/*----------------------------main--------------------------------*/

main{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	margin-left: 260px;
	width: calc(100% - 260px);
	min-height: calc(100vh - 115px);/*100vh - 65px - 50px*/
	background: #f5f5fb;
	transition: 0.3s ease-in-out;
	position: relative;
	z-index: 1;
}
.close main,
.sp main{
	margin-left: 0;
	width: 100%;
}
@media screen and (max-width: 850px){
	main{
		min-height: calc(100vh - 113px);/*100vh - 65px - 48px*/
	}
}
@media screen and (max-width: 768px){
	main{
		min-height: calc(100vh - 103px);/*100vh - 55px - 48px*/
	}
}
@media screen and (max-width: 550px){
	main{
		min-height: calc(100vh - 136px);/*100vh - 55px - 81px*/
	}
}

/*--layout--*/

main .row:first-child{
	padding-top: 20px;
}
.row{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	padding: 0 0 10px 20px;
	position: relative;
}
.row div[class*="col-"]{
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	padding: 0 20px 20px 0;
}
.row .col_in{
	width: 100%;
	background: #fefefe;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.05);
	position: relative;
	z-index: 1;
	padding: 20px;
}
.row div[class*="heading"]+.col_in{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.row .col-3{
	width: 25%;
}
.row .col-4{
	width: 33.3%;
}
.row .col-6{
	width: 50%;
}
.row .col-8{
	width: 66.6%;
}
.row .col-9{
	width: 75%;
}
.row .col-12{
	width: 100%;
}
@media screen and (max-width: 768px){
	.row{
		padding: 0 0 5px 15px;
	}
	.row div[class*="col-"]{
		padding: 0 15px 15px 0;
	}
	.row .col-3{
		width: 50%;
	}
	.row .col-9,
	.row .col-9+.col-3,
	.row .col-3:nth-of-type(1):nth-last-of-type(2),
	.row .col-6{
		width: 100%;
	}
	.row .col-6:nth-of-type(2):nth-last-of-type(2){
		order: 1;
	}
	.row .col-6+.col-3:nth-last-of-type(1){
		order: 3;
	}
	.row .col-3:nth-of-type(1):nth-last-of-type(3){
		order: 2;
	}
	.row .col_in{
		padding: 15px;
	}
}
@media screen and (max-width: 600px){
	.row .col-4,
	.row .col-8{
		width: 100%;
	}
}
@media screen and (max-width: 400px){
	.row{
		padding: 0 0 5px 10px;
	}
	.row div[class*="col-"]{
		padding: 0 10px 10px 0;
	}
}

/*--parts--*/

.heading1{
	font-weight: bold;
	font-size: 2.0rem;
	color: #2a2a49;
}
.heading2{
	font-size: 1.75rem;
	font-weight: bold;
	border-bottom: 1px solid #eee;
	color: #2a2a49;
}
.col_in .heading2{
	padding: 20px;
}
.heading3{
	font-size: 1.6rem;
	font-weight: bold;
	color: #2a2a49;
}
.heading4{
	font-size: 1.5rem;
	font-weight: bold;
	color: #2a2a49;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	padding: 10px;
	margin-bottom: 15px;
	box-shadow: 1px 0 0 #fff inset;
}
.heading5{
	font-size: 1.45rem;
	font-weight: bold;
	color: #2a2a49;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px){
	.col_in .heading2{
		padding: 15px;
	}
}

/*-----*/

div[class*="btn"]{
	text-align: center;
}
div[class*="btn"] a,
span[class*="btn"],
input[type="submit"],
input[type="button"][class*="btn"]{
	text-align: center;
	line-height: 1.5;
	padding: 7px 15px;
	min-width: 140px;
	display: inline-block;
	border-radius: 3px;
	transition: 0.2s;
	font-weight: bold;
	font-size: 1.35rem;
	cursor: pointer;
	border: none;
	margin: 0 5px;
}
div[class*="btn"] a:nth-child(2):nth-last-child(1),
span[class*="btn"]:nth-child(2):nth-last-child(1),
input[type="submit"]:nth-child(2):nth-last-child(1),
input[type="button"][class*="btn"]:nth-child(2):nth-last-child(1),
span[class*="btn"]:nth-child(1):nth-last-child(2),
input[type="submit"]:nth-child(1):nth-last-child(2),
input[type="button"][class*="btn"]:nth-child(1):nth-last-child(2){
	margin-bottom: 5px;
}
.btn1 a,
span.btn1,
input[type="submit"],
input[type="button"].btn1{
	background: #5e81f4;
	color: #fff;
	text-shadow: -1px -1px 0 rgba(0,0,0,0.15);
}
.btn1 a:hover,
span.btn1:hover,
input[type="submit"]:hover,
input[type="button"].btn1:hover{
	background: #4a6ad3;
}
.btn2 a,
span.btn2,
input[type="button"].btn2{
	background: #ecf0fb;
	color: #5e81f4;
	border: 1px solid #5e81f4 !important;
	padding: 6px 14px;
}
.btn2 a:hover,
span.btn2:hover,
input[type="button"].btn2:hover{
	background: #c9d3f6;
	color: #446ae8;
}
.btn3 a,
span.btn3,
input[type="button"].btn3{
	background: #ff808b;
	color: #fff;
	text-shadow: -1px -1px 0 rgba(0,0,0,0.15);
}
.btn3 a:hover,
span.btn3:hover,
input[type="button"].btn3:hover{
	background: #e25a66;
}
@media screen and (max-width: 450px){
	div[class*="btn"] a,
	span[class*="btn"],
	input[type="submit"],
	input[type="button"][class*="btn"]{
		min-width: 80px;
		padding: 7px;
	}
	.btn2 a,
	span.btn2,
	input[type="button"].btn2{
		padding: 6px;
	}
}

/*-----*/

label{
	cursor: pointer;
}
input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
textarea{
	border: 1px solid #ccc;
	background: #fff;
	padding: 8px;
	margin: 2px auto;
	border-radius: 3px;
	max-width: 500px;
	width: 100%;
}
select{
	border: 1px solid #ccc;
	background: #fff;
	padding: 7px 7px;
	border-radius: 3px;
	margin: 2px 10px 2px auto;
}
select:nth-child(n+2){
	margin-left: 10px;
}
input[type="checkbox"],
input[type="radio"]{
	-webkit-appearance: none;
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid #ddd;
	background: #fff;
	cursor: pointer;
	position: relative;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked{
	border: 3px solid #5e81f4;
}
input[type="checkbox"]:checked:before,
input[type="radio"]:checked:before{
	content: "";
	display: block;
	width: 4px;
	height: 8px;
	position: absolute;
	top: 0px;
	left: 3px;
	border-bottom: 3px solid #5e81f4;
	border-right: 3px solid #5e81f4;
	transform: rotate(45deg);
}
input[type="checkbox"]+label,
input[type="radio"]+label{
	display: inline-block;
	padding: 6px 15px 6px 5px;
	margin-bottom: 3px;
}
input[type="radio"]{
	border-radius: 100px;
}
input[type="radio"]:checked:before{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 3px;
	left: 3px;
	border-radius: 100px;
	background: #5e81f4;
	border: none;
}
@media screen and (max-width: 850px){
	input[type="text"]{
		padding: 6px;
	}
	select{
		padding: 5px 7px;
	}
}

/*-----*/

#pan{
	margin: auto auto 0;
	padding: 20px 20px 17px;
	font-size: 1.3rem;
	color: #888;
	width: 100%;
	text-shadow: 1px 1px 0 #fff;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	border-top: 1px solid #fff;
	box-shadow: 0 -1px 0 rgba(0,0,0,0.1);
}
#pan ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
#pan li{
	position: relative;
	display: block;
	padding-right: 20px;
}
#pan li:before{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #888;
	border-right: 1px solid #888;
	position: absolute;
	top: calc(50% - 3px);
	right: 8px;
	transform: rotate(45deg);
	box-shadow: 1px 0 0 #fff, 0 1px 0 #fff inset;
}
#pan li:last-child{
	padding-right: 0;
}
#pan li:last-child:before{
	display: none;
}
#pan a{
	color: #2a2a49;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	white-space: nowrap;
}
#pan a svg{
	width: 15px;
	height: 15px;
	fill: #5e81f4;
	margin-right: 5px;
}
@media screen and (max-width: 768px){
	#pan{
		padding: 15px 15px 17px;
	}
	#pan ul{
		flex-wrap: nowrap;
	}
	#pan li:last-child{
		padding-right: 15px;
	}
}
@media screen and (max-width: 400px){
	#pan{
		padding: 12px 10px 12px;
	}
	#pan ul{
		flex-wrap: nowrap;
	}
	#pan li:last-child{
		padding-right: 15px;
	}
}

/*-----*/

main>hr{
	border-top: 1px solid #fff;
	box-shadow: 0 -1px 0 #ccc;
	width: calc(100% - 40px);
	height: 0;
	margin: 0 auto 20px;
	display: block;
}
@media screen and (max-width: 768px){
	main>hr{
		width: calc(100% - 30px);
	}
}
@media screen and (max-width: 400px){
	main>hr{
		margin-bottom: 15px;
		width: calc(100% - 20px);
	}
}

/*-----*/

*[class*="tag"]{
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	color: #fff;
	font-size: 1.1rem;
	border-radius: 100px;
	text-align: center;
	padding: 0 5px;
}
.tag1{
	background-color: #9698d6;
}
.tag2{
	background-color: #5e81f4;
}
.tag3{
	background-color: #ff808b;
}
.tag4{
	background-color: #4d4cac;
}
.tag5{
	background-color: #e5e9f9;
}

/*-----*/

.search{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	width: 100%;
}
.search input[type="text"]{
	margin: 0 5px 0 0;
	width: calc(100% - 63px);
}
.search input[type="button"]{
	min-width: 0;
	margin: 0 !important;
}
.content .search{
	padding: 15px;
	justify-content: flex-start;
}
@media screen and (max-width: 600px){
	.search{
		justify-content: flex-start;
	}
	.search input[type="text"]{
		width: calc(100% - 75px);
	}
}

/*-----*/

.list_dev{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
.list_dev ul{
	display: block;
}
.list_dev li{
	display: inline-block;
	margin-right: 8px;
	padding-right: 8px;
	border-right: 1px solid #ccc;
	box-shadow: 1px 0 0 #fff;
	line-height: 2.2;
	margin-bottom: 10px;
}
.list_dev li:last-child{
	padding-right: 0;
	margin-right: 0;
	border: none;
	box-shadow: none;
}
.list_dev ul:nth-last-child(2) li:last-child{
	border-right: 1px solid #ccc;
	box-shadow: 1px 0 0 #fff;
	margin-right: 8px;
	padding-right: 8px;
}
.list_dev select{
	margin: 0;
	margin-bottom: 10px;
}

/*-----*/

div.list_action{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
.col_in div.list_action{
	padding: 20px 0;
}
div.list_action select{
	margin: 0 5px 0 0;
	max-width: 190px;
}
div.list_action  input[type="button"]{
	margin-bottom: 0 !important;
	min-width: 0;
}
div.list_action .btn2.new{
	padding-left: 15px;
	margin: 0 0 0 15px;
	border-left: 1px solid #fff;
	box-shadow: -1px 0 0 #ccc;
}
.content div.list_action{
	padding: 15px;
}
@media screen and (max-width: 768px){
	.col_in div.list_action{
		padding: 15px 0;
	}
}
@media screen and (max-width: 500px){
	div.list_action select{
		max-width: 100px;
	}
	div.list_action .btn2.new{
		padding-left: 5px;
		margin-left: 5px;
	}
}
@media screen and (max-width: 350px){
	div.list_action .btn2.new{
		padding-left: 5px;
		margin-left: 5px;
	}
}

/*-----*/

.list_tab ul{
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
}
.list_tab ul li{
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	margin-right: 5px;
}
.list_tab ul li label{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 15px 20px;
	background: #fff;
	margin-bottom: 0;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	color: #5e81f4;
	position: relative;
	opacity: 0.8;
}
.list_tab ul li label:before{
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 ); /* IE6-9 */
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.1;
}
.list_tab ul li input{
	display: none;
}
.list_tab ul li input:checked+label{
	padding: 20px 20px;
	font-weight: bold;
	opacity: 1;
}
.list_tab ul li input:checked+label:before{
	display: none;
}
.tab_content{
	display: none !important;
}
.tab_content.show{
	display: block !important;
}
@media screen and (max-width: 600px){
	.list_tab ul li{
		max-width: calc(50% - 10px);
	}
	.list_tab ul li label{
		padding: 15px 5px;
	}
	.list_tab ul li input:checked+label{
		padding: 20px 5px;
	}
}

/*-----*/

table.datatable{
	width: 100%;
	font-size: 1.35rem;
}
.form table.datatable{
	border-top: 1px solid #eee;
}
table.datatable tr{
	border-bottom: 1px solid #eee;
	transition: 0.2s;
}
table.datatable tbody tr:nth-of-type(2n){
	background: #fdfdfd;
}
table.datatable tbody tr:hover{
	background: #f4f5f9;
}
table.datatable td{
	padding: 10px 10px;
	vertical-align: top;
	text-align: center;
	position: relative;
}
table.datatable td:after{
	content: "";
	display: block;
	width: 1px;
	height: 70%;
	background: #eee;
	position: absolute;
	top: 15%;
	right: 0;
}
table.datatable td:last-child:after{
	display: none;
}
table.datatable thead td{
	padding: 15px 10px;
	white-space: nowrap;
}
table.datatable thead a{
	display: inline-block;
	position: relative;
}
table.datatable thead a.order-des,
table.datatable thead a.order-asc{
	padding-right: 12px;
}
table.datatable thead a[class*="order-"]:before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 4px solid transparent;
	position: absolute;
	top: calc(50% - 6px);
	right: 0;
}
table.datatable thead a.order-des:before{
	top: calc(50% - 2px);
	border-top-color: #2a2a49;
}
table.datatable thead a.order-asc:before{
	border-bottom-color: #2a2a49;
}
table.datatable .column-check{
	text-align: center;
	width: 60px;
}
table.datatable tbody .column-status{
	width: 100px;
}
table.datatable tbody .column-status span[class*="tag"]{
	font-size: 1.25rem;
	padding: 3px 5px;
	display: inline-block;
	max-width: 100%;
	width: auto;
	margin: 0;
}
table.datatable tbody .column-title,
table.datatable tbody .column-add{
	text-align: left;
}
table.datatable .column-date2 span{
	display: block;
}
table.datatable tbody .column-title>a,
table.datatable tbody .column-title>label{
	font-weight: bold;
}
table.datatable .column-title ul.list_action{
	padding-top: 5px;
	display: block;
	opacity: 0;
}
table.datatable tr:hover .column-title ul.list_action{
	opacity: 1;
}
table.datatable .column-title ul.list_action li{
	display: inline-block;
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid #eee;
}
table.datatable .column-title ul.list_action li:last-child{
	margin-right: 0;
	padding-right: 0;
	border: none;
}
table.datatable .column-title .column-msg,
table.datatable .column-title ul.column-file{
	padding-top: 5px;
	display: block;
}
table.datatable .column-title ul.column-file li{
	display: inline-block;
}
table.datatable .column-title ul.column-file li+li:before{
	content: " / ";
}
table.datatable .column-status,
table.datatable .column-name,
table.datatable .column-name2,
table.datatable .column-name3,
table.datatable .column-name4,
table.datatable .column-name5,
table.datatable .column-tel,
table.datatable .column-date,
table.datatable .column-date2,
table.datatable .column-limit,
table.datatable .column-type,
table.datatable .column-mail{
	white-space: nowrap;
	width: auto;
}
.pager{
	width: 100%;
	padding: 15px;
}
.pager ul{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.pager li{
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.3;
	margin-left: 5px;
}
.pager li a{
	height: 38px;
	min-width: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #ecf0fb;
	border: 1px solid #5e81f4;
	border-radius: 3px;
	transition: 0.2s;
	color: #5e81f4;
}
.pager li a:hover{
	color: #446ae8;
	background: #c9d3f6;
}
.pager li p{
	padding: 0 5px;
}
@media screen and (min-width: 751px){
	table.datatable td{
		display: table-cell !important;
	}
	table.datatable .column-title ul.list_action,
	table.datatable .column-title .column-msg,
	table.datatable .column-title ul.column-file{
		display: block !important;
	}
}
@media screen and (max-width: 750px){
	table.datatable table{
		display: block;
	}
	table.datatable thead,
	table.datatable tbody{
		display: block;
	}
	table.datatable tr{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: flex-start;
		position: relative;
	}
	table.datatable tbody tr{
		padding-bottom: 5px;
	}
	table.datatable tbody tr:before{
		content: "";
		display: block;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-top-color: #2a2a49;
		position: absolute;
		top: 17px;
		right: 12px;
		cursor: pointer;
	}
	table.datatable td:after{
		display: none;
	}
	table.datatable thead td{
		padding: 10px;
	}
	table.datatable thead td:not(.column-check){
		display: none;
	}
	table.datatable .column-check{
		width: auto;
		order: 1;
	}
	table.datatable tbody .column-check,
	table.datatable tbody .column-status{
		padding-bottom: 0;
	}
	table.datatable tbody .column-check{
		padding-right: 0;
	}
	table.datatable .column-status{
		text-align: left;
		width: calc(100% - 50px);
		order: 2;
	}
	table.datatable .column-status span[class*="tag"]{
		text-align: left;
	}
	table.datatable .column-title,
	table.datatable .column-name,
	table.datatable .column-name2,
	table.datatable .column-name3,
	table.datatable .column-name4,
	table.datatable .column-name5,
	table.datatable .column-add,
	table.datatable .column-tel,
	table.datatable .column-send,
	table.datatable .column-date,
	table.datatable .column-date2,
	table.datatable .column-limit,
	table.datatable .column-type,
	table.datatable .column-mail,
	table.datatable .column-btn{
		width: calc(100% - 30px);
		margin-left: 30px;
		padding-top: 0;
		text-align: left;
		padding-bottom: 5px;
		order: 4;
	}
	table.datatable .column-btn{
		order: 3;
	}
	table.datatable tbody td:first-child{
		padding-top: 10px;
	}
	table.datatable tbody .column-check+td{
		text-align: left;
		width: calc(100% - 50px);
		margin-left: 0;
		padding-top: 10px;
	}
	table.datatable .column-title{
		order: 3;
	}
	table.datatable .column-title>a,
	table.datatable .column-title>label{
		font-size: 1.6rem;
	}
	table.datatable .column-title ul.list_action{
		opacity: 1;
		padding-top: 10px;
	}
	table.datatable .column-title ul.list_action li{
		margin-bottom: 5px;
	}
	table.datatable .column-title .column-msg,
	table.datatable .column-title ul.column-file{
		opacity: 1;
		padding-top: 10px;
		padding-bottom: 5px;
	}
	table.datatable .column-date2 span{
		display: inline-block;
	}
	table.datatable .column-date2 span+span{
		padding-left: 10px;
	}
	table.datatable .column-title ul.list_action,
	table.datatable .column-title .column-msg,
	table.datatable .column-title ul.column-file,
	table.datatable .column-name,
	table.datatable .column-name2,
	table.datatable .column-name3,
	table.datatable .column-name4,
	table.datatable .column-name5,
	table.datatable .column-add,
	table.datatable .column-tel,
	table.datatable .column-send,
	table.datatable .column-date,
	table.datatable .column-date2,
	table.datatable .column-limit,
	table.datatable .column-type,
	table.datatable .column-mail{
		display: none;
	}
	table.datatable .column-name:before,
	table.datatable .column-name2:before,
	table.datatable .column-name3:before,
	table.datatable .column-name4:before,
	table.datatable .column-name5:before,
	table.datatable .column-add:before,
	table.datatable .column-tel:before,
	table.datatable .column-send:before,
	table.datatable .column-date:before,
	table.datatable .column-date2:before,
	table.datatable .column-limit:before,
	table.datatable .column-type:before,
	table.datatable .column-mail:before{
		display: inline-block;
		width: 100px;
	}
	table.datatable .column-name:before{
		content: "作成者/申請者 :";
	}
	table.datatable .column-name2:before{
		content: "代表者名 :";
	}
	table.datatable .column-name3:before{
		content: "作成者 :";
	}
	table.datatable .column-name4:before{
		content: "承認先 :";
	}
	table.datatable .column-name5:before{
		content: "担当者 :";
	}
	table.datatable .column-add:before{
		content: "所在地 :";
	}
	table.datatable .column-tel:before{
		content: "電話番号 :";
	}
	table.datatable .column-send:before{
		content: "送付先 :";
	}
	table.datatable .column-date:before{
		content: "登録日 :";
	}
	table.datatable .column-date2:before{
		content: "予約日時 :";
	}
	table.datatable .column-limit:before{
		content: "締結期限 :";
	}
	table.datatable .column-type:before{
		content: "対応種別 :";
	}
	table.datatable .column-mail:before{
		content: "メールアドレス :";
	}
	.pager ul{
		justify-content: center;
	}
	.form table.datatable{
		border-top: 1px solid #eee;
	}
	.form table.datatable thead{
		display: none;
	}
	.form table.datatable .column-title+td{
		padding-top: 5px;
	}
}

/*-----*/

.form{
	display: block;
}
.form dl{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
.form dt,
.form dd{
	display: block;
	padding: 10px 0;
}
.form dt{
	width: 220px;
	padding-right: 10px;
	font-weight: bold;
}
.form dt i{
	display: block;
	padding-top: 3px;
}
.form dd{
	width: calc(100% - 220px);
}
.form_inline{
	display: inline-block;
}
.form_block{
	display: block;
}
.form_flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
.form_block label{
	width: calc(100% - 40px);
	max-width: 460px;
	padding-right: 0 !important;
}
.form_charge label input{
	width: calc(100% - 110px);
	max-width: none;
	margin-left: 10px;
	margin-right: 0;
}
.form_charge label select{
	max-width: calc(100% - 120px);
	margin-left: 10px;
	margin-right: 0;
}
.form_submit{
	padding: 10px 0;
	text-align: left;
}
.form_time .form_flex{
	padding-left: 60px;
	position: relative;
	margin-bottom: 10px;
}
.form_time .form_flex:last-child{
	margin-bottom: 0;
}
.form_time .form_flex>p{
	width: 50px;
	position: absolute;
	top: calc(50% - 11px);
	left: 15px;
}
.form_time .form_flex>div{
	padding-right: 10px;
}
main .form_submit{
	padding: 15px 0 10px;
	margin-left: -5px;
}
@media screen and (max-width: 950px){
	.form_submit{
		text-align: center;
	}
}
@media screen and (max-width: 850px){
	.form_time .form_flex>p{
		top: calc(50% - 9.5px);
	}
}
@media screen and (max-width: 768px){
	.form dl{
		display: block;
	}
	.form dt,
	.form dd{
		width: 100%;
	}
	.form dt{
		padding-bottom: 0;
	}
}
@media screen and (max-width: 500px){
	.form dd{
		padding-top: 5px;
	}
	.form_block label{
		width: calc(100% - 30px);
	}
	.form_charge label input{
		width: calc(100% - 100px);
	}
	.form_charge label select{
		max-width: calc(100% - 110px);
	}
	.form_time .form_flex>p{
		left: 10px;
	}
	.form_time .form_flex{
		padding-left: 50px;
	}
}

/*----------------------------contents--------------------------------*/

#m_title{
	border-bottom: 1px solid #ccc;
	box-shadow: 0 1px 0 #fff;
	margin-bottom: 25px;
}
#m_title div[class*="col-"]{
	padding-bottom: 10px;
}
#m_title .col-4{
	justify-content: flex-end;
}
@media screen and (max-width: 600px){
	#m_title .col-4{
		justify-content: flex-start;
	}
}

/*-----*/

#m_list .col_in{
	padding: 0;
}

/*-----*/

#m_status{
	align-items: stretch;
}
#m_status div[class*="col-"]{
	display: flex;
	align-items: stretch;
	justify-content: center;
}
#m_status .col_in{
	text-align: center;
	display: flex;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	padding: 0;
}
#m_status .col_in a{
	width: 100%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 250px;
	color: #ff808b;
	position: relative;
	background: #fefefe
}
#m_status div[class*="col-"]:nth-of-type(2) .col_in a{
	color: #5e81f4;
}
#m_status div[class*="col-"]:nth-of-type(3) .col_in a{
	color: #9698d6;
}
#m_status div[class*="col-"]:nth-of-type(4) .col_in a{
	color: #4d4cac;
}
#m_status .col_in a:before{
	content: "";
	display: block;
	width: 100px;
	height: 100px;
	background: #ff808b;
	position: absolute;
	top: -60px;
	right: -60px;
	transform: rotate(45deg);
}
#m_status div[class*="col-"]:nth-of-type(2) .col_in a:before{
	background: #5e81f4;
}
#m_status div[class*="col-"]:nth-of-type(3) .col_in a:before{
	background: #9698d6;
}
#m_status div[class*="col-"]:nth-of-type(4) .col_in a:before{
	background: #4d4cac;
}
#m_status .col_in p{
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.05rem;
}
#m_status .col_in i{
	font-size: 1.3rem;
}
#m_status .col_in span{
	margin-top: 7px;
	line-height: 1;
	font-size: 5rem;
	font-family: 'Overpass', sans-serif;
}
@media screen and (max-width: 1250px){
	#m_status .col_in a{
		min-height: 17vw;
	}
}
@media screen and (max-width: 850px){
	#m_status .col_in a{
		min-height: 165px;
	}
	#m_status .col_in a:before{
		top: -70px;
		right: -70px;
	}
}
@media screen and (max-width: 768px){
	#m_status .col_in p{
		font-size: 1.65rem;
	}
}
@media screen and (max-width: 600px){
	#m_status .col_in p{
		font-size: 1.6rem;
	}
}

/*-----*/

#m_news .col_in{
	padding: 0;
}
#m_news .contents{
	margin-bottom: 20px;
	height: 300px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#m_news .contents a{
	display: block;
	padding: 0 20px;
	border-bottom: 1px solid #eee;
	transition: 0.2s;
}
#m_news .contents a:nth-of-type(2n){
	background: #fdfdfd;
}
#m_news .contents a:hover{
	background: #f4f5f9;
}
#m_news dl{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
}
#m_news dt{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 110px;
	border-right: 1px solid #eee;
	padding: 10px 0;
}
#m_news span[class*="tag"]{
	display: block;
	width: 100%;
	padding: 1px 4px 1px 7px;
	line-height: 1.3;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	margin-bottom: 4px;
	margin-top: 3px;
	text-align: left;
}
#m_news dt p{
	width: 100%;
	padding-right: 10px;
	color: #2a2a49;
}
#m_news span[class*="tag"]+p{
	padding-left: 10px;
}
#m_news dd{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px 0 10px 15px;
	width: calc(100% - 110px);
}
#m_news div[class*="btn"]{
	padding-bottom: 20px;
}
@media screen and (max-width: 850px){
	#m_news dt{
		width: 90px;
	}
	#m_news dd{
		width: calc(100% - 90px);
	}
}
@media screen and (max-width: 800px){
	#m_news dt{
		width: 100%;
		border: none;
		padding-bottom: 5px;
		flex-direction: row;
		justify-content: flex-start;
	}
	#m_news span[class*="tag"]{
		width: auto;
		order: 2;
		padding: 1px 7px;
		border-radius: 20px;
	}
	#m_news span[class*="tag"]+p{
		padding-left: 0;
		order: 1;
		width: auto;
	}
	#m_news dd{
		width: 100%;
		padding: 0 0 10px 0;
	}
}
@media screen and (max-width: 768px){
	#m_news .contents a{
		padding: 0 15px;
	}
	#m_news div[class*="btn"]{
		padding-bottom: 15px;
	}
}

/*-----*/

#m_setting .col_in{
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
}
#m_setting .col_in a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: #2a2a49;
}
#m_setting .col_in svg{
	display: block;
	width: 30px;
	height: 30px;
	margin-bottom: 15px;
	fill: #4d4cac;
}
#m_setting .col_in p{
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.05rem;
	font-weight: bold;
}
#m_setting .col_in i{
	font-size: 1.4rem;
	display: block;
	font-weight: normal;
	padding: 10px 0 15px;
	text-align: left;
}
@media screen and (max-width: 768px){
	#m_setting .col_in p{
		font-size: 1.65rem;
	}
}
@media screen and (max-width: 600px){
	#m_setting .col_in i{
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 400px){
	#m_setting .col-3{
		width: 100%;
	}
	#m_setting .col_in i{
		padding: 5px 0;
	}
}

/*-----*/

#m_reserve_new .form_client input[type="text"]{
	width: calc(100% - 150px);
}
#m_reserve_new .form_client #client_button{
	margin-bottom: 0 !important;
	margin-right: 0;
}
@media screen and (max-width: 450px){
	#m_reserve_new .form_client input[type="text"]{
		width: calc(100% - 90px);
	}
}

/*-----*/

#m_setting_client_history .heading2{
	padding: 0 0 15px;
}

/*-----*/

#m_error .col_in{
	border-left: 5px solid #ff808b;
}
#m_comfirm .col_in{
	border-left: 5px solid #5e81f4;
}
#m_error .msg,
#m_comfirm .msg{
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 15px;
}
#m_error ul{
	margin-bottom: 10px;
	display: block;
}
#m_error ul li{
	position: relative;
	padding-left: 15px;
	display: block;
	margin-bottom: 5px;
}
#m_error ul li:before{
	content: "・";
	display: block;
	width: 15px;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 370px){
	#m_error .msg,
	#m_comfirm .msg{
		font-size: 1.7rem;
	}
}

/*----------------------------aside--------------------------------*/

aside{
	position: fixed;
	top: 65px;
	left: 0;
	width: 260px;
	height: calc(100% - 65px);
	background: #fefefe;
	color: #333;
	padding-top: 65px;
	transition: 0.3s ease-in-out;
	z-index: 2;
	box-shadow: 0 0 4px rgba(0,0,0,0.2);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.close aside{
	left: -260px;
}
aside nav{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
aside a{
	color: #8484aa;
}
aside a:hover{
	color: #595998;
}
aside ul.s_list{
	display: block;
	margin-bottom: 10px;
}
aside ul.s_list li{
	display: block;
	position: relative;
}
aside ul.s_list li.st{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
aside ul.s_list li.st svg{
	position: absolute;
	top: calc(50% - 8.5px);
	left: 20px;
	width: 17px;
	height: 17px;
	pointer-events: none;
	fill: #6486f4;
}
aside ul.s_list li.st a{
	display: block;
	font-weight: bold;
	color: #2a2a49;
	padding-left: 45px;
}
aside ul.s_list li a{
	transition: 0.2s;
	padding: 10px 20px;
	display: block;
}
aside ul.s_list li a:nth-last-child(2){
	padding-right: 43px;
}
aside ul.s_list li a:hover{
	background: rgba(255,255,255,0.02);
}
@media screen and (max-width: 768px){
	aside{
		top: 55px;
		height: calc(100% - 55px);
		padding-top: 55px;
	}
}

#s_user{
	padding: 20px 15px;
}
#s_user a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#s_user a>div:nth-of-type(1){
	width: 50px;
	height: 50px;
}
#s_user a>div:nth-of-type(1) img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100px;
}
#s_user a>div:nth-of-type(2){
	width: calc(100% - 60px);
	line-height: 1.4;
}
#s_newreserve{
	padding: 20px 15px 15px;
}
#s_newreserve a{
	display: block;
	width: 100%;
	background: #f5f5fb;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 0 20px 30px;
	border-radius: 5px;
}
#s_newreserve svg{
	display: block;
	width: 40px;
	height: 40px;
	fill: #5e81f4;
	margin: 0 auto;
	transform: translateY(-17px);
}
#s_newreserve p{
	border-radius: 5px;
	background: #5e81f4;
	color: #fff;
	text-shadow: -1px -1px 0 rgba(0,0,0,0.15);
	padding: 5px;
	transition: 0.2s;
}
#s_newreserve a:hover p{
	background: #4a6ad3;
}
#s_reserve,
#s_reservesetting{
	margin-bottom: 15px;
}
aside ul.s_list span[class*="tag"]{
	line-height: 1;
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-right: 20px;
	position: absolute;
	top: calc(50% - 9px);
	right: 0;
	pointer-events: none;
	padding: 0;
}

/*----------------------------footer--------------------------------*/

footer{
	margin-left: 260px;
	width: calc(100% - 260px);
	background: #565584;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	font-size: 1.3rem;
	padding: 15px 20px;
	transition: 0.3s ease-in-out;
	position: relative;
	z-index: 1;
	color: rgba(255,255,255,0.7);
}
.close footer,
.sp footer{
	margin-left: 0;
	width: 100%;
}
footer a{
	color: rgba(255,255,255,0.7);
	transition: 0.2s;
}
footer a:hover{
	color: #fff;
}
footer ul{
	display: flex;
	align-items: center;
	justify-content: center;
}
footer ul li{
	display: block;
}
footer ul li a{
	padding: 5px 10px;
}
footer .cp{
	margin-left: 20px;
}
@media screen and (max-width: 768px){
	footer{
		padding: 15px 10px;
	}
}
@media screen and (max-width: 550px){
	footer{
		justify-content: center;
	}
	footer nav{
		margin-bottom: 15px;
		width: 100%;
	}
	footer ul li a{
		padding: 5px;
	}
	footer .cp{
		width: 100%;
		text-align: center;
	}
}

/*----------------------------login-----------------------------------*/

#login{
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: url(/images/cmn/bg.jpg) 50% 50% no-repeat #303342;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 0 90px;
}
#loginwrap{
	background: #fff;
	width: 90%;
	max-width: 600px;
	padding: 50px;
	border-radius: 3px;
}
#loginwrap .logo{
	width: 100%;
	height: 200px;
	margin-bottom: 20px;
}
#loginwrap .logo img{
	display: block;
	margin: 0 auto;
	width: 90%;
	height: 100%;
	object-fit: contain;
	font-family: 'object-fit: contain;';
}
#loginwrap h2{
	font-size: 1.8rem;
	margin-bottom: 10px;
}
#loginwrap p{
	margin-bottom: 10px;
}
#loginwrap .input{
	position: relative;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}
#loginwrap .input svg{
	display: block;
	position: absolute;
	top: calc(50% - 10px);
	left: 8px;
	width: 20px;
	height: 20px;
	fill: #ccc;
}
#loginwrap input[type="text"],
#loginwrap input[type="password"],
#loginwrap input[type="tel"]{
	padding: 10px 5px 10px 34px;
	margin: 0;
	max-width: none;
}
#loginwrap .input label{
	margin-bottom: 0;
}
#loginwrap .form_submit{
	text-align: center;
	margin-bottom: 15px;
}
#loginwrap div[class*="msg_"]{
	text-align: center;
	border: 3px solid #4d4cac;
	color: #4d4cac;
	margin-bottom: 15px;
	padding: 7px;
	font-weight: bold;
}
#loginwrap .msg_error{
	border-color: #ff808b !important;
	color: #ff808b !important;
}
#loginwrap .link{
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 15px 0 20px;
}
#loginwrap .link>div{
	display: inline-block;
	width: 50%;
	text-align: right;
	padding: 0 15px;
}
#loginwrap .link>div:nth-of-type(2){
	text-align: left;
	border-left: 1px solid #ccc;
}
#loginwrap .link>div:nth-of-type(1):nth-last-of-type(1){
	text-align: center;
}
#login footer{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0;
}
@media screen and (max-width: 450px){
	#loginwrap{
		padding: 30px 20px;
	}
	#loginwrap div[class*="msg_"]{
		text-align: left;
	}
	#loginwrap .link>div{
		width: 100%;
		padding: 0;
		border: none !important;
		text-align: center !important;
	}
	#loginwrap .link>div:last-child{
		margin-top: 15px;
	}
}

/*----------------------------load_modal-----------------------------------*/

.load_modal{
	z-index: 5;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	display: flex;
	align-items: center;
	justify-content: center;
}
.load_modal_inner{
	box-shadow: 20px 20px 50px rgba(0,0,0,0.1);
	background: #f4f4f4;
	width: 90%;
	max-width: 800px;
	height: auto;
	max-height: 90%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.load_modal #m_list{
	padding: 20px 0 0 20px;
}
.modal_close{
	width: 44px;
	height: 44px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.modal_close:before,
.modal_close:after{
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 15px);
	transform: rotate(45deg);
}
.modal_close:after{
	transform: rotate(-45deg);
}
#modal_client .form{
	padding: 20px;
}
#modal_client table.datatable td{
	vertical-align: middle;
}
#modal_client table.datatable tbody .column-title{
	text-align: center;
}
#modal_client table.datatable tbody .btn1{
	min-width: 100px;
	margin: 0;
}
@media screen and (max-width: 750px){
	#modal_client table.datatable tbody .column-title{
		text-align: left;
		width: calc(100% - 150px);
		margin-left: 10px;
		align-self: center;
	}
	#modal_client table.datatable tbody .column-mail,
	#modal_client table.datatable tbody .column-tel{
		margin-left: 10px;
	}
	#modal_client table.datatable tbody .column-btn{
		margin: 0;
		width: 120px;
		padding-top: 10px;
	}
	#modal_client table.datatable tbody tr:before{
		top: 23px;
	}
}
@media screen and (max-width: 550px){
	#modal_client table.datatable tbody .column-title{
		width: calc(100% - 120px);
	}
	#modal_client table.datatable tbody .btn1{
		min-width: 70px;
	}
	#modal_client table.datatable tbody .column-btn{
		width: 90px;
	}
}