@charset "utf-8";

/* 【取引先様用】レンタル自動見積・お申込み*/


/*モダールウインドウ
-------------------------------------------------------*/
.pro_modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

.pro_modal-content {
	background: #fff;
	padding: 28px 34px 20px;
	margin: 15% auto;
	width: 400px;
	border-radius: 8px;
	position: relative;
	font-size: 16px;
}

.pro_modal-content form {
	margin-top: 12px;
}

.pro_modal-content label {
	display: block;
}

.pro_modal-content input[type="text"] {
	margin-left: 52px;
}

.pro_modal-content input {
	line-height: 2em;
}

.pro_modal-content button {
	margin: 6px 0 0 0;
	padding: 4px 12px;
}

.close-btn {
	position: absolute;
	top: 5px;
	right: 10px;
	cursor: pointer;
	font-size: 30px;
}

#contentOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

s .overlay-message {
	background: white;
	padding: 30px;
	border-radius: 8px;
	text-align: center;
}

#contentWrapper {
	pointer-events: auto;
}

body.logged-out #contentWrapper {
	pointer-events: none;
	user-select: none;
}

#application_wrap {
	display: block;
}

.logout_button {
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.logout_button p::before {
	font-family: "Font Awesome 5 Free";
	content: "\f2bd";
	font-weight: 900;
	margin-right: 5px;
	color: #858585;
	font-size: 2em;
	position: absolute;
	right: 236px;
	top: 2px;
}

.logout_button a {
	border: #ddd solid 1px;
	padding: 0 20px;
	margin: 0 0 0 12px;
	line-height: 2.4em;
	font-weight: 500;
	color: #000;
}

.logout_button a:hover {
	background: #ddd;
	color: #000;
}




/*スマートフォン
-------------------------------------------------------*/
@media screen and (max-width:767px) {

	.pro_modal-content {
		width: 90%;
		font-size: 14px;
	}

	.pro_modal-content input {
		width: 70%;
	}


}