@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: #0f849d;
}
a:hover{
	color: #fd6768;
}
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 #54adbf;
	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: #54adbf;
}
#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: #3e4257;
	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: #3e4257;
	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: #f4f8f9;
}
header ul li a svg{
	width: 20px;
	height: 20px;
	fill: #3e4257;
	transition: 0.2s;
}
header ul li a:hover svg{
	fill: #54adbf;
}
@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: #303342 url(/images/cmn/bg.png) 50% 50% no-repeat fixed;
		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: #f4f4f4;
	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: #fff;
	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: #3e4257;
}
.heading2{
	font-size: 1.75rem;
	font-weight: bold;
	border-bottom: 1px solid #eee;
	color: #3e4257;
}
.col_in .heading2{
	padding: 20px;
}
.heading3{
	font-size: 1.6rem;
	font-weight: bold;
	color: #3e4257;
}
.heading4{
	font-size: 1.5rem;
	font-weight: bold;
	color: #3e4257;
	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: #3e4257;
	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: #54adbf;
	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: #3894a8;
}
.btn2 a,
span.btn2,
input[type="button"].btn2{
	background: #eff7f9;
	color: #54adbf;
	border: 1px solid #54adbf !important;
	padding: 6px 14px;
}
.btn2 a:hover,
span.btn2:hover,
input[type="button"].btn2:hover{
	background: #d5ebf0;
	color: #479eaf;
}
@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 auto;
}
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 #54adbf;
}
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 #54adbf;
	border-right: 3px solid #54adbf;
	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: #54adbf;
	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 #ccc;
}
#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: #888;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	white-space: nowrap;
}
#pan a svg{
	width: 15px;
	height: 15px;
	fill: #aaa;
	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: #4593c1;
}
.tag2{
	background-color: #eac449;
}
.tag3{
	background-color: #fd6768;
}
.tag4{
	background-color: #089ba3;
}
.tag5{
	background-color: #ccc;
}

/*-----*/

.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;
}
@media screen and (max-width: 600px){
	.search{
		justify-content: flex-start;
	}
	.search input[type="text"]{
		width: calc(100% - 75px);
	}
}

/*-----*/

.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;
}
.list_dev li:last-child{
	padding-right: 0;
	margin-right: 0;
	border: none;
	box-shadow: none;
}

/*-----*/

div.list_action{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
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: 500px){
	div.list_action select{
		max-width: 110px;
	}
}
@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: #0f849d;
	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;
}

/*-----*/

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: #f4f8f9;
}
table.datatable td{
	padding: 10px 10px;
	vertical-align: middle;
	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: #3e4257;
}
table.datatable thead a.order-asc:before{
	border-bottom-color: #3e4257;
}
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 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-tel,
table.datatable .column-date,
table.datatable .column-limit{
	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: #eff7f9;
	border: 1px solid #54adbf;
	border-radius: 3px;
	transition: 0.2s;
	color: #54adbf;
}
.pager li a:hover{
	color: #479eaf;
	background: #d5ebf0;
}
.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: #3e4257;
		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;
	}
	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);
	}
	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-add,
	table.datatable .column-tel,
	table.datatable .column-send,
	table.datatable .column-date,
	table.datatable .column-limit{
		width: calc(100% - 30px);
		margin-left: 30px;
		padding-top: 0;
		text-align: left;
		padding-bottom: 5px;
	}
	table.datatable tbody .column-check+td{
		text-align: left;
		width: calc(100% - 50px);
		margin-left: 0;
		padding-top: 10px;
	}
	table.datatable .column-title>a,
	table.datatable .column-title>label{
		font-size: 1.6rem;
	}
	table.datatable .column-title ul.list_action,
	table.datatable .column-title .column-msg,
	table.datatable .column-title ul.column-file{
		opacity: 1;
		padding-top: 10px;
		padding-bottom: 5px;
	}
	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-add,
	table.datatable .column-tel,
	table.datatable .column-send,
	table.datatable .column-date,
	table.datatable .column-limit{
		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-add:before,
	table.datatable .column-tel:before,
	table.datatable .column-send:before,
	table.datatable .column-date:before,
	table.datatable .column-limit: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-name3: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-limit: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_upload{
	display: flex;
	width: 100%;
	align-items: stretch;
	justify-content: flex-start;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 3px;
	max-width: 800px
}
.canvas_area{
	border: 1px solid #ccc;
	width: 150px;
	height: 150px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	text-align: center;
}
.canvas_area canvas{
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	margin: auto;
}
.canvas_area p{
	font-size: 1.3rem;
	width: 100%;
	padding-top: 5px;
	text-align: center;
}
.drop_area{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: calc(100% - 160px);
	margin-left: 10px;
	background: #f5f5f5;
	border: 1px dashed #ccc;
	padding: 10px;
}
.form_submit{
	padding: 10px 0;
	text-align: left;
}
@media screen and (max-width: 950px){
	.form_submit{
		text-align: center;
	}
}
@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_upload{
		display: block;
	}
	.canvas_area{
		width: 100%;
	}
	.drop_area{
		display: block;
		width: 100%;
	}
	.drop_area{
		margin-left: 0;
		padding: 10px 0 0 0;
		border: none;
		background: none;
	}
	.drop_area p{
		display: none;
	}
}

/*----------------------------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,
#m_shortcut{
	align-items: stretch;
}
#m_status div[class*="col-"],
#m_shortcut div[class*="col-"]{
	display: flex;
	align-items: stretch;
	justify-content: center;
}
#m_status .col_in,
#m_shortcut .col_in{
	text-align: center;
	display: flex;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	padding: 0;
}
#m_status .col_in a,
#m_shortcut .col_in a{
	width: 100%;
	padding: 10px;
}
#m_status .col_in p,
#m_shortcut .col_in p{
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.05rem;
}
#m_status .col_in i,
#m_shortcut .col_in i{
	font-size: 1.3rem;
}
@media screen and (max-width: 768px){
	#m_status .col_in p,
	#m_shortcut .col_in p{
		font-size: 1.65rem;
	}
}
@media screen and (max-width: 600px){
	#m_status .col_in p,
	#m_shortcut .col_in p{
		font-size: 1.6rem;
	}
}

#m_status .col_in{
	background: url(/images/cmn/bg.png) 50% 50% no-repeat fixed;
	background-size: cover;
}
#m_status .col_in a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 250px;
	text-shadow: 1px 1px 0 #fff;
	color: #fd6768;
	position: relative;
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 1%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 1%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 1%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}
#m_status div[class*="col-"]:nth-of-type(2) .col_in a{
	color: #eac449;
}
#m_status div[class*="col-"]:nth-of-type(3) .col_in a{
	color: #4593c1;
}
#m_status div[class*="col-"]:nth-of-type(4) .col_in a{
	color: #089ba3;
}
#m_status .col_in a:before{
	content: "";
	display: block;
	width: 100px;
	height: 100px;
	background: #fd6768;
	position: absolute;
	top: -60px;
	right: -60px;
	transform: rotate(45deg);
}
#m_status div[class*="col-"]:nth-of-type(2) .col_in a:before{
	background: #eac449;
}
#m_status div[class*="col-"]:nth-of-type(3) .col_in a:before{
	background: #4593c1;
}
#m_status div[class*="col-"]:nth-of-type(4) .col_in a:before{
	background: #089ba3;
}
#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;
	}
}

#m_shortcut div[class*="col-"]:nth-of-type(1) .col_in a{
	background-color: #303342;
}
#m_shortcut div[class*="col-"]:nth-of-type(2) .col_in a{
	background-color: #273234;
}
#m_shortcut div[class*="col-"]:nth-of-type(3) .col_in a{
	background-color: #312639;
}
#m_shortcut .col_in a{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	background: url(/images/cmn/bg.png) 50% 50% no-repeat fixed;
	background-size: cover;
	color: #fff;
}
#m_shortcut .col_in a svg{
	fill: #fff;
	width: 30px;
	height: 30px;
}
#m_shortcut .col_in a p{
	text-align: left;
	padding-left: 20px;
}
#m_shortcut .col_in a p i{
	display: block;
	font-weight: normal;
	opacity: 0.7;
}
@media screen and (max-width: 600px){
	#m_shortcut div[class*="col-"]{
		width: 33.3%;
		min-height: 0;
	}
	#m_shortcut .col_in a{
		flex-direction: column;
	}
	#m_shortcut .col_in a p{
		padding: 7px 0 0;
		text-align: center;
	}
}

/*-----*/

#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: #f4f8f9;
}
#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: #888;
}
#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: #3e4257;
}
#m_setting .col_in svg{
	display: block;
	width: 30px;
	height: 30px;
	margin-bottom: 15px;
}
#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_contract_new div[class*="contract_new_"]{
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 3px;
	margin-top: 10px;
}
#m_contract_new .contract_new_2,
#m_contract_new .contract_new_3{
	display: none;
}
#m_contract_new div[class*="contract_new_"] .pager{
	padding: 15px 0 0;
}
@media screen and (max-width: 750px){
	#m_contract_new div[class*="contract_new_"]{
		padding: 10px;
	}
	#m_contract_new div[class*="contract_new_"] .pager{
		padding-top: 10px;
	}
}

/*-----*/

#m_contract_new_imprint .form_block{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	border: 1px solid #ccc;
	border-radius: 3px;
}
#m_contract_new_imprint .form_block:nth-of-type(n+2){
	margin-top: 15px;
}
#m_contract_new_imprint div[class*="heading"]{
	border-top: none;
	border-left: none;
	border-right: none;
	width: 100%;
}
#m_contract_new_imprint .imprint_area{
	width: 700px;
	margin-left: 15px;
	margin-bottom: 15px;
}
#m_contract_new_imprint .seal_area{
	width: calc(100% - 715px);
	max-width: 500px;
	padding: 0 15px;
}
#m_contract_new_imprint .seal_area dl,
#m_contract_new_imprint .seal_area dt,
#m_contract_new_imprint .seal_area dd,
#m_contract_new_imprint .seal_area ul,
#m_contract_new_imprint .seal_area li{
	padding: 0;
	display: block;
}
#m_contract_new_imprint .seal_area dl{
	background: #fff;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
}
#m_contract_new_imprint .seal_area dt{
	width: auto;
	padding: 10px;
	border-bottom: 1px solid #eee;
}
#m_contract_new_imprint .seal_area dd{
	padding: 10px;
	max-height: 220px;
	width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#m_contract_new_imprint .seal_area ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#m_contract_new_imprint .seal_area li{
	width: 20%;
	padding-bottom: 20%;
	position: relative;
}
#m_contract_new_imprint .seal_area li div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f0f0f0;
}
#m_contract_new_imprint .seal_area li:nth-of-type(2n) div{
	background: #f5f5f5;
}
#m_contract_new_imprint .form_submit{
	width: 100%;
}
@media screen and (max-width: 1450px){
	#m_contract_new_imprint .imprint_area{
		width: calc(70% - 15px);
	}
	#m_contract_new_imprint .seal_area{
		width: 30%;
	}
	#m_contract_new_imprint .seal_area li{
		width: 25%;
		padding-bottom: 25%;
	}
}
@media screen and (max-width: 1300px){
	#m_contract_new_imprint .seal_area li{
		width: 33.3%;
		padding-bottom: 33.3%;
	}
}
@media screen and (max-width: 700px){
	#m_contract_new_imprint .imprint_area{
		width: calc(100% - 30px);
		margin: 0 auto 15px;
	}
	#m_contract_new_imprint .seal_area{
		max-width: none;
		width: calc(100% - 30px);
		margin: 0 auto;
		padding: 0;
		display: flex;
		align-items: stretch;
		justify-content: space-between;
	}
	#m_contract_new_imprint .seal_area dl:nth-of-type(1){
		width: 120px;
		white-space: nowrap;
	}
	#m_contract_new_imprint .seal_area dl:nth-of-type(2){
		width: calc(100% - 130px);
	}
	#m_contract_new_imprint .seal_area dt{
		margin-bottom: 5px;
	}
	#m_contract_new_imprint .seal_area ul{
		width: auto;
		flex-wrap: nowrap;
	}
	#m_contract_new_imprint .seal_area dl:nth-of-type(1) ul{
		justify-content: center;
	}
	#m_contract_new_imprint .seal_area li{
		width: 60px;
		min-width: 60px;
		padding-bottom: 60px;
	}
}
@media screen and (max-width: 500px){
	#m_contract_new_imprint .imprint_area{
		width: calc(100% - 20px);
	}
	#m_contract_new_imprint .seal_area{
		width: calc(100% - 20px);
	}
	#m_contract_new_imprint .seal_area dt{
		font-size: 1.3rem;
		padding: 5px;
	}
}

/*-----*/

#m_contract_new_confirm .form_block{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	border: 1px solid #ccc;
	border-radius: 3px;
}
#m_contract_new_confirm div[class*="heading"]{
	border-top: none;
	border-left: none;
	border-right: none;
	width: 100%;
}
#m_contract_new_confirm .imprint_area{
	width: 400px;
	margin-left: 15px;
	margin-bottom: 15px;
}
#m_contract_new_confirm .form_area{
	width: calc(100% - 415px);
	padding: 0 15px;
}
#m_contract_new_confirm div[class*="contract_confirm_"]{
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 3px;
	margin-top: 10px;
	margin-bottom: 15px;
}
#m_contract_new_confirm .contract_confirm_2{
	display: none;
}
#m_contract_new_confirm div[class*="contract_confirm_"] .pager{
	padding: 15px 0 0;
}
#m_contract_new_confirm .form_area dl,
#m_contract_new_confirm .form_area dt,
#m_contract_new_confirm .form_area dd{
	padding: 0;
	display: block;
	width: 100%;
}
#m_contract_new_confirm .form_area dl{
}
#m_contract_new_confirm .form_area dt{
	margin-bottom: 10px;
}
#m_contract_new_confirm .form_area dd{
	margin-bottom: 15px;
}
#m_contract_new_confirm .form_submit{
	width: 100%;
	padding: 0;
}
@media screen and (max-width: 1250px){
	#m_contract_new_confirm .imprint_area{
		width: 40%;
	}
	#m_contract_new_confirm .form_area{
		width: calc(60% - 15px);
	}
}
@media screen and (max-width: 768px){
	#m_contract_new_confirm .imprint_area{
		max-width: 500px;
		width: calc(100% - 30px);
		margin: 0 auto 15px;
	}
	#m_contract_new_confirm .form_area{
		width: 100%;
	}
}
@media screen and (max-width: 700px){
	#m_contract_new_confirm .seal_area{
		max-width: none;
		width: calc(100% - 30px);
		margin: 0 auto;
		padding: 0;
		display: flex;
		align-items: stretch;
		justify-content: space-between;
	}
	#m_contract_new_confirm .seal_area dl:nth-of-type(1){
		width: 120px;
		white-space: nowrap;
	}
	#m_contract_new_confirm .seal_area dl:nth-of-type(2){
		width: calc(100% - 130px);
	}
	#m_contract_new_confirm .seal_area dt{
		margin-bottom: 5px;
	}
	#m_contract_new_confirm .seal_area ul{
		width: auto;
		flex-wrap: nowrap;
	}
	#m_contract_new_confirm .seal_area dl:nth-of-type(1) ul{
		justify-content: center;
	}
	#m_contract_new_confirm .seal_area li{
		width: 60px;
		min-width: 60px;
		padding-bottom: 60px;
	}
}
@media screen and (max-width: 500px){
	#m_contract_new_confirm .imprint_area{
		width: calc(100% - 20px);
	}
	#m_contract_new_confirm .seal_area{
		width: calc(100% - 20px);
	}
	#m_contract_new_confirm .seal_area dt{
		font-size: 1.3rem;
		padding: 5px;
	}
}

/*-----*/

#m_contract_single .form_block{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	border: 1px solid #ccc;
	border-radius: 3px;
}
#m_contract_single div[class*="heading"]{
	border-top: none;
	border-left: none;
	border-right: none;
	width: 100%;
}
#m_contract_single .imprint_area{
	width: 450px;
	margin-left: 15px;
	margin-bottom: 15px;
}
#m_contract_single .form_area{
	width: calc(100% - 465px);
	padding: 0 15px 15px;
}
#m_contract_single .form_area dl,
#m_contract_single .form_area dt,
#m_contract_single .form_area dd{
	padding: 0;
	display: block;
	width: 100%;
}
#m_contract_single .form_area dl{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
#m_contract_single .form_area dl:first-child{
	border-top: 1px solid #eee;
}
#m_contract_single .form_area dt{
	font-weight: bold;
	width: 200px;
	padding-left: 5px;
}
#m_contract_single .form_area dd{
	width: calc(100% - 220px);
	padding: 0 5px;
}
@media screen and (max-width: 1350px){
	#m_contract_single .imprint_area{
		width: 40%;
	}
	#m_contract_single .form_area{
		width: calc(60% - 15px);
	}
}
@media screen and (max-width: 1300px){
	#m_contract_single .form_area dl{
		display: block;
	}
	#m_contract_single .form_area dt{
		font-weight: bold;
		width: 100%;
		padding-bottom: 5px;
	}
	#m_contract_single .form_area dd{
		width: 100%;
	}
}
@media screen and (max-width: 768px){
	#m_contract_single .imprint_area{
		max-width: 500px;
		width: calc(100% - 30px);
		margin: 0 auto 15px;
	}
	#m_contract_single .form_area{
		width: 100%;
	}
}

/*-----*/

#m_admin_single .form_block{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	border: 1px solid #ccc;
	border-radius: 3px;
}
#m_admin_single div[class*="heading"]{
	border-top: none;
	border-left: none;
	border-right: none;
	width: 100%;
}
#m_admin_single .imprint_area{
	width: 450px;
	margin-left: 15px;
	margin-bottom: 15px;
}
#m_admin_single .form_area{
	width: calc(100% - 465px);
	padding: 0 15px 15px;
}
#m_admin_single .form_area dl,
#m_admin_single .form_area dt,
#m_admin_single .form_area dd{
	padding: 0;
	display: block;
	width: 100%;
}
#m_admin_single .form_area dl{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
#m_admin_single .form_area dl:first-child{
	border-top: 1px solid #eee;
}
#m_admin_single .form_area dt{
	font-weight: bold;
	width: 200px;
	padding-left: 5px;
}
#m_admin_single .form_area dd{
	width: calc(100% - 220px);
	padding: 0 5px;
}
@media screen and (max-width: 1350px){
	#m_admin_single .imprint_area{
		width: 40%;
	}
	#m_admin_single .form_area{
		width: calc(60% - 15px);
	}
}
@media screen and (max-width: 1300px){
	#m_admin_single .form_area dl{
		display: block;
	}
	#m_admin_single .form_area dt{
		font-weight: bold;
		width: 100%;
		padding-bottom: 5px;
	}
	#m_admin_single .form_area dd{
		width: 100%;
	}
}
@media screen and (max-width: 768px){
	#m_admin_single .imprint_area{
		max-width: 500px;
		width: calc(100% - 30px);
		margin: 0 auto 15px;
	}
	#m_admin_single .form_area{
		width: 100%;
	}
}

/*-----*/

#m_error .col_in{
	border-left: 5px solid #fd6768;
}
#m_comfirm .col_in{
	border-left: 5px solid #089ba3;
}
#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: #303342 url(/images/cmn/bg.png) 50% 50% no-repeat fixed;
	background-size: cover;
	color: #fff;
	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 a{
	color: rgba(255,255,255,0.8);
}
aside a:hover{
	color: #fff;
}
aside nav{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
aside ul.s_list{
	display: block;
	margin-bottom: 10px;
}
aside ul.s_list li{
	display: block;
	position: relative;
}
aside ul.s_list li.st{
	margin-bottom: 7px;
	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: #fff;
}
aside ul.s_list li.st a{
	display: block;
	font-weight: bold;
	color: #fff;
	text-shadow: -1px -1px 0 rgba(0,0,0,0.15);
	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_contract ul.s_list li.st{
	background: #eac449;
}
#s_workflow ul.s_list li.st{
	background: #4593c1;
}
#s_admin ul.s_list li.st{
	background: #089ba3;
}
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: #191b29;
	color: #fff;
	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: #ddd;
}
.close footer,
.sp footer{
	margin-left: 0;
	width: 100%;
}
footer a{
	color: #ddd;
	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.png) 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: 500px;
	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 .input{
	position: relative;
	margin-bottom: 15px;
}
#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"]{
	padding: 10px 5px 10px 34px;
}
#loginwrap .form_submit{
	text-align: center;
}
#login footer{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0;
}