@charset "utf-8";
header h1 img{
	height: 50px;
	margin: .3em 0;
}
footer{
	background: #004681;
	color: #fff;
}
footer p{
	color: #fff;
}
@media (min-width: 768px){
	/* .container {
		max-width: 960px;
	} */
	.col-form-label{
		background:linear-gradient(90deg,#fff 0%,#fff 15px,#e1e1e1 15px,#e1e1e1 100%);
		padding-left: 2em;
	}
}

@media (max-width: 768px){
	.col-form-label{
		margin-bottom: 1em;
	}
	.col-form-label{
		background: #e1e1e1;
	}
}

input:focus::placeholder,
textarea:focus::placeholder{
	color: transparent;
}

@media print{
	.print_pages{
		width: 172mm;
		height: 251mm;
		page-break-after: always;
	}
	.print_pages:last-child{
		page-break-after: auto;
	}
	.container{
		max-width: 1140px;
	}
	.table-responsive {
    display: block;
    width: 100%;
    overflow-x: visible !important;
	}
}

/* テキストインデント　*/

.indent-text{
	text-indent: -1em;
	margin-left: 1em;
}

/*.form-control[readonly] {
  background-color: #fff;
}*/

.applicationlist{
	font-size: .9rem;
}

.triangle{
	width: 0;
	height: 0;
	border-left: 200px solid transparent;
	border-right: 200px solid transparent;
	border-top: 60px solid #004681;
	margin: 2em auto;
}

input:focus::placeholder:not(#corpSelect),
textarea:focus::placeholder:not(#corpSelect) {
	color: transparent;
}

.error-message {
	color: #dc3545;
}

.select2-invalid{
	border-color: #dc3545 !important;
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 9999;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}